diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index c59bbba32a70..90a5939a246d 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -3303,6 +3303,15 @@ */ #define TFT_FONT NOTOSANS + /** + * TFT Theme for Color_UI. Choose one of the following or add a new one to 'Marlin/src/lcd/tft/themes' directory + * + * BLUE_MARLIN - Default theme with 'midnight blue' background + * BLACK_MARLIN - Theme with 'black' background + * ANET_BLACK - Theme used for Anet ET4/5 + */ + #define TFT_THEME BLACK_MARLIN + //#define TFT_SHARED_IO // I/O is shared between TFT display and other devices. Disable async data transfer. #endif diff --git a/Marlin/src/feature/runout.cpp b/Marlin/src/feature/runout.cpp index b34e87ca5e81..7c7d61e7eb6c 100644 --- a/Marlin/src/feature/runout.cpp +++ b/Marlin/src/feature/runout.cpp @@ -101,15 +101,16 @@ void event_filament_runout(const uint8_t extruder) { const bool run_runout_script = !runout.host_handling; - const bool park_or_pause = (false - #ifdef FILAMENT_RUNOUT_SCRIPT - || strstr(FILAMENT_RUNOUT_SCRIPT, "M600") - || strstr(FILAMENT_RUNOUT_SCRIPT, "M125") - || TERN0(ADVANCED_PAUSE_FEATURE, strstr(FILAMENT_RUNOUT_SCRIPT, "M25")) - #endif - ); - #if ENABLED(HOST_ACTION_COMMANDS) + + const bool park_or_pause = (false + #ifdef FILAMENT_RUNOUT_SCRIPT + || strstr(FILAMENT_RUNOUT_SCRIPT, "M600") + || strstr(FILAMENT_RUNOUT_SCRIPT, "M125") + || TERN0(ADVANCED_PAUSE_FEATURE, strstr(FILAMENT_RUNOUT_SCRIPT, "M25")) + #endif + ); + if (run_runout_script && park_or_pause) { hostui.paused(false); } @@ -127,6 +128,7 @@ void event_filament_runout(const uint8_t extruder) { SERIAL_ECHOPGM(" " ACTION_REASON_ON_FILAMENT_RUNOUT " "); SERIAL_CHAR(tool); SERIAL_EOL(); + #endif // HOST_ACTION_COMMANDS #ifdef FILAMENT_RUNOUT_SCRIPT diff --git a/Marlin/src/inc/Conditionals_LCD.h b/Marlin/src/inc/Conditionals_LCD.h index b052021bb7f2..01bc2805d948 100644 --- a/Marlin/src/inc/Conditionals_LCD.h +++ b/Marlin/src/inc/Conditionals_LCD.h @@ -1781,12 +1781,19 @@ #elif ANY(TFT_1024x600_LTDC, TFT_1024x600_SIM) #define HAS_UI_1024x600 1 #endif -#if ANY(HAS_UI_320x240, HAS_UI_480x320, HAS_UI_480x272) + +#if ANY(HAS_UI_320x240, HAS_UI_480x272) #if ENABLED(TFT_COLOR_UI_PORTRAIT) #define LCD_HEIGHT TERN(TOUCH_SCREEN, 8, 9) // Fewer lines with touch buttons onscreen #else #define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7) // Fewer lines with touch buttons onscreen #endif +#elif HAS_UI_480x320 + #if ENABLED(TFT_COLOR_UI_PORTRAIT) + #define LCD_HEIGHT TERN(TOUCH_SCREEN, 9, 10) // Fewer lines with touch buttons onscreen + #else + #define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7) // Fewer lines with touch buttons onscreen + #endif #elif HAS_UI_1024x600 #define LCD_HEIGHT TERN(TOUCH_SCREEN, 12, 13) // Fewer lines with touch buttons onscreen #endif diff --git a/Marlin/src/inc/Conditionals_adv.h b/Marlin/src/inc/Conditionals_adv.h index d5f4be18b9c2..eac9e2111048 100644 --- a/Marlin/src/inc/Conditionals_adv.h +++ b/Marlin/src/inc/Conditionals_adv.h @@ -833,7 +833,7 @@ #define HAS_MEDIA_SUBCALLS 1 #endif -#if ANY(SHOW_PROGRESS_PERCENT, SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME, SHOW_INTERACTION_TIME) +#if ANY(SHOW_PROGRESS_PERCENT, SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME, SHOW_INTERACTION_TIME) && !HAS_GRAPHICAL_TFT #define HAS_EXTRA_PROGRESS 1 #endif diff --git a/Marlin/src/lcd/dogm/fontdata/fontdata_ISO10646_1.h b/Marlin/src/lcd/dogm/fontdata/fontdata_ISO10646_1.h index 6f55d3bc3df8..1ebe9884c06e 100644 --- a/Marlin/src/lcd/dogm/fontdata/fontdata_ISO10646_1.h +++ b/Marlin/src/lcd/dogm/fontdata/fontdata_ISO10646_1.h @@ -25,17 +25,17 @@ #if defined(__AVR__) && ENABLED(NOT_EXTENDED_ISO10646_1_5X7) // reduced font (only symbols 1 - 127) - saves about 1278 bytes of FLASH -/* - Fontname: -Marlin6x12-Fixed-Medium-R-SemiCondensed--12-90-100-100-C-111-ISO10646-1 - Copyright: Public domain terminal emulator font. Share and enjoy. original font -Misc-Fixed-Medium-R-SemiCondensed--12-110-75-75-C-60-ISO10646-1 - Capital A Height: 7, '1' Height: 7 - Calculated Max Values w= 7 h=10 x= 5 y= 5 dx= 7 dy= 0 ascent= 8 len=10 - Font Bounding box w=12 h=15 x= 0 y=-2 - Calculated Min Values x= 0 y=-2 dx= 0 dy= 0 - Pure Font ascent = 7 descent=-2 - X Font ascent = 8 descent=-2 - Max Font ascent = 8 descent=-2 -*/ +/** + * Fontname: -Marlin6x12-Fixed-Medium-R-SemiCondensed--12-90-100-100-C-111-ISO10646-1 + * Copyright: Public domain terminal emulator font. Share and enjoy. original font -Misc-Fixed-Medium-R-SemiCondensed--12-110-75-75-C-60-ISO10646-1 + * Capital A Height: 7, '1' Height: 7 + * Calculated Max Values w= 7 h=10 x= 5 y= 5 dx= 7 dy= 0 ascent= 8 len=10 + * Font Bounding box w=12 h=15 x= 0 y=-2 + * Calculated Min Values x= 0 y=-2 dx= 0 dy= 0 + * Pure Font ascent = 7 descent=-2 + * X Font ascent = 8 descent=-2 + * Max Font ascent = 8 descent=-2 + */ const u8g_fntpgm_uint8_t ISO10646_1_5x7[1324] U8G_FONT_SECTION("ISO10646_1_5x7") = { 0x00,0x0C,0x0F,0x00,0xFE,0x07,0x02,0x25,0x03,0xBB,0x01,0x7F,0xFE,0x08,0xFE,0x08, 0xFE,0x05,0x08,0x08,0x06,0x00,0x00,0x40,0xF0,0xC8,0x88,0x88,0x98,0x78,0x10,0x05, @@ -123,17 +123,17 @@ const u8g_fntpgm_uint8_t ISO10646_1_5x7[1324] U8G_FONT_SECTION("ISO10646_1_5x7") #else // extended (original) font (symbols 1 - 255) -/* - Fontname: -Marlin6x12-Fixed-Medium-R-SemiCondensed--12-90-100-100-C-111-ISO10646-1 - Copyright: Public domain terminal emulator font. Share and enjoy. original font -Misc-Fixed-Medium-R-SemiCondensed--12-110-75-75-C-60-ISO10646-1 - Capital A Height: 7, '1' Height: 7 - Calculated Max Values w= 7 h=10 x= 5 y= 7 dx= 7 dy= 0 ascent=10 len=10 - Font Bounding box w=12 h=15 x= 0 y=-2 - Calculated Min Values x= 0 y=-2 dx= 0 dy= 0 - Pure Font ascent = 7 descent=-2 - X Font ascent = 8 descent=-2 - Max Font ascent =10 descent=-2 -*/ +/** + * Fontname: -Marlin6x12-Fixed-Medium-R-SemiCondensed--12-90-100-100-C-111-ISO10646-1 + * Copyright: Public domain terminal emulator font. Share and enjoy. original font -Misc-Fixed-Medium-R-SemiCondensed--12-110-75-75-C-60-ISO10646-1 + * Capital A Height: 7, '1' Height: 7 + * Calculated Max Values w= 7 h=10 x= 5 y= 7 dx= 7 dy= 0 ascent=10 len=10 + * Font Bounding box w=12 h=15 x= 0 y=-2 + * Calculated Min Values x= 0 y=-2 dx= 0 dy= 0 + * Pure Font ascent = 7 descent=-2 + * X Font ascent = 8 descent=-2 + * Max Font ascent =10 descent=-2 + */ const u8g_fntpgm_uint8_t ISO10646_1_5x7[2647] U8G_FONT_SECTION("ISO10646_1_5x7") = { 0x00,0x0C,0x0F,0x00,0xFE,0x07,0x02,0x25,0x03,0xBB,0x01,0xFF,0xFE,0x0A,0xFE,0x08, 0xFE,0x05,0x08,0x08,0x06,0x00,0x00,0x40,0xF0,0xC8,0x88,0x88,0x98,0x78,0x10,0x05, diff --git a/Marlin/src/lcd/tft/canvas.h b/Marlin/src/lcd/tft/canvas.h index d271ae7af3f7..e97da2f23b46 100644 --- a/Marlin/src/lcd/tft/canvas.h +++ b/Marlin/src/lcd/tft/canvas.h @@ -21,7 +21,6 @@ */ #pragma once -#include "tft_color.h" #include "tft_string.h" #include "tft_image.h" #include "tft.h" diff --git a/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_14.cpp b/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_14.cpp index 2fbf812369c4..fef4d9b9fac4 100644 --- a/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_14.cpp @@ -20,26 +20,23 @@ * */ -/* - Fontname: Helvetica - Copyright: Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved. - Capital A Height: 14, '1' Height: 13 - Calculated Max Values w=16 h=18 x= 2 y=12 dx=18 dy= 0 ascent=16 len=36 - Font Bounding box w=18 h=19 x= 0 y=-4 - Calculated Min Values x= 0 y=-4 dx= 0 dy= 0 - Pure Font ascent =14 descent=-4 - X Font ascent =14 descent=-4 - Max Font ascent =16 descent=-4 -*/ +/** + * Fontname: Helvetica + * Copyright: Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved. + * Capital A Height: 14, '1' Height: 13 + * Calculated Max Values w=16 h=18 x= 2 y=12 dx=18 dy= 0 ascent=16 len=36 + * Font Bounding box w=18 h=19 x= 0 y=-4 + * Calculated Min Values x= 0 y=-4 dx= 0 dy= 0 + * Pure Font ascent =14 descent=-4 + * X Font ascent =14 descent=-4 + * Max Font ascent =16 descent=-4 + */ -#include "../../../../inc/MarlinConfigPre.h" +#include "../fontdata.h" -#define HELVETICA 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == HELVETICA -#include - -// Helvetica Symbols, capital 'A' heigth: 14px +// Helvetica Symbols, capital 'A' height: 14px extern const uint8_t Helvetica_Symbols_14[43] = { 129,14,8,0,9,0,16,252, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 @@ -48,7 +45,7 @@ extern const uint8_t Helvetica_Symbols_14[43] = { 5,5,5,7,1,8,112,216,136,216,112, }; -// Helvetica, capital 'A' heigth: 14px +// Helvetica, capital 'A' height: 14px extern const uint8_t Helvetica_14[4831] = { 129,14,32,0,255,0,16,252, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_19.cpp b/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_19.cpp index ab2f91577a4d..40012d7501fe 100644 --- a/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/Helvetica/Helvetica_19.cpp @@ -20,26 +20,23 @@ * */ -/* - Fontname: -Adobe-Helvetica-Medium-R-Normal--25-180-100-100-P-130-ISO10646-1 - Copyright: Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved. - Capital A Height: 19, '1' Height: 18 - Calculated Max Values w=22 h=24 x= 3 y=16 dx=25 dy= 0 ascent=24 len=69 - Font Bounding box w=28 h=37 x=-3 y=-8 - Calculated Min Values x=-1 y=-5 dx= 0 dy= 0 - Pure Font ascent =19 descent=-5 - X Font ascent =19 descent=-5 - Max Font ascent =24 descent=-5 -*/ +/** + * Fontname: -Adobe-Helvetica-Medium-R-Normal--25-180-100-100-P-130-ISO10646-1 + * Copyright: Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved. + * Capital A Height: 19, '1' Height: 18 + * Calculated Max Values w=22 h=24 x= 3 y=16 dx=25 dy= 0 ascent=24 len=69 + * Font Bounding box w=28 h=37 x=-3 y=-8 + * Calculated Min Values x=-1 y=-5 dx= 0 dy= 0 + * Pure Font ascent =19 descent=-5 + * X Font ascent =19 descent=-5 + * Max Font ascent =24 descent=-5 + */ -#include "../../../../inc/MarlinConfigPre.h" +#include "../fontdata.h" -#define HELVETICA 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == HELVETICA -#include - -// Helvetica Symbols, capital 'A' heigth: 19px +// Helvetica Symbols, capital 'A' height: 19px extern const uint8_t Helvetica_Symbols_19[45] = { 129,19,8,0,9,0,24,251, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 @@ -49,7 +46,7 @@ extern const uint8_t Helvetica_Symbols_19[45] = { }; -// Helvetica, capital 'A' heigth: 19px +// Helvetica, capital 'A' height: 19px extern const uint8_t Helvetica_19[7298] = { 129,19,32,0,255,0,24,251, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_14.cpp index d9bdde8b2d2d..924033db514d 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0020-0x00ff +// NotoSans Medium 19pt, capital 'A' height: 14px, width: 100%, range: 0x0020-0x00ff extern const uint8_t NotoSans_Medium_14[8358] = { 130,14,32,0,255,0,18,251, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_ASCII_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_ASCII_14.cpp index 0d452c94419d..38960aae7daa 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_ASCII_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_ASCII_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium ASCII 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0020-0x007e +// NotoSans Medium ASCII 19pt, capital 'A' height: 14px, width: 100%, range: 0x0020-0x007e extern const uint8_t NotoSans_Medium_ASCII_14[3865] = { 130,14,32,0,126,0,18,251, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Cyrillic_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Cyrillic_14.cpp index 7c1fc2ac4e24..ddda8029a598 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Cyrillic_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Cyrillic_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Cyrillic 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +// NotoSans Medium Cyrillic 19pt, capital 'A' height: 14px, width: 100%, range: 0x0401-0x0491, glyphs: 74 extern const uint8_t NotoSans_Medium_Cyrillic_14[3616] = { 130,14,1,4,145,4,18,251, // unifont_t // 0x0401 Ё diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Greek_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Greek_14.cpp index bb0cec7aca43..e8ebafb2b35f 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Greek_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Greek_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Greek 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +// NotoSans Medium Greek 19pt, capital 'A' height: 14px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 extern const uint8_t NotoSans_Medium_Greek_14[3253] = { 130,14,134,3,206,3,18,251, // unifont_t // 0x0386 Ά diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Katakana_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Katakana_14.cpp index eda142fef14d..c2d932784abb 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Katakana_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Katakana_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Katakana 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +// NotoSans Medium Katakana 19pt, capital 'A' height: 14px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 extern const uint8_t NotoSans_Medium_Katakana_14[7913] = { 162,14,160,48,104,136,18,251, // unifont_t // 0x30a0 ゠ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Korean_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Korean_14.cpp index 258ccf879984..c9cee89c78d8 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Korean_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Korean_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Korean 19pt, capital 'A' heigth: 14px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +// NotoSans Medium Korean 19pt, capital 'A' height: 14px, width: 100%, range: 0xac70-0xd788, glyphs: 110 extern const uint8_t NotoSans_Medium_Korean_14[8848] = { 162,14,112,172,136,215,18,251, // unifont_t // 0xac70 거 diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Latin_Extended_A_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Latin_Extended_A_14.cpp index d736d12c1798..e2480d02e2f4 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Latin_Extended_A_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Latin_Extended_A_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Latin Extended-A 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0100-0x017f +// NotoSans Medium Latin Extended-A 19pt, capital 'A' height: 14px, width: 100%, range: 0x0100-0x017f extern const uint8_t NotoSans_Medium_Latin_Extended_A_14[6668] = { 130,14,0,1,127,1,18,251, // unifont_t // 0x0100 Ā diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Simplified_Chinese_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Simplified_Chinese_14.cpp index 04825f3659d2..d40ed58a9675 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Simplified_Chinese_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Simplified_Chinese_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Simplified Chinese 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +// NotoSans Medium Simplified Chinese 19pt, capital 'A' height: 14px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 extern const uint8_t NotoSans_Medium_Simplified_Chinese_14[37028] = { 162,14,28,32,26,255,18,251, // unifont_t // 0x201c “ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Symbols_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Symbols_14.cpp index a806753a97df..1dd62b795f8e 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Symbols_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Symbols_14.cpp @@ -20,21 +20,18 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Symbols 19pt, capital 'A' heigth: 14px, width: 100% +// NotoSans Medium Symbols 19pt, capital 'A' height: 14px, width: 100% extern const uint8_t NotoSans_Medium_Symbols_14[131] = { 130,14,8,0,10,0,18,251, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 11,25,75,13,1,251,1,84,0,11,254,0,15,7,0,15,135,0,14,7,0,14,7,0,15,135,0,14,39,0,15,247,0,14,119,0,15,247,0,14,119,0,15,247,0,14,119,0,14,119,0,47,247,192,120,180,240,247,253,56,223,255,28,223,255,28,235,254,44,117,244,116,46,86,208,6,254,64,0,0,0, // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° 6,7,14,8,1,7,26,64,122,224,224,112,208,112,240,176,63,192,0,0, - // 0x0a - replacement for 0x2026 used in Greek languange files … + // 0x0a - replacement for 0x2026 used in Greek language files … 13,4,16,15,1,255,16,4,1,0,188,47,7,192,184,31,7,192,0,0,0,0, }; diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Traditional_Chinese_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Traditional_Chinese_14.cpp index 863d0c280514..4b63aebf1865 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Traditional_Chinese_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Traditional_Chinese_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Traditional Chinese 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +// NotoSans Medium Traditional Chinese 19pt, capital 'A' height: 14px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 extern const uint8_t NotoSans_Medium_Traditional_Chinese_14[30758] = { 162,14,191,34,26,255,18,251, // unifont_t // 0x22bf ⊿ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Vietnamese_14.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Vietnamese_14.cpp index 6a363582e1bc..42e50e1814b2 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Vietnamese_14.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_14px/NotoSans_Medium_Vietnamese_14.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Vietnamese 19pt, capital 'A' heigth: 14px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +// NotoSans Medium Vietnamese 19pt, capital 'A' height: 14px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 extern const uint8_t NotoSans_Medium_Vietnamese_14[6582] = { 162,14,2,1,249,30,18,251, // unifont_t // 0x0102 Ă diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_16.cpp index 08ec0bf9d054..95441c443c47 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0020-0x00ff +// NotoSans Medium 22pt, capital 'A' height: 16px, width: 100%, range: 0x0020-0x00ff extern const uint8_t NotoSans_Medium_16[10298] = { 130,16,32,0,255,0,21,250, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_ASCII_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_ASCII_16.cpp index cac0216a7581..0c96bd8857a7 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_ASCII_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_ASCII_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium ASCII 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0020-0x007e +// NotoSans Medium ASCII 22pt, capital 'A' height: 16px, width: 100%, range: 0x0020-0x007e extern const uint8_t NotoSans_Medium_ASCII_16[4704] = { 130,16,32,0,126,0,21,250, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Cyrillic_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Cyrillic_16.cpp index 58ecea399fab..628dc214f668 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Cyrillic_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Cyrillic_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Cyrillic 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +// NotoSans Medium Cyrillic 22pt, capital 'A' height: 16px, width: 100%, range: 0x0401-0x0491, glyphs: 74 extern const uint8_t NotoSans_Medium_Cyrillic_16[4473] = { 130,16,1,4,145,4,21,250, // unifont_t // 0x0401 Ё diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Greek_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Greek_16.cpp index f20b747cc479..1f2b966c8f73 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Greek_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Greek_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Greek 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +// NotoSans Medium Greek 22pt, capital 'A' height: 16px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 extern const uint8_t NotoSans_Medium_Greek_16[4013] = { 130,16,134,3,206,3,21,250, // unifont_t // 0x0386 Ά diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Katakana_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Katakana_16.cpp index 18c9345ca37a..8da7297cd90b 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Katakana_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Katakana_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Katakana 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +// NotoSans Medium Katakana 22pt, capital 'A' height: 16px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 extern const uint8_t NotoSans_Medium_Katakana_16[9720] = { 162,16,160,48,104,136,21,250, // unifont_t // 0x30a0 ゠ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Korean_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Korean_16.cpp index 3839ed419e13..bf9698000df2 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Korean_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Korean_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Korean 22pt, capital 'A' heigth: 16px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +// NotoSans Medium Korean 22pt, capital 'A' height: 16px, width: 100%, range: 0xac70-0xd788, glyphs: 110 extern const uint8_t NotoSans_Medium_Korean_16[11557] = { 162,16,112,172,136,215,21,250, // unifont_t // 0xac70 거 diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Latin_Extended_A_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Latin_Extended_A_16.cpp index afce5184244b..23fb2b27c6e0 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Latin_Extended_A_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Latin_Extended_A_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Latin Extended-A 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0100-0x017f +// NotoSans Medium Latin Extended-A 22pt, capital 'A' height: 16px, width: 100%, range: 0x0100-0x017f extern const uint8_t NotoSans_Medium_Latin_Extended_A_16[8564] = { 130,16,0,1,127,1,21,250, // unifont_t // 0x0100 Ā diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Simplified_Chinese_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Simplified_Chinese_16.cpp index aa76df275a9d..a720bf0a3f0c 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Simplified_Chinese_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Simplified_Chinese_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Simplified Chinese 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +// NotoSans Medium Simplified Chinese 22pt, capital 'A' height: 16px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 extern const uint8_t NotoSans_Medium_Simplified_Chinese_16[43240] = { 162,16,28,32,26,255,21,250, // unifont_t // 0x201c “ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Symbols_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Symbols_16.cpp index 63a2a7d071fa..9a2c2eb9b43d 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Symbols_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Symbols_16.cpp @@ -20,21 +20,18 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Symbols 22pt, capital 'A' heigth: 16px, width: 100% +// NotoSans Medium Symbols 22pt, capital 'A' height: 16px, width: 100% extern const uint8_t NotoSans_Medium_Symbols_16[166] = { 130,16,8,0,10,0,21,250, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 13,27,108,15,1,251,1,255,208,0,3,234,240,0,3,128,240,0,3,224,240,0,3,128,240,0,3,224,240,0,3,128,240,0,3,156,240,0,3,253,240,0,3,173,240,0,3,173,240,0,3,253,240,0,3,173,240,0,3,253,240,0,3,173,240,0,3,173,240,0,11,253,248,0,61,45,46,0,116,255,139,0,242,255,227,64,227,255,243,128,227,255,243,64,177,255,215,0,56,127,79,0,31,64,188,0,7,255,224,0,0,89,0,0, // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° 8,8,16,9,1,8,11,208,62,184,176,44,240,29,176,44,126,184,31,224,0,0, - // 0x0a - replacement for 0x2026 used in Greek languange files … + // 0x0a - replacement for 0x2026 used in Greek language files … 16,4,16,18,1,255,56,3,128,56,125,11,208,189,125,7,192,124,0,0,0,0, }; diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Traditional_Chinese_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Traditional_Chinese_16.cpp index 606625646bb6..7aa67765d818 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Traditional_Chinese_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Traditional_Chinese_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Traditional Chinese 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +// NotoSans Medium Traditional Chinese 22pt, capital 'A' height: 16px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 extern const uint8_t NotoSans_Medium_Traditional_Chinese_16[36120] = { 162,16,191,34,26,255,21,250, // unifont_t // 0x22bf ⊿ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Vietnamese_16.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Vietnamese_16.cpp index 3905fba3e99e..099a5b7fcb8f 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Vietnamese_16.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_16px/NotoSans_Medium_Vietnamese_16.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Vietnamese 22pt, capital 'A' heigth: 16px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +// NotoSans Medium Vietnamese 22pt, capital 'A' height: 16px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 extern const uint8_t NotoSans_Medium_Vietnamese_16[8448] = { 162,16,2,1,249,30,21,250, // unifont_t // 0x0102 Ă diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_19.cpp index 925254e7f858..407fc3b5e259 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0020-0x00ff +// NotoSans Medium 26pt, capital 'A' height: 19px, width: 100%, range: 0x0020-0x00ff extern const uint8_t NotoSans_Medium_19[13901] = { 130,19,32,0,255,0,25,249, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_ASCII_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_ASCII_19.cpp index 97ef16cf4474..fd4fa1a659b8 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_ASCII_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_ASCII_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium ASCII 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0020-0x007e +// NotoSans Medium ASCII 26pt, capital 'A' height: 19px, width: 100%, range: 0x0020-0x007e extern const uint8_t NotoSans_Medium_ASCII_19[6379] = { 130,19,32,0,126,0,25,249, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Cyrillic_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Cyrillic_19.cpp index dba08111cec1..707963c94664 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Cyrillic_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Cyrillic_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Cyrillic 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +// NotoSans Medium Cyrillic 26pt, capital 'A' height: 19px, width: 100%, range: 0x0401-0x0491, glyphs: 74 extern const uint8_t NotoSans_Medium_Cyrillic_19[6037] = { 130,19,1,4,145,4,25,249, // unifont_t // 0x0401 Ё diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Greek_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Greek_19.cpp index 497e7fa8e86f..155e93684fa5 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Greek_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Greek_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Greek 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +// NotoSans Medium Greek 26pt, capital 'A' height: 19px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 extern const uint8_t NotoSans_Medium_Greek_19[5416] = { 130,19,134,3,206,3,25,249, // unifont_t // 0x0386 Ά diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Katakana_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Katakana_19.cpp index f5d92c5fd545..d83370291491 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Katakana_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Katakana_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Katakana 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +// NotoSans Medium Katakana 26pt, capital 'A' height: 19px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 extern const uint8_t NotoSans_Medium_Katakana_19[13182] = { 162,19,160,48,104,136,25,249, // unifont_t // 0x30a0 ゠ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Korean_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Korean_19.cpp index 14a0073211f7..436989afc819 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Korean_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Korean_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Korean 26pt, capital 'A' heigth: 19px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +// NotoSans Medium Korean 26pt, capital 'A' height: 19px, width: 100%, range: 0xac70-0xd788, glyphs: 110 extern const uint8_t NotoSans_Medium_Korean_19[15510] = { 162,19,112,172,136,215,25,249, // unifont_t // 0xac70 거 diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Latin_Extended_A_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Latin_Extended_A_19.cpp index ccc23097fe1b..eba3fb1e08c0 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Latin_Extended_A_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Latin_Extended_A_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Latin Extended-A 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0100-0x017f +// NotoSans Medium Latin Extended-A 26pt, capital 'A' height: 19px, width: 100%, range: 0x0100-0x017f extern const uint8_t NotoSans_Medium_Latin_Extended_A_19[11379] = { 130,19,0,1,127,1,25,249, // unifont_t // 0x0100 Ā diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Simplified_Chinese_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Simplified_Chinese_19.cpp index 86621477e140..a4accd83075a 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Simplified_Chinese_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Simplified_Chinese_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Simplified Chinese 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +// NotoSans Medium Simplified Chinese 26pt, capital 'A' height: 19px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 extern const uint8_t NotoSans_Medium_Simplified_Chinese_19[58924] = { 162,19,28,32,26,255,25,249, // unifont_t // 0x201c “ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Symbols_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Symbols_19.cpp index d28f2800d658..9aa12ceb0789 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Symbols_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Symbols_19.cpp @@ -20,21 +20,18 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Symbols 26pt, capital 'A' heigth: 19px, width: 100% +// NotoSans Medium Symbols 26pt, capital 'A' height: 19px, width: 100% extern const uint8_t NotoSans_Medium_Symbols_19[206] = { 130,19,8,0,10,0,25,249, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 15,32,128,17,1,250,0,127,252,0,0,255,254,0,0,240,15,0,0,252,15,0,0,224,15,0,0,224,15,0,0,224,15,0,0,252,15,0,0,224,15,0,0,231,207,0,0,255,207,0,0,231,207,0,0,231,207,0,0,255,207,0,0,231,207,0,0,231,207,0,0,255,207,0,0,231,207,0,0,231,207,0,2,255,207,64,15,135,199,208,62,11,209,240,120,127,252,180,180,255,254,56,240,255,255,60,240,255,255,60,180,255,254,120,124,63,252,244,62,10,146,224,15,208,31,192,2,255,254,0,0,47,224,0, // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° 9,9,27,11,1,10,6,228,0,47,254,0,124,15,64,180,7,128,180,3,192,184,7,128,62,111,0,31,253,0,1,80,0, - // 0x0a - replacement for 0x2026 used in Greek languange files … + // 0x0a - replacement for 0x2026 used in Greek language files … 18,5,25,21,2,255,16,0,64,1,0,252,3,240,15,192,253,3,244,15,208,252,3,240,15,192,16,0,64,1,0, }; diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Traditional_Chinese_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Traditional_Chinese_19.cpp index c34f5bb7f163..3f5ee91514a7 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Traditional_Chinese_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Traditional_Chinese_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Traditional Chinese 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +// NotoSans Medium Traditional Chinese 26pt, capital 'A' height: 19px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 extern const uint8_t NotoSans_Medium_Traditional_Chinese_19[48872] = { 162,19,191,34,26,255,25,249, // unifont_t // 0x22bf ⊿ diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Vietnamese_19.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Vietnamese_19.cpp index 5ff24ab3b066..354e7bd29d99 100644 --- a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Vietnamese_19.cpp +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_19px/NotoSans_Medium_Vietnamese_19.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define NOTOSANS 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == NOTOSANS -#include - -// NotoSans Medium Vietnamese 26pt, capital 'A' heigth: 19px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +// NotoSans Medium Vietnamese 26pt, capital 'A' height: 19px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 extern const uint8_t NotoSans_Medium_Vietnamese_19[11142] = { 162,19,2,1,249,30,25,249, // unifont_t // 0x0102 Ă diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_26.cpp new file mode 100644 index 000000000000..fd49cf1d2951 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_26.cpp @@ -0,0 +1,416 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium 36pt, capital 'A' height: 26px, width: 100%, range: 0x0020-0x00ff +extern const uint8_t NotoSans_Medium_26[24099] = { + 130,26,32,0,255,0,34,247, // unifont_t + // 0x0020 " " + 0,0,0,9,0,0, + // 0x0021 ! + 6,27,54,10,2,255,42,128,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,128,63,128,47,128,47,128,47,128,47,64,47,64,47,64,31,64,5,0,0,0,0,0,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x0022 " + 11,10,30,15,2,16,106,2,168,191,2,252,127,2,252,127,2,252,127,1,248,127,1,248,62,1,248,62,1,244,62,0,244,41,0,160, + // 0x0023 # + 22,26,156,23,1,0,0,0,164,1,160,0,0,1,248,3,240,0,0,2,244,3,240,0,0,3,240,3,224,0,0,3,240,7,224,0,0,3,240,11,208,0,0,7,224,11,192,0,0,11,224,15,192,0,63,255,255,255,255,208,63,255,255,255,255,208,26,175,234,191,170,128,0,31,128,63,0,0,0,47,64,63,0,0,0,47,0,63,0,0,0,63,0,126,0,0,0,127,0,190,0,0,255,255,255,255,255,0,255,255,255,255,255,0,170,254,170,254,170,0,0,252,1,248,0,0,0,252,2,244,0,0,0,248,2,240,0,0,1,244,3,240,0,0,2,244,3,240,0,0,3,240,7,224,0,0,3,240,7,208,0,0, + // 0x0024 $ + 17,31,155,21,2,253,0,1,64,0,0,0,3,208,0,0,0,3,208,0,0,0,3,228,0,0,1,255,255,228,0,15,255,255,255,0,63,255,255,254,0,191,211,208,108,0,255,3,208,0,0,255,3,208,0,0,255,3,208,0,0,191,131,208,0,0,127,251,208,0,0,47,255,224,0,0,7,255,255,64,0,0,127,255,244,0,0,3,255,253,0,0,3,235,255,0,0,3,208,191,128,0,3,208,63,128,0,3,208,63,128,64,3,208,127,128,249,3,210,255,0,255,255,255,254,0,255,255,255,244,0,47,255,255,128,0,0,23,224,0,0,0,3,208,0,0,0,3,208,0,0,0,3,208,0,0,0,0,0,0,0, + // 0x0025 % + 28,27,189,31,1,255,1,255,64,0,0,168,0,11,255,224,0,3,244,0,31,235,244,0,7,240,0,63,129,252,0,15,208,0,63,0,253,0,31,128,0,63,0,189,0,63,0,0,127,0,190,0,190,0,0,126,0,126,0,252,0,0,126,0,126,2,244,0,0,127,0,190,7,240,0,0,63,0,189,15,208,106,64,63,0,253,31,195,255,240,47,129,252,63,79,255,248,15,235,248,126,31,209,252,11,255,240,252,47,128,190,1,255,130,248,63,64,127,0,0,3,240,63,0,63,0,0,11,224,63,0,63,0,0,15,192,63,0,63,0,0,63,64,63,0,63,0,0,127,0,63,64,63,0,0,253,0,47,64,127,0,1,248,0,31,192,253,0,3,240,0,15,230,252,0,11,224,0,7,255,244,0,15,192,0,1,255,208,0,0,0,0,0,21,0, + // 0x0026 & + 24,27,162,27,2,255,0,31,255,64,0,0,0,255,255,240,0,0,3,255,255,248,0,0,7,252,7,252,0,0,15,240,1,253,0,0,15,240,0,254,0,0,15,240,1,253,0,0,11,240,2,252,0,0,3,252,11,248,0,0,2,254,47,240,0,0,0,255,255,192,0,0,0,63,254,0,0,0,1,255,248,0,0,0,7,255,254,0,3,252,47,249,255,128,7,248,127,208,127,224,11,240,255,128,15,248,15,240,255,0,3,254,47,208,255,0,0,255,255,192,255,0,0,63,255,64,255,0,0,15,254,0,255,128,0,31,255,0,127,228,1,255,255,192,63,255,255,255,191,240,15,255,255,252,15,252,1,255,255,144,3,255,0,1,80,0,0,0, + // 0x0027 ' + 4,10,10,9,2,16,106,191,127,127,127,127,62,62,62,41, + // 0x0028 ( + 9,32,96,11,1,250,0,26,128,0,63,64,0,254,0,1,252,0,3,248,0,7,240,0,15,240,0,15,208,0,47,192,0,63,192,0,63,128,0,63,64,0,127,64,0,127,0,0,191,0,0,191,0,0,191,0,0,191,0,0,127,0,0,127,64,0,63,64,0,63,128,0,63,192,0,47,192,0,31,208,0,15,240,0,11,240,0,3,248,0,2,252,0,0,254,0,0,63,64,0,26,128, + // 0x0029 ) + 9,32,96,11,1,250,106,0,0,63,64,0,31,192,0,15,224,0,7,240,0,3,248,0,2,252,0,1,253,0,0,254,0,0,191,0,0,127,0,0,127,64,0,63,128,0,63,128,0,63,128,0,63,192,0,63,192,0,63,128,0,63,128,0,63,128,0,63,64,0,127,64,0,191,0,0,255,0,0,253,0,2,252,0,3,248,0,7,240,0,15,224,0,31,192,0,63,64,0,106,0,0, + // 0x002a * + 18,18,90,20,1,10,0,1,84,0,0,0,3,248,0,0,0,3,248,0,0,0,3,244,0,0,0,2,244,0,0,16,2,240,0,64,63,65,240,111,192,127,255,251,255,192,191,255,255,255,208,5,111,254,149,0,0,15,254,0,0,0,47,191,64,0,0,127,31,192,0,0,254,15,240,0,3,252,11,248,0,2,252,3,248,0,0,36,1,128,0,0,0,0,0,0, + // 0x002b + + 18,18,90,21,1,4,0,0,84,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,1,252,0,0,127,255,255,255,240,127,255,255,255,240,63,255,255,255,224,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0, + // 0x002c , + 6,9,18,10,1,251,15,240,15,240,31,224,47,192,47,192,63,64,63,0,126,0,104,0, + // 0x002d - + 10,4,12,12,1,8,21,85,64,191,255,208,191,255,208,191,255,208, + // 0x002e . + 6,6,12,10,2,255,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x002f / + 14,26,104,14,0,0,0,0,10,144,0,0,47,192,0,0,63,128,0,0,127,64,0,0,191,0,0,0,254,0,0,1,252,0,0,3,252,0,0,3,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0,255,0,0,0,253,0,0,2,252,0,0,3,248,0,0,7,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0, + // 0x0030 0 + 18,27,135,21,1,255,0,27,255,64,0,0,191,255,240,0,3,255,255,252,0,7,254,7,255,0,15,240,0,191,64,31,224,0,63,192,47,192,0,47,192,63,192,0,31,208,63,192,0,15,224,63,128,0,15,224,127,128,0,15,240,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,127,128,0,15,240,63,128,0,15,240,63,128,0,15,224,63,192,0,31,208,47,192,0,47,208,31,208,0,63,192,15,240,0,191,128,7,252,2,255,0,3,255,255,253,0,0,255,255,248,0,0,31,255,208,0,0,0,84,0,0, + // 0x0031 1 + 11,26,78,21,3,0,0,2,164,0,31,244,0,191,244,3,255,244,15,255,244,127,215,244,255,71,244,60,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244, + // 0x0032 2 + 18,26,130,21,1,0,0,31,255,128,0,2,255,255,244,0,31,255,255,253,0,63,249,7,255,0,15,128,0,255,128,5,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,15,244,0,0,0,63,208,0,0,0,255,64,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,64,0,0,3,253,0,0,0,15,244,0,0,0,63,245,85,85,80,127,255,255,255,240,127,255,255,255,240,127,255,255,255,240, + // 0x0033 3 + 18,27,135,21,1,255,0,111,255,128,0,11,255,255,248,0,63,255,255,254,0,47,228,7,255,64,14,0,0,191,128,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,0,0,0,7,253,0,0,127,255,240,0,0,191,255,64,0,0,191,255,248,0,0,21,107,255,0,0,0,0,191,192,0,0,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,47,224,0,0,0,127,192,121,0,2,255,128,127,255,255,255,0,127,255,255,248,0,27,255,255,144,0,0,21,80,0,0, + // 0x0034 4 + 20,26,130,21,0,0,0,0,0,191,64,0,0,1,255,64,0,0,3,255,64,0,0,11,255,64,0,0,31,255,64,0,0,63,127,64,0,0,254,127,64,0,2,252,127,64,0,3,240,127,64,0,15,224,127,64,0,47,192,127,64,0,127,0,127,64,0,253,0,127,64,2,252,0,127,64,7,240,0,127,64,15,208,0,127,64,47,128,0,127,64,127,255,255,255,255,127,255,255,255,255,127,255,255,255,255,21,85,85,191,149,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64, + // 0x0035 5 + 17,27,135,21,2,255,26,170,170,168,0,31,255,255,252,0,47,255,255,252,0,47,234,170,168,0,47,192,0,0,0,47,192,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,64,0,0,0,63,255,249,0,0,63,255,255,224,0,63,255,255,248,0,10,81,111,254,0,0,0,2,255,0,0,0,0,255,64,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,64,0,0,0,255,0,64,0,1,255,0,249,0,27,253,0,255,255,255,248,0,255,255,255,208,0,47,255,254,0,0,0,21,64,0,0, + // 0x0036 6 + 17,27,135,21,2,255,0,1,191,252,0,0,47,255,252,0,0,255,255,252,0,3,255,144,4,0,11,248,0,0,0,31,224,0,0,0,63,192,0,0,0,63,128,0,0,0,127,0,0,0,0,191,0,0,0,0,254,11,255,208,0,254,127,255,248,0,254,255,255,254,0,255,240,2,255,0,255,128,0,191,128,255,0,0,63,192,254,0,0,63,192,254,0,0,47,192,255,0,0,63,192,191,0,0,63,192,127,64,0,63,128,63,192,0,191,64,31,244,2,255,0,11,255,255,252,0,2,255,255,244,0,0,127,255,128,0,0,1,80,0,0, + // 0x0037 7 + 18,26,130,21,1,0,106,170,170,170,160,191,255,255,255,240,191,255,255,255,240,106,170,170,175,240,0,0,0,31,208,0,0,0,63,192,0,0,0,127,64,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,3,248,0,0,0,11,240,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,191,64,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,7,248,0,0,0,15,240,0,0,0,31,240,0,0,0,63,208,0,0,0,63,192,0,0,0,191,64,0,0,0,255,0,0,0, + // 0x0038 8 + 18,27,135,21,1,255,0,27,255,128,0,1,255,255,248,0,7,255,255,255,0,15,248,1,255,128,31,224,0,63,192,47,192,0,47,192,47,192,0,47,192,31,208,0,63,192,15,240,0,63,128,11,252,1,255,0,2,255,155,252,0,0,191,255,224,0,0,47,255,128,0,0,191,255,244,0,3,255,95,254,0,15,244,1,255,128,47,208,0,63,192,63,128,0,15,224,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,63,192,0,31,224,47,240,0,127,192,15,255,171,255,64,3,255,255,253,0,0,127,255,224,0,0,0,84,0,0, + // 0x0039 9 + 18,27,135,21,1,255,0,27,254,64,0,0,255,255,240,0,7,255,255,252,0,15,253,7,255,0,47,224,0,191,64,63,192,0,63,192,63,128,0,31,208,127,64,0,15,224,127,64,0,15,224,127,64,0,15,240,63,128,0,15,240,63,192,0,63,240,47,224,0,191,240,15,254,91,255,240,7,255,255,207,224,1,255,255,15,224,0,6,144,15,208,0,0,0,31,192,0,0,0,47,192,0,0,0,63,128,0,0,0,255,0,0,0,2,254,0,0,0,31,252,0,11,255,255,240,0,11,255,255,128,0,11,255,248,0,0,0,84,0,0,0, + // 0x003a : + 6,21,42,10,2,255,31,64,127,192,191,208,127,208,63,128,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x003b ; + 7,25,50,10,1,251,11,208,31,240,47,244,47,240,15,224,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,240,31,224,47,208,47,192,63,128,63,0,127,0,189,0,168,0, + // 0x003c < + 18,18,90,21,1,4,0,0,0,0,96,0,0,0,7,240,0,0,0,127,240,0,0,7,255,208,0,0,127,248,0,0,7,255,128,0,0,127,248,0,0,7,255,128,0,0,63,244,0,0,0,127,208,0,0,0,63,254,0,0,0,6,255,228,0,0,0,47,255,64,0,0,1,255,248,0,0,0,31,255,208,0,0,0,191,240,0,0,0,11,240,0,0,0,0,96, + // 0x003d = + 17,11,55,21,2,7,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128,85,85,85,85,0, + // 0x003e > + 18,18,90,21,1,4,96,0,0,0,0,126,0,0,0,0,127,224,0,0,0,47,254,0,0,0,1,255,224,0,0,0,31,254,0,0,0,1,255,224,0,0,0,31,254,0,0,0,0,191,224,0,0,0,47,240,0,0,6,255,224,0,0,127,254,0,0,11,255,208,0,1,255,249,0,0,47,255,128,0,0,127,244,0,0,0,127,64,0,0,0,96,0,0,0,0, + // 0x003f ? + 15,27,108,16,0,255,1,191,249,0,47,255,255,192,127,255,255,240,63,144,111,248,20,0,3,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,3,252,0,0,15,244,0,0,63,224,0,0,255,128,0,3,254,0,0,15,244,0,0,31,208,0,0,63,128,0,0,63,64,0,0,63,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,127,192,0,0,191,192,0,0,191,192,0,0,127,128,0,0,5,0,0, + // 0x0040 @ + 29,30,240,32,2,252,0,0,1,106,164,0,0,0,0,0,111,255,255,208,0,0,0,3,255,255,255,252,0,0,0,31,249,0,6,255,64,0,0,191,128,0,0,63,208,0,1,253,0,0,0,11,240,0,7,244,0,0,0,2,252,0,15,208,0,111,164,0,252,0,31,192,11,255,255,128,126,0,63,0,63,255,255,128,63,0,63,0,191,64,47,128,63,0,126,0,253,0,47,128,47,0,189,2,252,0,47,64,47,64,252,3,244,0,47,64,47,64,252,3,244,0,63,64,47,64,252,3,240,0,63,64,63,0,252,3,244,0,63,64,63,0,252,2,248,0,127,64,126,0,252,1,252,0,255,128,252,0,189,0,255,155,251,231,248,0,126,0,63,255,195,255,224,0,63,0,11,254,0,255,64,0,47,128,0,0,0,0,0,0,15,224,0,0,0,0,0,0,7,248,0,0,0,0,0,0,2,255,64,0,1,160,0,0,0,127,254,170,191,224,0,0,0,11,255,255,255,208,0,0,0,0,111,255,249,0,0,0,0,0,0,0,0,0,0,0, + // 0x0041 A + 24,26,156,24,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0042 B + 19,26,130,24,3,0,106,170,169,64,0,191,255,255,248,0,191,255,255,255,64,191,170,175,255,192,191,64,0,127,224,191,64,0,47,240,191,64,0,15,240,191,64,0,15,240,191,64,0,31,224,191,64,0,63,208,191,64,1,255,128,191,255,255,254,0,191,255,255,224,0,191,255,255,255,0,191,64,5,255,208,191,64,0,47,240,191,64,0,15,244,191,64,0,7,248,191,64,0,7,248,191,64,0,11,248,191,64,0,15,244,191,64,0,47,240,191,64,22,255,224,191,255,255,255,192,191,255,255,254,0,191,255,255,144,0, + // 0x0043 C + 20,27,135,23,2,255,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x0044 D + 21,26,156,26,3,0,106,170,169,0,0,0,191,255,255,248,0,0,191,255,255,255,64,0,191,170,175,255,224,0,191,64,0,127,248,0,191,64,0,11,253,0,191,64,0,2,255,0,191,64,0,0,255,64,191,64,0,0,191,128,191,64,0,0,127,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,127,192,191,64,0,0,191,128,191,64,0,0,255,64,191,64,0,2,255,0,191,64,0,11,253,0,191,64,0,127,248,0,191,149,91,255,240,0,191,255,255,255,128,0,191,255,255,248,0,0,191,255,254,64,0,0, + // 0x0045 E + 15,26,104,20,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0046 F + 15,26,104,19,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,240,191,255,255,240,191,255,255,240,191,85,85,80,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0, + // 0x0047 G + 22,27,162,26,2,255,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0, + // 0x0048 H + 21,26,156,27,3,0,106,0,0,0,106,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,191,85,85,85,191,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64, + // 0x0049 I + 11,26,78,13,1,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x004a J + 10,34,102,10,253,248,0,10,160,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,15,240,0,15,240,0,47,224,85,191,208,255,255,128,255,254,0,191,228,0,0,0,0, + // 0x004b K + 20,26,130,23,3,0,106,0,0,2,168,191,64,0,15,244,191,64,0,63,224,191,64,0,191,128,191,64,2,255,0,191,64,7,252,0,191,64,31,240,0,191,64,63,192,0,191,64,255,64,0,191,67,253,0,0,191,79,248,0,0,191,111,240,0,0,191,255,244,0,0,191,255,252,0,0,191,247,254,0,0,191,208,255,64,0,191,64,191,192,0,191,64,63,240,0,191,64,15,248,0,191,64,7,252,0,191,64,2,255,0,191,64,0,255,128,191,64,0,63,208,191,64,0,47,240,191,64,0,15,248,191,64,0,3,253, + // 0x004c L + 16,26,104,19,3,0,106,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x004d M + 27,26,182,33,3,0,106,160,0,0,0,42,164,191,244,0,0,0,127,248,191,252,0,0,0,191,248,191,252,0,0,0,255,248,191,253,0,0,1,255,248,191,191,0,0,3,247,248,191,127,0,0,3,243,248,191,63,128,0,11,227,248,191,47,192,0,15,211,248,191,31,208,0,31,195,248,191,15,224,0,47,131,248,191,11,240,0,63,67,248,191,3,244,0,127,3,248,191,3,248,0,254,3,248,191,1,252,0,252,3,248,191,0,253,2,252,3,248,191,0,255,3,244,3,248,191,0,127,7,240,3,248,191,0,63,75,224,3,248,191,0,47,207,208,3,248,191,0,31,239,192,3,248,191,0,15,255,128,3,248,191,0,11,255,0,3,248,191,0,7,255,0,3,248,191,0,3,254,0,3,248,191,0,2,252,0,3,248, + // 0x004e N + 22,26,156,28,3,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x004f O + 24,27,162,28,2,255,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x0050 P + 17,26,130,22,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,252,0,191,170,191,255,0,191,64,2,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,192,191,64,0,255,128,191,64,27,255,0,191,255,255,253,0,191,255,255,240,0,191,255,254,64,0,191,84,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0, + // 0x0051 Q + 24,33,198,28,2,249,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,208,0,0,0,5,127,240,0,0,0,0,15,252,0,0,0,0,7,254,0,0,0,0,1,255,128,0,0,0,0,191,224,0,0,0,0,47,248,0,0,0,0,0,0, + // 0x0052 R + 19,26,130,23,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,253,0,191,170,191,255,0,191,64,1,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,128,191,64,2,255,0,191,234,191,253,0,191,255,255,244,0,191,255,255,128,0,191,170,191,192,0,191,64,47,208,0,191,64,15,240,0,191,64,11,248,0,191,64,3,253,0,191,64,1,255,0,191,64,0,191,128,191,64,0,63,192,191,64,0,47,240,191,64,0,15,244,191,64,0,7,252, + // 0x0053 S + 16,27,108,20,2,255,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,21,64,0, + // 0x0054 T + 20,26,130,20,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x0055 U + 21,27,162,27,3,255,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x0056 V + 22,26,156,22,0,0,170,0,0,0,10,160,191,64,0,0,31,224,63,192,0,0,47,208,63,192,0,0,63,192,47,208,0,0,127,128,15,240,0,0,191,64,15,240,0,0,255,0,7,244,0,1,254,0,3,252,0,2,252,0,3,252,0,3,252,0,1,253,0,7,248,0,0,255,0,11,240,0,0,191,0,15,240,0,0,127,128,31,208,0,0,63,192,63,192,0,0,47,192,63,192,0,0,31,224,127,64,0,0,15,240,255,0,0,0,11,240,254,0,0,0,7,245,253,0,0,0,3,250,252,0,0,0,2,255,248,0,0,0,0,255,244,0,0,0,0,255,240,0,0,0,0,127,224,0,0,0,0,63,192,0,0, + // 0x0057 W + 34,26,234,34,0,0,106,64,0,2,168,0,0,26,144,127,128,0,7,252,0,0,47,192,63,192,0,11,253,0,0,63,192,63,192,0,15,254,0,0,63,128,47,208,0,31,255,0,0,127,64,31,224,0,47,255,64,0,191,0,15,240,0,63,191,128,0,255,0,15,240,0,63,111,192,0,254,0,11,244,0,127,31,192,1,253,0,7,248,0,191,15,208,2,252,0,3,252,0,254,15,240,3,252,0,3,252,1,253,11,240,3,248,0,2,253,2,252,3,244,7,244,0,1,254,3,248,3,248,11,240,0,0,255,3,244,2,252,15,240,0,0,191,7,240,1,252,15,224,0,0,127,75,240,0,253,31,208,0,0,63,143,224,0,254,47,192,0,0,63,143,208,0,191,63,192,0,0,47,223,192,0,63,63,64,0,0,31,239,128,0,63,191,0,0,0,15,255,64,0,47,255,0,0,0,15,255,0,0,31,254,0,0,0,11,255,0,0,15,253,0,0,0,7,254,0,0,15,252,0,0,0,3,253,0,0,11,252,0,0, + // 0x0058 X + 22,26,156,22,0,0,42,128,0,0,42,128,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,2,254,0,11,248,0,0,255,0,15,240,0,0,127,192,47,192,0,0,47,208,127,128,0,0,15,240,255,0,0,0,7,250,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,208,0,0,0,0,255,240,0,0,0,2,255,244,0,0,0,3,255,252,0,0,0,15,241,254,0,0,0,31,208,255,64,0,0,63,192,63,192,0,0,191,64,47,224,0,1,254,0,15,244,0,3,252,0,7,252,0,11,244,0,2,254,0,31,240,0,0,255,0,63,192,0,0,127,192,191,128,0,0,63,224, + // 0x0059 Y + 21,26,156,21,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x005a Z + 19,26,130,21,1,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x005b [ + 8,32,64,12,3,250,170,170,255,255,255,255,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,255,255,255,255,170,170, + // 0x005c "\" + 14,26,104,14,0,0,106,0,0,0,63,64,0,0,63,128,0,0,31,192,0,0,15,208,0,0,11,240,0,0,7,240,0,0,3,248,0,0,2,252,0,0,0,253,0,0,0,254,0,0,0,127,0,0,0,63,64,0,0,63,192,0,0,31,192,0,0,15,224,0,0,11,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,0,253,0,0,0,255,0,0,0,127,0,0,0,63,128,0,0,47,192,0,0,31,208, + // 0x005d ] + 8,32,64,12,1,250,170,170,255,255,255,255,0,191,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,191,255,255,255,255,170,170, + // 0x005e ^ + 18,17,85,21,1,9,0,1,240,0,0,0,3,248,0,0,0,7,252,0,0,0,11,254,0,0,0,15,255,0,0,0,47,95,128,0,0,63,15,192,0,0,189,7,224,0,0,252,3,240,0,2,248,1,248,0,3,240,0,253,0,7,224,0,127,0,15,192,0,63,64,31,128,0,31,192,63,64,0,15,208,127,0,0,7,240,105,0,0,2,160, + // 0x005f _ + 16,3,12,16,0,250,255,255,255,254,255,255,255,254,170,170,170,169, + // 0x0060 ` + 9,7,21,11,1,21,106,128,0,63,224,0,15,240,0,3,252,0,0,254,0,0,63,64,0,0,0, + // 0x0061 a + 17,21,105,21,1,255,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0062 b + 18,29,145,22,3,255,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,170,0,0,254,47,255,224,0,254,191,255,252,0,255,254,91,255,0,255,208,1,255,64,255,128,0,127,128,255,0,0,63,192,255,0,0,47,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,191,128,255,240,2,255,0,255,255,255,253,0,252,127,255,248,0,252,11,255,208,0,0,0,20,0,0, + // 0x0063 c + 15,21,84,18,2,255,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x0064 d + 18,29,145,22,2,255,0,0,0,5,64,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,26,164,31,208,1,255,255,31,208,11,255,255,223,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,255,239,208,7,255,255,143,208,0,191,253,15,208,0,5,64,0,0, + // 0x0065 e + 17,21,105,21,2,255,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0066 f + 14,28,112,13,0,0,0,0,89,64,0,11,255,240,0,63,255,240,0,127,250,224,0,255,64,0,0,255,0,0,0,255,0,0,0,254,0,0,1,255,85,0,47,255,255,64,127,255,255,64,42,255,170,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0, + // 0x0067 g + 18,29,145,22,2,247,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x0068 h + 17,28,140,23,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,170,64,0,254,31,255,244,0,254,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x0069 i + 4,27,27,10,3,0,104,255,255,255,40,0,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006a j + 9,36,108,10,254,247,0,26,0,0,63,192,0,63,192,0,63,192,0,10,0,0,0,0,0,0,0,0,21,64,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,128,0,191,128,170,255,64,255,254,0,255,248,0,106,64,0, + // 0x006b k + 17,28,140,20,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,85,0,255,0,3,254,0,255,0,15,248,0,255,0,47,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,254,31,240,0,0,254,127,192,0,0,254,255,192,0,0,255,255,240,0,0,255,239,248,0,0,255,131,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,63,224,0,255,0,15,244,0,255,0,7,252,0,255,0,2,255,0,255,0,0,255,128, + // 0x006c l + 4,28,28,10,3,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 29,20,160,34,3,0,84,1,170,0,1,170,64,0,252,47,255,224,47,255,240,0,253,191,255,252,191,255,252,0,255,253,95,255,254,91,254,0,255,208,2,255,224,1,255,0,255,128,0,255,192,0,255,0,255,64,0,255,64,0,191,64,255,0,0,255,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64, + // 0x006e n + 17,20,100,23,3,0,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x006f o + 18,21,105,22,2,255,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x0070 p + 18,29,145,22,3,247,84,1,170,0,0,253,31,255,224,0,253,191,255,252,0,255,254,91,255,0,255,208,1,255,64,255,128,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,255,128,255,240,2,255,0,255,255,255,253,0,254,127,255,248,0,254,11,255,208,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x0071 q + 18,29,145,22,2,247,0,26,160,5,64,1,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,255,239,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,26,128, + // 0x0072 r + 12,20,60,15,3,0,84,1,169,252,15,254,253,63,253,254,255,253,255,248,0,255,208,0,255,128,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0073 s + 14,21,84,17,2,255,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x0074 t + 13,25,100,14,0,255,0,60,0,0,0,188,0,0,0,252,0,0,0,252,0,0,3,253,85,64,47,255,255,128,127,255,255,128,43,254,170,64,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,253,0,0,1,255,0,0,0,255,255,192,0,127,255,192,0,31,255,128,0,0,80,0, + // 0x0075 u + 17,21,105,23,3,255,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x0076 v + 19,20,100,19,0,0,85,0,0,1,84,191,64,0,7,248,127,128,0,15,240,63,192,0,15,240,47,208,0,31,208,15,240,0,63,192,15,240,0,63,128,7,244,0,191,64,3,252,0,255,0,2,252,1,254,0,1,254,2,252,0,0,255,3,252,0,0,127,7,244,0,0,63,139,240,0,0,47,207,224,0,0,31,223,208,0,0,15,255,192,0,0,11,255,128,0,0,3,255,0,0,0,3,255,0,0, + // 0x0077 w + 29,20,160,29,0,0,21,0,0,85,64,0,21,64,127,128,0,255,192,0,127,64,63,192,0,255,192,0,191,0,63,192,1,255,208,0,255,0,47,208,2,251,240,0,254,0,15,224,3,243,240,2,253,0,15,240,7,243,244,3,252,0,11,240,11,226,248,3,248,0,7,244,15,209,252,7,244,0,3,248,15,192,252,11,240,0,3,252,31,192,254,15,240,0,2,252,63,128,191,15,224,0,1,253,63,0,127,31,208,0,0,254,127,0,63,111,192,0,0,254,126,0,47,175,192,0,0,127,189,0,31,191,64,0,0,63,252,0,15,255,0,0,0,63,252,0,15,255,0,0,0,47,244,0,11,254,0,0,0,31,240,0,7,253,0,0, + // 0x0078 x + 18,20,100,20,1,0,85,0,0,21,64,191,192,0,63,192,63,208,0,255,64,15,240,2,254,0,7,252,3,252,0,3,253,15,244,0,0,255,31,224,0,0,127,255,192,0,0,47,255,0,0,0,15,254,0,0,0,15,253,0,0,0,47,255,0,0,0,127,255,192,0,0,255,47,224,0,2,254,15,240,0,7,252,7,252,0,15,240,2,254,0,47,224,0,255,64,127,192,0,127,192,255,0,0,47,224, + // 0x0079 y + 19,29,145,19,0,247,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x007a z + 15,20,80,17,1,0,21,85,85,80,63,255,255,248,63,255,255,248,42,170,175,244,0,0,31,224,0,0,63,192,0,0,255,0,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,128,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,192,0,0,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x007b { + 12,32,96,14,1,250,0,0,105,0,11,254,0,47,254,0,127,228,0,191,64,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,254,0,2,253,0,175,248,0,255,144,0,255,208,0,175,252,0,2,253,0,0,254,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,64,0,127,228,0,47,254,0,11,254,0,0,105, + // 0x007c | + 4,37,37,20,8,247,20,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,104, + // 0x007d } + 12,32,96,14,1,250,169,0,0,255,208,0,255,248,0,95,252,0,2,253,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,0,0,191,64,0,63,250,0,7,255,0,7,255,0,63,250,0,191,64,0,255,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,2,253,0,95,252,0,255,248,0,255,208,0,169,0,0, + // 0x007e ~ + 18,5,25,21,1,10,11,255,128,0,32,63,255,253,66,240,127,255,255,255,240,120,1,191,255,192,16,0,6,249,0, + // 0x007f - 0x009a Control Characters + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00a0 "�" + 0,0,0,9,0,0, + // 0x00a1 ¡ + 6,27,54,10,2,249,10,0,63,192,127,208,127,208,63,192,5,0,0,0,0,0,10,0,47,64,47,64,47,64,47,64,47,128,63,128,63,128,63,128,63,128,63,192,63,192,63,192,63,192,63,192,63,192,127,192,127,192,42,128, + // 0x00a2 ¢ + 15,27,108,21,3,255,0,3,240,0,0,3,240,0,0,3,240,0,0,47,255,224,2,255,255,244,11,255,255,240,31,248,1,160,63,208,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,224,0,0,31,254,86,244,11,255,255,244,1,255,255,240,0,27,254,64,0,3,240,0,0,3,240,0,0,3,240,0,0,1,80,0, + // 0x00a3 £ + 19,26,130,21,1,0,0,1,191,249,0,0,15,255,255,208,0,63,255,255,192,0,191,208,27,128,0,255,0,0,0,0,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,22,254,85,80,0,191,255,255,248,0,191,255,255,248,0,106,255,170,164,0,1,254,0,0,0,1,254,0,0,0,1,253,0,0,0,1,253,0,0,0,1,253,0,0,0,3,252,0,0,0,11,244,0,0,0,127,229,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x00a4 ¤ + 16,17,68,21,2,4,20,0,0,8,125,6,164,63,191,191,255,255,47,255,255,252,15,244,11,244,15,192,1,248,31,64,0,252,47,0,0,188,47,0,0,125,47,0,0,188,31,128,0,252,15,224,3,248,15,254,111,244,63,255,255,253,191,111,253,191,60,0,64,45,0,0,0,0, + // 0x00a5 ¥ + 20,26,130,21,0,0,106,64,0,0,170,63,192,0,1,253,31,208,0,3,252,15,240,0,7,244,7,244,0,15,240,3,252,0,31,208,1,253,0,63,192,0,255,0,127,64,0,127,64,255,0,0,63,193,252,0,0,31,211,248,0,0,15,247,240,0,0,3,255,224,0,0,87,255,213,64,2,255,255,255,192,2,255,255,255,192,0,85,191,85,64,0,0,191,0,0,0,0,191,0,0,2,255,255,255,192,2,255,255,255,192,1,170,255,170,128,0,0,191,0,0,0,0,191,0,0,0,0,191,0,0,0,0,191,0,0, + // 0x00a6 ¦ + 4,37,37,20,8,247,20,189,189,189,189,189,189,189,189,189,189,189,189,189,104,0,0,0,0,0,0,0,20,189,189,189,189,189,189,189,189,189,189,189,189,189,104, + // 0x00a7 § + 14,29,116,18,2,255,0,22,80,0,7,255,255,144,47,255,255,208,63,208,27,192,191,0,0,64,191,0,0,0,127,64,0,0,63,228,0,0,15,255,64,0,7,255,248,0,31,239,255,0,63,64,191,192,126,0,31,224,189,0,7,240,190,0,3,240,127,64,7,240,63,224,11,224,15,255,111,192,2,255,255,0,0,31,255,64,0,1,255,192,0,0,31,224,0,0,11,240,0,0,11,240,208,0,15,224,255,166,191,192,255,255,255,64,47,255,248,0,0,0,0,0, + // 0x00a8 ¨ + 11,5,15,21,5,22,20,0,80,191,2,248,191,3,252,127,2,248,20,0,80, + // 0x00a9 © + 26,27,189,30,2,255,0,0,111,255,144,0,0,0,7,255,255,253,0,0,0,63,208,0,191,192,0,1,253,0,0,7,240,0,3,224,0,0,0,252,0,15,128,6,255,128,63,0,47,0,47,255,240,15,64,61,0,255,155,208,7,192,124,1,252,0,0,3,208,180,3,240,0,0,2,224,240,7,224,0,0,1,240,240,7,208,0,0,0,240,240,11,208,0,0,0,240,240,11,208,0,0,0,240,240,11,208,0,0,0,240,240,7,208,0,0,1,240,244,3,240,0,0,2,240,184,3,244,0,0,3,208,60,0,254,65,144,7,192,47,0,127,255,208,15,128,15,128,11,255,128,47,0,7,208,0,0,0,189,0,2,248,0,0,3,248,0,0,127,128,0,111,208,0,0,15,255,175,255,0,0,0,1,191,255,228,0,0,0,0,0,80,0,0,0, + // 0x00aa ª + 11,13,39,13,1,13,6,254,64,63,255,224,45,7,240,0,1,244,0,1,244,11,255,244,63,234,244,189,0,244,252,1,244,252,3,244,191,191,244,47,248,180,1,64,0, + // 0x00ab « + 17,16,80,19,1,1,0,15,0,30,0,0,63,192,63,128,0,191,64,255,0,2,254,3,252,0,7,248,11,244,0,15,240,47,224,0,63,192,127,128,0,127,128,255,0,0,63,208,63,192,0,15,240,31,224,0,3,252,11,248,0,1,254,2,253,0,0,191,128,255,0,0,47,192,63,128,0,14,0,13,0,0,0,0,0,0, + // 0x00ac ¬ + 18,10,50,21,1,4,127,255,255,255,240,127,255,255,255,240,63,255,255,255,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,1,80, + // 0x00ad ­ + 10,4,12,12,1,8,21,85,64,191,255,208,191,255,208,191,255,208, + // 0x00ae ® + 26,27,189,30,2,255,0,0,111,255,144,0,0,0,7,255,255,253,0,0,0,63,208,0,191,192,0,1,253,0,0,7,240,0,3,224,0,0,0,252,0,15,128,170,169,0,63,0,47,0,255,255,192,15,64,61,0,254,175,240,7,192,124,0,252,3,240,3,208,180,0,252,2,244,2,224,240,0,252,2,244,1,240,240,0,252,3,240,0,240,240,0,253,111,224,0,240,240,0,255,255,64,0,240,240,0,255,255,0,0,240,240,0,252,47,64,1,240,244,0,252,15,192,2,240,184,0,252,7,224,3,208,60,0,252,3,240,7,192,47,0,252,1,252,15,128,15,128,252,0,189,47,0,7,208,0,0,0,189,0,2,248,0,0,3,248,0,0,127,128,0,111,208,0,0,15,255,175,255,0,0,0,1,191,255,228,0,0,0,0,0,80,0,0,0, + // 0x00af ¯ + 18,3,15,18,0,27,255,255,255,255,240,255,255,255,255,240,170,170,170,170,160, + // 0x00b0 ° + 12,12,36,15,2,14,6,255,64,47,255,240,127,155,248,252,0,252,248,0,125,248,0,62,248,0,61,252,0,189,127,70,252,47,255,240,11,255,128,0,16,0, + // 0x00b1 ± + 18,22,110,21,1,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,42,170,254,170,144,127,255,255,255,240,127,255,255,255,240,21,86,253,85,80,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,164,0,0,0,0,0,0,0,127,255,255,255,240,127,255,255,255,240,127,255,255,255,240, + // 0x00b2 ² + 11,17,51,13,1,14,1,169,0,47,255,192,255,255,240,56,3,240,0,3,244,0,3,240,0,3,240,0,15,208,0,47,128,0,190,0,2,248,0,11,224,0,47,128,0,191,170,160,255,255,244,255,255,244,0,0,0, + // 0x00b3 ³ + 12,17,51,13,0,14,1,170,64,31,255,240,63,235,252,13,0,252,0,0,188,0,0,252,0,2,244,3,255,208,3,255,224,0,6,252,0,0,190,0,0,126,0,0,126,121,1,253,127,255,248,47,255,208,0,20,0, + // 0x00b4 ´ + 9,7,21,11,1,21,0,170,64,2,255,0,3,252,0,15,240,0,47,192,0,126,0,0,0,0,0, + // 0x00b5 µ + 17,29,145,23,3,247,85,0,0,21,64,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,0,0,191,192,255,64,0,255,192,255,208,7,255,192,255,255,255,255,192,255,255,255,31,192,254,127,252,31,192,254,1,64,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x00b6 ¶ + 18,33,165,24,2,251,0,1,85,85,80,1,255,255,255,240,11,255,255,255,240,47,255,255,65,240,63,255,255,1,240,127,255,255,1,240,191,255,255,1,240,255,255,255,1,240,255,255,255,1,240,255,255,255,1,240,255,255,255,1,240,255,255,255,1,240,255,255,255,1,240,191,255,255,1,240,127,255,255,1,240,63,255,255,1,240,15,255,255,1,240,2,255,255,1,240,0,21,95,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,15,1,240,0,0,10,0,160, + // 0x00b7 · + 6,6,12,10,2,10,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x00b8 ¸ + 8,9,18,8,0,247,7,192,15,128,31,244,2,252,0,189,0,189,171,252,255,244,106,64, + // 0x00b9 ¹ + 8,17,34,13,1,14,0,21,0,255,7,255,47,255,127,63,40,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,0, + // 0x00ba º + 12,13,39,14,1,13,2,255,64,15,255,240,63,86,248,125,0,188,188,0,125,252,0,62,252,0,62,252,0,61,188,0,124,63,1,252,47,255,240,7,255,192,0,20,0, + // 0x00bb » + 17,16,80,19,1,1,31,0,45,0,0,127,128,191,64,0,47,208,63,192,0,11,244,15,240,0,3,252,7,248,0,0,255,1,254,0,0,127,128,191,64,0,63,208,63,192,0,127,128,255,64,1,255,2,253,0,3,252,7,248,0,15,240,31,240,0,47,208,63,192,0,127,64,191,0,0,10,0,29,0,0,0,0,0,0,0, + // 0x00bc ¼ + 27,26,182,28,1,0,0,106,0,0,2,160,0,2,255,0,0,11,224,0,15,255,0,0,15,192,0,127,191,0,0,63,64,0,125,63,0,0,127,0,0,16,63,0,0,252,0,0,0,63,0,2,248,0,0,0,63,0,3,240,0,0,0,63,0,11,208,0,0,0,63,0,31,192,0,0,0,63,0,63,0,42,0,0,63,0,190,0,191,0,0,63,0,252,1,255,0,0,63,2,244,3,255,0,0,63,7,240,11,191,0,0,42,15,192,31,63,0,0,0,47,128,62,63,0,0,0,63,0,188,63,0,0,0,189,1,240,63,0,0,1,252,3,208,63,0,0,3,244,11,234,191,160,0,7,224,15,255,255,244,0,15,192,11,255,255,244,0,47,64,0,0,63,0,0,127,0,0,0,63,0,0,253,0,0,0,63,0, + // 0x00bd ½ + 27,26,182,29,1,0,0,169,0,0,10,128,0,3,254,0,0,31,192,0,31,254,0,0,63,0,0,191,190,0,0,190,0,0,188,126,0,0,252,0,0,32,190,0,2,244,0,0,0,190,0,7,240,0,0,0,190,0,15,192,0,0,0,190,0,47,128,0,0,0,190,0,63,0,0,0,0,190,0,189,2,169,0,0,190,1,252,63,255,192,0,190,3,244,255,255,240,0,190,7,224,56,7,240,0,190,15,192,0,3,240,0,105,47,64,0,3,240,0,0,127,0,0,3,240,0,0,253,0,0,15,208,0,1,248,0,0,63,128,0,3,240,0,0,254,0,0,11,224,0,3,248,0,0,15,192,0,15,224,0,0,63,64,0,63,128,0,0,126,0,0,255,170,160,0,252,0,0,255,255,244,2,248,0,0,255,255,244, + // 0x00be ¾ + 28,26,182,29,1,0,11,254,64,0,0,105,0,191,255,208,0,0,252,0,190,91,240,0,2,244,0,16,3,244,0,7,240,0,0,2,244,0,15,208,0,0,3,240,0,31,128,0,5,95,208,0,63,0,0,15,255,0,0,189,0,0,11,255,208,1,252,0,0,0,7,244,3,244,0,0,0,1,248,7,224,6,128,0,0,252,15,192,47,208,64,2,248,47,128,63,208,249,91,244,63,0,255,208,255,255,208,253,2,255,208,47,254,1,248,7,207,208,0,0,3,240,15,143,208,0,0,11,224,47,15,208,0,0,15,192,124,15,208,0,0,63,64,248,15,208,0,0,127,2,250,175,233,0,0,252,3,255,255,253,0,2,248,2,255,255,253,0,3,240,0,0,15,208,0,15,208,0,0,15,208,0,31,192,0,0,15,208, + // 0x00bf ¿ + 15,27,108,16,1,249,0,1,144,0,0,11,244,0,0,15,252,0,0,15,252,0,0,11,244,0,0,1,80,0,0,0,0,0,0,0,0,0,0,2,160,0,0,3,240,0,0,7,240,0,0,11,240,0,0,31,208,0,0,127,192,0,2,255,0,0,11,252,0,0,47,224,0,0,127,128,0,0,255,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,255,64,0,144,127,229,111,240,63,255,255,244,11,255,255,224,0,191,233,0, + // 0x00c0 À + 24,34,204,24,0,0,0,6,168,0,0,0,0,3,254,0,0,0,0,0,255,0,0,0,0,0,63,192,0,0,0,0,15,224,0,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c1 Á + 24,34,204,24,0,0,0,0,0,42,144,0,0,0,0,127,192,0,0,0,0,255,0,0,0,0,2,252,0,0,0,0,7,240,0,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c2  + 24,34,204,24,0,0,0,0,26,160,0,0,0,0,63,244,0,0,0,0,255,253,0,0,0,2,252,191,0,0,0,11,240,47,192,0,0,47,128,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c3 à + 24,33,198,24,0,0,0,1,164,0,100,0,0,11,255,64,244,0,0,31,255,251,240,0,0,47,91,255,208,0,0,60,0,191,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c4 Ä + 24,33,198,24,0,0,0,1,64,5,0,0,0,7,240,31,192,0,0,11,240,47,192,0,0,7,240,31,192,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c5 Å + 24,32,192,24,0,0,0,0,6,144,0,0,0,0,127,248,0,0,0,0,253,189,0,0,0,1,240,46,0,0,0,1,240,31,0,0,0,0,240,62,0,0,0,0,255,252,0,0,0,0,63,248,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x00c6 Æ + 31,26,208,32,0,0,0,0,0,170,170,170,170,160,0,0,2,255,255,255,255,244,0,0,3,255,255,255,255,244,0,0,11,250,255,170,170,160,0,0,15,240,191,0,0,0,0,0,31,208,191,0,0,0,0,0,63,192,191,0,0,0,0,0,127,64,191,0,0,0,0,0,255,0,191,0,0,0,0,1,254,0,191,0,0,0,0,3,252,0,191,64,0,0,0,7,248,0,191,255,255,224,0,11,240,0,191,255,255,224,0,15,224,0,191,255,255,224,0,47,192,0,191,64,0,0,0,63,255,255,255,0,0,0,0,191,255,255,255,0,0,0,0,255,255,255,255,0,0,0,2,254,170,170,255,0,0,0,3,252,0,0,191,0,0,0,7,248,0,0,191,0,0,0,15,240,0,0,191,0,0,0,31,224,0,0,191,85,85,80,63,192,0,0,191,255,255,244,127,128,0,0,191,255,255,244,255,0,0,0,191,255,255,244, + // 0x00c7 Ç + 20,35,175,23,2,247,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,15,208,0,0,0,31,64,0,0,0,63,224,0,0,0,7,252,0,0,0,0,252,0,0,0,0,252,0,0,0,171,252,0,0,0,255,240,0,0,0,170,64,0, + // 0x00c8 È + 15,34,136,20,3,0,2,168,0,0,2,255,0,0,0,191,64,0,0,47,192,0,0,11,240,0,0,2,248,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x00c9 É + 15,34,136,20,3,0,0,0,26,160,0,0,63,208,0,0,255,64,0,1,253,0,0,3,244,0,0,15,208,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x00ca Ê + 15,34,136,20,3,0,0,10,160,0,0,63,248,0,0,191,253,0,2,253,191,64,7,244,31,208,31,192,3,240,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x00cb Ë + 15,33,132,20,3,0,0,64,5,0,3,240,31,192,7,244,47,192,3,240,15,192,0,64,1,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x00cc Ì + 11,34,102,13,1,0,106,64,0,127,192,0,31,240,0,7,248,0,1,253,0,0,63,0,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x00cd Í + 11,34,102,13,1,0,0,2,168,0,11,248,0,31,240,0,63,192,0,254,0,2,248,0,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x00ce Î + 13,34,136,13,0,0,0,106,64,0,1,255,192,0,3,255,240,0,15,227,252,0,63,128,254,0,253,0,47,128,0,0,0,0,0,0,0,0,26,170,168,0,47,255,253,0,31,255,252,0,0,191,128,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,11,255,244,0,47,255,253,0,47,255,253,0, + // 0x00cf Ï + 11,33,99,13,1,0,20,0,80,190,3,244,255,3,248,190,3,244,20,0,64,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x00d0 Ð + 23,26,156,26,1,0,6,170,170,144,0,0,7,255,255,255,128,0,7,255,255,255,244,0,7,254,170,255,254,0,7,244,0,7,255,128,7,244,0,0,191,208,7,244,0,0,47,240,7,244,0,0,15,244,7,244,0,0,11,248,7,244,0,0,7,252,7,244,0,0,3,252,91,249,85,0,3,252,255,255,255,64,3,252,255,255,255,64,3,252,255,255,255,0,3,252,7,244,0,0,3,252,7,244,0,0,7,252,7,244,0,0,11,248,7,244,0,0,15,244,7,244,0,0,47,240,7,244,0,0,191,208,7,244,0,7,255,128,7,249,85,191,254,0,7,255,255,255,248,0,7,255,255,255,128,0,7,255,255,228,0,0, + // 0x00d1 Ñ + 22,33,198,28,3,0,0,2,144,1,144,0,0,31,254,3,224,0,0,63,255,239,192,0,0,189,47,255,128,0,0,180,2,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x00d2 Ò + 24,35,210,28,2,255,0,2,169,0,0,0,0,1,255,0,0,0,0,0,191,128,0,0,0,0,47,208,0,0,0,0,11,240,0,0,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x00d3 Ó + 24,35,210,28,2,255,0,0,0,26,160,0,0,0,0,63,224,0,0,0,0,191,128,0,0,0,1,254,0,0,0,0,3,248,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x00d4 Ô + 24,35,210,28,2,255,0,0,10,160,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,1,254,127,128,0,0,7,244,31,208,0,0,15,192,3,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x00d5 Õ + 24,34,204,28,2,255,0,0,100,0,40,0,0,3,255,128,184,0,0,15,255,251,244,0,0,31,71,255,240,0,0,46,0,127,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x00d6 Ö + 24,34,204,28,2,255,0,0,80,1,64,0,0,3,244,15,208,0,0,3,248,31,208,0,0,3,244,15,192,0,0,0,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x00d7 × + 16,17,68,21,2,4,4,0,0,4,46,0,0,61,127,128,0,255,47,224,3,252,11,248,15,240,2,254,63,192,0,191,255,0,0,47,252,0,0,15,248,0,0,63,254,0,0,255,191,128,3,252,47,224,15,240,11,248,63,192,2,253,127,0,0,191,28,0,0,44,0,0,0,0, + // 0x00d8 Ø + 24,29,174,28,2,254,0,0,0,0,0,128,0,1,191,254,67,240,0,31,255,255,255,240,0,191,255,255,255,192,3,255,229,91,255,192,11,254,0,0,255,224,15,248,0,1,255,244,47,240,0,3,255,252,63,208,0,11,227,253,127,192,0,31,194,254,191,128,0,63,65,254,191,64,0,254,0,255,255,64,2,252,0,255,255,64,3,244,0,255,255,64,15,224,0,255,255,64,47,192,0,255,191,64,127,0,0,255,191,128,253,0,1,255,127,194,252,0,2,254,63,199,240,0,3,253,47,239,208,0,7,252,31,255,128,0,15,248,11,255,0,0,63,240,3,255,144,6,255,208,3,255,255,255,255,64,11,255,255,255,252,0,15,194,255,255,144,0,7,128,5,80,0,0,0,0,0,0,0,0, + // 0x00d9 Ù + 21,35,210,27,3,255,0,42,144,0,0,0,0,31,240,0,0,0,0,7,252,0,0,0,0,1,253,0,0,0,0,0,127,0,0,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x00da Ú + 21,35,210,27,3,255,0,0,0,170,0,0,0,0,3,254,0,0,0,0,7,248,0,0,0,0,15,224,0,0,0,0,63,128,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x00db Û + 21,35,210,27,3,255,0,0,170,64,0,0,0,2,255,192,0,0,0,7,255,240,0,0,0,15,231,248,0,0,0,63,128,254,0,0,0,253,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x00dc Ü + 21,34,204,27,3,255,0,5,0,20,0,0,0,63,128,253,0,0,0,63,192,254,0,0,0,47,64,253,0,0,0,5,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x00dd Ý + 21,34,204,21,0,0,0,0,0,170,64,0,0,0,2,255,0,0,0,0,7,252,0,0,0,0,15,240,0,0,0,0,47,192,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x00de Þ + 17,26,130,22,3,0,106,0,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,149,80,0,0,191,255,255,144,0,191,255,255,248,0,191,255,255,254,0,191,64,7,255,64,191,64,0,191,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,191,128,191,64,2,255,0,191,234,255,254,0,191,255,255,248,0,191,255,255,128,0,191,170,148,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0, + // 0x00df ß + 19,29,145,24,3,255,0,5,148,0,0,2,255,255,224,0,15,255,255,253,0,63,254,175,255,0,191,192,0,255,128,255,0,0,127,128,255,0,0,63,128,255,0,0,127,64,255,0,0,255,0,255,0,7,252,0,255,0,31,240,0,255,0,127,192,0,255,0,255,0,0,255,0,255,0,0,255,0,255,64,0,255,0,191,224,0,255,0,63,252,0,255,0,11,255,64,255,0,1,255,224,255,0,0,47,244,255,0,0,11,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,6,0,11,248,255,7,250,191,244,255,7,255,255,224,255,2,255,255,64,0,0,5,80,0, + // 0x00e0 à + 17,29,145,21,1,255,0,106,64,0,0,0,127,192,0,0,0,31,240,0,0,0,7,248,0,0,0,1,253,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e1 á + 17,29,145,21,1,255,0,0,2,168,0,0,0,15,248,0,0,0,31,240,0,0,0,63,128,0,0,0,254,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e2 â + 17,29,145,21,1,255,0,2,169,0,0,0,7,255,0,0,0,31,255,192,0,0,63,143,224,0,0,254,3,248,0,3,244,0,190,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e3 ã + 17,28,140,21,1,255,0,26,0,10,0,0,255,224,31,0,2,255,255,190,0,3,225,255,252,0,7,192,31,240,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e4 ä + 17,28,140,21,1,255,0,20,0,80,0,0,254,3,244,0,0,255,3,248,0,0,190,3,244,0,0,20,0,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e5 å + 17,31,155,21,1,255,0,1,164,0,0,0,11,255,64,0,0,31,159,192,0,0,46,3,208,0,0,61,3,208,0,0,46,7,192,0,0,15,255,128,0,0,7,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x00e6 æ + 29,21,168,32,1,255,0,22,169,0,6,169,0,0,2,255,255,224,127,255,208,0,7,255,255,249,255,255,248,0,3,249,27,255,253,7,253,0,1,64,0,255,240,0,255,0,0,0,0,191,192,0,191,64,0,0,0,127,192,0,63,128,0,0,0,127,128,0,63,192,0,6,171,255,234,170,191,192,1,255,255,255,255,255,255,192,11,255,250,255,255,255,255,192,47,244,0,127,128,0,0,0,63,192,0,127,128,0,0,0,127,128,0,191,192,0,0,0,127,128,0,255,192,0,0,0,127,128,1,255,224,0,0,0,63,208,7,255,248,0,11,0,47,254,191,211,255,255,255,0,15,255,255,64,255,255,255,0,2,255,248,0,31,255,249,0,0,5,0,0,0,21,0,0, + // 0x00e7 ç + 15,29,116,18,2,247,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,3,244,0,0,7,192,0,0,15,248,0,0,1,254,0,0,0,63,0,0,0,63,0,0,106,254,0,0,127,252,0,0,42,80,0, + // 0x00e8 è + 17,29,145,21,2,255,1,169,0,0,0,1,255,0,0,0,0,127,192,0,0,0,31,224,0,0,0,7,244,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x00e9 é + 17,29,145,21,2,255,0,0,10,160,0,0,0,47,224,0,0,0,127,192,0,0,0,255,0,0,0,3,248,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x00ea ê + 17,29,145,21,2,255,0,10,164,0,0,0,31,252,0,0,0,63,255,0,0,0,254,63,192,0,3,248,15,224,0,15,208,2,248,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x00eb ë + 17,28,140,21,2,255,0,80,1,64,0,2,248,15,208,0,3,252,15,224,0,2,248,15,208,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x00ec ì + 8,28,56,10,0,0,170,0,191,128,63,208,15,240,2,252,0,190,0,0,0,0,1,84,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252, + // 0x00ed í + 8,28,56,10,3,0,1,170,3,253,15,244,47,208,127,64,253,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x00ee î + 13,28,112,10,254,0,0,42,128,0,0,255,224,0,2,255,244,0,11,246,253,0,31,192,127,0,127,0,31,192,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x00ef ï + 11,27,81,10,255,0,4,0,80,63,1,252,127,66,252,63,1,252,4,0,16,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x00f0 ð + 18,28,140,22,2,255,0,62,0,60,0,0,127,226,254,0,0,47,255,248,0,0,3,255,192,0,0,11,255,208,0,0,191,239,240,0,0,255,7,252,0,0,52,1,253,0,0,0,0,191,0,0,0,0,63,128,0,127,254,47,192,3,255,255,239,208,15,255,255,255,224,63,244,1,255,240,127,192,0,63,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,224,191,64,0,31,208,127,192,0,63,192,63,224,0,255,128,15,255,175,255,0,3,255,255,248,0,0,127,255,208,0,0,1,80,0,0, + // 0x00f1 ñ + 17,27,135,23,3,0,0,104,0,40,0,3,255,128,124,0,11,255,254,248,0,15,135,255,240,0,31,0,127,192,0,0,0,0,0,0,0,0,0,0,0,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x00f2 ò + 18,29,145,22,2,255,0,170,0,0,0,0,191,192,0,0,0,47,208,0,0,0,11,240,0,0,0,2,252,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x00f3 ó + 18,29,145,22,2,255,0,0,6,168,0,0,0,15,244,0,0,0,63,208,0,0,0,127,64,0,0,0,253,0,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x00f4 ô + 18,29,145,22,2,255,0,2,168,0,0,0,15,254,0,0,0,47,255,128,0,0,191,111,208,0,1,253,7,244,0,7,240,0,253,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x00f5 õ + 18,28,140,22,2,255,0,41,0,25,0,1,255,224,62,0,3,255,254,253,0,7,210,255,248,0,11,64,47,224,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x00f6 ö + 18,28,140,22,2,255,0,20,1,64,0,0,253,3,240,0,1,253,7,244,0,0,252,3,240,0,0,16,0,64,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x00f7 ÷ + 18,17,85,21,1,4,0,1,248,0,0,0,3,253,0,0,0,3,253,0,0,0,2,252,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,240,127,255,255,255,240,63,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,2,252,0,0,0,3,253,0,0,0,2,252,0,0,0,0,164,0,0, + // 0x00f8 ø + 18,22,110,22,2,254,0,6,169,11,64,0,191,255,255,192,7,255,255,255,0,15,254,91,255,0,63,224,2,255,128,127,192,7,255,192,191,64,15,255,224,255,0,47,143,240,255,0,127,15,240,255,0,253,15,240,255,2,248,15,240,255,7,240,15,240,255,15,192,15,240,191,127,64,31,224,127,255,0,47,208,63,252,0,63,192,31,248,1,255,128,15,255,255,255,0,31,255,255,248,0,63,127,255,144,0,14,1,80,0,0,0,0,0,0,0, + // 0x00f9 ù + 17,29,145,23,3,255,1,169,0,0,0,1,255,0,0,0,0,127,192,0,0,0,31,224,0,0,0,7,244,0,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x00fa ú + 17,29,145,23,3,255,0,0,10,160,0,0,0,63,224,0,0,0,127,192,0,0,0,255,0,0,0,3,248,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x00fb û + 17,29,145,23,3,255,0,10,164,0,0,0,47,252,0,0,0,127,255,0,0,0,254,127,128,0,3,248,15,224,0,15,208,2,248,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x00fc ü + 17,28,140,23,3,255,0,80,1,64,0,3,248,15,208,0,3,252,15,224,0,2,248,15,208,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x00fd ý + 19,37,185,19,0,247,0,0,2,169,0,0,0,11,252,0,0,0,31,240,0,0,0,63,192,0,0,0,191,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x00fe þ + 18,37,185,22,3,247,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,170,0,0,255,31,255,224,0,254,191,255,252,0,255,254,91,255,0,255,208,0,255,64,255,128,0,127,128,255,0,0,63,192,255,0,0,47,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,191,128,255,240,2,255,0,255,255,255,253,0,254,127,255,248,0,254,11,255,208,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x00ff ÿ + 19,36,180,19,0,247,0,20,0,80,0,0,191,3,248,0,0,255,3,252,0,0,190,2,248,0,0,20,0,80,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_ASCII_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_ASCII_26.cpp new file mode 100644 index 000000000000..dcf12a39355c --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_ASCII_26.cpp @@ -0,0 +1,222 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium ASCII 36pt, capital 'A' height: 26px, width: 100%, range: 0x0020-0x007e +extern const uint8_t NotoSans_Medium_ASCII_26[10989] = { + 130,26,32,0,126,0,34,247, // unifont_t + // 0x0020 " " + 0,0,0,9,0,0, + // 0x0021 ! + 6,27,54,10,2,255,42,128,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,128,63,128,47,128,47,128,47,128,47,64,47,64,47,64,31,64,5,0,0,0,0,0,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x0022 " + 11,10,30,15,2,16,106,2,168,191,2,252,127,2,252,127,2,252,127,1,248,127,1,248,62,1,248,62,1,244,62,0,244,41,0,160, + // 0x0023 # + 22,26,156,23,1,0,0,0,164,1,160,0,0,1,248,3,240,0,0,2,244,3,240,0,0,3,240,3,224,0,0,3,240,7,224,0,0,3,240,11,208,0,0,7,224,11,192,0,0,11,224,15,192,0,63,255,255,255,255,208,63,255,255,255,255,208,26,175,234,191,170,128,0,31,128,63,0,0,0,47,64,63,0,0,0,47,0,63,0,0,0,63,0,126,0,0,0,127,0,190,0,0,255,255,255,255,255,0,255,255,255,255,255,0,170,254,170,254,170,0,0,252,1,248,0,0,0,252,2,244,0,0,0,248,2,240,0,0,1,244,3,240,0,0,2,244,3,240,0,0,3,240,7,224,0,0,3,240,7,208,0,0, + // 0x0024 $ + 17,31,155,21,2,253,0,1,64,0,0,0,3,208,0,0,0,3,208,0,0,0,3,228,0,0,1,255,255,228,0,15,255,255,255,0,63,255,255,254,0,191,211,208,108,0,255,3,208,0,0,255,3,208,0,0,255,3,208,0,0,191,131,208,0,0,127,251,208,0,0,47,255,224,0,0,7,255,255,64,0,0,127,255,244,0,0,3,255,253,0,0,3,235,255,0,0,3,208,191,128,0,3,208,63,128,0,3,208,63,128,64,3,208,127,128,249,3,210,255,0,255,255,255,254,0,255,255,255,244,0,47,255,255,128,0,0,23,224,0,0,0,3,208,0,0,0,3,208,0,0,0,3,208,0,0,0,0,0,0,0, + // 0x0025 % + 28,27,189,31,1,255,1,255,64,0,0,168,0,11,255,224,0,3,244,0,31,235,244,0,7,240,0,63,129,252,0,15,208,0,63,0,253,0,31,128,0,63,0,189,0,63,0,0,127,0,190,0,190,0,0,126,0,126,0,252,0,0,126,0,126,2,244,0,0,127,0,190,7,240,0,0,63,0,189,15,208,106,64,63,0,253,31,195,255,240,47,129,252,63,79,255,248,15,235,248,126,31,209,252,11,255,240,252,47,128,190,1,255,130,248,63,64,127,0,0,3,240,63,0,63,0,0,11,224,63,0,63,0,0,15,192,63,0,63,0,0,63,64,63,0,63,0,0,127,0,63,64,63,0,0,253,0,47,64,127,0,1,248,0,31,192,253,0,3,240,0,15,230,252,0,11,224,0,7,255,244,0,15,192,0,1,255,208,0,0,0,0,0,21,0, + // 0x0026 & + 24,27,162,27,2,255,0,31,255,64,0,0,0,255,255,240,0,0,3,255,255,248,0,0,7,252,7,252,0,0,15,240,1,253,0,0,15,240,0,254,0,0,15,240,1,253,0,0,11,240,2,252,0,0,3,252,11,248,0,0,2,254,47,240,0,0,0,255,255,192,0,0,0,63,254,0,0,0,1,255,248,0,0,0,7,255,254,0,3,252,47,249,255,128,7,248,127,208,127,224,11,240,255,128,15,248,15,240,255,0,3,254,47,208,255,0,0,255,255,192,255,0,0,63,255,64,255,0,0,15,254,0,255,128,0,31,255,0,127,228,1,255,255,192,63,255,255,255,191,240,15,255,255,252,15,252,1,255,255,144,3,255,0,1,80,0,0,0, + // 0x0027 ' + 4,10,10,9,2,16,106,191,127,127,127,127,62,62,62,41, + // 0x0028 ( + 9,32,96,11,1,250,0,26,128,0,63,64,0,254,0,1,252,0,3,248,0,7,240,0,15,240,0,15,208,0,47,192,0,63,192,0,63,128,0,63,64,0,127,64,0,127,0,0,191,0,0,191,0,0,191,0,0,191,0,0,127,0,0,127,64,0,63,64,0,63,128,0,63,192,0,47,192,0,31,208,0,15,240,0,11,240,0,3,248,0,2,252,0,0,254,0,0,63,64,0,26,128, + // 0x0029 ) + 9,32,96,11,1,250,106,0,0,63,64,0,31,192,0,15,224,0,7,240,0,3,248,0,2,252,0,1,253,0,0,254,0,0,191,0,0,127,0,0,127,64,0,63,128,0,63,128,0,63,128,0,63,192,0,63,192,0,63,128,0,63,128,0,63,128,0,63,64,0,127,64,0,191,0,0,255,0,0,253,0,2,252,0,3,248,0,7,240,0,15,224,0,31,192,0,63,64,0,106,0,0, + // 0x002a * + 18,18,90,20,1,10,0,1,84,0,0,0,3,248,0,0,0,3,248,0,0,0,3,244,0,0,0,2,244,0,0,16,2,240,0,64,63,65,240,111,192,127,255,251,255,192,191,255,255,255,208,5,111,254,149,0,0,15,254,0,0,0,47,191,64,0,0,127,31,192,0,0,254,15,240,0,3,252,11,248,0,2,252,3,248,0,0,36,1,128,0,0,0,0,0,0, + // 0x002b + + 18,18,90,21,1,4,0,0,84,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,1,252,0,0,127,255,255,255,240,127,255,255,255,240,63,255,255,255,224,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0, + // 0x002c , + 6,9,18,10,1,251,15,240,15,240,31,224,47,192,47,192,63,64,63,0,126,0,104,0, + // 0x002d - + 10,4,12,12,1,8,21,85,64,191,255,208,191,255,208,191,255,208, + // 0x002e . + 6,6,12,10,2,255,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x002f / + 14,26,104,14,0,0,0,0,10,144,0,0,47,192,0,0,63,128,0,0,127,64,0,0,191,0,0,0,254,0,0,1,252,0,0,3,252,0,0,3,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0,255,0,0,0,253,0,0,2,252,0,0,3,248,0,0,7,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0, + // 0x0030 0 + 18,27,135,21,1,255,0,27,255,64,0,0,191,255,240,0,3,255,255,252,0,7,254,7,255,0,15,240,0,191,64,31,224,0,63,192,47,192,0,47,192,63,192,0,31,208,63,192,0,15,224,63,128,0,15,224,127,128,0,15,240,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,127,128,0,15,240,63,128,0,15,240,63,128,0,15,224,63,192,0,31,208,47,192,0,47,208,31,208,0,63,192,15,240,0,191,128,7,252,2,255,0,3,255,255,253,0,0,255,255,248,0,0,31,255,208,0,0,0,84,0,0, + // 0x0031 1 + 11,26,78,21,3,0,0,2,164,0,31,244,0,191,244,3,255,244,15,255,244,127,215,244,255,71,244,60,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244,0,7,244, + // 0x0032 2 + 18,26,130,21,1,0,0,31,255,128,0,2,255,255,244,0,31,255,255,253,0,63,249,7,255,0,15,128,0,255,128,5,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,15,244,0,0,0,63,208,0,0,0,255,64,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,64,0,0,3,253,0,0,0,15,244,0,0,0,63,245,85,85,80,127,255,255,255,240,127,255,255,255,240,127,255,255,255,240, + // 0x0033 3 + 18,27,135,21,1,255,0,111,255,128,0,11,255,255,248,0,63,255,255,254,0,47,228,7,255,64,14,0,0,191,128,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,0,0,0,7,253,0,0,127,255,240,0,0,191,255,64,0,0,191,255,248,0,0,21,107,255,0,0,0,0,191,192,0,0,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,47,224,0,0,0,127,192,121,0,2,255,128,127,255,255,255,0,127,255,255,248,0,27,255,255,144,0,0,21,80,0,0, + // 0x0034 4 + 20,26,130,21,0,0,0,0,0,191,64,0,0,1,255,64,0,0,3,255,64,0,0,11,255,64,0,0,31,255,64,0,0,63,127,64,0,0,254,127,64,0,2,252,127,64,0,3,240,127,64,0,15,224,127,64,0,47,192,127,64,0,127,0,127,64,0,253,0,127,64,2,252,0,127,64,7,240,0,127,64,15,208,0,127,64,47,128,0,127,64,127,255,255,255,255,127,255,255,255,255,127,255,255,255,255,21,85,85,191,149,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64, + // 0x0035 5 + 17,27,135,21,2,255,26,170,170,168,0,31,255,255,252,0,47,255,255,252,0,47,234,170,168,0,47,192,0,0,0,47,192,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,64,0,0,0,63,255,249,0,0,63,255,255,224,0,63,255,255,248,0,10,81,111,254,0,0,0,2,255,0,0,0,0,255,64,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,64,0,0,0,255,0,64,0,1,255,0,249,0,27,253,0,255,255,255,248,0,255,255,255,208,0,47,255,254,0,0,0,21,64,0,0, + // 0x0036 6 + 17,27,135,21,2,255,0,1,191,252,0,0,47,255,252,0,0,255,255,252,0,3,255,144,4,0,11,248,0,0,0,31,224,0,0,0,63,192,0,0,0,63,128,0,0,0,127,0,0,0,0,191,0,0,0,0,254,11,255,208,0,254,127,255,248,0,254,255,255,254,0,255,240,2,255,0,255,128,0,191,128,255,0,0,63,192,254,0,0,63,192,254,0,0,47,192,255,0,0,63,192,191,0,0,63,192,127,64,0,63,128,63,192,0,191,64,31,244,2,255,0,11,255,255,252,0,2,255,255,244,0,0,127,255,128,0,0,1,80,0,0, + // 0x0037 7 + 18,26,130,21,1,0,106,170,170,170,160,191,255,255,255,240,191,255,255,255,240,106,170,170,175,240,0,0,0,31,208,0,0,0,63,192,0,0,0,127,64,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,3,248,0,0,0,11,240,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,191,64,0,0,0,255,0,0,0,1,254,0,0,0,3,252,0,0,0,7,248,0,0,0,15,240,0,0,0,31,240,0,0,0,63,208,0,0,0,63,192,0,0,0,191,64,0,0,0,255,0,0,0, + // 0x0038 8 + 18,27,135,21,1,255,0,27,255,128,0,1,255,255,248,0,7,255,255,255,0,15,248,1,255,128,31,224,0,63,192,47,192,0,47,192,47,192,0,47,192,31,208,0,63,192,15,240,0,63,128,11,252,1,255,0,2,255,155,252,0,0,191,255,224,0,0,47,255,128,0,0,191,255,244,0,3,255,95,254,0,15,244,1,255,128,47,208,0,63,192,63,128,0,15,224,127,64,0,15,240,127,64,0,15,240,127,64,0,15,240,63,192,0,31,224,47,240,0,127,192,15,255,171,255,64,3,255,255,253,0,0,127,255,224,0,0,0,84,0,0, + // 0x0039 9 + 18,27,135,21,1,255,0,27,254,64,0,0,255,255,240,0,7,255,255,252,0,15,253,7,255,0,47,224,0,191,64,63,192,0,63,192,63,128,0,31,208,127,64,0,15,224,127,64,0,15,224,127,64,0,15,240,63,128,0,15,240,63,192,0,63,240,47,224,0,191,240,15,254,91,255,240,7,255,255,207,224,1,255,255,15,224,0,6,144,15,208,0,0,0,31,192,0,0,0,47,192,0,0,0,63,128,0,0,0,255,0,0,0,2,254,0,0,0,31,252,0,11,255,255,240,0,11,255,255,128,0,11,255,248,0,0,0,84,0,0,0, + // 0x003a : + 6,21,42,10,2,255,31,64,127,192,191,208,127,208,63,128,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,63,192,127,208,127,208,63,192,5,0, + // 0x003b ; + 7,25,50,10,1,251,11,208,31,240,47,244,47,240,15,224,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,240,31,224,47,208,47,192,63,128,63,0,127,0,189,0,168,0, + // 0x003c < + 18,18,90,21,1,4,0,0,0,0,96,0,0,0,7,240,0,0,0,127,240,0,0,7,255,208,0,0,127,248,0,0,7,255,128,0,0,127,248,0,0,7,255,128,0,0,63,244,0,0,0,127,208,0,0,0,63,254,0,0,0,6,255,228,0,0,0,47,255,64,0,0,1,255,248,0,0,0,31,255,208,0,0,0,191,240,0,0,0,11,240,0,0,0,0,96, + // 0x003d = + 17,11,55,21,2,7,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128,85,85,85,85,0, + // 0x003e > + 18,18,90,21,1,4,96,0,0,0,0,126,0,0,0,0,127,224,0,0,0,47,254,0,0,0,1,255,224,0,0,0,31,254,0,0,0,1,255,224,0,0,0,31,254,0,0,0,0,191,224,0,0,0,47,240,0,0,6,255,224,0,0,127,254,0,0,11,255,208,0,1,255,249,0,0,47,255,128,0,0,127,244,0,0,0,127,64,0,0,0,96,0,0,0,0, + // 0x003f ? + 15,27,108,16,0,255,1,191,249,0,47,255,255,192,127,255,255,240,63,144,111,248,20,0,3,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,3,252,0,0,15,244,0,0,63,224,0,0,255,128,0,3,254,0,0,15,244,0,0,31,208,0,0,63,128,0,0,63,64,0,0,63,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,127,192,0,0,191,192,0,0,191,192,0,0,127,128,0,0,5,0,0, + // 0x0040 @ + 29,30,240,32,2,252,0,0,1,106,164,0,0,0,0,0,111,255,255,208,0,0,0,3,255,255,255,252,0,0,0,31,249,0,6,255,64,0,0,191,128,0,0,63,208,0,1,253,0,0,0,11,240,0,7,244,0,0,0,2,252,0,15,208,0,111,164,0,252,0,31,192,11,255,255,128,126,0,63,0,63,255,255,128,63,0,63,0,191,64,47,128,63,0,126,0,253,0,47,128,47,0,189,2,252,0,47,64,47,64,252,3,244,0,47,64,47,64,252,3,244,0,63,64,47,64,252,3,240,0,63,64,63,0,252,3,244,0,63,64,63,0,252,2,248,0,127,64,126,0,252,1,252,0,255,128,252,0,189,0,255,155,251,231,248,0,126,0,63,255,195,255,224,0,63,0,11,254,0,255,64,0,47,128,0,0,0,0,0,0,15,224,0,0,0,0,0,0,7,248,0,0,0,0,0,0,2,255,64,0,1,160,0,0,0,127,254,170,191,224,0,0,0,11,255,255,255,208,0,0,0,0,111,255,249,0,0,0,0,0,0,0,0,0,0,0, + // 0x0041 A + 24,26,156,24,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0042 B + 19,26,130,24,3,0,106,170,169,64,0,191,255,255,248,0,191,255,255,255,64,191,170,175,255,192,191,64,0,127,224,191,64,0,47,240,191,64,0,15,240,191,64,0,15,240,191,64,0,31,224,191,64,0,63,208,191,64,1,255,128,191,255,255,254,0,191,255,255,224,0,191,255,255,255,0,191,64,5,255,208,191,64,0,47,240,191,64,0,15,244,191,64,0,7,248,191,64,0,7,248,191,64,0,11,248,191,64,0,15,244,191,64,0,47,240,191,64,22,255,224,191,255,255,255,192,191,255,255,254,0,191,255,255,144,0, + // 0x0043 C + 20,27,135,23,2,255,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x0044 D + 21,26,156,26,3,0,106,170,169,0,0,0,191,255,255,248,0,0,191,255,255,255,64,0,191,170,175,255,224,0,191,64,0,127,248,0,191,64,0,11,253,0,191,64,0,2,255,0,191,64,0,0,255,64,191,64,0,0,191,128,191,64,0,0,127,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,127,192,191,64,0,0,191,128,191,64,0,0,255,64,191,64,0,2,255,0,191,64,0,11,253,0,191,64,0,127,248,0,191,149,91,255,240,0,191,255,255,255,128,0,191,255,255,248,0,0,191,255,254,64,0,0, + // 0x0045 E + 15,26,104,20,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0046 F + 15,26,104,19,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,240,191,255,255,240,191,255,255,240,191,85,85,80,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0, + // 0x0047 G + 22,27,162,26,2,255,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0, + // 0x0048 H + 21,26,156,27,3,0,106,0,0,0,106,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,191,85,85,85,191,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64, + // 0x0049 I + 11,26,78,13,1,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x004a J + 10,34,102,10,253,248,0,10,160,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,11,240,0,15,240,0,15,240,0,47,224,85,191,208,255,255,128,255,254,0,191,228,0,0,0,0, + // 0x004b K + 20,26,130,23,3,0,106,0,0,2,168,191,64,0,15,244,191,64,0,63,224,191,64,0,191,128,191,64,2,255,0,191,64,7,252,0,191,64,31,240,0,191,64,63,192,0,191,64,255,64,0,191,67,253,0,0,191,79,248,0,0,191,111,240,0,0,191,255,244,0,0,191,255,252,0,0,191,247,254,0,0,191,208,255,64,0,191,64,191,192,0,191,64,63,240,0,191,64,15,248,0,191,64,7,252,0,191,64,2,255,0,191,64,0,255,128,191,64,0,63,208,191,64,0,47,240,191,64,0,15,248,191,64,0,3,253, + // 0x004c L + 16,26,104,19,3,0,106,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x004d M + 27,26,182,33,3,0,106,160,0,0,0,42,164,191,244,0,0,0,127,248,191,252,0,0,0,191,248,191,252,0,0,0,255,248,191,253,0,0,1,255,248,191,191,0,0,3,247,248,191,127,0,0,3,243,248,191,63,128,0,11,227,248,191,47,192,0,15,211,248,191,31,208,0,31,195,248,191,15,224,0,47,131,248,191,11,240,0,63,67,248,191,3,244,0,127,3,248,191,3,248,0,254,3,248,191,1,252,0,252,3,248,191,0,253,2,252,3,248,191,0,255,3,244,3,248,191,0,127,7,240,3,248,191,0,63,75,224,3,248,191,0,47,207,208,3,248,191,0,31,239,192,3,248,191,0,15,255,128,3,248,191,0,11,255,0,3,248,191,0,7,255,0,3,248,191,0,3,254,0,3,248,191,0,2,252,0,3,248, + // 0x004e N + 22,26,156,28,3,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x004f O + 24,27,162,28,2,255,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x0050 P + 17,26,130,22,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,252,0,191,170,191,255,0,191,64,2,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,192,191,64,0,255,128,191,64,27,255,0,191,255,255,253,0,191,255,255,240,0,191,255,254,64,0,191,84,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0, + // 0x0051 Q + 24,33,198,28,2,249,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,208,0,0,0,5,127,240,0,0,0,0,15,252,0,0,0,0,7,254,0,0,0,0,1,255,128,0,0,0,0,191,224,0,0,0,0,47,248,0,0,0,0,0,0, + // 0x0052 R + 19,26,130,23,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,253,0,191,170,191,255,0,191,64,1,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,128,191,64,2,255,0,191,234,191,253,0,191,255,255,244,0,191,255,255,128,0,191,170,191,192,0,191,64,47,208,0,191,64,15,240,0,191,64,11,248,0,191,64,3,253,0,191,64,1,255,0,191,64,0,191,128,191,64,0,63,192,191,64,0,47,240,191,64,0,15,244,191,64,0,7,252, + // 0x0053 S + 16,27,108,20,2,255,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,21,64,0, + // 0x0054 T + 20,26,130,20,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x0055 U + 21,27,162,27,3,255,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x0056 V + 22,26,156,22,0,0,170,0,0,0,10,160,191,64,0,0,31,224,63,192,0,0,47,208,63,192,0,0,63,192,47,208,0,0,127,128,15,240,0,0,191,64,15,240,0,0,255,0,7,244,0,1,254,0,3,252,0,2,252,0,3,252,0,3,252,0,1,253,0,7,248,0,0,255,0,11,240,0,0,191,0,15,240,0,0,127,128,31,208,0,0,63,192,63,192,0,0,47,192,63,192,0,0,31,224,127,64,0,0,15,240,255,0,0,0,11,240,254,0,0,0,7,245,253,0,0,0,3,250,252,0,0,0,2,255,248,0,0,0,0,255,244,0,0,0,0,255,240,0,0,0,0,127,224,0,0,0,0,63,192,0,0, + // 0x0057 W + 34,26,234,34,0,0,106,64,0,2,168,0,0,26,144,127,128,0,7,252,0,0,47,192,63,192,0,11,253,0,0,63,192,63,192,0,15,254,0,0,63,128,47,208,0,31,255,0,0,127,64,31,224,0,47,255,64,0,191,0,15,240,0,63,191,128,0,255,0,15,240,0,63,111,192,0,254,0,11,244,0,127,31,192,1,253,0,7,248,0,191,15,208,2,252,0,3,252,0,254,15,240,3,252,0,3,252,1,253,11,240,3,248,0,2,253,2,252,3,244,7,244,0,1,254,3,248,3,248,11,240,0,0,255,3,244,2,252,15,240,0,0,191,7,240,1,252,15,224,0,0,127,75,240,0,253,31,208,0,0,63,143,224,0,254,47,192,0,0,63,143,208,0,191,63,192,0,0,47,223,192,0,63,63,64,0,0,31,239,128,0,63,191,0,0,0,15,255,64,0,47,255,0,0,0,15,255,0,0,31,254,0,0,0,11,255,0,0,15,253,0,0,0,7,254,0,0,15,252,0,0,0,3,253,0,0,11,252,0,0, + // 0x0058 X + 22,26,156,22,0,0,42,128,0,0,42,128,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,2,254,0,11,248,0,0,255,0,15,240,0,0,127,192,47,192,0,0,47,208,127,128,0,0,15,240,255,0,0,0,7,250,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,208,0,0,0,0,255,240,0,0,0,2,255,244,0,0,0,3,255,252,0,0,0,15,241,254,0,0,0,31,208,255,64,0,0,63,192,63,192,0,0,191,64,47,224,0,1,254,0,15,244,0,3,252,0,7,252,0,11,244,0,2,254,0,31,240,0,0,255,0,63,192,0,0,127,192,191,128,0,0,63,224, + // 0x0059 Y + 21,26,156,21,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x005a Z + 19,26,130,21,1,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x005b [ + 8,32,64,12,3,250,170,170,255,255,255,255,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,253,0,255,255,255,255,170,170, + // 0x005c "\" + 14,26,104,14,0,0,106,0,0,0,63,64,0,0,63,128,0,0,31,192,0,0,15,208,0,0,11,240,0,0,7,240,0,0,3,248,0,0,2,252,0,0,0,253,0,0,0,254,0,0,0,127,0,0,0,63,64,0,0,63,192,0,0,31,192,0,0,15,224,0,0,11,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,0,253,0,0,0,255,0,0,0,127,0,0,0,63,128,0,0,47,192,0,0,31,208, + // 0x005d ] + 8,32,64,12,1,250,170,170,255,255,255,255,0,191,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,127,0,191,255,255,255,255,170,170, + // 0x005e ^ + 18,17,85,21,1,9,0,1,240,0,0,0,3,248,0,0,0,7,252,0,0,0,11,254,0,0,0,15,255,0,0,0,47,95,128,0,0,63,15,192,0,0,189,7,224,0,0,252,3,240,0,2,248,1,248,0,3,240,0,253,0,7,224,0,127,0,15,192,0,63,64,31,128,0,31,192,63,64,0,15,208,127,0,0,7,240,105,0,0,2,160, + // 0x005f _ + 16,3,12,16,0,250,255,255,255,254,255,255,255,254,170,170,170,169, + // 0x0060 ` + 9,7,21,11,1,21,106,128,0,63,224,0,15,240,0,3,252,0,0,254,0,0,63,64,0,0,0, + // 0x0061 a + 17,21,105,21,1,255,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0062 b + 18,29,145,22,3,255,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,170,0,0,254,47,255,224,0,254,191,255,252,0,255,254,91,255,0,255,208,1,255,64,255,128,0,127,128,255,0,0,63,192,255,0,0,47,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,191,128,255,240,2,255,0,255,255,255,253,0,252,127,255,248,0,252,11,255,208,0,0,0,20,0,0, + // 0x0063 c + 15,21,84,18,2,255,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x0064 d + 18,29,145,22,2,255,0,0,0,5,64,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,26,164,31,208,1,255,255,31,208,11,255,255,223,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,255,239,208,7,255,255,143,208,0,191,253,15,208,0,5,64,0,0, + // 0x0065 e + 17,21,105,21,2,255,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0066 f + 14,28,112,13,0,0,0,0,89,64,0,11,255,240,0,63,255,240,0,127,250,224,0,255,64,0,0,255,0,0,0,255,0,0,0,254,0,0,1,255,85,0,47,255,255,64,127,255,255,64,42,255,170,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0, + // 0x0067 g + 18,29,145,22,2,247,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x0068 h + 17,28,140,23,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,170,64,0,254,31,255,244,0,254,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x0069 i + 4,27,27,10,3,0,104,255,255,255,40,0,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006a j + 9,36,108,10,254,247,0,26,0,0,63,192,0,63,192,0,63,192,0,10,0,0,0,0,0,0,0,0,21,64,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,128,0,191,128,170,255,64,255,254,0,255,248,0,106,64,0, + // 0x006b k + 17,28,140,20,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,85,0,255,0,3,254,0,255,0,15,248,0,255,0,47,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,254,31,240,0,0,254,127,192,0,0,254,255,192,0,0,255,255,240,0,0,255,239,248,0,0,255,131,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,63,224,0,255,0,15,244,0,255,0,7,252,0,255,0,2,255,0,255,0,0,255,128, + // 0x006c l + 4,28,28,10,3,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 29,20,160,34,3,0,84,1,170,0,1,170,64,0,252,47,255,224,47,255,240,0,253,191,255,252,191,255,252,0,255,253,95,255,254,91,254,0,255,208,2,255,224,1,255,0,255,128,0,255,192,0,255,0,255,64,0,255,64,0,191,64,255,0,0,255,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64,255,0,0,191,0,0,191,64, + // 0x006e n + 17,20,100,23,3,0,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x006f o + 18,21,105,22,2,255,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x0070 p + 18,29,145,22,3,247,84,1,170,0,0,253,31,255,224,0,253,191,255,252,0,255,254,91,255,0,255,208,1,255,64,255,128,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,255,128,255,240,2,255,0,255,255,255,253,0,254,127,255,248,0,254,11,255,208,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x0071 q + 18,29,145,22,2,247,0,26,160,5,64,1,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,255,239,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,31,208,0,0,0,26,128, + // 0x0072 r + 12,20,60,15,3,0,84,1,169,252,15,254,253,63,253,254,255,253,255,248,0,255,208,0,255,128,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0073 s + 14,21,84,17,2,255,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x0074 t + 13,25,100,14,0,255,0,60,0,0,0,188,0,0,0,252,0,0,0,252,0,0,3,253,85,64,47,255,255,128,127,255,255,128,43,254,170,64,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,253,0,0,1,255,0,0,0,255,255,192,0,127,255,192,0,31,255,128,0,0,80,0, + // 0x0075 u + 17,21,105,23,3,255,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x0076 v + 19,20,100,19,0,0,85,0,0,1,84,191,64,0,7,248,127,128,0,15,240,63,192,0,15,240,47,208,0,31,208,15,240,0,63,192,15,240,0,63,128,7,244,0,191,64,3,252,0,255,0,2,252,1,254,0,1,254,2,252,0,0,255,3,252,0,0,127,7,244,0,0,63,139,240,0,0,47,207,224,0,0,31,223,208,0,0,15,255,192,0,0,11,255,128,0,0,3,255,0,0,0,3,255,0,0, + // 0x0077 w + 29,20,160,29,0,0,21,0,0,85,64,0,21,64,127,128,0,255,192,0,127,64,63,192,0,255,192,0,191,0,63,192,1,255,208,0,255,0,47,208,2,251,240,0,254,0,15,224,3,243,240,2,253,0,15,240,7,243,244,3,252,0,11,240,11,226,248,3,248,0,7,244,15,209,252,7,244,0,3,248,15,192,252,11,240,0,3,252,31,192,254,15,240,0,2,252,63,128,191,15,224,0,1,253,63,0,127,31,208,0,0,254,127,0,63,111,192,0,0,254,126,0,47,175,192,0,0,127,189,0,31,191,64,0,0,63,252,0,15,255,0,0,0,63,252,0,15,255,0,0,0,47,244,0,11,254,0,0,0,31,240,0,7,253,0,0, + // 0x0078 x + 18,20,100,20,1,0,85,0,0,21,64,191,192,0,63,192,63,208,0,255,64,15,240,2,254,0,7,252,3,252,0,3,253,15,244,0,0,255,31,224,0,0,127,255,192,0,0,47,255,0,0,0,15,254,0,0,0,15,253,0,0,0,47,255,0,0,0,127,255,192,0,0,255,47,224,0,2,254,15,240,0,7,252,7,252,0,15,240,2,254,0,47,224,0,255,64,127,192,0,127,192,255,0,0,47,224, + // 0x0079 y + 19,29,145,19,0,247,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x007a z + 15,20,80,17,1,0,21,85,85,80,63,255,255,248,63,255,255,248,42,170,175,244,0,0,31,224,0,0,63,192,0,0,255,0,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,128,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,192,0,0,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x007b { + 12,32,96,14,1,250,0,0,105,0,11,254,0,47,254,0,127,228,0,191,64,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,254,0,2,253,0,175,248,0,255,144,0,255,208,0,175,252,0,2,253,0,0,254,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,64,0,127,228,0,47,254,0,11,254,0,0,105, + // 0x007c | + 4,37,37,20,8,247,20,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,104, + // 0x007d } + 12,32,96,14,1,250,169,0,0,255,208,0,255,248,0,95,252,0,2,253,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,0,0,191,64,0,63,250,0,7,255,0,7,255,0,63,250,0,191,64,0,255,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,2,253,0,95,252,0,255,248,0,255,208,0,169,0,0, + // 0x007e ~ + 18,5,25,21,1,10,11,255,128,0,32,63,255,253,66,240,127,255,255,255,240,120,1,191,255,192,16,0,6,249,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Cyrillic_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Cyrillic_26.cpp new file mode 100644 index 000000000000..312da738b801 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Cyrillic_26.cpp @@ -0,0 +1,322 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Cyrillic 36pt, capital 'A' height: 26px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +extern const uint8_t NotoSans_Medium_Cyrillic_26[10307] = { + 130,26,1,4,145,4,34,247, // unifont_t + // 0x0401 Ё + 15,33,132,20,3,0,0,64,5,0,3,240,31,192,7,244,47,192,3,240,15,192,0,64,1,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0402 Ђ + 255, + // 0x0403 Ѓ + 255, + // 0x0404 Є + 20,27,135,24,2,255,0,0,127,255,144,0,11,255,255,255,0,127,255,255,255,1,255,249,86,253,7,255,0,0,24,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64,255,149,85,85,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,0,109,0,255,255,255,253,0,47,255,255,253,0,6,255,255,248,0,0,5,84,0, + // 0x0405 Ѕ + 255, + // 0x0406 І + 11,26,78,13,1,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x0407 Ї + 11,33,99,13,1,0,20,0,80,190,3,244,255,3,248,190,3,244,20,0,64,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x0408 Ј + 255, + // 0x0409 Љ + 255, + // 0x040a Њ + 255, + // 0x040b Ћ + 255, + // 0x040c Ќ + 255, + // 0x040d Ѝ + 255, + // 0x040e Ў + 255, + // 0x040f Џ + 255, + // 0x0410 А + 24,26,156,24,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0411 Б + 18,26,130,22,3,0,106,170,170,170,0,191,255,255,255,0,191,255,255,255,0,191,234,170,170,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,255,255,128,0,191,255,255,248,0,191,255,255,255,0,191,64,23,255,128,191,64,0,127,192,191,64,0,47,208,191,64,0,31,224,191,64,0,31,224,191,64,0,47,224,191,64,0,63,208,191,64,0,191,192,191,149,91,255,128,191,255,255,254,0,191,255,255,248,0,191,255,254,64,0, + // 0x0412 В + 19,26,130,24,3,0,106,170,169,64,0,191,255,255,248,0,191,255,255,255,64,191,170,175,255,192,191,64,0,127,224,191,64,0,47,240,191,64,0,15,240,191,64,0,15,240,191,64,0,31,224,191,64,0,63,208,191,64,1,255,128,191,255,255,254,0,191,255,255,224,0,191,255,255,255,0,191,64,5,255,208,191,64,0,47,240,191,64,0,15,244,191,64,0,7,248,191,64,0,7,248,191,64,0,11,248,191,64,0,15,244,191,64,0,47,240,191,64,22,255,224,191,255,255,255,192,191,255,255,254,0,191,255,255,144,0, + // 0x0413 Г + 16,26,104,19,3,0,106,170,170,169,191,255,255,253,191,255,255,253,191,234,170,169,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0, + // 0x0414 Д + 25,33,231,26,0,249,0,0,42,170,170,144,0,0,0,127,255,255,224,0,0,0,127,255,255,224,0,0,0,191,170,191,224,0,0,0,191,0,31,224,0,0,0,255,0,31,224,0,0,0,254,0,31,224,0,0,1,253,0,31,224,0,0,2,253,0,31,224,0,0,3,252,0,31,224,0,0,3,252,0,31,224,0,0,7,248,0,31,224,0,0,11,244,0,31,224,0,0,15,240,0,31,224,0,0,31,224,0,31,224,0,0,47,208,0,31,224,0,0,63,192,0,31,224,0,0,127,128,0,31,224,0,0,255,0,0,31,224,0,0,255,0,0,31,224,0,2,253,0,0,31,224,0,3,252,0,0,31,224,0,95,249,85,85,111,229,64,255,255,255,255,255,255,192,255,255,255,255,255,255,192,255,255,255,255,255,255,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192,255,0,0,0,0,63,192, + // 0x0415 Е + 15,26,104,20,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0416 Ж + 32,26,208,32,0,0,42,128,0,10,144,0,2,168,47,224,0,15,224,0,15,244,15,244,0,15,224,0,47,224,3,252,0,15,224,0,127,192,1,255,0,15,224,0,255,0,0,191,128,15,224,3,253,0,0,63,208,15,224,11,244,0,0,15,240,15,224,31,224,0,0,7,252,15,224,63,192,0,0,1,254,15,224,255,0,0,0,0,191,79,226,253,0,0,0,0,63,207,231,248,0,0,0,0,15,255,255,240,0,0,0,0,47,239,239,244,0,0,0,0,127,207,227,252,0,0,0,0,255,15,225,254,0,0,0,3,253,15,224,191,128,0,0,11,248,15,224,63,208,0,0,31,240,15,224,31,240,0,0,63,192,15,224,11,248,0,0,255,64,15,224,3,254,0,2,254,0,15,224,0,255,64,7,252,0,15,224,0,127,192,15,240,0,15,224,0,47,224,63,208,0,15,224,0,15,248,191,128,0,15,224,0,3,253, + // 0x0417 З + 19,27,135,22,1,255,0,111,255,224,0,7,255,255,254,0,63,255,255,255,192,63,228,1,255,224,14,0,0,31,240,0,0,0,15,244,0,0,0,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,63,208,0,0,6,255,128,1,255,255,253,0,1,255,255,144,0,1,255,255,254,0,0,85,91,255,192,0,0,0,47,240,0,0,0,11,248,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,7,248,0,0,0,15,244,121,0,0,191,240,127,255,255,255,192,127,255,255,255,0,27,255,255,228,0,0,5,80,0,0, + // 0x0418 И + 22,26,156,28,3,0,106,0,0,0,42,160,191,0,0,0,127,240,191,0,0,0,255,240,191,0,0,2,255,240,191,0,0,7,255,240,191,0,0,15,251,240,191,0,0,47,235,240,191,0,0,127,203,240,191,0,0,255,11,240,191,0,2,254,11,240,191,0,3,252,11,240,191,0,15,244,11,240,191,0,47,224,11,240,191,0,63,192,11,240,191,0,255,64,11,240,191,1,254,0,11,240,191,3,252,0,11,240,191,15,244,0,11,240,191,31,240,0,11,240,191,63,192,0,11,240,191,191,64,0,11,240,191,255,0,0,11,240,191,252,0,0,11,240,191,248,0,0,11,240,191,240,0,0,11,240,191,208,0,0,11,240, + // 0x0419 Й + 22,34,204,28,3,0,0,127,0,2,248,0,0,127,0,3,248,0,0,63,128,11,244,0,0,47,250,191,224,0,0,11,255,255,128,0,0,1,191,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,42,160,191,0,0,0,127,240,191,0,0,0,255,240,191,0,0,2,255,240,191,0,0,7,255,240,191,0,0,15,251,240,191,0,0,47,235,240,191,0,0,127,203,240,191,0,0,255,11,240,191,0,2,254,11,240,191,0,3,252,11,240,191,0,15,244,11,240,191,0,47,224,11,240,191,0,63,192,11,240,191,0,255,64,11,240,191,1,254,0,11,240,191,3,252,0,11,240,191,15,244,0,11,240,191,31,240,0,11,240,191,63,192,0,11,240,191,191,64,0,11,240,191,255,0,0,11,240,191,252,0,0,11,240,191,248,0,0,11,240,191,240,0,0,11,240,191,208,0,0,11,240, + // 0x041a К + 20,26,130,23,3,0,106,0,0,2,168,191,64,0,15,244,191,64,0,63,208,191,64,0,191,128,191,64,2,254,0,191,64,7,252,0,191,64,31,240,0,191,64,63,192,0,191,64,255,64,0,191,67,253,0,0,191,75,248,0,0,191,111,224,0,0,191,255,192,0,0,191,191,208,0,0,191,95,240,0,0,191,75,252,0,0,191,66,255,0,0,191,64,255,128,0,191,64,63,224,0,191,64,15,244,0,191,64,7,252,0,191,64,2,255,0,191,64,0,191,192,191,64,0,63,224,191,64,0,15,248,191,64,0,3,253, + // 0x041b Л + 23,27,162,26,0,255,0,0,170,170,170,164,0,1,255,255,255,244,0,2,255,255,255,244,0,2,254,170,175,244,0,3,252,0,7,244,0,3,248,0,7,244,0,3,248,0,7,244,0,3,244,0,7,244,0,7,244,0,7,244,0,7,240,0,7,244,0,11,240,0,7,244,0,15,240,0,7,244,0,15,240,0,7,244,0,15,224,0,7,244,0,31,208,0,7,244,0,31,208,0,7,244,0,47,192,0,7,244,0,63,192,0,7,244,0,63,192,0,7,244,0,63,128,0,7,244,0,191,64,0,7,244,0,255,0,0,7,244,2,255,0,0,7,244,255,253,0,0,7,244,255,248,0,0,7,244,255,224,0,0,7,244,21,0,0,0,0,0, + // 0x041c М + 27,26,182,33,3,0,106,160,0,0,0,42,164,191,244,0,0,0,127,248,191,252,0,0,0,191,248,191,252,0,0,0,255,248,191,253,0,0,1,255,248,191,191,0,0,3,247,248,191,127,0,0,3,243,248,191,63,128,0,11,227,248,191,47,192,0,15,211,248,191,31,208,0,31,195,248,191,15,224,0,47,131,248,191,11,240,0,63,67,248,191,3,244,0,127,3,248,191,3,248,0,254,3,248,191,1,252,0,252,3,248,191,0,253,2,252,3,248,191,0,255,3,244,3,248,191,0,127,7,240,3,248,191,0,63,75,224,3,248,191,0,47,207,208,3,248,191,0,31,239,192,3,248,191,0,15,255,128,3,248,191,0,11,255,0,3,248,191,0,7,255,0,3,248,191,0,3,254,0,3,248,191,0,2,252,0,3,248, + // 0x041d Н + 21,26,156,27,3,0,106,0,0,0,106,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,191,85,85,85,191,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64, + // 0x041e О + 24,27,162,28,2,255,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x041f П + 20,26,130,26,3,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,191,234,170,170,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255,191,64,0,0,255, + // 0x0420 Р + 17,26,130,22,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,252,0,191,170,191,255,0,191,64,2,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,192,191,64,0,255,128,191,64,27,255,0,191,255,255,253,0,191,255,255,240,0,191,255,254,64,0,191,84,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0, + // 0x0421 С + 20,27,135,23,2,255,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x0422 Т + 20,26,130,20,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x0423 У + 23,27,162,23,0,255,106,128,0,0,2,168,63,192,0,0,11,244,31,224,0,0,15,240,15,240,0,0,47,208,7,248,0,0,63,192,3,252,0,0,127,128,1,254,0,0,255,0,0,255,0,1,254,0,0,127,128,2,253,0,0,63,192,3,252,0,0,31,224,11,244,0,0,15,240,15,240,0,0,7,248,31,208,0,0,3,252,63,192,0,0,1,253,63,128,0,0,0,255,191,0,0,0,0,127,254,0,0,0,0,63,253,0,0,0,0,31,252,0,0,0,0,15,244,0,0,0,0,47,240,0,0,0,0,127,208,0,0,25,6,255,128,0,0,31,255,255,0,0,0,31,255,252,0,0,0,31,255,208,0,0,0,0,84,0,0,0,0, + // 0x0424 Ф + 26,27,189,30,2,255,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,6,191,255,228,0,0,0,191,255,255,255,208,0,3,255,255,255,255,248,0,15,255,151,249,111,254,0,63,244,3,248,2,255,64,127,192,3,248,0,127,192,255,64,3,248,0,47,208,255,0,3,248,0,31,224,254,0,3,248,0,15,224,254,0,3,248,0,15,224,254,0,3,248,0,15,224,255,0,3,248,0,31,224,255,0,3,248,0,47,208,191,128,3,248,0,63,192,63,224,3,248,0,255,128,31,253,3,248,11,255,0,11,255,255,255,255,252,0,1,255,255,255,255,224,0,0,31,255,255,254,0,0,0,0,23,253,64,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,1,80,0,0,0, + // 0x0425 Х + 22,26,156,22,0,0,42,128,0,0,42,128,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,2,254,0,11,248,0,0,255,0,15,240,0,0,127,192,47,192,0,0,47,208,127,128,0,0,15,240,255,0,0,0,7,250,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,208,0,0,0,0,255,240,0,0,0,2,255,244,0,0,0,3,255,252,0,0,0,15,241,254,0,0,0,31,208,255,64,0,0,63,192,63,192,0,0,191,64,47,224,0,1,254,0,15,244,0,3,252,0,7,252,0,11,244,0,2,254,0,31,240,0,0,255,0,63,192,0,0,127,192,191,128,0,0,63,224, + // 0x0426 Ц + 24,33,198,27,3,249,106,0,0,0,170,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,64,0,0,255,0,191,149,85,85,255,84,191,255,255,255,255,253,191,255,255,255,255,253,191,255,255,255,255,253,0,0,0,0,1,253,0,0,0,0,1,253,0,0,0,0,1,253,0,0,0,0,1,253,0,0,0,0,1,253,0,0,0,0,1,253,0,0,0,0,1,253, + // 0x0427 Ч + 20,26,130,25,2,0,106,64,0,0,170,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,64,0,0,255,127,128,0,0,255,127,128,0,0,255,63,192,0,1,255,63,244,1,111,255,31,255,255,255,255,7,255,255,255,255,0,191,255,144,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255, + // 0x0428 Ш + 32,26,208,38,3,0,106,0,0,10,160,0,1,168,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,64,0,15,240,0,2,253,191,149,85,95,245,85,86,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253, + // 0x0429 Щ + 35,33,41,38,3,249,106,0,0,10,144,0,2,168,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,64,0,31,224,0,3,252,0,191,149,85,111,245,85,87,253,80,191,255,255,255,255,255,255,255,244,191,255,255,255,255,255,255,255,244,191,255,255,255,255,255,255,255,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244, + // 0x042a Ъ + 24,26,156,25,0,0,170,170,160,0,0,0,255,255,240,0,0,0,255,255,240,0,0,0,170,175,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,244,0,0,0,0,11,255,255,228,0,0,11,255,255,255,128,0,11,255,255,255,224,0,11,244,1,191,244,0,11,240,0,11,252,0,11,240,0,3,253,0,11,240,0,2,253,0,11,240,0,2,253,0,11,240,0,2,253,0,11,240,0,3,252,0,11,240,0,11,252,0,11,245,85,191,244,0,11,255,255,255,224,0,11,255,255,255,64,0,11,255,255,228,0, + // 0x042b Ы + 25,26,182,31,3,0,106,0,0,0,0,42,128,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,64,0,0,0,63,192,191,255,254,64,0,63,192,191,255,255,244,0,63,192,191,255,255,254,0,63,192,191,64,27,255,64,63,192,191,64,0,191,192,63,192,191,64,0,63,192,63,192,191,64,0,47,208,63,192,191,64,0,47,208,63,192,191,64,0,63,208,63,192,191,64,0,63,192,63,192,191,64,0,255,192,63,192,191,64,91,255,0,63,192,191,255,255,253,0,63,192,191,255,255,244,0,63,192,191,255,254,64,0,63,192, + // 0x042c Ь + 19,26,130,23,3,0,106,0,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,255,255,144,0,191,255,255,253,0,191,255,255,255,64,191,64,6,255,208,191,64,0,47,224,191,64,0,15,240,191,64,0,15,240,191,64,0,11,244,191,64,0,15,240,191,64,0,15,240,191,64,0,63,224,191,149,86,255,192,191,255,255,255,64,191,255,255,252,0,191,255,255,144,0, + // 0x042d Э + 20,27,135,23,1,255,6,255,254,64,0,191,255,255,244,0,127,255,255,254,0,63,165,91,255,192,20,0,0,191,224,0,0,0,47,240,0,0,0,11,248,0,0,0,3,252,0,0,0,2,253,0,0,0,1,254,0,0,0,1,255,1,255,255,255,255,1,255,255,255,255,1,255,255,255,255,0,85,85,86,255,0,0,0,1,254,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,11,252,0,0,0,31,244,0,0,0,127,224,185,0,7,255,192,191,255,255,255,0,191,255,255,248,0,47,255,255,128,0,0,21,64,0,0, + // 0x042e Ю + 33,27,243,38,3,255,106,0,0,0,47,255,208,0,0,191,64,0,2,255,255,254,0,0,191,64,0,15,255,255,255,192,0,191,64,0,63,253,85,255,240,0,191,64,0,255,208,0,31,248,0,191,64,1,255,0,0,7,252,0,191,64,3,254,0,0,2,254,0,191,64,3,252,0,0,0,255,0,191,64,7,248,0,0,0,255,64,191,64,11,244,0,0,0,191,128,191,64,15,240,0,0,0,127,128,191,255,255,240,0,0,0,127,192,191,255,255,240,0,0,0,63,192,191,255,255,240,0,0,0,63,192,191,85,95,240,0,0,0,63,192,191,64,15,240,0,0,0,127,128,191,64,11,244,0,0,0,127,128,191,64,11,248,0,0,0,191,64,191,64,7,252,0,0,0,255,0,191,64,3,253,0,0,1,255,0,191,64,2,255,0,0,3,253,0,191,64,0,255,192,0,15,252,0,191,64,0,127,244,0,191,240,0,191,64,0,31,255,255,255,208,0,191,64,0,7,255,255,255,0,0,191,64,0,0,127,255,244,0,0,0,0,0,0,0,84,0,0,0, + // 0x042f Я + 19,26,130,23,1,0,0,1,106,170,168,0,47,255,255,252,1,255,255,255,252,3,255,234,171,252,11,253,0,3,252,15,240,0,3,252,31,240,0,3,252,31,224,0,3,252,31,224,0,3,252,15,240,0,3,252,15,248,0,3,252,7,254,0,3,252,2,255,250,171,252,0,191,255,255,252,0,11,255,255,252,0,15,250,171,252,0,31,240,3,252,0,63,192,3,252,0,191,128,3,252,1,255,0,3,252,3,253,0,3,252,11,248,0,3,252,31,240,0,3,252,63,224,0,3,252,191,192,0,3,252,255,64,0,3,252, + // 0x0430 а + 17,21,105,21,1,255,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0431 б + 18,29,145,22,2,255,0,0,0,1,64,0,0,6,255,208,0,6,255,255,224,0,127,255,255,224,1,255,255,148,0,7,255,64,0,0,15,244,0,0,0,47,208,0,0,0,63,192,0,0,0,63,64,0,0,0,191,2,255,224,0,191,31,255,252,0,255,127,255,255,0,255,253,1,255,192,255,224,0,63,192,255,128,0,47,224,255,0,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,0,0,15,240,127,128,0,31,224,63,192,0,47,208,47,224,0,63,192,15,248,1,255,128,7,255,255,255,0,1,255,255,248,0,0,47,255,208,0,0,0,80,0,0, + // 0x0432 в + 17,20,100,21,3,0,85,85,84,0,0,255,255,255,208,0,255,255,255,252,0,255,170,175,254,0,255,0,1,255,0,255,0,0,255,0,255,0,0,255,0,255,0,2,254,0,255,170,175,248,0,255,255,255,144,0,255,255,255,244,0,255,85,91,254,0,255,0,0,255,64,255,0,0,127,128,255,0,0,127,128,255,0,0,191,128,255,0,2,255,0,255,255,255,254,0,255,255,255,248,0,255,255,254,128,0, + // 0x0433 г + 13,20,80,16,3,0,85,85,85,0,255,255,255,64,255,255,255,64,255,170,170,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0434 д + 21,27,162,22,0,249,0,1,85,85,80,0,0,3,255,255,244,0,0,3,255,255,244,0,0,3,250,175,244,0,0,7,244,7,244,0,0,7,240,7,244,0,0,11,240,7,244,0,0,15,240,7,244,0,0,15,224,7,244,0,0,31,208,7,244,0,0,47,192,7,244,0,0,63,128,7,244,0,0,127,64,7,244,0,0,255,0,7,244,0,1,254,0,7,244,0,3,252,0,7,244,0,11,244,0,7,244,0,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,0,0,0,31,192,127,0,0,0,31,192,127,0,0,0,31,192,127,0,0,0,31,192,127,0,0,0,31,192,127,0,0,0,31,192,127,0,0,0,31,192, + // 0x0435 е + 17,21,105,21,2,255,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0436 ж + 28,20,140,28,0,0,21,64,0,85,0,1,84,47,224,0,191,0,3,252,11,244,0,191,0,15,240,3,252,0,191,0,63,192,0,255,0,191,0,191,64,0,127,128,191,1,253,0,0,31,224,191,7,248,0,0,11,244,191,15,240,0,0,3,252,191,63,192,0,0,0,255,191,191,0,0,0,0,255,255,255,64,0,0,3,253,191,63,192,0,0,11,244,191,15,240,0,0,47,224,191,7,248,0,0,127,192,191,2,254,0,0,255,0,191,0,191,64,3,252,0,191,0,63,208,15,244,0,191,0,15,240,47,208,0,191,0,3,252,191,128,0,191,0,1,255, + // 0x0437 з + 16,21,84,18,1,255,1,171,164,0,63,255,255,128,63,255,255,240,47,149,95,252,0,0,3,252,0,0,1,252,0,0,2,252,0,0,7,248,0,170,191,224,0,255,255,0,0,255,255,208,0,85,111,248,0,0,3,253,0,0,0,254,0,0,0,254,0,0,1,254,228,0,7,253,255,251,255,252,255,255,255,240,47,255,255,64,0,21,64,0, + // 0x0438 и + 18,20,100,24,3,0,85,0,0,21,80,254,0,0,127,240,254,0,0,255,240,254,0,2,255,240,254,0,3,255,240,254,0,15,251,240,254,0,31,219,240,254,0,63,139,240,254,0,255,11,240,254,1,253,11,240,254,3,252,11,240,254,11,240,11,240,254,31,208,11,240,254,63,192,11,240,253,191,0,11,240,254,254,0,11,240,255,252,0,11,240,255,244,0,11,240,255,224,0,11,240,255,192,0,11,240, + // 0x0439 й + 18,28,140,24,3,0,6,144,0,42,64,15,224,0,63,64,11,240,0,191,0,3,253,87,254,0,1,255,255,252,0,0,47,255,208,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,80,254,0,0,127,240,254,0,0,255,240,254,0,2,255,240,254,0,3,255,240,254,0,15,251,240,254,0,31,219,240,254,0,63,139,240,254,0,255,11,240,254,1,253,11,240,254,3,252,11,240,254,11,240,11,240,254,31,208,11,240,254,63,192,11,240,253,191,0,11,240,254,254,0,11,240,255,252,0,11,240,255,244,0,11,240,255,224,0,11,240,255,192,0,11,240, + // 0x043a к + 17,20,100,20,3,0,85,0,0,85,0,255,0,3,253,0,255,0,15,244,0,255,0,47,208,0,255,0,127,128,0,255,1,254,0,0,255,3,252,0,0,255,15,240,0,0,255,63,192,0,0,255,191,64,0,0,255,255,64,0,0,255,63,208,0,0,255,15,240,0,0,255,7,252,0,0,255,1,255,0,0,255,0,191,128,0,255,0,47,224,0,255,0,15,248,0,255,0,3,253,0,255,0,0,255,64, + // 0x043b л + 19,21,105,22,0,255,0,5,85,85,80,0,15,255,255,248,0,15,255,255,248,0,31,234,175,248,0,31,192,7,248,0,31,192,7,248,0,47,192,7,248,0,47,192,7,248,0,63,128,7,248,0,63,128,7,248,0,63,64,7,248,0,127,64,7,248,0,191,0,7,248,0,255,0,7,248,0,254,0,7,248,2,253,0,7,248,7,252,0,7,248,255,244,0,7,248,255,240,0,7,248,255,128,0,7,248,4,0,0,0,0, + // 0x043c м + 22,20,120,28,3,0,85,64,0,0,21,80,255,224,0,0,191,240,255,240,0,0,255,240,255,244,0,1,255,240,255,248,0,3,255,240,254,252,0,3,251,240,253,253,0,11,235,240,253,127,0,15,219,240,253,63,0,31,203,240,253,47,128,47,139,240,253,31,192,63,11,240,253,15,208,191,11,240,253,11,240,253,11,240,253,3,241,252,11,240,253,2,250,248,11,240,253,1,255,240,11,240,253,0,255,240,11,240,253,0,191,208,11,240,253,0,63,192,11,240,253,0,63,128,11,240, + // 0x043d н + 17,20,100,23,3,0,85,0,0,21,64,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,170,170,191,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192, + // 0x043e о + 18,21,105,22,2,255,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x043f п + 17,20,100,23,3,0,85,85,85,85,64,255,255,255,255,192,255,255,255,255,192,255,170,170,191,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x0440 р + 18,29,145,22,3,247,84,1,170,0,0,253,31,255,224,0,253,191,255,252,0,255,254,91,255,0,255,208,1,255,64,255,128,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,47,208,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,64,0,63,192,255,192,0,255,128,255,240,2,255,0,255,255,255,253,0,254,127,255,248,0,254,11,255,208,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x0441 с + 15,21,84,18,2,255,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x0442 т + 17,20,100,18,0,0,21,85,85,85,64,127,255,255,255,192,127,255,255,255,192,42,171,254,170,128,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0, + // 0x0443 у + 19,29,145,19,0,247,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x0444 ф + 23,37,222,27,2,247,0,0,5,64,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,0,15,208,0,0,0,1,111,229,0,0,0,47,255,255,224,0,2,255,255,255,253,0,11,255,175,235,255,128,47,244,15,208,191,208,63,208,15,208,31,240,191,128,15,208,11,244,255,0,15,208,3,252,255,0,15,208,3,252,255,0,15,208,3,252,255,0,15,208,3,252,255,0,15,208,3,252,255,0,15,208,3,252,191,64,15,208,7,248,127,192,15,208,15,244,63,224,15,208,47,240,15,253,15,209,255,192,3,255,255,255,255,64,0,191,255,255,252,0,0,11,255,255,144,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,10,128,0,0, + // 0x0445 х + 18,20,100,20,1,0,85,0,0,21,64,191,192,0,63,192,63,208,0,255,64,15,240,2,254,0,7,252,3,252,0,3,253,15,244,0,0,255,31,224,0,0,127,255,192,0,0,47,255,0,0,0,15,254,0,0,0,15,253,0,0,0,47,255,0,0,0,127,255,192,0,0,255,47,224,0,2,254,15,240,0,7,252,7,252,0,15,240,2,254,0,47,224,0,255,64,127,192,0,127,192,255,0,0,47,224, + // 0x0446 ц + 20,27,135,23,3,249,85,0,0,21,64,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,190, + // 0x0447 ч + 18,20,100,23,2,0,21,0,0,5,64,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,64,0,31,224,127,192,0,127,224,63,245,91,255,224,31,255,255,255,224,7,255,255,95,224,0,106,144,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224, + // 0x0448 ш + 27,20,140,33,3,0,85,0,0,84,0,1,84,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252, + // 0x0449 щ + 30,27,216,33,3,249,85,0,0,84,0,1,84,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,0,1,253,0,3,252,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,224, + // 0x044a ъ + 24,20,120,25,0,0,21,85,80,0,0,0,191,255,244,0,0,0,191,255,244,0,0,0,106,175,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,254,170,148,0,0,7,255,255,255,128,0,7,255,255,255,240,0,7,249,85,111,252,0,7,244,0,3,253,0,7,244,0,1,253,0,7,244,0,1,253,0,7,244,0,2,253,0,7,244,0,11,252,0,7,255,255,255,244,0,7,255,255,255,208,0,7,255,255,249,0, + // 0x044b ы + 23,20,120,29,3,0,85,0,0,0,1,84,255,0,0,0,3,252,255,0,0,0,3,252,255,0,0,0,3,252,255,0,0,0,3,252,255,0,0,0,3,252,255,0,0,0,3,252,255,0,0,0,3,252,255,170,164,0,3,252,255,255,255,208,3,252,255,255,255,248,3,252,255,85,111,253,3,252,255,0,1,254,3,252,255,0,0,255,3,252,255,0,0,255,3,252,255,0,1,254,3,252,255,0,7,253,3,252,255,255,255,252,3,252,255,255,255,224,3,252,255,255,254,64,3,252, + // 0x044c ь + 17,20,100,22,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,170,169,0,0,255,255,255,244,0,255,255,255,254,0,255,85,91,255,64,255,0,0,191,128,255,0,0,63,192,255,0,0,63,192,255,0,0,127,128,255,0,1,255,64,255,255,255,254,0,255,255,255,248,0,255,255,255,128,0, + // 0x044d э + 15,21,84,18,1,255,6,170,64,0,127,255,253,0,127,255,255,64,62,86,255,208,0,0,47,240,0,0,11,244,0,0,7,248,0,0,3,252,5,85,87,252,11,255,255,252,11,255,255,252,6,170,171,252,0,0,3,252,0,0,3,252,0,0,11,244,0,0,15,240,144,0,127,224,255,239,255,192,255,255,254,0,127,255,228,0,0,84,0,0, + // 0x044e ю + 26,21,147,31,3,255,85,0,0,6,169,0,0,255,0,0,191,255,224,0,255,0,3,255,255,252,0,255,0,15,254,91,254,0,255,0,47,240,0,255,64,255,0,63,192,0,63,192,255,0,127,128,0,63,192,255,0,127,64,0,47,208,255,170,255,64,0,31,224,255,255,255,0,0,31,224,255,255,255,0,0,31,224,255,170,255,0,0,31,224,255,0,191,64,0,31,208,255,0,127,128,0,47,208,255,0,63,192,0,63,192,255,0,63,208,0,127,128,255,0,31,244,1,255,0,255,0,11,255,255,253,0,255,0,2,255,255,244,0,255,0,0,111,255,128,0,0,0,0,0,80,0,0, + // 0x044f я + 18,20,100,20,0,0,0,1,85,85,64,0,191,255,255,224,3,255,255,255,224,11,254,170,175,224,15,240,0,31,224,31,208,0,31,224,31,208,0,31,224,31,208,0,31,224,15,240,0,31,224,11,255,149,111,224,3,255,255,255,224,0,127,255,255,224,0,31,229,111,224,0,63,192,31,224,0,255,0,31,224,2,254,0,31,224,3,252,0,31,224,15,244,0,31,224,47,224,0,31,224,127,192,0,31,224, + // 0x0450 ѐ + 255, + // 0x0451 ё + 17,28,140,21,2,255,0,80,1,64,0,3,248,15,208,0,3,252,15,224,0,2,248,15,208,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0452 ђ + 255, + // 0x0453 ѓ + 255, + // 0x0454 є + 15,21,84,18,2,255,0,6,170,64,0,255,255,248,7,255,255,244,31,254,86,240,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,85,85,64,255,255,255,128,255,255,255,128,255,170,170,64,255,0,0,0,255,0,0,0,191,64,0,0,63,192,0,0,47,244,0,36,15,255,255,248,3,255,255,248,0,127,255,224,0,0,84,0, + // 0x0455 ѕ + 255, + // 0x0456 і + 4,27,27,10,3,0,104,255,255,255,40,0,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0457 ї + 11,27,81,10,255,0,4,0,80,63,1,252,127,66,252,63,1,252,4,0,16,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x0458 ј + 255, + // 0x0459 љ + 255, + // 0x045a њ + 255, + // 0x045b ћ + 255, + // 0x045c ќ + 255, + // 0x045d ѝ + 255, + // 0x045e ў + 255, + // 0x045f џ + 255, + // 0x0460 Ѡ + 255, + // 0x0461 ѡ + 255, + // 0x0462 Ѣ + 255, + // 0x0463 ѣ + 255, + // 0x0464 Ѥ + 255, + // 0x0465 ѥ + 255, + // 0x0466 Ѧ + 255, + // 0x0467 ѧ + 255, + // 0x0468 Ѩ + 255, + // 0x0469 ѩ + 255, + // 0x046a Ѫ + 255, + // 0x046b ѫ + 255, + // 0x046c Ѭ + 255, + // 0x046d ѭ + 255, + // 0x046e Ѯ + 255, + // 0x046f ѯ + 255, + // 0x0470 Ѱ + 255, + // 0x0471 ѱ + 255, + // 0x0472 Ѳ + 255, + // 0x0473 ѳ + 255, + // 0x0474 Ѵ + 255, + // 0x0475 ѵ + 255, + // 0x0476 Ѷ + 255, + // 0x0477 ѷ + 255, + // 0x0478 Ѹ + 255, + // 0x0479 ѹ + 255, + // 0x047a Ѻ + 255, + // 0x047b ѻ + 255, + // 0x047c Ѽ + 255, + // 0x047d ѽ + 255, + // 0x047e Ѿ + 255, + // 0x047f ѿ + 255, + // 0x0480 Ҁ + 255, + // 0x0481 ҁ + 255, + // 0x0482 ҂ + 255, + // 0x0483 ҃ + 255, + // 0x0484 ҄ + 255, + // 0x0485 ҅ + 255, + // 0x0486 ҆ + 255, + // 0x0487 ҇ + 255, + // 0x0488 ҈ + 255, + // 0x0489 ҉ + 255, + // 0x048a Ҋ + 255, + // 0x048b ҋ + 255, + // 0x048c Ҍ + 255, + // 0x048d ҍ + 255, + // 0x048e Ҏ + 255, + // 0x048f ҏ + 255, + // 0x0490 Ґ + 16,31,124,20,3,0,0,0,0,191,0,0,0,191,0,0,0,191,0,0,0,191,0,0,0,191,106,170,170,255,191,255,255,255,191,255,255,255,191,234,170,170,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0, + // 0x0491 ґ + 13,25,100,16,3,0,0,0,63,128,0,0,63,128,0,0,63,128,0,0,63,128,0,0,63,128,85,85,127,128,255,255,255,128,255,255,255,128,255,170,170,64,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Greek_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Greek_26.cpp new file mode 100644 index 000000000000..fcb06f5a101e --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Greek_26.cpp @@ -0,0 +1,178 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Greek 36pt, capital 'A' height: 26px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +extern const uint8_t NotoSans_Medium_Greek_26[9565] = { + 130,26,134,3,206,3,34,247, // unifont_t + // 0x0386 Ά + 26,26,182,26,0,0,15,244,0,127,128,0,0,31,240,0,255,192,0,0,47,192,0,255,224,0,0,63,128,2,255,240,0,0,127,0,3,251,244,0,0,189,0,7,243,248,0,0,0,0,11,242,252,0,0,0,0,15,224,253,0,0,0,0,31,192,255,0,0,0,0,63,192,191,0,0,0,0,63,128,63,128,0,0,0,191,0,63,192,0,0,0,255,0,31,208,0,0,1,253,0,15,224,0,0,2,252,0,11,240,0,0,3,255,255,255,244,0,0,7,255,255,255,252,0,0,15,255,255,255,252,0,0,15,250,170,170,254,0,0,47,208,0,0,255,0,0,63,192,0,0,191,64,0,127,128,0,0,127,128,0,255,0,0,0,63,192,0,255,0,0,0,47,208,2,254,0,0,0,15,240,3,252,0,0,0,15,240, + // 0x0387 · + 255, + // 0x0388 Έ + 25,26,182,27,0,0,15,244,10,170,170,170,64,31,240,15,255,255,255,64,47,192,15,255,255,255,64,63,128,15,250,170,170,64,127,0,15,240,0,0,0,189,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,255,255,255,0,0,0,15,255,255,255,0,0,0,15,255,255,255,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,245,85,85,0,0,0,15,255,255,255,64,0,0,15,255,255,255,64,0,0,15,255,255,255,64, + // 0x0389 Ή + 30,26,208,33,0,0,15,244,10,160,0,0,10,160,31,240,15,240,0,0,15,240,47,192,15,240,0,0,15,240,63,128,15,240,0,0,15,240,127,0,15,240,0,0,15,240,189,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,255,255,255,255,240,0,0,15,255,255,255,255,240,0,0,15,255,255,255,255,240,0,0,15,245,85,85,95,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240, + // 0x038a Ί + 19,26,130,20,0,0,15,244,106,170,164,31,240,127,255,248,47,192,63,255,244,63,128,2,254,0,127,0,1,254,0,189,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,31,255,224,0,0,127,255,248,0,0,127,255,248, + // 0x038b ΋ + 255, + // 0x038c Ό + 31,27,216,33,0,255,15,244,0,6,255,249,0,0,31,240,0,191,255,255,208,0,47,192,3,255,255,255,248,0,63,128,15,255,149,111,255,0,127,0,63,244,0,2,255,128,189,0,127,208,0,0,127,192,0,0,255,128,0,0,63,224,0,1,255,0,0,0,15,240,0,2,254,0,0,0,15,244,0,3,253,0,0,0,11,248,0,3,252,0,0,0,7,248,0,3,252,0,0,0,7,252,0,3,252,0,0,0,7,252,0,3,252,0,0,0,7,252,0,3,252,0,0,0,7,252,0,3,252,0,0,0,7,248,0,3,253,0,0,0,11,248,0,2,254,0,0,0,15,244,0,1,255,0,0,0,15,240,0,0,255,64,0,0,47,224,0,0,191,192,0,0,127,208,0,0,63,240,0,1,255,128,0,0,31,254,64,27,255,0,0,0,7,255,255,255,252,0,0,0,0,255,255,255,224,0,0,0,0,27,255,254,0,0,0,0,0,0,21,64,0,0, + // 0x038d ΍ + 255, + // 0x038e Ύ + 29,26,208,29,0,0,15,244,106,128,0,0,42,128,31,240,63,192,0,0,127,128,47,192,31,224,0,0,255,0,63,128,15,244,0,2,254,0,127,0,7,252,0,3,252,0,189,0,3,253,0,11,248,0,0,0,1,255,0,15,240,0,0,0,0,255,64,47,208,0,0,0,0,63,192,63,192,0,0,0,0,47,208,191,64,0,0,0,0,15,240,255,0,0,0,0,0,11,246,252,0,0,0,0,0,3,255,248,0,0,0,0,0,2,255,240,0,0,0,0,0,0,255,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0, + // 0x038f Ώ + 31,26,208,31,0,0,15,244,0,27,255,228,0,0,31,240,1,255,255,255,128,0,47,192,11,255,255,255,240,0,63,128,47,254,85,191,252,0,127,0,127,224,0,7,255,0,189,0,255,128,0,0,255,128,0,2,255,0,0,0,127,192,0,3,253,0,0,0,63,208,0,7,252,0,0,0,31,240,0,7,248,0,0,0,15,240,0,11,248,0,0,0,15,240,0,11,244,0,0,0,15,240,0,11,244,0,0,0,15,240,0,11,244,0,0,0,15,240,0,7,248,0,0,0,15,240,0,3,252,0,0,0,15,224,0,3,252,0,0,0,31,208,0,2,253,0,0,0,63,192,0,0,255,0,0,0,127,128,0,0,127,128,0,0,255,0,0,0,47,208,0,3,252,0,0,0,11,244,0,15,240,0,0,5,87,254,0,127,213,80,0,15,255,255,0,191,255,244,0,15,255,255,0,191,255,244,0,15,255,255,0,191,255,244, + // 0x0390 ΐ + 255, + // 0x0391 Α + 24,26,156,24,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0392 Β + 19,26,130,24,3,0,106,170,169,64,0,191,255,255,248,0,191,255,255,255,64,191,170,175,255,192,191,64,0,127,224,191,64,0,47,240,191,64,0,15,240,191,64,0,15,240,191,64,0,31,224,191,64,0,63,208,191,64,1,255,128,191,255,255,254,0,191,255,255,224,0,191,255,255,255,0,191,64,5,255,208,191,64,0,47,240,191,64,0,15,244,191,64,0,7,248,191,64,0,7,248,191,64,0,11,248,191,64,0,15,244,191,64,0,47,240,191,64,22,255,224,191,255,255,255,192,191,255,255,254,0,191,255,255,144,0, + // 0x0393 Γ + 14,26,104,18,3,0,106,170,170,160,191,255,255,240,191,255,255,240,191,170,170,160,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0, + // 0x0394 Δ + 23,26,156,23,0,0,0,0,31,224,0,0,0,0,63,240,0,0,0,0,127,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,252,255,0,0,0,3,252,127,0,0,0,3,244,63,128,0,0,11,240,47,192,0,0,15,224,31,208,0,0,31,208,15,224,0,0,63,192,11,240,0,0,63,128,7,248,0,0,191,0,3,252,0,0,255,0,2,253,0,1,253,0,0,254,0,3,252,0,0,255,0,3,248,0,0,127,64,11,244,0,0,63,192,15,240,0,0,47,192,31,224,0,0,31,224,47,192,0,0,15,240,63,213,85,85,95,244,127,255,255,255,255,252,191,255,255,255,255,252,191,255,255,255,255,252, + // 0x0395 Ε + 15,26,104,20,3,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0396 Ζ + 19,26,130,21,1,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x0397 Η + 21,26,156,27,3,0,106,0,0,0,106,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,191,85,85,85,191,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64, + // 0x0398 Θ + 24,27,162,28,2,255,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,66,170,170,128,255,255,67,255,255,208,255,255,67,255,255,208,255,255,66,170,170,128,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x0399 Ι + 11,26,78,13,1,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x039a Κ + 20,26,130,23,3,0,106,0,0,2,168,191,64,0,15,244,191,64,0,63,224,191,64,0,191,128,191,64,2,255,0,191,64,7,252,0,191,64,31,240,0,191,64,63,192,0,191,64,255,64,0,191,67,253,0,0,191,79,248,0,0,191,111,240,0,0,191,255,244,0,0,191,255,252,0,0,191,247,254,0,0,191,208,255,64,0,191,64,191,192,0,191,64,63,240,0,191,64,15,248,0,191,64,7,252,0,191,64,2,255,0,191,64,0,255,128,191,64,0,63,208,191,64,0,47,240,191,64,0,15,248,191,64,0,3,253, + // 0x039b Λ + 23,26,156,23,0,0,0,0,47,208,0,0,0,0,63,240,0,0,0,0,191,240,0,0,0,0,255,244,0,0,0,1,254,252,0,0,0,2,253,252,0,0,0,3,248,254,0,0,0,7,240,191,0,0,0,11,240,127,64,0,0,15,224,63,128,0,0,31,192,47,192,0,0,63,192,31,208,0,0,63,128,15,224,0,0,191,0,11,240,0,0,255,0,7,244,0,0,254,0,3,252,0,2,252,0,2,252,0,3,252,0,1,253,0,7,248,0,0,255,0,11,240,0,0,191,0,15,240,0,0,127,128,31,224,0,0,63,192,47,192,0,0,47,208,63,192,0,0,31,224,127,128,0,0,15,240,255,0,0,0,11,244, + // 0x039c Μ + 27,26,182,33,3,0,106,160,0,0,0,42,164,191,244,0,0,0,127,248,191,252,0,0,0,191,248,191,252,0,0,0,255,248,191,253,0,0,1,255,248,191,191,0,0,3,247,248,191,127,0,0,3,243,248,191,63,128,0,11,227,248,191,47,192,0,15,211,248,191,31,208,0,31,195,248,191,15,224,0,47,131,248,191,11,240,0,63,67,248,191,3,244,0,127,3,248,191,3,248,0,254,3,248,191,1,252,0,252,3,248,191,0,253,2,252,3,248,191,0,255,3,244,3,248,191,0,127,7,240,3,248,191,0,63,75,224,3,248,191,0,47,207,208,3,248,191,0,31,239,192,3,248,191,0,15,255,128,3,248,191,0,11,255,0,3,248,191,0,7,255,0,3,248,191,0,3,254,0,3,248,191,0,2,252,0,3,248, + // 0x039d Ν + 22,26,156,28,3,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x039e Ξ + 19,26,130,23,2,0,42,170,170,170,144,63,255,255,255,224,63,255,255,255,224,42,170,170,170,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,0,11,255,255,255,0,11,255,255,255,0,1,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x039f Ο + 24,27,162,28,2,255,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x03a0 Π + 20,26,130,27,3,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,191,234,170,170,255,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191,191,64,0,0,191, + // 0x03a1 Ρ + 17,26,130,22,3,0,106,170,165,0,0,191,255,255,224,0,191,255,255,252,0,191,170,191,255,0,191,64,2,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,192,191,64,0,255,128,191,64,27,255,0,191,255,255,253,0,191,255,255,240,0,191,255,254,64,0,191,84,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0, + // 0x03a2 ΢ + 255, + // 0x03a3 Σ + 19,26,130,21,1,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,127,250,170,170,160,31,240,0,0,0,11,252,0,0,0,2,255,0,0,0,0,255,128,0,0,0,63,224,0,0,0,15,244,0,0,0,7,253,0,0,0,1,255,0,0,0,0,191,64,0,0,0,255,0,0,0,3,252,0,0,0,11,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x03a4 Τ + 20,26,130,20,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x03a5 Υ + 21,26,156,21,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x03a6 Φ + 27,27,189,31,2,255,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,2,254,0,0,0,0,11,255,255,255,128,0,0,191,255,255,255,248,0,7,255,255,255,255,255,64,15,254,65,253,6,255,208,63,240,1,253,0,47,240,127,192,1,253,0,15,244,191,64,1,253,0,7,252,255,0,1,253,0,3,252,254,0,1,253,0,2,252,254,0,1,253,0,2,252,254,0,1,253,0,2,252,255,0,1,253,0,3,252,255,0,1,253,0,3,252,191,128,1,253,0,11,244,63,208,1,253,0,31,240,31,248,1,253,0,191,208,11,255,230,254,111,255,128,1,255,255,255,255,253,0,0,47,255,255,255,224,0,0,1,107,255,165,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,0,0, + // 0x03a7 Χ + 22,26,156,22,0,0,42,128,0,0,42,128,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,2,254,0,11,248,0,0,255,0,15,240,0,0,127,192,47,192,0,0,47,208,127,128,0,0,15,240,255,0,0,0,7,250,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,208,0,0,0,0,255,240,0,0,0,2,255,244,0,0,0,3,255,252,0,0,0,15,241,254,0,0,0,31,208,255,64,0,0,63,192,63,192,0,0,191,64,47,224,0,1,254,0,15,244,0,3,252,0,7,252,0,11,244,0,2,254,0,31,240,0,0,255,0,63,192,0,0,127,192,191,128,0,0,63,224, + // 0x03a8 Ψ + 24,26,156,30,3,0,170,0,10,160,0,170,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,191,0,15,240,0,255,191,0,15,240,0,255,191,64,15,240,0,254,127,128,15,240,1,253,63,192,15,240,3,252,47,224,15,240,11,248,15,253,15,240,127,240,3,255,255,255,255,208,0,255,255,255,255,0,0,27,255,255,228,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0, + // 0x03a9 Ω + 25,26,182,26,1,0,0,1,191,254,64,0,0,0,31,255,255,248,0,0,0,191,255,255,255,0,0,3,255,229,91,255,192,0,11,254,0,0,127,240,0,15,248,0,0,31,244,0,47,240,0,0,11,252,0,63,192,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,64,0,0,0,255,0,191,64,0,0,0,255,0,127,128,0,0,1,254,0,63,192,0,0,2,253,0,47,208,0,0,3,252,0,15,240,0,0,7,244,0,7,244,0,0,15,224,0,2,253,0,0,63,192,0,0,191,64,0,255,0,0,85,127,224,7,253,85,0,255,255,240,11,255,255,64,255,255,240,11,255,255,64,255,255,240,11,255,255,64, + // 0x03aa Ϊ + 255, + // 0x03ab Ϋ + 255, + // 0x03ac ά + 20,29,145,23,2,255,0,0,47,224,0,0,0,63,192,0,0,0,127,128,0,0,0,191,0,0,0,0,253,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,26,160,5,64,2,255,254,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,224,15,255,255,239,255,7,255,255,139,255,0,191,253,3,255,0,5,64,0,20, + // 0x03ad έ + 15,29,116,17,1,255,0,0,63,224,0,0,63,192,0,0,127,64,0,0,191,0,0,0,252,0,0,1,248,0,0,0,0,0,0,0,0,0,0,26,233,64,2,255,255,248,11,255,255,252,31,249,86,244,47,208,0,16,47,192,0,0,47,192,0,0,31,224,0,0,11,254,149,0,1,255,254,0,2,255,254,0,31,249,84,0,63,192,0,0,127,128,0,0,127,64,0,0,127,128,0,0,63,224,0,24,47,255,255,248,11,255,255,248,1,255,255,224,0,1,84,0, + // 0x03ae ή + 17,37,185,22,3,247,0,3,253,0,0,0,7,248,0,0,0,15,240,0,0,0,15,208,0,0,0,31,192,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,84,1,170,64,0,252,47,255,240,0,253,191,255,252,0,255,254,91,254,0,255,224,1,255,0,255,128,0,255,64,255,64,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,42,64, + // 0x03af ί + 9,29,87,13,3,255,7,252,0,11,248,0,15,240,0,31,208,0,47,128,0,63,0,0,0,0,0,0,0,0,85,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,0,0,255,0,0,255,64,0,127,255,192,63,255,192,11,255,192,0,84,0, + // 0x03b0 ΰ + 255, + // 0x03b1 α + 20,21,105,23,2,255,0,26,160,5,64,2,255,254,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,224,15,255,255,239,255,7,255,255,139,255,0,191,253,3,255,0,5,64,0,20, + // 0x03b2 β + 18,37,185,22,3,247,0,5,148,0,0,1,255,255,192,0,11,255,255,244,0,47,254,175,252,0,63,208,3,254,0,191,128,0,255,0,255,0,0,255,0,255,0,0,191,0,255,0,0,255,0,255,0,0,255,0,255,0,1,253,0,255,0,7,248,0,255,11,255,208,0,255,15,254,0,0,255,15,255,244,0,255,0,7,253,0,255,0,0,255,64,255,0,0,63,192,255,0,0,47,192,255,0,0,47,208,255,0,0,31,208,255,0,0,47,208,255,0,0,63,192,255,0,0,127,192,255,208,2,255,64,255,255,255,254,0,255,255,255,248,0,255,127,255,144,0,255,1,80,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x03b3 γ + 18,28,140,19,0,248,85,0,0,5,80,191,0,0,15,240,127,128,0,15,240,63,192,0,15,240,47,192,0,15,240,31,224,0,15,224,15,240,0,15,224,11,240,0,31,208,3,248,0,47,192,3,252,0,63,192,1,252,0,63,128,0,254,0,127,0,0,255,0,254,0,0,127,1,253,0,0,63,131,252,0,0,47,203,240,0,0,31,239,224,0,0,15,255,192,0,0,11,255,0,0,0,7,252,0,0,0,3,248,0,0,0,3,248,0,0,0,3,248,0,0,0,3,248,0,0,0,3,248,0,0,0,3,248,0,0,0,3,248,0,0,0,2,164,0,0, + // 0x03b4 δ + 19,29,145,21,1,255,0,0,89,64,0,0,11,255,254,0,0,63,255,255,208,0,255,230,191,208,0,255,0,11,192,1,253,0,0,0,1,253,0,0,0,1,255,0,0,0,0,255,192,0,0,0,63,248,0,0,0,15,255,64,0,0,11,255,240,0,0,191,255,253,0,3,255,66,255,64,15,248,0,191,192,31,224,0,47,224,63,192,0,15,240,63,128,0,11,244,127,64,0,7,244,127,64,0,7,248,127,64,0,7,244,127,128,0,11,244,63,192,0,15,240,63,224,0,31,240,15,248,0,191,208,7,255,255,255,64,1,255,255,253,0,0,47,255,224,0,0,0,84,0,0, + // 0x03b5 ε + 15,21,84,17,1,255,0,26,233,64,2,255,255,248,11,255,255,252,31,249,86,244,47,208,0,16,47,192,0,0,47,192,0,0,31,224,0,0,11,254,149,0,1,255,254,0,2,255,254,0,31,249,84,0,63,192,0,0,127,128,0,0,127,64,0,0,127,128,0,0,63,224,0,24,47,255,255,248,11,255,255,248,1,255,255,224,0,1,84,0, + // 0x03b6 ζ + 15,36,144,17,2,248,21,85,85,84,63,255,255,248,63,255,255,248,42,169,95,244,0,0,31,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,224,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,63,192,0,0,127,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,208,0,0,63,249,0,0,31,255,248,0,7,255,255,192,0,111,255,240,0,1,191,244,0,0,11,248,0,0,3,248,0,0,3,244,0,0,7,240,0,0,15,240,0,0,31,208,0,0,5,64, + // 0x03b7 η + 17,29,145,22,3,247,84,1,170,64,0,252,47,255,240,0,253,191,255,252,0,255,254,91,254,0,255,224,1,255,0,255,128,0,255,64,255,64,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,255,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,42,64, + // 0x03b8 θ + 18,29,145,22,2,255,0,5,148,0,0,0,127,255,128,0,2,255,255,240,0,11,254,175,252,0,31,240,2,254,0,47,192,0,191,0,63,128,0,63,128,127,64,0,63,192,191,0,0,47,192,255,0,0,31,208,255,0,0,31,208,255,0,0,31,224,255,85,85,95,224,255,255,255,255,224,255,255,255,255,224,255,170,170,175,224,255,0,0,15,224,255,0,0,31,224,255,0,0,31,208,191,0,0,31,208,191,0,0,47,192,63,64,0,63,192,63,192,0,127,128,47,208,0,255,0,15,244,2,254,0,7,255,175,252,0,1,255,255,240,0,0,47,255,128,0,0,0,80,0,0, + // 0x03b9 ι + 9,21,63,13,3,255,85,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,0,0,255,0,0,255,64,0,127,255,192,63,255,192,11,255,192,0,84,0, + // 0x03ba κ + 17,20,100,20,3,0,85,0,0,85,0,255,0,3,254,0,255,0,11,248,0,255,0,31,240,0,255,0,127,192,0,255,0,255,0,0,255,3,253,0,0,255,15,244,0,0,255,47,224,0,0,255,191,192,0,0,255,255,240,0,0,255,255,248,0,0,255,211,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,63,224,0,255,0,15,244,0,255,0,7,252,0,255,0,2,255,0,255,0,0,255,128, + // 0x03bb λ + 20,29,145,19,0,255,89,64,0,0,0,255,248,0,0,0,255,255,0,0,0,170,255,192,0,0,0,63,208,0,0,0,15,240,0,0,0,11,244,0,0,0,3,248,0,0,0,3,252,0,0,0,3,253,0,0,0,7,255,0,0,0,15,255,0,0,0,15,255,128,0,0,31,175,192,0,0,63,95,208,0,0,63,15,224,0,0,191,11,240,0,0,254,7,244,0,1,253,3,252,0,2,252,2,252,0,3,248,1,254,0,7,244,0,255,0,15,240,0,191,64,15,240,0,63,128,47,208,0,63,192,63,192,0,47,253,63,192,0,15,253,191,128,0,7,253,0,0,0,0,80, + // 0x03bc μ + 19,29,145,23,3,247,85,0,0,21,64,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,63,128,255,0,0,127,128,255,0,0,191,128,255,0,0,255,128,255,64,1,255,128,255,208,7,255,192,255,255,255,255,252,255,255,255,31,252,254,127,248,11,252,254,1,64,0,80,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,170,0,0,0,0, + // 0x03bd ν + 18,20,100,19,0,0,85,0,0,5,80,191,0,0,15,240,127,128,0,15,240,63,192,0,15,240,47,192,0,15,240,31,224,0,15,224,15,240,0,15,224,11,240,0,31,208,3,248,0,47,192,3,252,0,63,192,1,252,0,63,128,0,254,0,127,0,0,255,0,255,0,0,127,1,253,0,0,63,131,252,0,0,47,203,240,0,0,31,239,224,0,0,15,255,192,0,0,11,255,0,0,0,7,252,0,0, + // 0x03be ξ + 15,36,144,18,2,248,21,85,85,84,63,255,255,252,63,255,255,252,41,191,233,84,1,253,0,0,15,224,0,0,31,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,47,208,0,0,15,248,0,0,7,255,255,240,0,127,255,244,1,255,255,244,15,253,0,0,63,208,0,0,127,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,192,0,0,63,249,0,0,31,255,248,0,3,255,255,192,0,111,255,240,0,1,191,248,0,0,11,248,0,0,3,248,0,0,3,248,0,0,7,244,0,0,15,240,0,0,15,208,0,0,5,64, + // 0x03bf ο + 18,21,105,22,2,255,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x03c0 π + 24,21,126,25,0,255,21,85,85,85,85,84,127,255,255,255,255,254,127,255,255,255,255,254,42,191,170,170,255,169,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,254,0,0,127,64,0,255,0,0,127,64,0,255,0,0,127,64,0,255,236,0,127,64,0,127,252,0,127,64,0,31,252,0,0,0,0,1,64, + // 0x03c1 ρ + 18,29,145,22,2,247,0,6,169,0,0,0,191,255,224,0,3,255,255,252,0,15,254,91,255,0,31,240,0,255,128,63,192,0,63,192,63,192,0,47,208,127,128,0,31,224,127,64,0,15,240,191,64,0,15,240,191,64,0,15,240,191,64,0,15,240,191,64,0,15,240,191,64,0,31,224,191,64,0,47,208,191,64,0,127,192,191,224,1,255,64,191,255,255,254,0,191,255,255,248,0,191,31,255,144,0,191,0,84,0,0,191,0,0,0,0,191,0,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,106,0,0,0,0, + // 0x03c2 ς + 15,28,112,18,2,248,0,6,170,64,0,191,255,244,7,255,255,240,15,254,155,224,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,192,0,0,63,224,0,0,47,253,0,0,11,255,248,0,2,255,255,128,0,47,255,240,0,1,191,244,0,0,11,248,0,0,3,248,0,0,3,244,0,0,7,240,0,0,15,240,0,0,31,208,0,0,5,64, + // 0x03c3 σ + 20,21,105,23,2,255,0,0,85,85,84,0,111,255,255,253,2,255,255,255,253,15,255,170,254,168,47,244,0,254,0,63,192,0,127,64,191,128,0,63,192,255,0,0,47,192,255,0,0,31,208,255,0,0,15,224,255,0,0,15,224,255,0,0,15,224,255,0,0,31,224,255,0,0,47,208,191,64,0,63,192,63,192,0,191,128,47,240,2,255,0,15,255,255,253,0,3,255,255,244,0,0,127,255,128,0,0,1,80,0,0, + // 0x03c4 τ + 17,21,105,18,0,255,21,85,85,85,64,127,255,255,255,192,127,255,255,255,192,42,175,250,170,64,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,224,0,0,0,15,240,0,0,0,15,244,0,0,0,11,255,175,0,0,3,255,255,0,0,0,191,255,0,0,0,5,80,0, + // 0x03c5 υ + 17,21,105,22,3,255,85,0,0,84,0,254,0,1,254,0,254,0,0,255,0,254,0,0,255,0,254,0,0,191,0,254,0,0,191,64,254,0,0,127,64,254,0,0,127,64,254,0,0,127,128,254,0,0,127,128,254,0,0,127,64,254,0,0,127,64,254,0,0,191,64,254,0,0,255,0,255,0,0,255,0,255,64,2,253,0,127,192,11,252,0,63,255,255,244,0,31,255,255,208,0,2,255,254,0,0,0,5,64,0,0, + // 0x03c6 φ + 23,37,222,27,2,247,0,0,5,64,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,1,111,229,0,0,0,47,255,255,224,0,2,255,255,255,253,0,11,255,175,235,255,128,47,244,31,208,127,208,63,192,31,208,31,240,191,128,31,208,11,248,255,0,31,208,3,252,255,0,31,208,3,252,255,0,31,208,3,252,255,0,31,208,2,252,255,0,31,208,3,252,255,0,31,208,3,252,191,64,31,208,7,248,127,192,31,208,11,244,63,224,31,208,47,240,15,248,31,208,191,192,3,255,255,255,255,64,0,191,255,255,252,0,0,11,255,255,144,0,0,0,31,224,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,31,208,0,0,0,0,10,128,0,0, + // 0x03c7 χ + 21,29,174,22,1,247,101,0,0,0,21,0,255,192,0,0,255,0,255,224,0,1,253,0,175,244,0,3,252,0,3,252,0,11,244,0,2,253,0,15,224,0,0,255,0,47,192,0,0,191,64,63,128,0,0,63,192,191,0,0,0,47,209,253,0,0,0,15,243,252,0,0,0,11,251,240,0,0,0,3,255,224,0,0,0,2,255,192,0,0,0,0,255,64,0,0,0,0,255,0,0,0,0,3,255,128,0,0,0,7,255,192,0,0,0,15,255,224,0,0,0,47,207,240,0,0,0,127,71,248,0,0,0,255,3,252,0,0,2,252,1,254,0,0,3,248,0,255,0,0,15,240,0,127,192,0,31,208,0,63,250,64,63,192,0,15,255,128,191,0,0,7,255,128,169,0,0,0,105,0, + // 0x03c8 ψ + 23,37,222,28,3,247,0,0,21,64,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,84,0,63,128,5,64,253,0,63,128,31,208,253,0,63,128,15,224,253,0,63,128,15,240,253,0,63,128,11,240,253,0,63,128,11,240,253,0,63,128,7,240,253,0,63,128,7,244,253,0,63,128,7,244,253,0,63,128,3,244,253,0,63,128,7,244,254,0,63,128,7,244,254,0,63,128,7,240,255,0,63,128,15,240,191,0,63,128,15,224,127,128,63,128,63,208,63,244,63,130,255,128,15,255,255,255,255,0,3,255,255,255,248,0,0,111,255,255,128,0,0,0,127,192,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,63,128,0,0,0,0,42,64,0,0, + // 0x03c9 ω + 26,21,147,29,2,255,1,84,0,0,1,80,0,3,248,0,0,3,248,0,15,240,0,0,1,253,0,31,208,0,0,0,255,0,47,192,0,0,0,127,64,63,128,0,0,0,63,128,127,64,0,0,0,63,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,191,0,3,248,0,31,208,191,0,3,248,0,31,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,127,64,7,252,0,63,192,63,192,11,252,0,127,64,47,224,31,190,1,255,0,15,255,255,47,255,253,0,3,255,254,15,255,248,0,0,191,248,3,255,208,0,0,5,0,0,20,0,0, + // 0x03ca ϊ + 255, + // 0x03cb ϋ + 255, + // 0x03cc ό + 18,29,145,22,2,255,0,0,31,240,0,0,0,47,224,0,0,0,63,192,0,0,0,127,64,0,0,0,190,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x03cd ύ + 17,29,145,22,3,255,0,0,255,128,0,0,0,255,0,0,0,2,253,0,0,0,3,248,0,0,0,3,240,0,0,0,7,208,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,84,0,254,0,1,254,0,254,0,0,255,0,254,0,0,255,0,254,0,0,191,0,254,0,0,191,64,254,0,0,127,64,254,0,0,127,64,254,0,0,127,128,254,0,0,127,128,254,0,0,127,64,254,0,0,127,64,254,0,0,191,64,254,0,0,255,0,255,0,0,255,0,255,64,2,253,0,127,192,11,252,0,63,255,255,244,0,31,255,255,208,0,2,255,254,0,0,0,5,64,0,0, + // 0x03ce ώ + 26,29,203,29,2,255,0,0,0,47,240,0,0,0,0,0,63,208,0,0,0,0,0,63,128,0,0,0,0,0,191,0,0,0,0,0,0,253,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,0,0,1,80,0,3,248,0,0,3,248,0,15,240,0,0,1,253,0,31,208,0,0,0,255,0,47,192,0,0,0,127,64,63,128,0,0,0,63,128,127,64,0,0,0,63,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,191,0,3,248,0,31,208,191,0,3,248,0,31,192,191,0,3,248,0,47,192,191,0,3,248,0,47,192,127,64,7,252,0,63,192,63,192,11,252,0,127,64,47,224,31,190,1,255,0,15,255,255,47,255,253,0,3,255,254,15,255,248,0,0,191,248,3,255,208,0,0,5,0,0,20,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Katakana_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Katakana_26.cpp new file mode 100644 index 000000000000..8683316b6767 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Katakana_26.cpp @@ -0,0 +1,238 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Katakana 36pt, capital 'A' height: 26px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +extern const uint8_t NotoSans_Medium_Katakana_26[14440] = { + 162,26,160,48,104,136,34,247, // unifont_t + // 0x30a0 ゠ + 160,48,16,8,32,36,10,10,85,85,85,85,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,85,85,85,85, + // 0x30a1 ァ + 161,48,26,25,175,36,6,252,85,85,85,85,85,85,0,255,255,255,255,255,255,128,255,255,255,255,255,255,208,255,255,255,255,255,255,128,0,0,0,0,0,255,0,0,0,0,0,2,253,0,0,0,31,192,11,248,0,0,0,47,208,31,240,0,0,0,31,192,127,192,0,0,0,31,194,255,64,0,0,0,31,195,253,0,0,0,0,47,192,180,0,0,0,0,47,192,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,191,0,0,0,0,0,0,255,0,0,0,0,0,2,253,0,0,0,0,0,11,252,0,0,0,0,0,47,244,0,0,0,0,0,255,224,0,0,0,0,11,255,128,0,0,0,0,7,253,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a2 ア + 162,48,30,29,232,36,4,254,191,255,255,255,255,255,255,64,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,106,85,85,85,85,85,255,128,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,15,248,0,0,0,2,253,0,47,240,0,0,0,2,253,0,191,192,0,0,0,2,253,2,255,64,0,0,0,2,252,31,253,0,0,0,0,2,252,47,244,0,0,0,0,2,252,11,208,0,0,0,0,2,252,1,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,64,0,0,0,0,0,11,254,0,0,0,0,0,0,127,252,0,0,0,0,0,6,255,240,0,0,0,0,0,7,255,128,0,0,0,0,0,0,253,0,0,0,0,0,0,0,32,0,0,0,0,0,0, + // 0x30a3 ィ + 163,48,25,25,175,36,4,253,0,0,0,0,0,60,0,0,0,0,0,0,255,0,0,0,0,0,3,255,64,0,0,0,0,15,253,0,0,0,0,0,127,244,0,0,0,0,2,255,192,0,0,0,0,31,254,0,0,0,0,0,191,244,0,0,0,0,11,255,192,0,0,0,0,191,255,128,0,0,0,27,255,255,128,0,0,6,255,255,191,128,0,0,191,255,228,127,128,0,0,127,254,0,127,128,0,0,63,144,0,127,128,0,0,4,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0, + // 0x30a4 イ + 164,48,28,30,210,36,3,255,0,0,0,0,0,0,32,0,0,0,0,0,0,252,0,0,0,0,0,3,255,0,0,0,0,0,15,255,0,0,0,0,0,63,248,0,0,0,0,1,255,224,0,0,0,0,7,255,128,0,0,0,0,63,253,0,0,0,0,1,255,240,0,0,0,0,31,255,128,0,0,0,0,191,253,0,0,0,0,27,255,252,0,0,0,1,255,255,252,0,0,0,47,255,251,252,0,0,27,255,255,67,252,0,0,255,255,244,3,252,0,0,191,254,0,3,252,0,0,63,144,0,3,252,0,0,36,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0, + // 0x30a5 ゥ + 165,48,24,27,162,36,6,252,0,0,15,240,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,21,85,95,229,85,80,191,255,255,255,255,254,127,255,255,255,255,255,127,255,255,255,255,255,127,0,0,0,1,254,127,0,0,0,1,254,127,0,0,0,2,253,127,0,0,0,3,252,127,0,0,0,3,252,127,0,0,0,11,244,127,0,0,0,15,240,0,0,0,0,47,224,0,0,0,0,127,192,0,0,0,0,255,128,0,0,0,3,255,0,0,0,0,31,253,0,0,0,0,191,244,0,0,0,27,255,208,0,0,6,255,255,0,0,0,15,255,244,0,0,0,3,255,128,0,0,0,0,228,0,0,0,0,0,0,0,0,0, + // 0x30a6 ウ + 166,48,28,32,224,36,4,254,0,0,1,254,0,0,0,0,0,1,255,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,85,85,85,255,85,85,96,127,255,255,255,255,255,254,127,255,255,255,255,255,255,127,255,255,255,255,255,254,127,64,0,0,0,2,254,127,64,0,0,0,3,253,127,64,0,0,0,3,252,127,64,0,0,0,7,252,127,64,0,0,0,11,248,127,64,0,0,0,15,244,127,64,0,0,0,15,240,127,64,0,0,0,47,224,21,0,0,0,0,63,208,0,0,0,0,0,191,192,0,0,0,0,0,255,64,0,0,0,0,3,255,0,0,0,0,0,15,252,0,0,0,0,0,63,244,0,0,0,0,1,255,224,0,0,0,0,11,255,128,0,0,0,0,191,254,0,0,0,0,27,255,244,0,0,0,3,255,255,128,0,0,0,1,255,253,0,0,0,0,0,127,144,0,0,0,0,0,20,0,0,0,0, + // 0x30a7 ェ + 167,48,26,21,147,36,5,255,5,85,85,85,85,85,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,191,255,255,255,255,255,224,191,255,255,255,255,255,224,191,255,255,255,255,255,224,105,85,85,85,85,85,144, + // 0x30a8 エ + 168,48,30,24,192,36,3,1,15,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,10,170,170,191,234,170,170,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,254,170,170,170,170,170,170,240, + // 0x30a9 ォ + 169,48,25,26,182,36,6,253,0,0,0,10,160,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,11,224,0,0,0,0,0,11,224,0,0,21,0,0,11,224,1,64,63,255,255,255,255,255,192,63,255,255,255,255,255,192,63,255,255,255,255,255,192,0,0,0,191,240,0,0,0,0,1,255,240,0,0,0,0,3,255,240,0,0,0,0,15,255,240,0,0,0,0,63,231,240,0,0,0,0,255,135,240,0,0,0,7,255,7,240,0,0,0,47,252,7,240,0,0,0,255,240,7,240,0,0,7,255,128,7,240,0,0,127,253,0,7,240,0,0,255,244,0,7,240,0,0,63,128,0,7,240,0,0,13,0,21,11,240,0,0,0,0,47,255,240,0,0,0,0,47,255,224,0,0,0,0,31,255,128,0,0, + // 0x30aa オ + 170,48,30,31,248,36,3,254,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,26,85,85,85,127,213,86,144,47,255,255,255,255,255,255,208,47,255,255,255,255,255,255,208,47,255,255,255,255,255,255,208,0,0,0,1,255,192,0,0,0,0,0,3,255,192,0,0,0,0,0,15,255,192,0,0,0,0,0,63,255,192,0,0,0,0,0,255,223,192,0,0,0,0,3,255,31,192,0,0,0,0,15,252,31,192,0,0,0,0,63,240,31,192,0,0,0,1,255,192,31,192,0,0,0,11,255,0,31,192,0,0,0,47,252,0,31,192,0,0,1,255,240,0,31,192,0,0,31,255,128,0,31,208,0,0,191,253,0,0,31,208,0,0,191,240,0,0,31,208,0,0,63,64,0,0,31,208,0,0,8,0,0,64,47,208,0,0,0,0,2,255,255,208,0,0,0,0,1,255,255,192,0,0,0,0,1,255,255,64,0,0,0,0,0,85,100,0,0,0, + // 0x30ab カ + 171,48,27,31,217,36,4,254,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,101,85,91,249,85,86,128,191,255,255,255,255,255,248,191,255,255,255,255,255,252,191,255,255,255,255,255,252,0,0,15,240,0,3,252,0,0,15,224,0,3,248,0,0,31,208,0,3,248,0,0,31,208,0,3,248,0,0,47,192,0,3,248,0,0,63,192,0,3,244,0,0,127,128,0,3,244,0,0,191,0,0,3,244,0,0,255,0,0,7,244,0,2,254,0,0,7,240,0,7,252,0,0,11,240,0,15,248,0,0,11,240,0,47,240,0,0,15,240,0,191,208,0,0,15,224,2,255,128,0,0,31,208,11,255,0,5,0,127,192,63,252,0,11,255,255,192,255,240,0,11,255,255,64,63,128,0,7,255,254,0,14,0,0,1,90,160,0,0,0,0,0,0,0,0, + // 0x30ac ガ + 172,48,31,33,8,36,3,254,0,0,0,0,0,0,1,64,0,0,0,0,0,0,11,192,0,0,3,252,0,7,195,240,0,0,3,252,0,11,209,244,0,0,3,252,0,3,240,252,0,0,3,248,0,1,244,124,0,0,3,248,0,0,252,0,0,0,3,248,0,0,116,0,0,0,3,248,0,0,0,0,127,255,255,255,255,255,244,0,127,255,255,255,255,255,253,0,127,255,255,255,255,255,252,0,37,85,91,245,85,87,252,0,0,0,11,240,0,2,252,0,0,0,15,240,0,2,252,0,0,0,15,224,0,2,252,0,0,0,31,208,0,2,252,0,0,0,47,192,0,3,252,0,0,0,63,192,0,3,248,0,0,0,127,128,0,3,248,0,0,0,191,64,0,3,248,0,0,0,255,0,0,3,244,0,0,3,254,0,0,7,244,0,0,7,252,0,0,7,240,0,0,15,248,0,0,11,240,0,0,63,240,0,0,15,240,0,0,255,192,0,0,15,240,0,3,255,64,0,0,47,224,0,31,254,0,7,234,255,208,0,191,248,0,7,255,255,192,0,127,224,0,7,255,255,64,0,15,64,0,3,255,249,0,0,0,0,0,0,0,0,0,0, + // 0x30ad キ + 173,48,29,31,248,36,4,254,0,0,27,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,47,208,0,0,0,0,0,0,31,224,0,0,0,0,0,0,15,224,0,1,128,0,0,0,15,240,22,255,192,0,0,0,11,255,255,255,192,0,0,90,255,255,255,255,208,0,255,255,255,255,255,229,0,0,255,255,255,254,64,0,0,0,255,255,151,252,0,0,0,0,185,64,2,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,254,0,0,27,0,0,0,0,255,1,175,255,0,0,0,0,255,255,255,255,64,0,1,175,255,255,255,255,64,107,255,255,255,255,250,80,0,255,255,255,255,228,0,0,0,255,255,249,127,192,0,0,0,255,164,0,63,192,0,0,0,80,0,0,47,192,0,0,0,0,0,0,31,208,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,248,0,0,0,0,0,0,7,252,0,0,0,0,0,0,2,64,0,0,0, + // 0x30ae ギ + 174,48,31,33,8,36,3,254,0,0,0,0,0,0,11,192,0,0,0,0,0,2,71,224,0,0,1,144,0,15,195,240,0,0,47,224,0,3,224,248,0,0,15,224,0,2,244,184,0,0,15,240,0,0,252,0,0,0,11,240,0,0,164,0,0,0,11,240,1,111,208,0,0,0,7,250,255,255,208,0,0,1,175,255,255,255,224,0,171,255,255,255,255,254,144,0,255,255,255,255,229,0,0,0,191,255,251,252,0,0,0,0,127,164,1,253,0,0,0,0,16,0,0,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,1,0,0,0,0,191,0,22,255,64,0,0,0,127,175,255,255,128,0,0,22,255,255,255,255,192,5,175,255,255,255,255,229,0,255,255,255,255,250,64,0,0,191,255,255,191,192,0,0,0,127,250,64,31,208,0,0,0,37,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,228,0,0,0, + // 0x30af ク + 175,48,29,33,8,36,3,253,0,0,0,116,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,64,0,0,0,0,0,2,254,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,252,0,1,96,0,0,0,31,255,255,255,254,0,0,0,63,255,255,255,255,128,0,0,255,255,255,255,255,0,0,2,255,0,0,2,255,0,0,11,252,0,0,3,253,0,0,47,244,0,0,3,252,0,0,191,224,0,0,11,252,0,3,255,128,0,0,15,244,0,31,254,0,0,0,31,240,0,191,244,0,0,0,63,208,0,47,208,0,0,0,191,192,0,7,0,0,0,0,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,244,0,0,0,0,0,0,127,224,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,63,252,0,0,0,0,0,1,255,240,0,0,0,0,0,31,255,192,0,0,0,0,1,255,254,0,0,0,0,0,111,255,240,0,0,0,0,0,191,255,64,0,0,0,0,0,47,248,0,0,0,0,0,0,11,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b0 グ + 176,48,33,34,50,36,2,253,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,32,252,0,0,0,0,228,0,1,244,126,0,0,0,0,255,64,0,252,63,0,0,0,2,255,0,0,126,31,128,0,0,3,253,0,0,63,9,0,0,0,11,252,0,0,31,64,0,0,0,15,248,0,1,104,0,0,0,0,63,255,255,255,253,0,0,0,0,191,255,255,255,255,64,0,0,1,255,255,255,255,255,0,0,0,3,254,0,0,3,253,0,0,0,15,252,0,0,3,252,0,0,0,63,240,0,0,7,252,0,0,0,255,192,0,0,15,244,0,0,7,255,64,0,0,31,240,0,0,47,252,0,0,0,47,224,0,0,255,240,0,0,0,127,192,0,0,63,192,0,0,0,255,128,0,0,10,0,0,0,1,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,2,255,128,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,47,255,64,0,0,0,0,0,2,255,253,0,0,0,0,0,0,127,255,224,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,63,228,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0, + // 0x30b1 ケ + 177,48,31,32,0,36,2,254,0,0,16,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,254,170,170,170,170,168,0,7,255,255,255,255,255,252,0,15,255,255,255,255,255,252,0,47,255,255,255,255,255,252,0,127,192,0,15,240,0,0,0,255,128,0,15,224,0,0,3,255,0,0,31,224,0,0,11,253,0,0,31,224,0,0,47,248,0,0,47,208,0,0,191,240,0,0,63,192,0,0,47,192,0,0,63,192,0,0,2,0,0,0,127,128,0,0,0,0,0,0,255,64,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,208,0,0,0,0,0,3,255,128,0,0,0,0,0,15,255,0,0,0,0,0,0,191,252,0,0,0,0,0,1,255,224,0,0,0,0,0,0,47,128,0,0,0,0,0,0,5,0,0,0,0,0, + // 0x30b2 ゲ + 178,48,33,34,50,36,2,253,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,17,248,0,0,0,101,0,0,1,240,188,0,0,0,191,192,0,0,252,63,0,0,0,255,64,0,0,189,47,64,0,0,255,0,0,0,63,13,0,0,1,254,0,0,0,31,0,0,0,3,253,0,0,0,4,0,0,0,3,252,0,0,0,0,0,0,0,11,255,255,255,255,255,248,0,0,15,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,127,234,170,191,250,170,164,0,0,255,64,0,47,208,0,0,0,3,255,0,0,47,208,0,0,0,11,252,0,0,63,192,0,0,0,47,248,0,0,63,192,0,0,0,191,240,0,0,63,192,0,0,0,255,192,0,0,127,128,0,0,0,31,0,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,191,208,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0, + // 0x30b3 コ + 179,48,26,27,189,36,5,255,58,170,170,170,170,170,160,63,255,255,255,255,255,240,63,255,255,255,255,255,240,63,255,255,255,255,255,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,234,170,170,170,191,240,0,0,0,0,0,15,240,0,0,0,0,0,10,160, + // 0x30b4 ゴ + 180,48,29,34,16,36,5,254,0,0,0,0,0,0,20,0,0,0,0,0,0,16,252,0,0,0,0,0,1,244,126,0,0,0,0,0,0,252,63,0,0,0,0,0,0,189,15,128,0,0,0,0,0,63,11,128,0,0,0,0,0,47,64,0,0,0,0,0,0,8,0,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,170,170,170,170,170,191,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,254,170,170,170,170,191,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,42,128,0, + // 0x30b5 サ + 181,48,32,32,0,36,2,253,0,1,168,0,0,127,128,0,0,2,253,0,0,127,64,0,0,2,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,170,86,254,85,85,191,149,168,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,64,0,0,1,252,0,0,127,0,0,0,1,252,0,0,191,0,0,0,2,252,0,0,191,0,0,0,2,252,0,0,255,0,0,0,2,253,0,0,254,0,0,0,0,0,0,2,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,63,240,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,64,0,0,0,0,0,191,253,0,0,0,0,0,3,255,240,0,0,0,0,0,0,191,128,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b6 ザ + 182,48,34,33,41,36,1,253,0,0,0,0,0,0,0,6,0,0,0,85,0,0,42,129,15,0,0,0,254,0,0,63,207,75,128,0,0,254,0,0,63,199,199,192,0,0,254,0,0,63,131,211,208,0,0,254,0,0,63,130,226,208,0,0,254,0,0,63,129,224,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,127,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,254,0,42,150,255,85,85,127,213,169,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,127,64,0,0,0,0,254,0,0,127,64,0,0,0,0,254,0,0,191,0,0,0,0,0,169,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,31,255,64,0,0,0,0,0,1,255,253,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,4,0,0,0,0,0, + // 0x30b7 シ + 183,48,30,29,232,36,3,255,0,2,208,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,255,128,0,0,0,0,0,2,255,240,0,0,0,0,0,0,127,253,0,0,0,0,0,0,11,253,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,32,0,0,0,0,14,0,0,0,0,0,1,64,47,208,0,0,0,0,3,192,127,252,0,0,0,0,15,208,47,255,128,0,0,0,47,240,2,255,240,0,0,0,127,208,0,127,240,0,0,1,255,128,0,11,208,0,0,3,255,0,0,1,128,0,0,31,252,0,0,0,0,0,0,127,240,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,64,0,0,0,0,0,127,252,0,0,0,0,0,2,255,240,0,0,0,0,0,31,255,128,0,0,0,0,2,255,253,0,0,0,0,0,111,255,224,0,0,0,0,31,255,255,64,0,0,0,11,255,255,244,0,0,0,0,7,255,254,64,0,0,0,0,2,255,208,0,0,0,0,0,0,228,0,0,0,0,0,0, + // 0x30b8 ジ + 184,48,31,31,248,36,3,255,0,0,0,0,0,0,1,0,0,0,0,0,0,0,31,64,0,3,192,0,0,8,15,192,0,11,248,0,0,63,7,240,0,31,255,0,0,47,66,244,0,7,255,224,0,15,192,252,0,0,191,252,0,7,224,180,0,0,31,252,0,3,240,0,0,0,2,244,0,1,128,0,0,0,0,96,0,0,0,0,29,0,0,0,0,0,2,0,63,192,0,0,0,0,11,64,191,248,0,0,0,0,31,192,63,255,64,0,0,0,63,224,7,255,224,0,0,0,255,192,0,191,224,0,0,2,255,64,0,31,192,0,0,11,254,0,0,2,64,0,0,47,248,0,0,0,0,0,0,191,224,0,0,0,0,0,3,255,128,0,0,0,0,0,31,254,0,0,0,0,0,0,191,248,0,0,0,0,0,7,255,208,0,0,0,0,0,47,255,64,0,0,0,0,6,255,248,0,0,0,0,0,191,255,208,0,0,0,0,111,255,254,0,0,0,0,15,255,255,224,0,0,0,0,15,255,254,0,0,0,0,0,3,255,144,0,0,0,0,0,2,228,0,0,0,0,0,0, + // 0x30b9 ス + 185,48,30,29,232,36,3,254,0,0,0,0,0,1,0,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,224,0,1,234,170,170,170,191,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,15,255,64,0,0,0,0,0,63,255,208,0,0,0,0,0,255,255,244,0,0,0,0,7,255,15,253,0,0,0,0,31,252,7,255,64,0,0,0,191,240,1,255,208,0,0,7,255,192,0,127,240,0,0,47,254,0,0,31,252,0,1,255,248,0,0,7,255,0,47,255,208,0,0,2,255,192,127,254,0,0,0,0,191,208,47,244,0,0,0,0,63,128,11,64,0,0,0,0,13,0,0,0,0,0,0,0,0,0, + // 0x30ba ズ + 186,48,32,35,24,36,3,253,0,0,0,0,0,0,0,64,0,0,0,0,0,0,7,208,0,0,0,0,0,11,195,240,0,0,0,0,0,7,224,248,0,0,0,0,0,2,240,188,0,0,0,0,0,0,248,61,3,170,170,170,170,175,252,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,192,0,3,255,255,255,255,255,128,0,0,0,0,0,0,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,47,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,7,252,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,255,0,0,0,0,0,1,255,255,192,0,0,0,0,7,255,191,240,0,0,0,0,47,252,47,252,0,0,0,0,191,240,11,255,0,0,0,3,255,192,2,255,192,0,0,47,255,0,0,191,240,0,0,255,248,0,0,47,248,0,11,255,208,0,0,15,254,0,191,255,0,0,0,3,255,64,255,248,0,0,0,0,255,128,63,192,0,0,0,0,126,0,13,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0, + // 0x30bb セ + 187,48,30,30,240,36,2,255,0,0,127,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,111,128,0,0,127,64,1,175,255,240,0,0,127,70,191,255,255,240,0,0,127,255,255,255,255,208,0,111,255,255,255,249,191,128,191,255,255,255,229,0,255,0,255,255,255,228,0,2,254,0,191,255,255,64,0,3,252,0,126,64,127,64,0,15,244,0,0,0,127,64,0,47,224,0,0,0,127,64,0,127,192,0,0,0,127,64,1,255,0,0,0,0,127,64,3,253,0,0,0,0,127,64,0,120,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,128,0,0,0,0,0,0,63,192,0,0,5,64,0,0,63,254,170,175,255,128,0,0,47,255,255,255,255,128,0,0,15,255,255,255,255,64,0,0,1,191,255,255,165,0, + // 0x30bc ゼ + 188,48,34,33,41,36,1,254,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,24,63,0,0,0,0,0,0,0,125,31,64,0,0,63,192,0,0,63,15,192,0,0,63,192,0,0,31,135,208,0,0,63,192,0,0,15,194,0,0,0,63,192,0,0,7,192,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,1,64,0,0,0,63,192,0,1,191,224,0,0,0,63,192,6,255,255,248,0,0,0,63,219,255,255,255,240,0,0,0,127,255,255,255,255,224,0,5,191,255,255,255,228,63,192,0,127,255,255,255,144,0,191,64,0,127,255,255,192,0,1,255,0,0,63,249,63,192,0,3,252,0,0,41,0,63,192,0,11,248,0,0,0,0,63,192,0,47,240,0,0,0,0,63,192,0,127,192,0,0,0,0,63,192,1,255,64,0,0,0,0,63,192,0,190,0,0,0,0,0,63,192,0,24,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,244,0,1,107,192,0,0,0,31,255,255,255,255,192,0,0,0,15,255,255,255,255,192,0,0,0,2,255,255,255,255,192,0,0,0,0,5,105,85,64,0,0, + // 0x30bd ソ + 189,48,27,28,196,36,4,255,1,0,0,0,0,7,148,47,64,0,0,0,11,252,255,192,0,0,0,11,248,63,224,0,0,0,15,244,47,240,0,0,0,15,240,15,252,0,0,0,31,240,7,253,0,0,0,47,224,3,255,0,0,0,63,208,0,255,64,0,0,63,192,0,191,192,0,0,127,128,0,63,224,0,0,255,64,0,47,64,0,1,255,0,0,8,0,0,3,254,0,0,0,0,0,7,252,0,0,0,0,0,15,248,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,0,255,192,0,0,0,0,3,255,0,0,0,0,0,15,253,0,0,0,0,0,127,244,0,0,0,0,2,255,208,0,0,0,0,15,255,128,0,0,0,0,191,253,0,0,0,0,11,255,240,0,0,0,0,31,255,128,0,0,0,0,7,253,0,0,0,0,0,0,208,0,0,0,0, + // 0x30be ゾ + 190,48,31,33,8,36,3,254,0,0,0,0,0,0,2,192,0,0,0,0,0,7,11,224,0,0,0,0,0,31,195,240,0,0,0,0,0,11,209,248,0,0,0,0,0,3,240,188,1,0,0,0,0,1,244,32,31,128,0,0,0,0,144,0,127,208,0,0,0,7,228,0,63,240,0,0,0,11,252,0,15,248,0,0,0,11,248,0,11,252,0,0,0,15,244,0,3,254,0,0,0,15,240,0,1,255,64,0,0,31,224,0,0,255,192,0,0,47,208,0,0,127,208,0,0,63,192,0,0,47,240,0,0,127,192,0,0,15,128,0,0,255,64,0,0,9,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,2,255,64,0,0,0,0,0,11,254,0,0,0,0,0,0,47,252,0,0,0,0,0,1,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,127,254,0,0,0,0,0,7,255,248,0,0,0,0,0,15,255,208,0,0,0,0,0,2,254,0,0,0,0,0,0,0,160,0,0,0,0,0, + // 0x30bf タ + 191,48,29,33,8,36,3,253,0,0,0,189,0,0,0,0,0,0,0,255,64,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,16,0,0,0,15,255,255,255,253,0,0,0,63,255,255,255,255,128,0,0,191,255,255,255,255,64,0,1,255,64,0,2,255,0,0,7,253,0,0,2,254,0,0,31,248,0,0,3,252,0,0,63,240,0,0,7,252,0,1,255,192,0,0,15,244,0,11,255,1,192,0,31,240,0,63,252,7,248,0,63,208,0,255,240,15,255,64,191,192,0,63,128,3,255,224,255,64,0,9,0,0,127,255,255,0,0,0,0,0,15,255,252,0,0,0,0,0,2,255,248,0,0,0,0,0,0,127,253,0,0,0,0,0,0,255,255,128,0,0,0,0,3,255,255,224,0,0,0,0,31,253,127,240,0,0,0,0,191,244,31,192,0,0,0,3,255,208,3,64,0,0,0,47,255,0,0,0,0,0,2,255,248,0,0,0,0,0,127,255,208,0,0,0,0,1,255,254,0,0,0,0,0,0,127,224,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c0 ダ + 192,48,33,35,59,36,2,253,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,244,0,0,0,0,16,0,0,112,252,0,0,0,0,190,64,0,248,62,0,0,0,0,255,64,0,189,47,64,0,0,2,254,0,0,63,15,64,0,0,3,252,0,0,47,68,0,0,0,15,252,0,1,110,0,0,0,0,31,255,255,255,254,0,0,0,0,63,255,255,255,255,128,0,0,0,255,255,255,255,255,0,0,0,2,255,0,0,1,255,0,0,0,7,252,0,0,3,253,0,0,0,31,244,0,0,3,252,0,0,0,127,224,0,0,11,248,0,0,2,255,128,0,0,15,244,0,0,11,254,2,208,0,47,240,0,0,63,248,11,252,0,63,208,0,0,255,224,15,255,64,191,192,0,0,47,64,2,255,240,255,64,0,0,5,0,0,127,255,254,0,0,0,0,0,0,11,255,252,0,0,0,0,0,0,1,255,248,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,1,255,255,128,0,0,0,0,0,7,255,255,240,0,0,0,0,0,47,252,127,240,0,0,0,0,0,255,240,15,192,0,0,0,0,7,255,192,3,0,0,0,0,0,127,254,0,0,0,0,0,0,6,255,248,0,0,0,0,0,0,191,255,192,0,0,0,0,0,1,255,253,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0, + // 0x30c1 チ + 193,48,30,31,248,36,3,254,0,0,0,0,0,1,0,0,0,0,0,0,1,127,192,0,0,0,0,6,191,255,224,0,3,255,255,255,255,255,240,0,3,255,255,255,255,249,0,0,2,255,255,255,228,0,0,0,0,85,80,31,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,149,85,85,111,229,85,85,96,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,191,64,0,0,0,0,0,0,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,7,253,0,0,0,0,0,0,31,248,0,0,0,0,0,0,127,240,0,0,0,0,0,1,255,208,0,0,0,0,0,31,255,64,0,0,0,0,0,63,253,0,0,0,0,0,0,11,240,0,0,0,0,0,0,1,128,0,0,0,0,0, + // 0x30c2 ヂ + 194,48,32,31,248,36,2,253,0,0,0,0,0,27,128,0,0,0,0,0,91,255,208,0,1,85,106,191,255,255,240,0,3,255,255,255,255,255,144,96,2,255,255,255,254,64,1,244,1,255,234,111,224,0,240,188,0,0,0,15,224,0,252,62,0,0,0,15,224,0,125,47,0,0,0,15,224,0,63,8,0,0,0,15,224,0,31,0,0,0,0,15,224,0,0,0,85,85,85,95,229,85,85,96,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,31,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,128,0,0,0,0,0,0,255,64,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,191,240,0,0,0,0,0,7,255,192,0,0,0,0,0,47,255,0,0,0,0,0,0,31,248,0,0,0,0,0,0,3,208,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c3 ッ + 195,48,25,24,168,36,6,253,0,0,27,0,0,0,0,0,0,127,64,0,52,0,30,0,63,128,0,127,128,255,0,47,192,0,191,64,127,64,31,208,0,191,0,63,192,15,240,0,255,0,47,208,11,240,1,254,0,15,224,3,244,2,253,0,15,240,3,128,3,252,0,7,244,0,0,11,244,0,3,208,0,0,15,240,0,0,0,0,0,47,224,0,0,0,0,0,127,192,0,0,0,0,0,255,64,0,0,0,0,3,254,0,0,0,0,0,15,252,0,0,0,0,0,127,240,0,0,0,0,2,255,192,0,0,0,0,31,255,0,0,0,0,0,255,252,0,0,0,0,31,255,224,0,0,0,0,63,255,64,0,0,0,0,15,248,0,0,0,0,0,3,64,0,0,0,0, + // 0x30c4 ツ + 196,48,30,29,232,36,3,255,0,0,0,96,0,0,0,0,0,0,11,244,0,0,4,0,5,0,7,248,0,0,47,144,191,0,3,252,0,0,47,224,191,128,2,253,0,0,63,208,63,192,0,255,0,0,63,192,47,208,0,191,0,0,127,128,15,240,0,127,128,0,191,64,15,244,0,63,192,0,255,0,7,248,0,47,192,1,254,0,3,252,0,25,0,3,253,0,2,253,0,0,0,3,252,0,1,249,0,0,0,11,248,0,0,64,0,0,0,15,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,0,0,0,1,255,208,0,0,0,0,0,11,255,64,0,0,0,0,0,63,253,0,0,0,0,0,2,255,244,0,0,0,0,0,47,255,192,0,0,0,0,7,255,254,0,0,0,0,0,11,255,240,0,0,0,0,0,2,255,64,0,0,0,0,0,0,180,0,0,0,0,0, + // 0x30c5 ヅ + 197,48,33,33,41,36,2,254,0,0,0,0,0,0,1,244,0,0,0,0,0,0,2,224,252,0,0,0,0,0,0,3,240,126,0,0,0,0,0,0,0,252,63,0,0,0,0,96,0,0,189,31,64,0,0,3,248,0,0,62,4,0,2,0,3,252,0,0,16,0,0,127,128,1,253,0,0,4,0,0,63,192,0,255,0,0,47,208,0,47,208,0,191,0,0,63,208,0,15,240,0,127,128,0,63,192,0,15,244,0,63,192,0,127,192,0,7,248,0,47,208,0,191,128,0,3,252,0,31,208,0,255,0,0,2,253,0,9,0,1,255,0,0,0,255,0,0,0,3,253,0,0,0,253,0,0,0,7,252,0,0,0,64,0,0,0,15,244,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,47,248,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,47,254,0,0,0,0,0,0,1,255,248,0,0,0,0,0,0,31,255,208,0,0,0,0,0,2,255,255,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,52,0,0,0,0,0,0, + // 0x30c6 テ + 198,48,30,31,248,36,3,253,0,101,85,85,85,85,96,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,85,85,85,95,245,85,85,80,0,0,0,15,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,128,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,240,0,0,0,0,0,2,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,11,252,0,0,0,0,0,0,1,208,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c7 デ + 199,48,32,35,24,36,3,253,0,0,0,0,0,0,0,80,0,0,0,0,0,0,2,240,0,0,0,0,0,1,160,252,0,0,0,0,0,2,244,189,0,0,0,0,0,0,252,63,0,255,255,255,255,253,125,31,0,255,255,255,255,253,63,0,0,255,255,255,255,253,25,0,0,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,224,165,85,85,111,229,85,85,144,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,128,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,248,0,0,0,0,0,0,127,240,0,0,0,0,0,2,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c8 ト + 200,48,20,30,150,36,11,255,21,64,0,0,0,127,192,0,0,0,127,128,0,0,0,127,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,224,0,0,0,63,255,128,0,0,63,255,253,0,0,63,255,255,228,0,63,175,255,255,128,63,129,191,255,248,63,128,7,255,254,63,128,0,47,252,63,128,0,2,252,63,128,0,0,36,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,192,0,0,0,127,192,0,0,0, + // 0x30c9 ド + 201,48,22,30,180,36,10,254,85,64,0,0,44,0,191,128,0,0,190,0,127,128,0,116,63,0,127,128,0,252,31,192,127,64,0,126,11,208,127,64,0,63,67,208,127,64,0,15,193,0,127,64,0,11,128,0,127,64,0,0,0,0,127,64,0,0,0,0,127,224,0,0,0,0,127,255,128,0,0,0,127,255,253,0,0,0,127,255,255,228,0,0,127,175,255,255,128,0,127,65,191,255,248,0,127,64,7,255,253,0,127,64,0,47,252,0,127,64,0,2,248,0,127,64,0,0,32,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0, + // 0x30ca ナ + 202,48,31,31,248,36,3,254,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,244,106,170,170,175,250,170,170,160,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,3,255,0,0,0,0,0,0,11,252,0,0,0,0,0,0,47,248,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,192,0,0,0,0,0,47,255,0,0,0,0,0,0,127,252,0,0,0,0,0,0,15,224,0,0,0,0,0,0,2,64,0,0,0,0,0, + // 0x30cb ニ + 203,48,29,23,184,36,3,1,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0x30cc ヌ + 204,48,25,30,210,36,5,253,0,0,0,0,0,20,0,47,255,255,255,255,253,0,47,255,255,255,255,255,128,47,255,255,255,255,255,64,26,170,170,170,170,255,0,0,0,0,0,2,254,0,0,0,0,0,3,253,0,0,0,0,0,3,252,0,0,0,0,0,11,248,0,0,56,0,0,15,240,0,0,255,64,0,31,224,0,2,255,240,0,63,208,0,0,127,254,0,191,192,0,0,11,255,192,255,64,0,0,1,255,251,254,0,0,0,0,47,255,252,0,0,0,0,7,255,244,0,0,0,0,0,255,248,0,0,0,0,1,255,255,0,0,0,0,7,255,255,208,0,0,0,47,253,255,244,0,0,0,255,244,47,254,0,0,7,255,208,7,255,128,0,127,255,0,1,255,64,7,255,248,0,0,126,0,191,255,208,0,0,8,0,255,254,0,0,0,0,0,63,224,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30cd ネ + 205,48,31,32,0,36,3,254,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,5,85,85,127,213,86,128,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,252,0,15,255,255,255,255,255,244,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,128,0,0,0,0,0,7,254,0,0,0,0,0,0,31,248,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,128,0,0,0,0,0,31,254,0,0,0,0,0,0,191,244,0,0,0,0,0,11,255,208,29,0,0,0,0,191,255,192,127,192,0,0,27,255,255,192,255,248,0,6,255,255,191,192,47,255,64,255,255,248,47,192,7,255,224,255,255,64,47,192,0,191,248,127,228,0,47,192,0,31,240,41,0,0,47,192,0,2,192,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0, + // 0x30ce ノ + 206,48,24,28,168,36,5,255,0,0,0,0,0,249,0,0,0,0,1,255,0,0,0,0,2,255,0,0,0,0,3,253,0,0,0,0,7,252,0,0,0,0,11,248,0,0,0,0,15,244,0,0,0,0,31,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,255,128,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,11,252,0,0,0,0,31,244,0,0,0,0,63,240,0,0,0,0,255,192,0,0,0,3,255,64,0,0,0,15,254,0,0,0,0,127,248,0,0,0,2,255,224,0,0,0,15,255,128,0,0,0,191,254,0,0,0,11,255,244,0,0,0,191,255,192,0,0,0,191,253,0,0,0,0,47,224,0,0,0,0,10,0,0,0,0,0, + // 0x30cf ハ + 207,48,32,26,208,36,2,0,0,0,20,0,0,116,0,0,0,0,63,208,7,252,0,0,0,0,63,192,3,253,0,0,0,0,63,192,1,255,0,0,0,0,127,128,0,255,64,0,0,0,191,64,0,127,192,0,0,0,255,0,0,63,192,0,0,0,255,0,0,47,224,0,0,1,254,0,0,15,240,0,0,2,253,0,0,11,248,0,0,3,252,0,0,7,252,0,0,3,252,0,0,3,253,0,0,11,248,0,0,2,255,0,0,15,240,0,0,0,255,0,0,31,240,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,255,128,0,0,0,63,224,1,255,0,0,0,0,31,240,3,254,0,0,0,0,15,244,11,252,0,0,0,0,15,248,15,248,0,0,0,0,11,252,63,240,0,0,0,0,7,252,127,208,0,0,0,0,3,254,27,192,0,0,0,0,2,228,0,0,0,0,0,0,0,0, + // 0x30d0 バ + 208,48,33,30,14,36,2,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,96,252,0,0,0,0,0,0,1,248,62,0,0,0,0,0,0,0,189,47,64,0,0,0,0,0,16,63,15,64,0,0,57,64,6,240,47,68,0,0,0,127,192,11,248,14,0,0,0,0,127,128,3,252,0,0,0,0,0,191,64,2,254,0,0,0,0,0,255,0,0,255,0,0,0,0,0,255,0,0,191,128,0,0,0,1,254,0,0,63,192,0,0,0,2,253,0,0,63,208,0,0,0,3,252,0,0,31,240,0,0,0,3,252,0,0,15,244,0,0,0,7,248,0,0,11,248,0,0,0,15,244,0,0,3,252,0,0,0,15,240,0,0,3,253,0,0,0,47,224,0,0,1,255,0,0,0,63,192,0,0,0,255,0,0,0,127,192,0,0,0,191,128,0,0,255,64,0,0,0,127,192,0,1,255,0,0,0,0,63,208,0,3,253,0,0,0,0,47,224,0,11,252,0,0,0,0,31,240,0,31,244,0,0,0,0,15,244,0,63,240,0,0,0,0,15,248,0,191,208,0,0,0,0,11,252,0,191,128,0,0,0,0,7,252,0,7,0,0,0,0,0,3,64,0, + // 0x30d1 パ + 209,48,33,31,23,36,2,255,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,61,15,64,0,0,0,0,0,0,120,3,192,0,0,0,0,0,16,120,3,192,0,0,62,64,7,240,61,11,128,0,0,127,192,11,248,31,255,0,0,0,127,128,3,252,7,248,0,0,0,191,64,2,254,0,0,0,0,0,255,0,0,255,0,0,0,0,0,255,0,0,191,128,0,0,0,1,254,0,0,63,192,0,0,0,2,253,0,0,63,208,0,0,0,3,252,0,0,31,240,0,0,0,3,252,0,0,15,244,0,0,0,7,248,0,0,11,248,0,0,0,15,244,0,0,3,252,0,0,0,15,240,0,0,3,253,0,0,0,47,224,0,0,1,255,0,0,0,63,208,0,0,0,255,0,0,0,127,192,0,0,0,255,64,0,0,255,128,0,0,0,127,192,0,1,255,0,0,0,0,63,192,0,3,254,0,0,0,0,63,208,0,7,252,0,0,0,0,47,240,0,15,248,0,0,0,0,31,240,0,47,240,0,0,0,0,15,244,0,127,224,0,0,0,0,11,248,0,255,192,0,0,0,0,7,252,0,47,64,0,0,0,0,3,228,0,1,0,0,0,0,0,1,0,0, + // 0x30d2 ヒ + 210,48,23,30,180,36,8,255,170,0,0,0,0,0,255,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,64,254,0,0,0,11,192,254,0,0,0,191,224,254,0,0,31,255,240,254,0,6,255,255,208,254,1,255,255,248,0,255,191,255,255,64,0,255,255,255,208,0,0,255,255,244,0,0,0,255,249,0,0,0,0,255,64,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,254,0,0,0,0,0,255,0,0,0,0,0,255,208,0,0,86,188,191,255,255,255,255,252,63,255,255,255,255,252,11,255,255,255,255,252,0,90,170,170,149,0, + // 0x30d3 ビ + 211,48,27,32,224,36,6,255,0,0,0,0,0,1,128,0,0,0,0,0,11,208,0,0,0,0,11,195,240,191,64,0,0,7,209,248,191,64,0,0,3,240,252,191,64,0,0,1,248,120,191,64,0,0,0,188,0,127,0,0,0,0,16,0,127,0,0,0,1,192,0,127,0,0,0,31,224,0,127,0,0,1,255,240,0,127,0,0,111,255,244,0,127,0,27,255,255,128,0,127,75,255,255,244,0,0,127,255,255,254,0,0,0,127,255,255,128,0,0,0,127,255,208,0,0,0,0,127,228,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,208,0,0,0,89,0,63,255,170,171,255,254,0,47,255,255,255,255,254,0,11,255,255,255,255,254,0,0,111,255,255,254,164,0, + // 0x30d4 ピ + 212,48,28,31,217,36,6,255,0,0,0,0,0,11,224,0,0,0,0,0,127,252,191,64,0,0,0,244,46,191,64,0,0,1,224,15,191,64,0,0,1,224,15,191,64,0,0,0,244,46,127,0,0,0,0,127,252,127,0,0,0,2,219,224,127,0,0,0,47,224,0,127,0,0,6,255,240,0,127,0,0,191,255,240,0,127,0,111,255,254,64,0,127,95,255,255,224,0,0,127,255,255,249,0,0,0,127,255,254,64,0,0,0,127,255,144,0,0,0,0,127,208,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,208,0,0,0,90,0,63,255,170,171,255,254,0,47,255,255,255,255,254,0,11,255,255,255,255,254,0,0,111,255,255,254,164,0, + // 0x30d5 フ + 213,48,26,28,196,36,5,254,255,255,255,255,255,255,128,255,255,255,255,255,255,240,255,255,255,255,255,255,240,170,170,170,170,170,191,240,0,0,0,0,0,47,224,0,0,0,0,0,63,208,0,0,0,0,0,63,192,0,0,0,0,0,127,192,0,0,0,0,0,191,64,0,0,0,0,0,255,0,0,0,0,0,1,255,0,0,0,0,0,3,253,0,0,0,0,0,7,252,0,0,0,0,0,15,248,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,1,255,192,0,0,0,0,7,255,0,0,0,0,0,31,253,0,0,0,0,0,191,244,0,0,0,0,7,255,208,0,0,0,0,63,255,64,0,0,0,6,255,252,0,0,0,1,191,255,224,0,0,0,1,255,255,64,0,0,0,0,127,244,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d6 ブ + 214,48,31,34,16,36,4,254,0,0,0,0,0,0,2,64,0,0,0,0,0,9,15,192,0,0,0,0,0,63,11,208,0,0,0,0,0,31,131,240,0,0,0,0,0,15,193,248,0,0,0,0,0,3,240,244,186,170,170,170,170,171,208,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,2,255,128,0,0,0,0,0,11,255,0,0,0,0,0,0,63,252,0,0,0,0,0,1,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,191,255,0,0,0,0,0,31,255,248,0,0,0,0,1,255,255,208,0,0,0,0,0,191,253,0,0,0,0,0,0,47,208,0,0,0,0,0,0,8,0,0,0,0,0,0, + // 0x30d7 プ + 215,48,32,33,8,36,4,254,0,0,0,0,0,0,47,128,0,0,0,0,0,0,255,244,0,0,0,0,0,2,240,124,0,0,0,0,0,3,192,60,0,0,0,0,0,3,192,45,186,170,170,170,170,171,192,60,191,255,255,255,255,255,240,188,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,128,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,64,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,240,0,0,0,0,0,0,191,208,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,191,255,0,0,0,0,0,31,255,248,0,0,0,0,1,255,255,208,0,0,0,0,0,191,253,0,0,0,0,0,0,47,208,0,0,0,0,0,0,8,0,0,0,0,0,0, + // 0x30d8 ヘ + 216,48,32,23,184,36,2,1,0,0,2,248,0,0,0,0,0,0,11,255,0,0,0,0,0,0,47,255,192,0,0,0,0,0,191,255,240,0,0,0,0,1,255,175,252,0,0,0,0,3,254,7,255,0,0,0,0,15,252,1,255,192,0,0,0,63,240,0,127,240,0,0,0,191,208,0,47,248,0,0,1,255,128,0,11,254,0,0,7,255,0,0,3,255,128,0,31,252,0,0,0,255,208,0,127,244,0,0,0,63,244,0,191,224,0,0,0,15,253,0,63,192,0,0,0,7,255,0,15,0,0,0,0,2,255,192,1,0,0,0,0,0,191,240,0,0,0,0,0,0,63,252,0,0,0,0,0,0,15,254,0,0,0,0,0,0,7,255,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,16, + // 0x30d9 ベ + 217,48,32,27,216,36,2,0,0,0,0,0,0,0,7,64,0,0,0,0,0,0,31,192,0,0,0,0,0,30,15,224,0,0,0,0,0,63,3,240,0,0,2,244,0,31,130,248,0,0,15,254,0,15,208,252,0,0,63,255,128,7,240,96,0,0,255,255,224,3,244,0,0,2,255,191,248,1,128,0,0,7,253,11,254,0,0,0,0,31,244,2,255,128,0,0,0,63,224,0,191,224,0,0,0,255,192,0,47,244,0,0,3,255,0,0,15,253,0,0,11,253,0,0,3,255,64,0,47,248,0,0,0,255,208,0,191,240,0,0,0,127,240,0,255,192,0,0,0,31,252,0,63,64,0,0,0,11,255,0,15,0,0,0,0,2,255,192,0,0,0,0,0,0,255,240,0,0,0,0,0,0,63,248,0,0,0,0,0,0,31,254,0,0,0,0,0,0,7,254,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0, + // 0x30da ペ + 218,48,32,27,216,36,2,0,0,0,0,0,0,0,190,0,0,0,0,0,0,3,255,208,0,0,0,0,0,15,130,240,0,0,0,0,0,15,0,180,0,0,2,244,0,30,0,120,0,0,15,254,0,15,0,180,0,0,63,255,128,15,129,240,0,0,255,255,224,3,255,208,0,2,255,191,248,0,190,64,0,7,253,11,254,0,0,0,0,31,244,2,255,128,0,0,0,63,224,0,191,224,0,0,0,255,192,0,47,244,0,0,3,255,0,0,15,253,0,0,11,253,0,0,3,255,64,0,63,248,0,0,0,255,208,0,255,240,0,0,0,127,240,0,191,192,0,0,0,31,252,0,63,64,0,0,0,11,255,0,14,0,0,0,0,2,255,192,0,0,0,0,0,0,255,240,0,0,0,0,0,0,63,248,0,0,0,0,0,0,31,254,0,0,0,0,0,0,7,254,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0, + // 0x30db ホ + 219,48,31,32,0,36,3,254,0,0,0,5,64,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,63,255,255,255,255,255,255,224,63,255,255,255,255,255,255,224,63,255,255,255,255,255,255,224,41,85,85,111,229,85,85,144,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,4,0,31,208,0,64,0,0,31,64,31,208,7,208,0,0,63,192,31,208,15,240,0,0,127,128,31,208,7,252,0,0,255,0,31,208,3,253,0,2,254,0,31,208,0,255,0,7,252,0,31,208,0,191,128,15,244,0,31,208,0,63,208,63,224,0,31,208,0,31,240,255,192,0,31,208,0,15,244,255,0,0,31,208,0,7,244,45,0,0,31,208,0,3,128,0,0,0,31,208,0,0,0,0,0,64,47,208,0,0,0,0,0,191,255,208,0,0,0,0,0,191,255,192,0,0,0,0,0,191,255,128,0,0,0,0,0,21,84,0,0,0,0, + // 0x30dc ボ + 220,48,32,33,8,36,2,254,0,0,0,0,0,0,0,16,0,0,0,0,0,0,1,244,0,0,0,15,224,2,240,252,0,0,0,15,240,1,244,126,0,0,0,15,240,0,252,47,0,0,0,15,240,0,126,15,0,0,0,15,224,0,62,0,0,0,0,15,224,0,0,0,26,85,85,95,245,85,85,160,63,255,255,255,255,255,255,240,63,255,255,255,255,255,255,240,63,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,10,0,15,224,0,144,0,0,15,208,15,224,11,240,0,0,47,208,15,224,7,252,0,0,127,192,15,224,3,254,0,0,255,64,15,224,0,255,0,2,254,0,15,224,0,127,192,7,252,0,15,224,0,63,208,15,244,0,15,224,0,31,240,63,224,0,15,224,0,15,248,255,192,0,15,224,0,3,252,127,0,0,15,224,0,2,244,9,0,0,15,224,0,0,128,0,0,0,15,224,0,0,0,0,0,105,111,224,0,0,0,0,0,127,255,224,0,0,0,0,0,63,255,208,0,0,0,0,0,63,255,64,0,0,0, + // 0x30dd ポ + 221,48,32,34,16,36,2,254,0,0,0,0,0,0,11,144,0,0,0,0,0,0,127,248,0,0,0,0,0,0,244,124,0,0,0,15,240,0,224,30,0,0,0,15,240,1,224,30,0,0,0,15,240,0,224,30,0,0,0,15,224,0,244,124,0,0,0,15,224,0,127,248,0,0,0,15,224,0,11,144,26,85,85,95,245,85,85,160,63,255,255,255,255,255,255,240,63,255,255,255,255,255,255,240,63,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,10,0,15,224,0,144,0,0,15,208,15,224,11,240,0,0,47,208,15,224,7,252,0,0,127,192,15,224,3,254,0,0,255,64,15,224,0,255,0,2,254,0,15,224,0,127,192,7,252,0,15,224,0,63,208,15,244,0,15,224,0,31,240,63,224,0,15,224,0,15,248,255,192,0,15,224,0,3,252,127,0,0,15,224,0,2,244,9,0,0,15,224,0,0,128,0,0,0,15,224,0,0,0,0,0,105,111,224,0,0,0,0,0,127,255,224,0,0,0,0,0,63,255,208,0,0,0,0,0,63,255,64,0,0,0, + // 0x30de マ + 222,48,31,29,232,36,3,253,106,170,170,170,170,170,170,64,191,255,255,255,255,255,255,224,191,255,255,255,255,255,255,248,191,255,255,255,255,255,255,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,31,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,192,0,0,7,192,0,3,255,0,0,0,47,244,0,15,253,0,0,0,31,253,0,63,244,0,0,0,7,255,128,255,224,0,0,0,0,255,231,255,128,0,0,0,0,63,255,253,0,0,0,0,0,15,255,244,0,0,0,0,0,2,255,208,0,0,0,0,0,0,191,240,0,0,0,0,0,0,47,248,0,0,0,0,0,0,15,254,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,255,208,0,0,0,0,0,0,63,244,0,0,0,0,0,0,31,248,0,0,0,0,0,0,11,208,0,0,0,0,0,0,2,64,0,0,0,0,0,0,0,0,0,0, + // 0x30df ミ + 223,48,25,29,203,36,5,255,0,62,80,0,0,0,0,0,127,255,164,0,0,0,0,191,255,255,228,0,0,0,111,255,255,255,228,0,0,0,27,255,255,255,64,0,0,0,6,255,255,0,0,0,0,0,6,254,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,254,80,0,0,0,0,3,255,255,144,0,0,0,7,255,255,255,144,0,0,0,111,255,255,255,128,0,0,0,27,255,255,240,0,0,0,0,27,255,208,0,0,0,0,0,27,192,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,144,0,0,0,0,0,63,255,144,0,0,0,0,127,255,255,228,0,0,0,111,255,255,255,144,0,0,0,91,255,255,255,144,0,0,0,27,255,255,253,0,0,0,0,27,255,252,0,0,0,0,0,27,248,0,0,0,0,0,0,96,0, + // 0x30e0 ム + 224,48,32,31,248,36,2,254,0,0,0,16,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,11,64,0,0,0,127,128,0,127,192,0,0,0,191,64,0,47,224,0,0,0,255,0,0,15,240,0,0,1,254,0,0,11,248,0,0,2,253,0,0,3,253,0,0,3,252,0,0,2,255,0,0,7,248,0,0,0,255,64,0,11,244,0,0,0,191,192,0,15,240,1,106,255,255,208,0,111,255,255,255,255,255,240,127,255,255,255,255,255,255,244,127,255,255,255,255,250,91,252,63,255,255,169,64,0,3,253,62,149,0,0,0,0,3,254,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,64, + // 0x30e1 メ + 225,48,28,29,203,36,4,255,0,0,0,0,0,45,0,0,0,0,0,0,63,208,0,0,0,0,0,63,192,0,0,0,0,0,191,128,0,0,0,0,0,255,0,0,8,0,0,1,255,0,0,63,64,0,3,253,0,0,191,224,0,3,252,0,0,127,253,0,15,244,0,0,15,255,128,31,240,0,0,1,255,240,63,208,0,0,0,63,253,127,192,0,0,0,11,255,255,64,0,0,0,1,255,254,0,0,0,0,0,63,253,0,0,0,0,0,31,255,64,0,0,0,0,127,255,224,0,0,0,1,255,255,248,0,0,0,7,255,31,255,0,0,0,31,252,3,255,192,0,0,127,240,0,255,240,0,2,255,192,0,63,252,0,15,255,0,0,15,254,0,127,252,0,0,3,252,7,255,224,0,0,0,240,47,255,64,0,0,0,16,191,253,0,0,0,0,0,47,208,0,0,0,0,0,10,0,0,0,0,0,0, + // 0x30e2 モ + 226,48,29,28,224,36,4,255,5,85,85,85,85,85,80,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,165,85,95,245,85,85,85,64,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,252,0,0,0,0,0,0,11,255,234,175,254,0,0,0,3,255,255,255,254,0,0,0,1,255,255,255,254,0,0,0,0,27,255,255,249,0, + // 0x30e3 ャ + 227,48,26,26,182,36,5,253,0,1,128,0,0,0,0,0,47,208,0,0,0,0,0,15,224,0,0,0,0,0,15,240,0,0,0,0,0,11,240,0,0,107,192,0,3,244,1,175,255,240,0,3,254,255,255,255,224,0,91,255,255,255,255,192,191,255,255,255,144,63,128,191,255,255,64,0,255,0,127,249,255,0,2,253,0,37,0,191,0,7,248,0,0,0,127,64,31,240,0,0,0,63,128,127,192,0,0,0,63,192,255,0,0,0,0,47,192,45,0,0,0,0,31,208,0,0,0,0,0,15,224,0,0,0,0,0,11,240,0,0,0,0,0,7,244,0,0,0,0,0,3,248,0,0,0,0,0,3,252,0,0,0,0,0,2,252,0,0,0,0,0,1,254,0,0,0,0,0,0,255,0,0,0,0,0,0,228,0,0,0, + // 0x30e4 ヤ + 228,48,31,31,248,36,2,254,0,1,184,0,0,0,0,0,0,7,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,253,0,0,0,0,0,0,1,254,0,0,0,1,128,0,0,255,0,0,1,191,244,0,0,255,0,22,255,255,252,0,0,191,171,255,255,255,248,0,1,191,255,255,255,239,240,90,255,255,255,255,144,47,208,255,255,255,254,64,0,127,192,191,255,255,208,0,0,255,0,63,228,15,240,0,3,253,0,36,0,15,240,0,15,248,0,0,0,11,244,0,47,240,0,0,0,7,248,0,191,192,0,0,0,3,252,2,255,64,0,0,0,3,252,2,253,0,0,0,0,2,253,0,40,0,0,0,0,1,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,47,208,0,0,0,0,0,0,31,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,244,0,0,0,0,0,0,11,248,0,0,0,0,0,0,6,64,0,0,0, + // 0x30e5 ュ + 229,48,26,20,140,36,5,255,1,165,85,85,90,0,0,1,255,255,255,255,208,0,1,255,255,255,255,224,0,1,255,255,255,255,208,0,0,0,0,0,47,208,0,0,0,0,0,47,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,128,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,191,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,105,85,85,85,255,85,160,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,0,0,0,0,0,0,0, + // 0x30e6 ユ + 230,48,32,25,200,36,2,1,0,0,0,0,0,1,0,0,0,127,255,255,255,255,208,0,0,127,255,255,255,255,244,0,0,127,255,255,255,255,240,0,0,42,170,170,170,175,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,128,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,127,170,170,170,171,255,170,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0, + // 0x30e7 ョ + 231,48,21,24,144,36,7,253,20,0,0,0,0,64,63,255,255,255,255,192,63,255,255,255,255,192,63,255,255,255,255,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,5,0,0,0,47,192,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,0,0,0,0,31,192,21,85,85,85,111,192,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,0,0,0,0,31,192,0,0,0,0,5,64, + // 0x30e8 ヨ + 232,48,25,28,196,36,5,254,63,255,255,255,255,255,192,63,255,255,255,255,255,192,63,255,255,255,255,255,192,37,85,85,85,85,127,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,9,85,85,85,85,127,192,15,255,255,255,255,255,192,15,255,255,255,255,255,192,15,255,255,255,255,255,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,191,255,255,255,255,255,192,191,255,255,255,255,255,192,191,255,255,255,255,255,192,106,170,170,170,170,191,192,0,0,0,0,0,47,192,0,0,0,0,0,5,64, + // 0x30e9 ラ + 233,48,27,30,210,36,5,254,1,85,85,85,85,86,0,3,255,255,255,255,255,0,3,255,255,255,255,255,0,3,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,255,255,255,255,255,255,252,255,255,255,255,255,255,244,85,85,85,85,85,95,240,0,0,0,0,0,31,240,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,0,0,0,0,191,128,0,0,0,0,0,255,0,0,0,0,0,3,254,0,0,0,0,0,11,252,0,0,0,0,0,47,240,0,0,0,0,0,255,208,0,0,0,0,7,255,128,0,0,0,0,47,254,0,0,0,0,2,255,248,0,0,0,0,111,255,208,0,0,0,15,255,254,0,0,0,0,11,255,244,0,0,0,0,3,254,64,0,0,0,0,0,144,0,0,0,0, + // 0x30ea リ + 234,48,22,30,180,36,7,254,106,64,0,0,63,208,127,128,0,0,63,208,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,47,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,128,127,128,0,0,191,128,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,11,252,0,0,0,0,47,244,0,0,0,0,255,224,0,0,0,11,255,128,0,0,1,191,254,0,0,0,15,255,244,0,0,0,3,255,128,0,0,0,0,248,0,0,0,0,0,0,0,0,0, + // 0x30eb ル + 235,48,33,29,5,36,2,255,0,1,84,0,21,64,0,0,0,0,3,252,0,127,128,0,0,0,0,3,252,0,127,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,252,0,63,128,0,0,0,0,3,248,0,63,128,0,0,0,0,3,248,0,63,128,0,0,0,0,3,248,0,63,128,0,0,0,0,3,244,0,63,128,0,0,0,0,7,244,0,63,128,0,8,0,0,7,240,0,63,128,0,61,0,0,11,240,0,63,128,0,191,0,0,15,240,0,63,128,2,255,64,0,31,224,0,63,128,11,253,0,0,63,192,0,63,128,63,244,0,0,127,192,0,63,129,255,224,0,0,255,64,0,63,139,255,64,0,3,255,0,0,63,255,253,0,0,11,253,0,0,63,255,240,0,0,47,248,0,0,127,255,128,0,0,191,240,0,0,127,252,0,0,0,47,192,0,0,63,208,0,0,0,7,0,0,0,10,0,0,0,0, + // 0x30ec レ + 236,48,26,28,196,36,7,255,127,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,1,0,63,192,0,0,0,7,192,63,192,0,0,0,31,208,63,192,0,0,0,127,224,63,192,0,0,1,255,192,63,192,0,0,11,255,0,63,192,0,0,127,252,0,63,192,0,2,255,224,0,63,192,0,31,255,64,0,63,192,1,255,252,0,0,63,192,31,255,224,0,0,63,198,255,255,0,0,0,63,255,255,244,0,0,0,63,255,255,64,0,0,0,127,255,224,0,0,0,0,47,249,0,0,0,0,0,7,64,0,0,0,0,0, + // 0x30ed ロ + 237,48,26,27,189,36,5,255,170,170,170,170,170,170,160,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,254,0,0,0,0,11,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,170,170,170,170,175,240,255,0,0,0,0,11,240,169,0,0,0,0,6,160, + // 0x30ee ヮ + 238,48,24,24,144,36,6,252,127,255,255,255,255,248,127,255,255,255,255,255,127,255,255,255,255,255,127,149,85,85,86,254,127,64,0,0,2,253,127,64,0,0,2,252,127,64,0,0,3,252,127,64,0,0,3,252,127,64,0,0,7,248,127,64,0,0,11,244,127,64,0,0,15,240,0,0,0,0,47,224,0,0,0,0,63,192,0,0,0,0,255,128,0,0,0,2,255,0,0,0,0,11,253,0,0,0,0,47,248,0,0,0,1,255,224,0,0,0,11,255,128,0,0,1,191,253,0,0,0,15,255,244,0,0,0,7,255,128,0,0,0,1,248,0,0,0,0,0,0,0,0,0, + // 0x30ef ワ + 239,48,28,28,196,36,4,254,191,255,255,255,255,255,244,127,255,255,255,255,255,254,127,255,255,255,255,255,254,127,170,170,170,170,171,253,127,64,0,0,0,3,252,127,64,0,0,0,3,252,127,64,0,0,0,3,252,127,64,0,0,0,7,248,127,64,0,0,0,11,244,127,64,0,0,0,15,244,127,64,0,0,0,15,240,127,64,0,0,0,31,224,191,128,0,0,0,63,208,0,0,0,0,0,127,192,0,0,0,0,0,255,128,0,0,0,0,1,255,0,0,0,0,0,3,254,0,0,0,0,0,15,252,0,0,0,0,0,63,244,0,0,0,0,0,255,224,0,0,0,0,7,255,192,0,0,0,0,47,254,0,0,0,0,2,255,248,0,0,0,0,111,255,208,0,0,0,3,255,255,0,0,0,0,1,255,244,0,0,0,0,0,191,64,0,0,0,0,0,20,0,0,0,0, + // 0x30f0 ヰ + 240,48,30,31,248,36,3,254,0,0,0,0,2,164,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,47,255,255,255,255,255,255,208,47,255,255,255,255,255,255,208,47,255,255,255,255,255,255,208,21,86,253,85,87,249,85,64,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,169,87,253,85,91,253,85,160,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,2,164,0,0, + // 0x30f1 ヱ + 241,48,31,26,208,36,3,0,10,170,170,170,170,170,171,0,15,255,255,255,255,255,255,208,15,255,255,255,255,255,255,224,15,255,255,255,255,255,255,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,254,0,0,0,0,0,0,7,252,0,0,0,0,191,64,15,244,0,0,0,0,191,64,63,224,0,0,0,0,191,64,255,192,0,0,0,0,191,67,255,0,0,0,0,0,191,65,252,0,0,0,0,0,191,64,32,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,254,170,170,255,234,170,171,244,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,244,0,0,0,0,0,0,0,0, + // 0x30f2 ヲ + 242,48,27,29,203,36,5,254,106,85,85,85,85,90,128,127,255,255,255,255,255,244,127,255,255,255,255,255,252,127,255,255,255,255,255,248,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,31,224,0,0,0,0,0,47,208,0,0,0,0,0,63,192,31,255,255,255,255,255,192,31,255,255,255,255,255,128,31,255,255,255,255,255,0,5,85,85,85,86,255,0,0,0,0,0,2,254,0,0,0,0,0,3,252,0,0,0,0,0,15,248,0,0,0,0,0,47,240,0,0,0,0,0,191,192,0,0,0,0,1,255,64,0,0,0,0,11,254,0,0,0,0,0,63,252,0,0,0,0,1,255,224,0,0,0,0,31,255,128,0,0,0,2,255,253,0,0,0,0,127,255,224,0,0,0,0,63,255,64,0,0,0,0,15,244,0,0,0,0,0,6,64,0,0,0,0, + // 0x30f3 ン + 243,48,29,28,224,36,5,255,3,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,63,248,0,0,0,0,0,0,31,255,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,191,244,0,0,0,0,0,0,47,253,0,0,0,28,0,0,7,255,64,0,0,61,0,0,1,254,0,0,0,127,0,0,0,120,0,0,0,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,244,0,0,0,0,0,0,127,224,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,255,240,0,0,0,0,0,7,255,192,0,0,0,0,0,63,255,0,0,0,0,0,2,255,248,0,0,0,0,0,111,255,208,0,0,0,0,27,255,254,0,0,0,0,22,255,255,240,0,0,0,0,255,255,255,64,0,0,0,0,127,255,224,0,0,0,0,0,63,249,0,0,0,0,0,0,9,0,0,0,0,0,0,0, + // 0x30f4 ヴ + 244,48,31,35,24,36,3,253,0,0,0,0,0,0,0,64,0,0,0,0,0,0,11,192,0,0,0,85,0,11,135,224,0,0,0,255,0,15,194,244,0,0,0,255,0,3,224,252,0,0,0,255,0,2,240,188,0,0,0,255,0,0,248,16,0,0,0,255,0,0,160,0,0,0,0,255,0,0,16,0,127,255,255,255,255,255,253,0,63,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,63,149,85,85,85,86,255,0,63,64,0,0,0,2,254,0,63,64,0,0,0,2,253,0,63,64,0,0,0,3,252,0,63,64,0,0,0,3,252,0,63,64,0,0,0,7,248,0,63,64,0,0,0,15,244,0,63,128,0,0,0,15,240,0,127,64,0,0,0,47,224,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,192,0,0,0,0,0,1,255,64,0,0,0,0,0,7,254,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,240,0,0,0,0,0,2,255,208,0,0,0,0,0,47,255,64,0,0,0,0,6,255,252,0,0,0,0,1,191,255,224,0,0,0,0,1,255,255,64,0,0,0,0,0,191,244,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f5 ヵ + 245,48,23,26,156,36,6,253,0,0,63,64,0,0,0,0,63,64,0,0,0,0,63,64,0,0,0,0,63,64,0,0,0,0,63,0,0,0,84,0,127,64,1,64,191,255,255,255,255,248,191,255,255,255,255,252,191,255,255,255,255,252,0,0,191,0,2,252,0,0,254,0,2,248,0,0,253,0,2,248,0,0,252,0,2,248,0,2,252,0,3,248,0,3,248,0,3,244,0,7,244,0,3,244,0,15,240,0,3,244,0,31,208,0,3,240,0,63,192,0,7,240,0,255,64,0,11,240,3,254,0,0,15,224,31,252,0,149,111,208,191,240,0,255,255,192,191,192,0,255,255,128,47,0,0,191,253,0,4,0,0,0,0,0, + // 0x30f6 ヶ + 246,48,27,27,189,36,4,252,0,0,144,0,0,0,0,0,1,254,0,0,0,0,0,2,253,0,0,0,0,0,3,252,0,0,0,0,0,3,248,0,0,0,0,0,11,240,0,0,0,0,0,15,255,255,255,255,252,0,47,255,255,255,255,252,0,127,255,255,255,255,252,0,255,64,2,253,1,84,2,254,0,2,252,0,0,11,252,0,3,252,0,0,47,240,0,3,248,0,0,191,208,0,7,244,0,0,47,128,0,11,240,0,0,1,0,0,15,240,0,0,0,0,0,31,208,0,0,0,0,0,63,192,0,0,0,0,0,191,128,0,0,0,0,1,255,64,0,0,0,0,3,254,0,0,0,0,0,15,252,0,0,0,0,0,127,240,0,0,0,0,2,255,208,0,0,0,0,3,255,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f7 ヷ + 247,48,31,35,24,36,3,253,0,0,0,0,0,0,1,128,0,0,0,0,0,6,15,208,0,0,0,0,0,47,71,240,0,0,0,0,0,15,195,244,0,0,0,0,0,11,208,248,0,0,0,0,0,3,224,64,0,0,0,0,0,1,0,0,127,255,255,255,255,255,248,0,127,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,63,234,170,170,170,171,254,0,63,128,0,0,0,2,253,0,63,128,0,0,0,3,253,0,63,128,0,0,0,3,252,0,63,128,0,0,0,3,252,0,63,128,0,0,0,7,248,0,63,128,0,0,0,11,248,0,63,128,0,0,0,15,244,0,127,128,0,0,0,31,240,0,127,128,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,47,248,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,192,0,0,0,0,0,31,255,0,0,0,0,0,1,255,252,0,0,0,0,0,31,255,224,0,0,0,0,3,255,255,64,0,0,0,0,1,255,248,0,0,0,0,0,0,127,128,0,0,0,0,0,0,20,0,0,0,0,0, + // 0x30f8 ヸ + 248,48,33,33,41,36,2,254,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,24,60,0,0,0,0,0,1,168,61,46,0,0,0,0,0,2,252,31,31,0,0,0,0,0,2,252,15,79,64,0,0,0,0,1,252,11,133,0,0,0,0,0,1,252,6,64,0,0,0,0,0,1,252,0,0,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,5,85,255,85,86,253,85,80,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,0,0,254,0,1,252,0,0,0,41,85,255,85,86,254,85,168,0,127,255,255,255,255,255,255,252,0,127,255,255,255,255,255,255,252,0,127,255,255,255,255,255,255,252,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,1,168,0,0,0, + // 0x30f9 ヹ + 249,48,32,33,8,36,2,255,0,0,0,0,0,0,0,16,0,0,0,0,0,0,3,240,0,0,0,0,0,7,209,248,0,0,0,0,0,3,240,252,0,0,0,0,0,2,244,126,0,0,0,0,0,0,252,36,0,0,0,0,0,0,164,0,6,170,170,170,170,170,171,128,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,254,0,0,0,0,63,192,11,252,0,0,0,0,63,192,47,240,0,0,0,0,63,192,191,208,0,0,0,0,63,194,255,128,0,0,0,0,63,192,254,0,0,0,0,0,63,192,24,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0x30fa ヺ + 250,48,30,35,24,36,4,253,0,0,0,0,0,0,10,0,0,0,0,0,0,40,63,64,0,0,0,0,0,189,15,192,0,0,0,0,0,63,11,208,0,0,0,0,0,47,131,224,0,0,0,0,0,15,129,0,170,85,85,85,85,110,64,0,255,255,255,255,255,255,224,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,63,255,255,255,255,255,128,0,63,255,255,255,255,255,64,0,63,255,255,255,255,255,0,0,21,85,85,85,86,254,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,248,0,0,0,0,0,0,15,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,63,248,0,0,0,0,0,2,255,208,0,0,0,0,0,31,255,64,0,0,0,0,2,255,253,0,0,0,0,0,191,255,224,0,0,0,0,0,191,255,64,0,0,0,0,0,47,244,0,0,0,0,0,0,10,64,0,0,0,0,0, + // 0x30fb ・ + 251,48,8,8,16,36,14,10,31,244,127,253,255,255,255,255,255,255,255,255,63,252,11,224, + // 0x30fc ー + 252,48,30,5,40,36,3,11,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0, + // 0x30fd ヽ + 253,48,17,18,90,36,10,4,6,0,0,0,0,47,128,0,0,0,191,240,0,0,0,63,252,0,0,0,15,255,0,0,0,3,255,192,0,0,0,255,224,0,0,0,63,248,0,0,0,15,254,0,0,0,3,255,128,0,0,0,255,208,0,0,0,63,244,0,0,0,31,252,0,0,0,11,255,0,0,0,2,255,128,0,0,0,255,192,0,0,0,126,0,0,0,0,40,0, + // 0x30fe ヾ + 254,48,20,24,120,36,9,3,0,0,0,1,208,0,0,0,7,240,0,0,15,194,248,0,0,11,208,252,0,0,3,240,126,2,0,1,248,63,31,192,0,252,0,191,240,0,116,0,63,252,0,0,0,15,255,0,0,0,3,255,192,0,0,0,191,240,0,0,0,63,252,0,0,0,15,254,0,0,0,3,255,128,0,0,0,255,208,0,0,0,63,244,0,0,0,31,252,0,0,0,7,255,0,0,0,2,255,128,0,0,0,255,192,0,0,0,63,0,0,0,0,24,0,0,0,0,0,0, + // 0x30ff ヿ + 255,48,22,31,186,36,7,254,85,85,85,85,85,64,255,255,255,255,255,224,255,255,255,255,255,224,255,255,255,255,255,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224, + // 0x4eee 仮 + 238,78,34,35,59,36,1,252,0,0,100,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,47,255,255,255,255,192,0,2,252,47,255,255,255,255,192,0,3,244,47,255,255,255,255,192,0,15,240,47,192,0,0,0,0,0,31,208,47,128,0,0,0,0,0,63,192,47,128,0,0,0,0,0,127,64,47,128,0,0,0,0,0,255,64,47,128,0,0,0,0,3,255,64,47,128,0,0,0,0,11,255,64,47,192,0,0,0,0,31,255,64,47,255,255,255,254,0,127,255,64,47,255,255,255,255,0,255,191,64,47,255,255,255,255,0,190,63,64,47,255,0,0,190,0,60,63,64,47,255,0,0,253,0,16,63,64,47,175,128,1,252,0,0,63,64,63,159,192,3,248,0,0,63,64,63,79,208,3,244,0,0,63,64,63,71,240,11,240,0,0,63,64,63,3,248,15,208,0,0,63,64,63,1,253,63,192,0,0,63,64,127,0,255,127,64,0,0,63,64,190,0,63,255,0,0,0,63,64,254,0,47,252,0,0,0,63,64,253,0,15,252,0,0,0,63,65,252,0,63,255,0,0,0,63,67,248,1,255,255,208,0,0,63,67,244,11,254,127,248,0,0,63,79,240,191,248,15,255,128,0,63,95,211,255,208,2,255,224,0,63,79,192,254,0,0,127,192,0,63,66,64,116,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x540d 名 + 13,84,31,34,16,36,1,253,0,0,0,249,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,47,255,255,255,208,0,0,0,191,255,255,255,240,0,0,1,255,255,255,255,224,0,0,11,253,0,0,47,192,0,0,47,244,0,0,127,128,0,0,255,240,0,0,255,0,0,11,255,252,0,2,253,0,0,63,255,255,64,7,252,0,0,63,224,191,224,15,240,0,0,15,64,31,248,63,208,0,0,4,0,7,254,255,128,0,0,0,0,1,255,254,0,0,0,0,0,0,127,248,0,0,0,0,0,0,191,224,0,0,0,0,0,3,255,255,255,255,252,0,0,47,255,255,255,255,252,0,1,255,255,255,255,255,252,0,31,255,240,0,0,2,252,6,255,255,240,0,0,1,252,127,255,215,240,0,0,1,252,63,253,7,240,0,0,1,252,31,128,7,240,0,0,1,252,4,0,7,240,0,0,1,252,0,0,7,240,0,0,1,252,0,0,7,240,0,0,1,252,0,0,7,255,255,255,255,252,0,0,7,255,255,255,255,252,0,0,7,255,255,255,255,252,0,0,7,240,0,0,2,252,0,0,6,160,0,0,1,252, + // 0x5b9a 定 + 154,91,33,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,195,255,255,255,255,252,127,0,5,67,255,255,255,255,252,21,0,0,3,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,7,224,3,248,0,0,0,0,0,7,240,3,248,0,0,0,0,0,11,240,3,248,0,0,0,0,0,15,224,3,255,255,255,192,0,0,15,208,3,255,255,255,192,0,0,31,224,3,255,255,255,192,0,0,47,240,3,248,0,0,0,0,0,63,244,3,248,0,0,0,0,0,127,252,3,248,0,0,0,0,0,255,255,3,248,0,0,0,0,1,253,63,211,248,0,0,0,0,3,252,31,251,248,0,0,0,0,11,244,7,255,253,0,0,0,0,47,240,1,255,255,255,255,255,192,127,192,0,47,255,255,255,255,128,47,64,0,1,191,255,255,255,64,9,0,0,0,0,5,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,35,24,36,1,252,0,0,0,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,213,85,95,245,85,84,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,213,85,85,85,80,0,0,63,255,255,255,255,244,0,0,63,255,255,255,255,244,0,0,127,255,255,255,255,244,0,0,127,0,0,0,7,244,0,0,191,0,0,0,7,244,0,0,255,0,0,0,7,244,0,0,254,0,0,0,7,244,0,2,252,0,0,0,7,244,0,3,252,0,0,0,7,244,0,11,248,0,0,0,7,244,0,15,240,0,0,0,7,244,0,63,224,0,0,0,7,244,0,127,192,0,0,0,7,244,0,31,0,0,0,0,7,244,0,9,0,0,0,0,7,244,0,0,0,0,0,0,0,0,0, + // 0x793a 示 + 58,121,33,32,32,36,1,253,0,21,85,85,85,85,85,64,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,85,85,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,2,64,2,252,0,24,0,0,0,11,244,2,252,1,253,0,0,0,15,240,2,252,0,255,0,0,0,31,208,2,252,0,127,128,0,0,63,192,2,252,0,47,208,0,0,191,64,2,252,0,15,240,0,0,255,0,2,252,0,11,244,0,3,253,0,2,252,0,3,252,0,11,248,0,2,252,0,2,254,0,47,240,0,2,252,0,0,255,0,127,208,0,2,252,0,0,191,64,31,64,0,2,252,0,0,63,64,1,0,21,87,252,0,0,36,0,0,0,47,255,248,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,15,254,128,0,0,0,0, + // 0x7fa9 義 + 169,127,33,34,50,36,2,253,0,0,96,0,0,30,64,0,0,0,3,252,0,0,63,192,0,0,0,1,253,0,0,63,64,0,0,0,0,191,0,0,255,0,0,0,31,255,255,255,255,255,255,244,0,31,255,255,255,255,255,255,244,0,10,170,170,175,250,170,170,160,0,0,0,0,15,224,0,0,0,0,1,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,64,0,0,85,85,95,245,85,85,0,0,0,0,0,15,224,0,0,0,0,170,170,170,175,250,170,170,170,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,100,0,0,64,0,0,1,90,255,252,63,66,244,0,0,63,255,255,254,47,135,255,64,0,63,235,254,64,47,128,191,224,0,0,2,248,0,31,192,15,224,0,0,2,248,0,31,192,1,128,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,170,171,254,170,175,250,170,170,0,0,2,248,0,3,240,15,128,0,0,2,254,191,131,244,63,128,0,170,255,255,255,129,252,254,0,0,255,255,255,233,0,255,248,0,0,255,171,248,0,0,255,208,13,0,0,2,248,0,27,255,224,15,64,0,2,248,2,255,255,249,47,64,2,171,248,63,255,135,255,255,0,3,255,244,31,248,0,255,254,0,2,255,144,10,64,0,27,248,0, + // 0x8868 表 + 104,136,34,34,50,36,1,253,0,0,0,2,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,170,170,171,254,170,170,160,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,0,191,239,128,0,0,0,0,0,7,255,15,192,0,116,0,0,0,47,248,15,208,2,254,0,0,2,255,208,7,240,15,253,0,0,47,255,64,3,244,127,240,0,7,255,255,0,2,254,255,64,0,191,255,191,0,0,255,248,0,0,63,244,63,0,0,191,208,0,0,30,64,63,0,0,63,208,0,0,0,0,63,0,0,31,240,0,0,0,0,63,0,27,139,253,0,0,0,0,63,91,255,194,255,128,0,0,0,127,255,255,192,191,248,0,0,111,255,255,249,0,31,255,128,0,255,255,249,0,0,7,255,208,0,191,249,0,0,0,0,127,64,0,57,0,0,0,0,0,6,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Korean_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Korean_26.cpp new file mode 100644 index 000000000000..d0b9e1fa8c1f --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Korean_26.cpp @@ -0,0 +1,252 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Korean 36pt, capital 'A' height: 26px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +extern const uint8_t NotoSans_Medium_Korean_26[17586] = { + 162,26,112,172,136,215,34,247, // unifont_t + // 0xac70 거 + 112,172,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,63,255,255,255,0,3,248,63,255,255,255,0,3,248,63,255,255,255,0,3,248,0,0,0,191,0,3,248,0,0,0,255,0,3,248,0,0,0,254,0,3,248,0,0,0,254,0,3,248,0,0,1,253,0,3,248,0,0,2,252,0,3,248,0,0,3,252,0,3,248,0,0,7,244,255,255,248,0,0,15,240,255,255,248,0,0,47,224,255,255,248,0,0,63,192,0,3,248,0,0,255,64,0,3,248,0,2,255,0,0,3,248,0,11,252,0,0,3,248,0,63,240,0,0,3,248,1,255,208,0,0,3,248,11,255,64,0,0,3,248,127,252,0,0,0,3,248,255,224,0,0,0,3,248,127,64,0,0,0,3,248,36,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xace0 고 + 224,172,29,26,208,33,2,1,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,1,80,0,15,240,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,31,208,0,0,0,3,248,0,47,192,0,0,0,3,248,0,47,192,0,0,0,3,248,0,63,192,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xadf8 그 + 248,173,29,26,208,33,2,1,3,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,127,64,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xae09 급 + 9,174,30,31,248,33,2,254,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,0,0,0,15,224,0,1,252,0,0,0,15,224,0,1,252,0,0,0,15,224,0,1,252,0,0,0,15,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,252,0,0,0,15,224,0,1,252,0,0,0,15,224,0,1,252,0,0,0,15,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0, + // 0xae30 기 + 48,174,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,31,255,255,255,192,3,248,31,255,255,255,192,3,248,31,255,255,255,192,3,248,0,0,0,63,192,3,248,0,0,0,63,128,3,248,0,0,0,63,128,3,248,0,0,0,127,64,3,248,0,0,0,191,0,3,248,0,0,0,255,0,3,248,0,0,1,254,0,3,248,0,0,3,252,0,3,248,0,0,7,248,0,3,248,0,0,15,244,0,3,248,0,0,47,240,0,3,248,0,0,127,192,0,3,248,0,1,255,64,0,3,248,0,7,254,0,0,3,248,0,47,248,0,0,3,248,0,255,240,0,0,3,248,7,255,128,0,0,3,248,127,253,0,0,0,3,248,191,244,0,0,0,3,248,63,128,0,0,0,3,248,24,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xae45 깅 + 69,174,27,34,238,33,2,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,15,255,255,255,192,3,248,15,255,255,255,128,3,248,15,255,255,255,128,3,248,0,0,0,63,64,3,248,0,0,0,127,0,3,248,0,0,0,255,0,3,248,0,0,0,254,0,3,248,0,0,3,252,0,3,248,0,0,11,248,0,3,248,0,0,31,240,0,3,248,0,0,127,192,0,3,248,0,2,255,64,0,3,248,0,31,253,0,0,3,248,1,255,244,0,0,3,248,111,255,128,0,0,3,248,191,253,0,0,0,3,248,63,208,0,0,0,3,248,40,0,0,0,0,2,164,0,0,6,255,254,64,0,0,0,191,255,255,253,0,0,7,255,255,255,255,128,0,31,254,0,1,191,224,0,63,224,0,0,15,244,0,63,128,0,0,7,248,0,63,64,0,0,3,248,0,63,128,0,0,7,248,0,63,224,0,0,15,244,0,31,254,64,1,191,224,0,7,255,255,255,255,128,0,0,191,255,255,253,0,0,0,6,191,254,64,0, + // 0xb044 끄 + 68,176,29,25,200,33,2,2,15,255,255,195,255,255,240,0,15,255,255,195,255,255,240,0,15,255,255,195,255,255,240,0,0,0,63,192,0,11,240,0,0,0,63,128,0,11,240,0,0,0,63,128,0,11,240,0,0,0,63,128,0,11,240,0,0,0,63,128,0,11,240,0,0,0,63,64,0,15,240,0,0,0,127,64,0,15,240,0,0,0,191,0,0,15,224,0,0,0,191,0,0,15,224,0,0,0,255,0,0,15,224,0,0,0,254,0,0,31,208,0,0,1,253,0,0,31,208,0,0,2,253,0,0,47,192,0,0,3,252,0,0,63,192,0,0,3,252,0,0,63,192,0,0,0,100,0,0,22,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192, + // 0xb0b4 내 + 180,176,27,34,238,33,3,253,0,0,0,0,0,1,80,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,106,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,255,255,244,191,0,0,1,255,255,244,191,0,0,1,255,255,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,0,1,252,3,244,191,0,90,225,252,3,244,191,255,255,225,252,3,244,191,255,255,241,252,3,244,191,255,250,65,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,1,252,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244, + // 0xb178 노 + 120,177,30,27,216,33,2,1,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb204 누 + 4,178,30,32,0,33,2,253,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0, + // 0xb274 뉴 + 116,178,29,32,0,33,2,253,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0,0,3,248,0,11,240,0,0, + // 0xb2c8 니 + 200,178,26,34,238,33,3,253,0,0,0,0,0,10,144,0,0,0,0,0,15,224,0,0,0,0,0,15,224,21,0,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,20,15,224,127,64,21,175,252,15,224,127,255,255,255,252,15,224,127,255,255,255,252,15,224,127,255,255,165,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224, + // 0xb2e4 다 + 228,178,29,34,16,33,3,253,0,0,0,0,0,85,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,255,255,255,252,0,191,0,0,255,255,255,252,0,191,0,0,255,255,255,252,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,255,192,255,0,0,0,0,191,255,192,255,0,0,0,0,191,255,192,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,21,175,224,191,0,0,255,255,255,255,240,191,0,0,255,255,255,255,240,191,0,0,255,255,254,148,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0, + // 0xb2f9 당 + 249,178,29,34,16,33,3,253,0,0,0,0,0,21,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,255,255,255,248,0,127,64,0,255,255,255,248,0,127,64,0,255,255,255,248,0,127,64,0,255,0,0,0,0,127,64,0,255,0,0,0,0,127,64,0,255,0,0,0,0,127,64,0,255,0,0,0,0,127,255,192,255,0,0,0,0,127,255,192,255,0,0,0,0,127,255,192,255,0,0,0,0,127,64,0,255,0,0,0,0,127,64,0,255,0,1,107,224,127,64,0,255,255,255,255,224,127,64,0,255,255,255,255,240,127,64,0,255,255,255,165,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,21,0,0,0,0,107,255,228,0,0,0,0,11,255,255,255,208,0,0,0,127,255,255,255,248,0,0,0,255,228,0,27,254,0,0,2,254,0,0,1,255,0,0,3,252,0,0,0,127,64,0,3,248,0,0,0,63,128,0,3,252,0,0,0,127,64,0,2,254,0,0,1,255,0,0,0,255,228,0,31,254,0,0,0,127,255,255,255,248,0,0,0,11,255,255,255,208,0,0,0,0,111,255,228,0,0,0, + // 0xb3c4 도 + 196,179,30,27,216,33,2,1,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb3cc 돌 + 204,179,29,32,0,33,2,253,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,224,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,1,170,170,170,170,175,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0, + // 0xb3d9 동 + 217,179,29,32,0,33,2,253,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,255,250,0,0,0,0,11,255,255,255,244,0,0,0,63,255,255,255,255,0,0,0,255,224,0,6,255,192,0,1,254,0,0,0,63,208,0,2,252,0,0,0,31,224,0,2,252,0,0,0,31,224,0,1,255,0,0,0,63,208,0,0,255,228,0,6,255,192,0,0,63,255,255,255,255,0,0,0,7,255,255,255,244,0,0,0,0,26,255,233,0,0,0, + // 0xb418 되 + 24,180,27,34,238,33,2,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,240,0,0,0,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,150,171,195,248,255,255,255,255,255,195,248,255,255,255,255,255,195,248,191,255,255,170,80,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xb41c 된 + 28,180,28,34,238,33,2,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,3,255,255,255,244,3,248,3,255,255,255,244,3,248,3,255,255,255,244,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,255,255,255,248,3,248,3,255,255,255,248,3,248,3,255,255,255,248,3,248,0,0,127,64,0,3,248,0,0,63,64,0,3,248,0,0,63,64,0,3,248,0,0,63,64,0,3,248,0,0,127,154,191,131,248,255,255,255,255,255,131,248,255,255,255,255,255,131,248,191,255,254,169,64,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,47,192,0,0,3,248,0,63,192,0,0,2,164,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,255,255,255,255,254,0,63,255,255,255,255,254,0,63,255,255,255,255,254,0,0,0,0,0,0,0, + // 0xb428 됨 + 40,180,27,33,231,33,2,254,0,0,0,0,0,2,164,0,0,0,0,0,3,248,3,255,255,255,244,3,248,3,255,255,255,244,3,248,3,255,255,255,244,3,248,3,248,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,244,0,0,0,3,248,3,255,255,255,248,3,248,3,255,255,255,248,3,248,3,255,255,255,248,3,248,0,0,63,64,0,3,248,0,0,63,64,0,3,248,0,0,63,64,0,3,248,0,0,127,154,191,195,248,255,255,255,255,255,195,248,255,255,255,255,255,131,248,191,255,234,149,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,63,255,255,255,255,248,0,63,255,255,255,255,248,0,63,255,255,255,255,248,0,63,192,0,0,3,248,0,63,192,0,0,3,248,0,63,192,0,0,3,248,0,63,192,0,0,3,248,0,63,192,0,0,3,248,0,63,255,255,255,255,248,0,63,255,255,255,255,248,0,63,255,255,255,255,248, + // 0xb4a4 뒤 + 164,180,27,34,238,33,2,253,0,0,0,0,0,2,164,0,0,0,0,0,3,248,7,255,255,255,244,3,248,7,255,255,255,244,3,248,7,255,255,255,244,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,244,0,0,0,3,248,7,255,255,255,248,3,248,7,255,255,255,248,3,248,7,255,255,255,248,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,21,67,248,255,255,255,255,255,195,248,255,255,255,255,255,195,248,255,255,255,254,149,3,248,255,255,255,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,0,0,0,3,248, + // 0xb4dc 드 + 220,180,30,27,216,33,2,1,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb514 디 + 20,181,25,35,245,33,4,252,0,0,0,0,0,21,0,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,255,255,255,253,0,63,128,255,255,255,253,0,63,128,255,255,255,253,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,0,0,0,63,128,254,0,5,107,240,63,128,255,255,255,255,240,63,128,255,255,255,255,240,63,128,255,255,255,165,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,0,0, + // 0xb77c 라 + 124,183,29,34,16,33,3,253,0,0,0,0,0,21,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,255,255,255,252,0,191,0,0,255,255,255,252,0,191,0,0,255,255,255,252,0,191,0,0,0,0,2,252,0,191,0,0,0,0,2,252,0,191,0,0,0,0,2,252,0,191,0,0,0,0,2,252,0,191,0,0,0,0,2,252,0,191,0,0,0,0,2,252,0,191,0,0,255,255,255,252,0,191,0,0,255,255,255,252,0,191,255,192,255,255,255,252,0,191,255,192,255,0,0,0,0,191,255,192,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,0,0,0,191,0,0,255,0,5,107,240,191,0,0,255,255,255,255,240,191,0,0,255,255,255,255,240,191,0,0,255,255,254,148,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0, + // 0xb7ec 러 + 236,183,26,34,238,33,3,253,0,0,0,0,0,10,160,0,0,0,0,0,15,224,0,0,0,0,0,15,224,255,255,255,244,0,15,224,255,255,255,244,0,15,224,255,255,255,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,0,0,3,244,0,15,224,255,255,255,244,191,255,224,255,255,255,244,191,255,224,255,255,255,244,191,255,224,254,0,0,0,0,15,224,254,0,0,0,0,15,224,254,0,0,0,0,15,224,254,0,0,0,0,15,224,254,0,0,0,0,15,224,254,0,0,0,0,15,224,254,0,5,107,192,15,224,255,255,255,255,192,15,224,255,255,255,255,192,15,224,255,255,254,148,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224, + // 0xb808 레 + 8,184,27,34,238,33,3,253,0,0,0,0,0,1,84,0,0,0,0,106,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,255,255,253,0,191,3,248,255,255,253,0,191,3,248,255,255,253,0,191,3,248,0,0,253,0,191,3,248,0,0,253,0,191,3,248,0,0,253,0,191,3,248,0,0,253,0,191,3,248,0,0,253,0,191,3,248,0,0,253,63,255,3,248,255,255,253,63,255,3,248,255,255,253,63,255,3,248,255,255,253,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,90,240,191,3,248,255,255,255,240,191,3,248,255,255,255,240,191,3,248,255,255,233,64,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,21,3,248,0,0,0,0,0,3,248, + // 0xb825 력 + 37,184,26,35,245,33,3,252,0,0,0,0,0,10,144,0,0,0,0,0,15,224,255,255,255,240,0,15,224,255,255,255,240,0,15,224,255,255,255,240,0,15,224,0,0,11,240,255,255,224,0,0,11,240,255,255,224,0,0,11,240,255,255,224,0,0,11,240,0,15,224,191,255,255,240,0,15,224,255,255,255,240,0,15,224,255,255,255,240,0,15,224,255,0,0,0,255,255,224,255,0,0,0,255,255,224,255,0,0,0,255,255,224,255,0,0,0,0,15,224,255,0,5,191,0,15,224,255,255,255,255,0,15,224,255,255,255,255,0,15,224,255,255,254,165,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,5,64,0,0,0,0,0,0,0,0,255,255,255,255,255,224,0,255,255,255,255,255,224,0,255,255,255,255,255,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0xb85c 로 + 92,184,30,27,216,33,2,1,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb8cc 료 + 204,184,30,27,216,33,2,1,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,1,253,0,15,224,0,0,0,1,253,0,15,224,0,0,0,1,253,0,15,224,0,0,0,1,253,0,15,224,0,0,0,1,253,0,15,224,0,0,0,1,253,0,15,224,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb974 르 + 116,185,30,27,216,33,2,1,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xb9ac 리 + 172,185,26,34,238,33,3,253,0,0,0,0,0,5,64,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,127,255,255,254,0,15,224,127,255,255,254,0,15,224,127,255,255,254,0,15,224,0,0,0,254,0,15,224,0,0,0,254,0,15,224,0,0,0,254,0,15,224,0,0,0,254,0,15,224,0,0,0,254,0,15,224,0,0,0,254,0,15,224,127,255,255,254,0,15,224,127,255,255,254,0,15,224,127,255,255,254,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,0,0,0,15,224,127,64,5,106,253,15,224,127,255,255,255,253,15,224,127,255,255,255,253,15,224,127,255,255,169,64,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224, + // 0xb9b0 린 + 176,185,27,34,238,33,3,253,0,0,0,0,0,5,64,0,0,0,0,0,15,224,0,0,0,0,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,252,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,1,107,248,15,224,191,255,255,255,252,15,224,191,255,255,255,252,15,224,191,255,255,165,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,106,0,0,0,15,224,0,255,0,0,0,15,224,0,255,0,0,0,5,64,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,255,255,255,255,244,0,255,255,255,255,255,244,0,255,255,255,255,255,244,0,0,0,0,0,0,0, + // 0xb9bd 립 + 189,185,26,33,231,33,3,254,0,0,0,0,0,10,144,0,0,0,0,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,252,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,0,22,180,15,224,191,255,255,255,248,15,224,191,255,255,255,252,15,224,191,255,255,233,64,15,224,0,0,0,0,0,10,144,0,0,0,0,0,0,0,0,106,0,0,0,10,144,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224, + // 0xb9c1 링 + 193,185,26,34,238,33,3,253,0,0,0,0,0,5,64,0,0,0,0,0,15,224,0,0,0,0,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,0,0,1,253,0,15,224,127,255,255,253,0,15,224,191,255,255,253,0,15,224,191,255,255,253,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,0,0,0,15,224,191,0,0,90,248,15,224,191,255,255,255,248,15,224,191,255,255,255,252,15,224,191,255,255,233,64,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,27,255,250,64,0,0,2,255,255,255,248,0,0,47,255,255,255,255,0,0,127,228,0,6,255,192,0,255,64,0,0,47,224,0,254,0,0,0,15,240,0,254,0,0,0,15,224,0,255,64,0,0,47,224,0,127,245,0,6,255,192,0,31,255,255,255,255,0,0,2,255,255,255,248,0,0,0,26,255,250,64,0, + // 0xba48 멈 + 72,186,26,33,231,33,3,254,0,0,0,0,0,5,80,0,0,0,0,0,15,224,0,0,0,0,0,15,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,191,255,255,253,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,10,144,0,0,0,0,0,0,0,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,0,0,0,15,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224, + // 0xba54 메 + 84,186,27,34,238,33,3,253,0,0,0,0,0,2,164,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,255,255,3,248,253,0,63,255,255,3,248,253,0,63,255,255,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,21,3,248,0,0,0,0,0,3,244, + // 0xba74 면 + 116,186,27,34,238,33,3,253,0,0,0,0,0,6,144,0,0,0,0,0,15,224,0,0,0,0,0,15,224,191,255,255,253,0,15,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,253,0,15,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,0,1,255,255,255,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,255,255,255,253,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,42,0,0,0,15,224,0,127,64,0,0,15,224,0,127,64,0,0,10,144,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,0,0,0,0,0,0, + // 0xbaa8 모 + 168,186,30,27,216,33,2,1,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,248,0,0,0,15,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xbabb 못 + 187,186,29,32,0,33,2,253,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,252,0,0,0,15,208,0,1,252,0,0,0,15,208,0,1,252,0,0,0,15,208,0,1,252,0,0,0,15,208,0,1,252,0,0,0,15,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,192,0,0,0,0,0,3,255,240,0,0,0,0,0,15,251,252,0,0,0,0,0,127,226,255,64,0,0,0,7,255,128,191,244,0,0,6,255,254,0,47,255,228,0,11,255,240,0,3,255,252,0,7,254,0,0,0,47,244,0,2,64,0,0,0,0,96,0, + // 0xbbf8 미 + 248,187,26,35,245,33,3,252,0,0,0,0,0,5,64,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,0,0,255,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0xbc00 밀 + 0,188,27,34,238,33,3,253,0,0,0,0,0,10,144,0,0,0,0,0,15,224,127,255,255,255,0,15,224,191,255,255,255,0,15,224,191,255,255,255,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,0,0,191,0,15,224,191,255,255,255,0,15,224,191,255,255,255,0,15,224,191,255,255,255,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,191,255,255,255,255,224,0,191,255,255,255,255,224,0,191,170,170,170,170,144,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,255,255,255,255,248,0,191,255,255,255,255,248,0,191,255,255,255,255,248, + // 0xbc14 바 + 20,188,29,34,16,33,3,253,0,0,0,0,0,106,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,169,0,0,169,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,255,255,255,253,0,191,0,0,255,255,255,253,0,191,255,192,255,255,255,253,0,191,255,192,254,0,1,253,0,191,255,192,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,254,0,1,253,0,191,0,0,255,255,255,253,0,191,0,0,255,255,255,253,0,191,0,0,255,255,255,253,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0, + // 0xbc84 버 + 132,188,26,35,245,33,3,252,0,0,0,0,0,5,80,0,0,0,0,0,15,240,0,0,0,0,0,15,240,170,0,1,168,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,255,255,255,253,0,15,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,254,0,1,255,255,255,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,254,0,1,253,0,15,240,255,255,255,253,0,15,240,255,255,255,253,0,15,240,255,255,255,253,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,0,0, + // 0xbca0 베 + 160,188,27,34,238,33,3,253,0,0,0,0,0,1,84,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,21,0,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,255,255,255,64,127,3,248,255,255,255,255,255,3,248,255,255,255,255,255,3,248,253,0,63,255,255,3,248,253,0,63,128,191,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,253,0,63,64,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,255,255,255,64,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,127,3,248,0,0,0,0,21,3,248,0,0,0,0,0,3,248, + // 0xbca8 벨 + 168,188,28,34,238,33,3,253,0,0,0,0,0,1,80,0,0,0,0,126,3,244,169,0,26,64,191,3,244,254,0,47,192,191,3,244,254,0,47,192,191,3,244,254,0,47,192,191,3,244,255,255,255,192,191,3,244,255,255,255,192,191,3,244,255,255,255,255,255,3,244,254,0,47,255,255,3,244,254,0,47,255,255,3,244,254,0,47,192,191,3,244,254,0,47,192,191,3,244,254,0,47,192,191,3,244,255,255,255,192,191,3,244,255,255,255,192,191,3,244,255,255,255,128,191,3,244,0,0,0,0,126,3,244,0,0,0,0,0,0,0,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,234,170,170,170,160,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,255,255,255,255,254,0,127,255,255,255,255,254,0,127,255,255,255,255,253, + // 0xbcf8 본 + 248,188,29,32,0,33,2,253,1,253,0,0,0,15,208,0,1,253,0,0,0,15,208,0,1,253,0,0,0,15,208,0,1,253,0,0,0,15,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,253,0,0,0,15,208,0,1,253,0,0,0,15,208,0,1,253,0,0,0,15,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,1,255,255,255,255,255,208,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0xbe44 비 + 68,190,26,34,238,33,3,253,0,0,0,0,0,5,80,0,0,0,0,0,15,224,0,0,0,0,0,15,224,106,0,0,106,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,0,0,191,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,127,255,255,255,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224, + // 0xc0ac 사 + 172,192,31,34,16,33,1,253,0,0,0,0,0,5,80,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,106,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,64,0,11,240,0,0,0,191,64,0,11,240,0,0,0,255,128,0,11,240,0,0,0,255,192,0,11,240,0,0,1,255,192,0,11,255,252,0,2,255,224,0,11,255,252,0,3,255,240,0,11,255,252,0,11,247,244,0,11,240,0,0,31,227,252,0,11,240,0,0,63,193,255,0,11,240,0,0,191,128,255,128,11,240,0,2,255,0,63,224,11,240,0,11,253,0,47,248,11,240,0,127,248,0,11,255,11,240,0,127,224,0,2,252,11,240,0,47,128,0,0,116,11,240,0,9,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0, + // 0xc0bd 삽 + 189,192,30,33,8,33,2,254,0,0,0,0,0,26,128,0,0,0,0,0,0,31,192,0,0,1,252,0,0,31,192,0,0,1,252,0,0,31,192,0,0,2,252,0,0,31,192,0,0,2,253,0,0,31,192,0,0,2,253,0,0,31,192,0,0,3,254,0,0,31,192,0,0,3,255,0,0,31,255,240,0,11,255,64,0,31,255,240,0,15,255,192,0,31,255,240,0,47,223,240,0,31,208,0,0,191,139,252,0,31,192,0,2,255,3,255,0,31,192,0,11,253,0,255,224,31,192,0,191,248,0,127,248,31,192,0,255,208,0,15,240,31,192,0,127,64,0,1,208,31,192,0,36,0,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,106,0,0,0,26,128,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0, + // 0xc0c8 새 + 200,192,29,34,16,33,1,253,0,0,0,0,0,0,21,64,0,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,1,84,0,15,208,63,128,0,2,252,0,15,208,63,128,0,2,252,0,15,208,63,128,0,2,252,0,15,208,63,128,0,2,252,0,15,208,63,128,0,2,252,0,15,208,63,128,0,2,252,0,15,208,63,128,0,3,252,0,15,208,63,128,0,3,252,0,15,208,63,128,0,3,252,0,15,208,63,128,0,3,252,0,15,208,63,128,0,7,253,0,15,255,255,128,0,11,255,0,15,255,255,128,0,15,255,0,15,255,255,128,0,31,255,64,15,208,63,128,0,47,239,192,15,208,63,128,0,127,79,224,15,208,63,128,0,255,15,244,15,208,63,128,2,253,3,253,15,208,63,128,11,252,2,255,79,208,63,128,47,244,0,255,207,208,63,128,127,208,0,63,79,208,63,128,47,128,0,10,15,208,63,128,9,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,0,0,0,15,208,63,128,0,0,0,0,5,64,63,128,0,0,0,0,0,0,63,128, + // 0xc124 설 + 36,193,28,34,238,33,2,253,0,0,0,0,0,2,164,0,0,84,0,0,3,248,0,1,253,0,0,3,248,0,1,253,0,0,3,248,0,1,253,0,0,3,248,0,1,253,0,0,3,248,0,2,254,0,191,255,248,0,3,255,0,191,255,248,0,7,255,64,191,255,248,0,15,255,192,0,3,248,0,31,239,224,0,3,248,0,127,203,252,0,3,248,1,255,67,255,0,3,248,11,254,0,255,224,3,248,191,248,0,127,248,3,248,255,208,0,11,240,3,248,63,64,0,1,144,3,248,20,0,0,0,0,2,164,0,0,0,0,0,0,0,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,31,250,170,170,170,168,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,255,255,255,255,255,0,31,255,255,255,255,255,0,31,255,255,255,255,255, + // 0xc18c 소 + 140,193,30,28,224,33,2,1,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,192,0,0,0,0,0,3,255,224,0,0,0,0,0,7,255,240,0,0,0,0,0,15,243,252,0,0,0,0,0,63,209,255,0,0,0,0,1,255,128,255,192,0,0,0,11,254,0,63,248,0,0,0,191,248,0,15,255,128,0,47,255,224,0,2,255,254,0,47,254,0,0,0,127,254,0,15,228,0,0,0,7,252,0,9,0,0,127,0,0,20,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xc18d 속 + 141,193,30,33,8,33,2,253,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,240,0,0,0,0,0,15,247,252,0,0,0,0,0,127,210,255,64,0,0,0,7,255,128,191,228,0,0,1,191,253,0,31,255,144,0,31,255,240,0,3,255,253,0,15,254,64,42,0,127,252,0,7,144,0,127,64,1,180,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0, + // 0xc2a4 스 + 164,194,30,28,224,33,2,1,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,208,0,0,0,0,0,3,255,240,0,0,0,0,0,15,247,248,0,0,0,0,0,47,210,254,0,0,0,0,0,191,192,255,128,0,0,0,3,255,0,127,224,0,0,0,47,252,0,31,253,0,0,6,255,240,0,7,255,228,0,63,255,128,0,0,255,255,0,31,253,0,0,0,31,253,0,15,144,0,0,0,1,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xc2ac 슬 + 172,194,29,34,16,33,2,253,0,0,0,21,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,244,0,0,0,0,0,31,247,253,0,0,0,0,0,255,192,255,192,0,0,0,31,255,64,127,253,64,0,31,255,248,0,11,255,253,0,15,255,144,0,0,191,252,0,15,228,0,0,0,6,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,1,170,170,170,170,175,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0, + // 0xc2dc 시 + 220,194,27,33,231,33,2,253,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,1,255,0,0,3,248,0,1,255,64,0,3,248,0,3,255,128,0,3,248,0,3,255,192,0,3,248,0,11,255,224,0,3,248,0,15,235,240,0,3,248,0,47,195,252,0,3,248,0,127,194,254,0,3,248,0,255,64,255,64,3,248,3,254,0,127,208,3,248,31,252,0,47,248,3,248,191,240,0,11,255,3,248,255,192,0,2,253,3,248,127,0,0,0,120,3,248,40,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,2,164, + // 0xc2dd 식 + 221,194,27,34,238,33,2,253,0,0,0,0,0,2,164,0,0,0,0,0,3,248,0,0,254,0,0,3,248,0,0,254,0,0,3,248,0,0,254,0,0,3,248,0,0,254,0,0,3,248,0,0,255,0,0,3,248,0,1,255,0,0,3,248,0,2,255,0,0,3,248,0,3,255,128,0,3,248,0,7,255,192,0,3,248,0,15,255,240,0,3,248,0,63,203,248,0,3,248,0,255,131,254,0,3,248,3,255,0,255,208,3,248,47,252,0,127,252,3,248,255,244,0,15,252,3,248,127,192,0,2,244,3,248,45,0,0,0,16,3,248,0,0,0,0,0,3,248,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xc5b4 어 + 180,197,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,27,249,0,0,3,252,0,191,255,192,0,3,252,2,255,255,240,0,3,252,11,254,111,248,0,3,252,15,240,3,253,0,3,252,47,208,0,254,0,3,252,63,192,0,191,0,3,252,63,64,0,127,0,3,252,127,0,0,63,64,3,252,127,0,0,63,128,3,252,191,0,0,63,255,255,252,191,0,0,47,255,255,252,191,0,0,63,255,255,252,191,0,0,63,128,3,252,127,0,0,63,128,3,252,63,64,0,63,64,3,252,63,128,0,191,0,3,252,47,192,0,255,0,3,252,31,224,2,253,0,3,252,11,248,11,252,0,3,252,3,255,255,240,0,3,252,0,255,255,208,0,3,252,0,47,254,0,0,3,252,0,0,64,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252, + // 0xc5c6 없 + 198,197,30,35,24,33,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,47,254,0,0,3,248,0,1,255,255,224,0,3,248,0,11,255,255,252,0,3,248,0,47,244,7,255,0,3,248,0,63,192,0,191,64,3,248,0,127,64,0,63,192,3,248,0,191,0,0,47,255,255,248,0,191,0,0,31,255,255,248,0,191,0,0,47,255,255,248,0,127,64,0,63,192,3,248,0,63,192,0,191,64,3,248,0,47,244,7,255,0,3,248,0,11,255,255,252,0,3,248,0,1,255,255,240,0,3,248,0,0,47,254,64,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,2,252,1,252,0,127,64,0,2,252,1,252,0,127,64,0,2,252,1,252,0,127,64,0,2,252,1,252,0,127,64,0,2,255,255,252,0,191,128,0,2,255,255,252,0,255,192,0,2,254,171,252,1,255,208,0,2,252,1,252,3,255,224,0,2,252,1,252,11,251,244,0,2,252,1,252,31,243,253,0,2,252,1,252,191,193,255,128,2,255,255,255,255,64,191,240,2,255,255,253,253,0,31,208,1,255,255,252,176,0,2,128,0,0,0,0,0,0,0,0, + // 0xc5d1 엑 + 209,197,28,34,238,33,2,253,0,0,0,0,0,0,84,0,0,0,0,26,128,253,0,0,0,0,31,192,253,0,191,244,0,31,192,253,3,255,255,0,31,192,253,15,255,255,192,31,192,253,63,224,47,240,31,192,253,127,64,7,240,31,192,253,191,0,3,248,31,192,253,254,0,2,255,255,192,253,253,0,2,255,255,192,253,253,0,2,255,255,192,253,254,0,3,248,31,192,253,191,0,3,244,31,192,253,63,128,15,240,31,192,253,47,244,127,224,31,192,253,15,255,255,192,31,192,253,3,255,254,0,31,192,253,0,111,228,0,31,192,253,0,0,0,0,31,192,253,0,0,0,0,5,64,168,0,0,0,0,0,0,0,0,47,255,255,255,255,253,0,47,255,255,255,255,253,0,47,255,255,255,255,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xc5d4 엔 + 212,197,28,34,238,33,2,253,0,0,0,0,0,0,84,0,0,0,0,31,192,253,0,0,0,0,31,192,253,0,111,228,0,31,192,253,3,255,254,0,31,192,253,15,255,255,192,31,192,253,47,244,127,224,31,192,253,63,128,15,240,31,192,253,191,0,3,244,31,192,253,254,0,3,248,31,192,253,253,0,2,255,255,192,253,253,0,2,255,255,192,253,254,0,2,255,255,192,253,191,0,3,248,31,192,253,127,64,11,240,31,192,253,63,224,47,240,31,192,253,15,255,255,192,31,192,253,3,255,255,0,31,192,253,0,191,244,0,31,192,253,0,0,0,0,31,192,253,0,0,0,0,31,192,253,0,0,0,0,31,192,253,0,15,224,0,31,192,253,0,15,224,0,31,192,253,0,15,224,0,0,0,253,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xc5f4 열 + 244,197,28,34,238,33,2,253,0,0,0,0,0,2,164,0,0,0,0,0,3,248,0,47,254,64,0,3,248,1,255,255,244,0,3,248,11,255,255,255,255,255,248,47,244,7,255,255,255,248,63,192,0,191,255,255,248,127,64,0,63,192,3,248,191,0,0,47,192,3,248,191,0,0,31,192,3,248,191,0,0,47,192,3,248,127,64,0,63,255,255,248,63,192,0,191,255,255,248,47,248,7,255,255,255,248,11,255,255,252,0,3,248,1,255,255,224,0,3,248,0,27,253,0,0,3,248,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,31,255,255,255,255,248,0,31,255,255,255,255,248,0,31,250,170,170,170,168,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,255,255,255,255,255,0,31,255,255,255,255,255,0,31,255,255,255,255,255, + // 0xc608 예 + 8,198,28,34,238,33,2,253,0,0,0,0,0,0,169,0,0,0,0,31,192,254,0,0,0,0,31,192,254,0,111,208,0,31,192,254,2,255,252,0,31,192,254,7,255,254,0,31,192,254,15,250,255,64,31,192,254,47,192,63,192,31,192,254,63,128,31,255,255,192,254,63,0,15,255,255,192,254,127,0,11,255,255,192,254,190,0,7,240,31,192,254,190,0,7,240,31,192,254,254,0,7,240,31,192,254,254,0,7,240,31,192,254,254,0,7,240,31,192,254,254,0,7,240,31,192,254,190,0,7,240,31,192,254,190,0,7,240,31,192,254,127,0,11,255,255,192,254,63,0,15,255,255,192,254,63,128,31,255,255,192,254,47,192,63,192,31,192,254,15,250,255,64,31,192,254,7,255,254,0,31,192,254,2,255,252,0,31,192,254,0,111,208,0,31,192,254,0,0,0,0,31,192,254,0,0,0,0,31,192,254,0,0,0,0,31,192,254,0,0,0,0,31,192,254,0,0,0,0,31,192,254,0,0,0,0,5,64,254,0,0,0,0,0,0,254, + // 0xc624 오 + 36,198,30,28,224,33,2,1,0,0,6,255,228,0,0,0,0,1,255,255,255,208,0,0,0,15,255,255,255,252,0,0,0,63,249,64,91,255,0,0,0,255,128,0,0,191,192,0,2,254,0,0,0,47,224,0,3,252,0,0,0,15,240,0,7,244,0,0,0,7,244,0,7,240,0,0,0,3,244,0,7,240,0,0,0,3,244,0,7,244,0,0,0,7,244,0,3,252,0,0,0,15,240,0,2,253,0,0,0,47,224,0,0,255,128,0,0,191,192,0,0,127,249,0,27,255,64,0,0,31,255,255,255,253,0,0,0,2,255,255,255,224,0,0,0,0,27,255,249,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xc628 온 + 40,198,29,33,8,33,2,253,0,0,27,255,249,0,0,0,0,7,255,255,255,244,0,0,0,47,255,255,255,254,0,0,0,255,249,0,27,255,192,0,1,255,64,0,0,127,208,0,3,252,0,0,0,15,240,0,3,252,0,0,0,15,240,0,3,252,0,0,0,15,240,0,3,252,0,0,0,15,240,0,1,255,64,0,0,127,224,0,0,255,244,0,11,255,192,0,0,63,255,255,255,255,0,0,0,7,255,255,255,244,0,0,0,0,26,255,233,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0xc644 완 + 68,198,30,33,8,33,2,254,0,0,0,0,0,5,64,0,0,0,0,0,0,31,208,0,0,10,254,128,0,31,208,0,0,191,255,248,0,31,208,0,3,255,255,255,0,31,208,0,11,252,0,191,128,31,208,0,15,240,0,47,192,31,208,0,31,208,0,15,208,31,208,0,31,192,0,15,224,31,208,0,31,192,0,15,208,31,208,0,15,208,0,15,208,31,208,0,15,240,0,63,192,31,208,0,7,254,65,255,64,31,255,224,2,255,255,254,0,31,255,224,0,63,255,244,0,31,255,224,0,1,254,0,0,31,208,0,0,0,253,0,0,31,208,0,0,1,254,86,174,31,208,0,255,255,255,255,255,31,208,0,255,255,255,255,254,31,208,0,255,255,250,165,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,85,0,0,0,31,208,0,0,191,0,0,0,31,208,0,0,191,0,0,0,31,192,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,255,255,255,255,244,0,0,191,255,255,255,255,244,0,0,191,255,255,255,255,244,0, + // 0xc6d0 원 + 208,198,29,34,16,33,1,253,0,0,0,0,0,0,85,0,0,0,0,0,0,0,254,0,0,1,191,232,0,0,254,0,0,31,255,255,128,0,254,0,0,191,255,255,240,0,254,0,1,255,64,11,248,0,254,0,2,252,0,3,252,0,254,0,3,252,0,1,252,0,254,0,3,252,0,1,252,0,254,0,2,253,0,3,252,0,254,0,0,255,128,31,244,0,254,0,0,127,255,255,224,0,254,0,0,11,255,255,64,0,254,0,0,0,106,148,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,85,171,224,254,0,127,255,255,255,255,224,254,0,63,255,255,255,255,224,254,0,63,255,255,249,64,0,254,0,0,0,31,208,0,0,254,0,0,0,31,208,31,255,254,0,0,0,31,208,31,255,254,0,0,0,31,208,10,170,254,0,0,21,95,208,0,0,254,0,0,63,159,208,0,0,254,0,0,63,128,0,0,0,170,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,255,255,255,255,255,128,0,63,255,255,255,255,255,128,0,63,255,255,255,255,255,128,0,0,0,0,0,0,0,0, + // 0xc704 위 + 4,199,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,2,255,224,0,3,248,0,47,255,254,0,3,248,0,255,255,255,192,3,248,3,255,64,127,240,3,248,7,248,0,15,244,3,248,15,240,0,3,248,3,248,15,224,0,3,248,3,248,15,224,0,3,248,3,248,15,240,0,3,248,3,248,7,248,0,15,244,3,248,3,255,64,127,240,3,248,0,255,255,255,192,3,248,0,47,255,254,0,3,248,0,2,191,160,0,3,248,0,0,0,0,0,3,248,0,0,0,85,171,195,248,255,255,255,255,255,195,248,255,255,255,255,255,131,248,255,255,255,233,64,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,63,64,0,3,248,0,0,0,0,0,3,248, + // 0xc73c 으 + 60,199,30,28,224,33,2,1,0,0,6,255,228,0,0,0,0,1,255,255,255,208,0,0,0,11,255,255,255,248,0,0,0,63,253,64,95,255,0,0,0,255,208,0,1,255,192,0,1,255,0,0,0,63,208,0,3,252,0,0,0,15,240,0,3,248,0,0,0,11,240,0,7,244,0,0,0,7,244,0,7,240,0,0,0,3,244,0,7,244,0,0,0,7,244,0,3,248,0,0,0,11,240,0,3,252,0,0,0,15,240,0,1,254,0,0,0,47,224,0,0,255,208,0,1,255,192,0,0,63,253,64,95,255,0,0,0,15,255,255,255,252,0,0,0,1,255,255,255,208,0,0,0,0,27,255,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xc74c 음 + 76,199,29,32,0,33,2,254,0,0,26,255,233,0,0,0,0,7,255,255,255,244,0,0,0,63,255,255,255,255,0,0,0,255,228,0,6,255,192,0,2,255,0,0,0,63,224,0,3,252,0,0,0,15,240,0,3,252,0,0,0,15,240,0,3,252,0,0,0,15,240,0,2,255,0,0,0,63,224,0,0,255,228,0,6,255,192,0,0,63,255,255,255,255,0,0,0,7,255,255,255,248,0,0,0,0,43,255,250,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0, + // 0xc774 이 + 116,199,26,34,238,33,3,253,0,0,0,0,0,5,80,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,31,248,0,0,15,224,0,255,255,128,0,15,224,3,255,255,224,0,15,224,15,253,111,244,0,15,224,47,224,3,252,0,15,224,63,192,1,254,0,15,224,127,64,0,255,0,15,224,191,0,0,191,0,15,224,255,0,0,63,64,15,224,254,0,0,63,128,15,224,254,0,0,63,128,15,224,253,0,0,63,128,15,224,254,0,0,63,128,15,224,254,0,0,63,128,15,224,255,0,0,63,64,15,224,191,0,0,127,0,15,224,127,64,0,255,0,15,224,63,128,0,254,0,15,224,47,208,3,252,0,15,224,15,248,31,248,0,15,224,7,255,255,240,0,15,224,1,255,255,192,0,15,224,0,47,254,0,0,15,224,0,0,64,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,0,0,15,224, + // 0xc77c 일 + 124,199,28,34,238,33,2,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,27,254,64,0,3,248,1,255,255,244,0,3,248,11,255,255,253,0,3,248,31,248,6,255,64,3,248,63,208,0,127,192,3,248,127,128,0,47,192,3,248,127,0,0,31,208,3,248,191,0,0,15,208,3,248,127,0,0,31,208,3,248,127,128,0,47,192,3,248,63,208,0,127,192,3,248,31,248,6,255,64,3,248,11,255,255,253,0,3,248,1,255,255,244,0,3,248,0,27,254,64,0,3,248,0,0,0,0,0,2,164,0,0,0,0,0,0,0,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,234,170,170,170,164,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,192,0,0,0,0,0,47,255,255,255,255,254,0,47,255,255,255,255,254,0,47,255,255,255,255,254, + // 0xc77d 읽 + 125,199,27,35,245,33,2,252,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,27,254,64,0,3,248,1,255,255,240,0,3,248,11,255,255,253,0,3,248,31,248,6,255,64,3,248,63,208,0,127,192,3,248,127,128,0,47,192,3,248,127,0,0,31,208,3,248,191,0,0,15,208,3,248,127,0,0,31,208,3,248,127,128,0,47,192,3,248,63,208,0,127,192,3,248,31,248,6,255,64,3,248,11,255,255,253,0,3,248,1,255,255,244,0,3,248,0,27,254,64,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,0,0,1,255,255,248,255,255,248,1,255,255,248,255,255,248,1,255,255,248,255,255,248,0,0,3,248,0,3,248,0,0,3,248,0,3,248,0,0,3,248,0,3,248,0,255,255,248,0,3,248,0,255,255,248,0,3,248,0,255,170,164,0,3,248,0,253,0,0,0,3,248,0,253,0,0,0,3,248,0,253,0,22,128,3,248,0,255,255,255,192,3,248,0,255,255,255,192,3,248,0,255,254,165,0,3,248,0,0,0,0,0,0,0, + // 0xc785 입 + 133,199,27,33,231,33,2,254,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,27,254,64,0,3,248,0,255,255,244,0,3,248,7,255,255,254,0,3,248,31,249,6,255,64,3,248,63,208,0,63,192,3,248,127,128,0,31,208,3,248,127,64,0,15,224,3,248,191,0,0,15,224,3,248,127,64,0,15,224,3,248,127,128,0,31,208,3,248,63,208,0,63,192,3,248,31,248,2,255,64,3,248,11,255,255,254,0,3,248,1,255,255,244,0,3,248,0,27,255,64,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248, + // 0xc790 자 + 144,199,31,34,16,33,1,253,0,0,0,0,0,5,80,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,47,255,255,255,252,11,240,0,47,255,255,255,252,11,240,0,47,255,255,255,252,11,240,0,0,0,127,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,127,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,64,0,11,240,0,0,0,191,64,0,11,240,0,0,0,255,128,0,11,240,0,0,0,255,192,0,11,255,252,0,1,255,192,0,11,255,252,0,3,255,224,0,11,255,252,0,3,251,240,0,11,240,0,0,11,243,248,0,11,240,0,0,31,210,253,0,11,240,0,0,63,192,255,64,11,240,0,0,255,64,127,192,11,240,0,2,255,0,47,244,11,240,0,15,252,0,15,254,11,240,0,127,244,0,3,255,11,240,0,63,208,0,0,188,11,240,0,31,0,0,0,20,11,240,0,4,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0, + // 0xc791 작 + 145,199,30,34,16,33,2,253,0,0,0,0,0,5,64,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,127,255,255,255,240,31,192,0,127,255,255,255,240,31,192,0,127,255,255,255,240,31,192,0,0,2,252,0,0,31,192,0,0,2,253,0,0,31,192,0,0,2,253,0,0,31,192,0,0,3,255,0,0,31,255,240,0,7,255,64,0,31,255,240,0,15,255,192,0,31,255,240,0,47,239,224,0,31,208,0,0,127,143,248,0,31,192,0,1,255,7,254,0,31,192,0,11,253,1,255,208,31,192,0,191,248,0,127,248,31,192,0,255,208,0,15,240,31,192,0,127,0,0,1,208,31,192,0,36,0,0,0,0,31,192,0,0,0,0,0,0,5,64,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,192,0,0,255,255,255,255,255,192,0,0,255,255,255,255,255,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0, + // 0xc798 잘 + 152,199,31,34,16,33,1,253,0,0,0,0,0,6,160,0,0,0,0,0,0,7,240,0,31,255,255,255,252,7,240,0,31,255,255,255,252,7,240,0,31,255,255,255,252,7,240,0,0,0,191,0,0,7,240,0,0,0,191,64,0,7,240,0,0,0,255,64,0,7,240,0,0,0,255,192,0,7,255,252,0,1,255,208,0,7,255,252,0,3,255,240,0,7,255,252,0,11,251,248,0,7,240,0,0,47,227,255,0,7,240,0,0,255,192,255,224,7,240,0,11,255,0,63,254,7,240,0,127,252,0,11,253,7,240,0,63,224,0,0,188,7,240,0,14,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,240,0,0,63,255,255,255,255,240,0,0,63,255,255,255,255,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,47,255,255,255,255,240,0,0,47,255,255,255,255,240,0,0,47,234,170,170,170,160,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,255,255,255,255,253,0,0,47,255,255,255,255,253,0,0,47,255,255,255,255,253,0, + // 0xc7a5 장 + 165,199,30,34,16,33,2,253,0,0,0,0,0,5,64,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,127,255,255,255,240,31,192,0,127,255,255,255,240,31,192,0,127,255,255,255,240,31,192,0,0,2,252,0,0,31,192,0,0,2,253,0,0,31,192,0,0,2,254,0,0,31,192,0,0,3,254,0,0,31,255,240,0,3,255,0,0,31,255,240,0,11,255,128,0,31,255,240,0,15,255,208,0,31,192,0,0,63,207,244,0,31,192,0,0,255,71,253,0,31,192,0,3,255,2,255,208,31,192,0,47,252,0,191,248,31,192,0,255,240,0,31,240,31,192,0,191,128,0,1,208,31,192,0,56,0,0,0,0,31,192,0,0,0,0,0,0,5,64,0,0,0,26,255,233,0,0,0,0,2,255,255,255,244,0,0,0,31,255,255,255,254,0,0,0,63,249,0,6,255,128,0,0,191,128,0,0,127,192,0,0,255,0,0,0,31,208,0,0,254,0,0,0,15,224,0,0,255,0,0,0,31,208,0,0,191,128,0,0,127,192,0,0,63,249,0,6,255,128,0,0,31,255,255,255,254,0,0,0,2,255,255,255,244,0,0,0,0,26,255,249,0,0,0, + // 0xc7ac 재 + 172,199,29,34,16,33,1,253,0,0,0,0,0,0,26,64,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,47,255,255,255,15,224,63,128,47,255,255,255,15,224,63,128,47,255,255,255,15,224,63,128,0,3,252,0,15,224,63,128,0,3,248,0,15,224,63,128,0,3,252,0,15,224,63,128,0,3,252,0,15,224,63,128,0,3,252,0,15,224,63,128,0,3,252,0,15,224,63,128,0,3,252,0,15,224,63,128,0,7,253,0,15,255,255,128,0,11,254,0,15,255,255,128,0,15,255,0,15,255,255,128,0,15,255,64,15,224,63,128,0,47,239,192,15,224,63,128,0,63,95,224,15,224,63,128,0,255,15,240,15,224,63,128,1,254,7,252,15,224,63,128,3,252,2,255,79,224,63,128,31,248,0,255,207,224,63,128,127,224,0,63,143,224,63,128,63,192,0,11,15,224,63,128,14,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,15,224,63,128,0,0,0,0,5,80,63,128,0,0,0,0,0,0,47,128, + // 0xc800 저 + 0,200,28,34,238,33,1,253,0,0,0,0,0,0,85,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,31,255,255,255,254,0,255,31,255,255,255,254,0,255,31,255,255,255,254,0,255,0,0,63,64,0,0,255,0,0,63,64,0,0,255,0,0,127,64,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,191,192,31,255,255,0,0,255,192,31,255,255,0,0,255,208,31,255,255,0,1,255,224,0,0,255,0,3,255,240,0,0,255,0,7,243,248,0,0,255,0,15,241,253,0,0,255,0,47,208,255,0,0,255,0,127,192,127,192,0,255,0,255,64,63,240,0,255,3,255,0,15,252,0,255,31,252,0,7,255,64,255,127,240,0,1,255,0,255,47,208,0,0,61,0,255,14,0,0,0,4,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,254, + // 0xc804 전 + 4,200,28,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,63,255,255,255,244,3,248,63,255,255,255,244,3,248,63,255,255,255,244,3,248,0,0,254,0,0,3,248,0,0,254,0,0,3,248,0,1,254,0,0,3,248,0,1,255,0,0,3,248,0,2,255,0,63,255,248,0,3,255,128,63,255,248,0,11,255,192,63,255,248,0,15,255,224,0,3,248,0,63,203,248,0,3,248,0,255,131,254,0,3,248,3,255,1,255,208,3,248,47,252,0,127,252,3,248,255,240,0,31,248,3,248,127,128,0,2,240,3,248,41,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,31,208,0,0,3,248,0,31,208,0,0,3,248,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,255,255,255,255,254,0,31,255,255,255,255,254,0,31,255,255,255,255,254,0,0,0,0,0,0,0, + // 0xc815 정 + 21,200,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,63,255,255,255,244,3,248,63,255,255,255,244,3,248,63,255,255,255,244,3,248,0,0,254,0,0,3,248,0,1,254,0,0,3,248,0,1,255,0,0,3,248,0,2,255,0,47,255,248,0,3,255,128,47,255,248,0,11,255,192,47,255,248,0,15,239,240,0,3,248,0,63,203,252,0,3,248,0,255,131,255,0,3,248,7,255,0,255,224,3,248,127,252,0,63,252,3,248,255,240,0,15,244,3,248,127,128,0,1,240,3,248,40,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,1,175,250,64,0,0,0,127,255,255,253,0,0,3,255,255,255,255,192,0,15,254,64,1,191,240,0,47,224,0,0,15,244,0,63,192,0,0,3,252,0,63,192,0,0,3,252,0,63,192,0,0,3,252,0,47,224,0,0,15,244,0,15,254,64,1,191,240,0,3,255,255,255,255,192,0,0,191,255,255,253,0,0,0,1,191,254,64,0, + // 0xc81c 제 + 28,200,29,34,16,33,1,253,0,0,0,0,0,0,42,64,0,0,0,0,7,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,47,255,255,255,11,240,63,128,47,255,255,255,11,240,63,128,47,255,255,255,11,240,63,128,0,3,248,0,11,240,63,128,0,3,248,0,11,240,63,128,0,3,248,0,11,240,63,128,0,3,252,0,11,240,63,128,0,3,252,0,11,240,63,128,0,3,252,31,255,240,63,128,0,7,252,31,255,240,63,128,0,11,253,31,255,240,63,128,0,15,254,0,11,240,63,128,0,15,255,0,11,240,63,128,0,31,255,64,11,240,63,128,0,63,175,192,11,240,63,128,0,127,31,208,11,240,63,128,0,255,15,240,11,240,63,128,2,253,7,248,11,240,63,128,7,252,3,254,11,240,63,128,31,240,0,255,203,240,63,128,127,208,0,63,139,240,63,128,63,128,0,15,11,240,63,128,14,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,11,240,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,64, + // 0xc8fd 죽 + 253,200,30,32,0,33,2,253,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,0,0,0,255,192,0,0,0,0,0,2,255,224,0,0,0,0,0,7,255,244,0,0,0,0,0,47,243,253,0,0,0,0,1,255,192,255,208,0,0,0,111,255,64,127,254,64,0,31,255,248,0,15,255,253,0,15,255,144,0,1,191,252,0,15,232,0,0,0,10,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0, + // 0xc900 준 + 0,201,30,32,0,33,2,253,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,0,0,0,255,192,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,240,0,0,0,0,0,15,247,252,0,0,0,0,0,127,210,255,64,0,0,0,2,255,128,191,228,0,0,1,191,254,0,47,255,144,0,31,255,244,0,7,255,253,0,15,255,64,0,0,127,252,0,7,144,0,0,0,1,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,2,252,0,63,128,0,0,0,2,252,0,63,128,0,0,0,2,252,0,63,128,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0xc911 중 + 17,201,29,32,0,33,2,253,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,0,0,0,255,192,0,0,0,0,0,2,255,224,0,0,0,0,0,7,255,244,0,0,0,0,0,47,243,254,0,0,0,0,1,255,192,255,208,0,0,0,111,255,64,127,254,64,0,31,255,248,0,11,255,253,0,15,255,144,0,1,191,252,0,15,232,0,0,0,10,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,107,255,229,0,0,0,0,11,255,255,255,244,0,0,0,63,255,255,255,255,0,0,0,255,208,0,6,255,192,0,1,254,0,0,0,63,208,0,2,252,0,0,0,31,224,0,2,252,0,0,0,31,224,0,1,255,0,0,0,63,208,0,0,255,228,0,6,255,192,0,0,63,255,255,255,255,0,0,0,7,255,255,255,244,0,0,0,0,26,255,233,0,0,0, + // 0xc990 즐 + 144,201,29,32,0,33,2,253,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,7,255,255,255,255,255,248,0,0,0,0,255,192,0,0,0,0,0,2,255,224,0,0,0,0,0,11,255,248,0,0,0,0,0,191,226,255,128,0,0,0,95,255,128,191,253,64,0,31,255,253,0,31,255,254,0,15,255,144,0,1,191,252,0,11,164,0,0,0,6,188,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,1,170,170,170,170,175,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0, + // 0xc9c0 지 + 192,201,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,63,255,255,255,252,3,248,63,255,255,255,252,3,248,63,255,255,255,252,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,1,255,0,0,3,248,0,2,255,64,0,3,248,0,3,255,192,0,3,248,0,3,255,192,0,3,248,0,11,255,224,0,3,248,0,15,215,244,0,3,248,0,63,195,252,0,3,248,0,191,129,255,0,3,248,1,255,0,191,192,3,248,7,253,0,63,240,3,248,47,248,0,15,254,3,248,255,224,0,3,254,3,248,191,128,0,0,188,3,248,61,0,0,0,20,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xcc98 처 + 152,204,27,35,245,33,2,252,0,0,0,0,0,2,164,0,0,253,0,0,3,252,0,0,253,0,0,3,252,0,0,253,0,0,3,252,0,0,253,0,0,3,252,0,0,253,0,0,3,252,63,255,255,255,244,3,252,63,255,255,255,244,3,252,63,255,255,255,244,3,252,0,0,253,0,0,3,252,0,0,253,0,0,3,252,0,0,253,0,0,3,252,0,1,254,0,0,3,252,0,1,254,0,0,3,252,0,2,255,0,127,255,252,0,3,255,0,127,255,252,0,3,255,64,127,255,252,0,11,255,192,0,3,252,0,15,239,208,0,3,252,0,47,203,240,0,3,252,0,127,131,252,0,3,252,0,255,2,254,0,3,252,3,253,0,255,128,3,252,15,252,0,63,244,3,252,191,240,0,15,252,3,252,255,192,0,3,248,3,252,62,0,0,0,176,3,252,20,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,0,0, + // 0xcd08 초 + 8,205,30,29,232,33,2,1,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,11,255,255,255,255,255,248,0,11,255,255,255,255,255,248,0,11,255,255,255,255,255,248,0,0,0,0,127,128,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,240,0,0,0,0,0,15,251,252,0,0,0,0,0,63,226,255,0,0,0,0,2,255,192,255,224,0,0,0,47,255,0,47,254,0,0,27,255,248,0,11,255,249,0,31,255,208,0,1,255,254,0,15,253,0,21,0,27,252,0,10,64,0,127,64,0,104,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xcd95 축 + 149,205,29,34,16,33,2,253,0,0,0,21,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,0,0,0,255,192,0,0,0,0,0,0,255,192,0,0,0,0,0,3,255,240,0,0,0,0,0,31,251,253,0,0,0,0,1,191,210,255,144,0,0,1,175,255,64,191,254,80,0,31,255,248,0,11,255,253,0,15,255,128,0,0,191,252,0,10,144,0,0,0,1,168,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,3,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0, + // 0xcd9c 출 + 156,205,29,34,16,33,2,253,0,0,0,42,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,0,0,0,255,192,0,0,0,0,0,2,255,224,0,0,0,0,0,11,255,248,0,0,0,0,0,127,243,255,64,0,0,1,111,255,192,255,254,80,0,47,255,253,0,31,255,254,0,15,255,144,0,1,191,252,0,10,80,0,0,0,1,104,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,2,170,170,255,234,170,144,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,1,170,170,170,170,175,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0, + // 0xcda4 춤 + 164,205,29,33,8,33,2,254,0,0,0,21,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,0,0,0,255,192,0,0,0,0,0,1,255,208,0,0,0,0,0,7,255,244,0,0,0,0,0,127,247,255,64,0,0,0,27,255,192,255,249,0,0,31,255,253,0,31,255,253,0,15,255,208,0,1,255,252,0,15,164,0,0,0,6,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0, + // 0xcde8 취 + 232,205,27,34,238,33,2,253,0,0,21,0,0,1,84,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,15,255,255,255,252,3,248,0,0,127,128,0,3,248,0,0,191,192,0,3,248,0,0,255,192,0,3,248,0,2,255,240,0,3,248,0,11,255,252,0,3,248,0,63,242,255,128,3,248,6,255,192,191,253,3,248,47,255,0,31,253,3,248,15,248,0,2,252,3,248,11,64,0,0,20,3,248,0,0,0,0,0,3,248,0,0,0,85,175,195,248,255,255,255,255,255,195,248,255,255,255,255,255,195,248,255,255,255,233,64,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,127,64,0,3,248,0,0,0,0,0,3,248, + // 0xce58 치 + 88,206,27,34,238,33,2,253,0,0,0,0,0,2,164,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,63,255,255,255,252,3,248,63,255,255,255,252,3,248,63,255,255,255,252,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,255,64,0,3,248,0,0,255,128,0,3,248,0,1,255,192,0,3,248,0,2,255,208,0,3,248,0,3,255,224,0,3,248,0,11,247,244,0,3,248,0,15,227,252,0,3,248,0,63,193,255,0,3,248,0,255,128,191,128,3,248,2,255,0,63,240,3,248,15,252,0,31,253,3,248,127,244,0,7,255,3,248,63,208,0,0,253,3,248,30,0,0,0,24,3,248,4,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xce68 침 + 104,206,27,33,231,33,2,254,0,0,106,0,0,1,84,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,47,255,255,255,252,3,248,63,255,255,255,252,3,248,63,255,255,255,252,3,248,0,0,255,0,0,3,248,0,0,255,0,0,3,248,0,0,255,64,0,3,248,0,1,255,192,0,3,248,0,3,255,208,0,3,248,0,11,255,240,0,3,248,0,31,231,252,0,3,248,0,127,194,255,64,3,248,2,255,64,255,244,3,248,47,254,0,63,254,3,248,127,248,0,11,253,3,248,63,208,0,0,184,3,248,29,0,0,0,0,3,248,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,192,0,0,3,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248,0,47,255,255,255,255,248, + // 0xce74 카 + 116,206,30,34,16,33,2,253,0,0,0,0,0,21,64,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,15,255,255,255,128,47,192,0,15,255,255,255,128,47,192,0,15,255,255,255,128,47,192,0,0,0,0,63,64,47,192,0,0,0,0,127,64,47,192,0,0,0,0,127,0,47,192,0,0,0,0,191,0,47,192,0,0,0,0,255,0,47,192,0,0,5,90,254,0,47,192,0,191,255,255,253,0,47,192,0,191,255,255,252,0,47,255,240,127,254,171,248,0,47,255,240,16,0,11,244,0,47,255,240,0,0,31,240,0,47,192,0,0,0,63,208,0,47,192,0,0,0,255,128,0,47,192,0,0,2,255,0,0,47,192,0,0,11,253,0,0,47,192,0,0,63,244,0,0,47,192,0,1,255,208,0,0,47,192,0,11,255,64,0,0,47,192,0,191,252,0,0,0,47,192,0,191,224,0,0,0,47,192,0,63,0,0,0,0,47,192,0,4,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0, + // 0xcf1c 켜 + 28,207,27,34,238,33,2,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,31,255,255,255,64,3,248,31,255,255,255,0,3,248,31,255,255,255,0,3,248,0,0,0,127,0,3,248,0,0,0,191,0,3,248,0,0,0,191,0,3,248,0,0,0,255,255,255,248,0,0,0,255,255,255,248,0,0,86,255,255,255,248,255,255,255,252,0,3,248,255,255,255,248,0,3,248,255,255,239,244,0,3,248,84,0,15,240,0,3,248,0,0,47,224,0,3,248,0,0,63,192,0,3,248,0,0,255,67,255,255,248,0,3,255,3,255,255,248,0,15,252,3,255,255,248,0,63,240,0,0,3,248,1,255,208,0,0,3,248,11,255,0,0,0,3,248,191,252,0,0,0,3,248,255,224,0,0,0,3,248,63,0,0,0,0,3,248,20,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xd0d1 탑 + 209,208,29,33,8,33,3,254,0,0,0,0,0,106,0,0,0,0,0,0,0,127,0,0,255,255,255,252,0,127,0,0,255,255,255,252,0,127,0,0,255,255,255,252,0,127,0,0,255,0,0,0,0,127,0,0,255,0,0,0,0,127,0,0,255,0,0,0,0,127,0,0,255,0,0,0,0,127,255,192,255,255,255,248,0,127,255,192,255,255,255,248,0,127,255,192,255,255,255,248,0,127,64,0,255,0,0,0,0,127,0,0,255,0,0,0,0,127,0,0,255,0,0,90,128,127,0,0,255,255,255,255,208,127,0,0,255,255,255,255,208,127,0,0,255,255,255,165,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1,168,0,0,0,106,0,0,2,252,0,0,0,127,0,0,2,252,0,0,0,127,0,0,2,252,0,0,0,127,0,0,2,255,255,255,255,255,0,0,2,255,255,255,255,255,0,0,2,255,255,255,255,255,0,0,2,252,0,0,0,127,0,0,2,252,0,0,0,127,0,0,2,252,0,0,0,127,0,0,2,255,255,255,255,255,0,0,2,255,255,255,255,255,0,0,2,255,255,255,255,255,0,0, + // 0xd130 터 + 48,209,26,34,238,33,3,253,0,0,0,0,0,10,160,0,0,0,0,0,15,240,0,0,0,0,0,15,240,191,255,255,253,0,15,240,191,255,255,253,0,15,240,191,255,255,253,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,255,255,240,255,255,240,191,255,255,240,255,255,240,191,255,255,240,255,255,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,0,0,0,15,240,191,0,1,106,192,15,240,191,255,255,255,208,15,240,191,255,255,255,208,15,240,191,255,255,165,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240, + // 0xd14c 테 + 76,209,27,34,238,33,3,253,0,0,0,0,0,2,164,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,255,255,255,0,191,3,248,255,255,255,0,191,3,248,255,255,255,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,255,255,248,255,255,3,248,255,255,248,255,255,3,248,255,255,248,255,255,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,0,0,191,3,248,253,0,22,144,191,3,248,255,255,255,224,191,3,248,255,255,255,224,191,3,248,255,255,250,64,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,191,3,248,0,0,0,0,21,3,248,0,0,0,0,0,3,244, + // 0xd1a0 토 + 160,209,30,27,216,33,2,1,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,253,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,192,0,2,255,255,255,255,255,192,0,2,255,255,255,255,255,192,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xd2b8 트 + 184,210,30,27,216,33,2,1,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,192,0,2,255,255,255,255,255,192,0,2,255,255,255,255,255,192,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xd39c 펜 + 156,211,30,34,16,33,1,253,0,0,0,0,0,0,21,0,0,0,0,0,2,160,63,64,0,0,0,0,3,244,63,64,0,0,0,0,3,244,63,64,63,255,255,255,3,244,63,64,63,255,255,255,3,244,63,64,63,255,255,255,3,244,63,64,1,252,11,224,3,244,63,64,1,252,11,224,3,244,63,64,1,252,11,224,3,244,63,64,1,252,11,227,255,244,63,64,1,252,11,227,255,244,63,64,1,252,11,227,255,244,63,64,1,252,11,224,3,244,63,64,1,252,11,224,3,244,63,64,1,252,11,224,3,244,63,64,1,252,11,246,131,244,63,64,127,255,255,255,195,244,63,64,63,255,255,255,195,244,63,64,63,255,254,165,3,244,63,64,0,0,0,0,3,244,63,64,0,0,0,0,3,244,63,64,0,1,84,0,3,244,63,64,0,3,252,0,3,244,63,64,0,3,252,0,2,160,63,64,0,3,252,0,0,0,21,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,0,0,0,0,0,0,0, + // 0xd504 프 + 4,213,30,26,208,33,2,1,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,0,3,248,0,15,240,0,0,11,255,255,255,255,255,248,0,11,255,255,255,255,255,248,0,11,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208, + // 0xd558 하 + 88,213,31,34,16,33,1,253,0,0,0,0,0,5,80,0,0,0,191,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,0,0,11,240,0,0,0,191,0,0,11,240,0,127,255,255,255,254,11,240,0,127,255,255,255,254,11,240,0,127,255,255,255,254,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,2,255,144,0,11,240,0,0,31,255,252,0,11,240,0,0,191,255,255,64,11,240,0,2,255,65,191,192,11,255,252,3,252,0,31,224,11,255,252,7,244,0,15,240,11,255,252,11,240,0,7,240,11,240,0,11,240,0,7,244,11,240,0,11,240,0,7,244,11,240,0,11,240,0,7,240,11,240,0,7,244,0,15,240,11,240,0,3,252,0,31,224,11,240,0,2,255,65,191,192,11,240,0,0,191,255,255,64,11,240,0,0,31,255,252,0,11,240,0,0,2,255,144,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0, + // 0xd569 합 + 105,213,30,33,8,33,2,254,0,1,168,0,0,0,0,0,0,1,253,0,0,31,192,0,0,1,253,0,0,31,192,0,0,1,253,0,0,31,192,0,255,255,255,255,252,31,192,0,255,255,255,255,252,31,192,0,255,255,255,255,252,31,192,0,0,0,0,0,0,31,192,0,0,10,254,128,0,31,192,0,0,255,255,248,0,31,255,240,3,255,255,255,0,31,255,240,15,248,0,191,128,31,255,240,15,224,0,47,192,31,192,0,31,192,0,31,208,31,192,0,31,208,0,31,208,31,192,0,15,224,0,63,192,31,192,0,11,253,1,255,128,31,192,0,3,255,255,254,0,31,192,0,0,191,255,244,0,31,192,0,0,6,170,64,0,31,192,0,0,0,0,0,0,0,0,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,0,0,0,31,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0,0,191,255,255,255,255,192,0, + // 0xd648 홈 + 72,214,29,34,16,33,2,253,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,254,0,47,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,111,255,254,64,0,0,0,11,255,255,255,248,0,0,0,127,254,170,175,255,64,0,0,255,128,0,0,191,192,0,0,255,0,0,0,63,192,0,0,255,0,0,0,63,192,0,0,191,228,0,6,255,128,0,0,47,255,255,255,254,0,0,0,6,255,255,255,228,0,0,0,0,5,191,148,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,252,0,0,0,15,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0,2,255,255,255,255,255,224,0, + // 0xd654 화 + 84,214,31,34,16,33,1,253,0,0,0,0,0,7,240,0,0,0,63,128,0,7,240,0,0,0,63,128,0,7,240,0,0,0,63,128,0,7,240,0,63,255,255,255,255,71,240,0,63,255,255,255,255,71,240,0,63,255,255,255,255,71,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,1,174,144,0,7,240,0,0,31,255,254,0,7,240,0,0,127,255,255,192,7,240,0,0,255,128,127,224,7,240,0,2,253,0,15,240,7,240,0,3,248,0,7,244,7,244,0,3,244,0,3,244,7,255,252,3,248,0,3,244,7,255,252,2,252,0,11,240,7,255,252,1,255,64,111,224,7,240,0,0,191,255,255,192,7,240,0,0,31,255,254,0,7,240,0,0,1,191,208,0,7,240,0,0,0,63,128,0,7,240,0,0,0,63,128,0,7,240,0,0,0,127,150,175,135,240,0,127,255,255,255,255,199,240,0,127,255,255,255,255,135,240,0,63,255,254,169,64,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0, + // 0xd788 히 + 136,215,27,34,238,33,2,253,0,0,0,0,0,1,80,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,0,0,191,0,0,3,248,127,255,255,255,255,3,248,127,255,255,255,255,3,248,127,255,255,255,255,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,2,255,144,0,3,248,0,31,255,252,0,3,248,0,255,255,255,64,3,248,2,255,65,191,192,3,248,3,252,0,31,224,3,248,11,244,0,15,240,3,248,15,240,0,7,244,3,248,15,224,0,3,244,3,248,15,224,0,3,244,3,248,15,240,0,7,244,3,248,11,244,0,15,240,3,248,3,252,0,31,224,3,248,2,255,65,191,192,3,248,0,255,255,255,64,3,248,0,47,255,252,0,3,248,0,2,255,144,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Latin_Extended_A_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Latin_Extended_A_26.cpp new file mode 100644 index 000000000000..fe1b4bdc12d7 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Latin_Extended_A_26.cpp @@ -0,0 +1,288 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Latin Extended-A 36pt, capital 'A' height: 26px, width: 100%, range: 0x0100-0x017f +extern const uint8_t NotoSans_Medium_Latin_Extended_A_26[19795] = { + 130,26,0,1,127,1,34,247, // unifont_t + // 0x0100 Ā + 24,31,186,24,0,0,0,10,170,170,128,0,0,15,255,255,192,0,0,15,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0101 ā + 17,26,130,21,1,255,0,170,170,168,0,0,255,255,252,0,0,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0102 Ă + 24,33,198,24,0,0,0,15,0,2,224,0,0,15,128,7,208,0,0,11,255,255,192,0,0,3,255,255,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0103 ă + 17,28,140,21,1,255,2,224,0,60,0,1,244,0,188,0,0,255,255,248,0,0,127,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0104 Ą + 24,35,210,24,0,247,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,3,253,0,0,0,0,2,240,0,0,0,0,11,192,0,0,0,0,31,64,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,148,0,0,0,0,31,253,0,0,0,0,7,253,0,0,0,0,0,0, + // 0x0105 ą + 18,29,145,21,1,247,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,47,0,0,0,0,125,0,0,0,0,248,0,0,0,2,244,0,0,0,2,244,0,0,0,2,253,80,0,0,0,255,224,0,0,0,127,208,0,0,0,0,0, + // 0x0106 Ć + 20,35,175,23,2,255,0,0,0,42,144,0,0,0,127,192,0,0,0,255,0,0,0,3,252,0,0,0,11,240,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x0107 ć + 15,29,116,18,2,255,0,0,10,160,0,0,63,224,0,0,127,128,0,0,254,0,0,3,248,0,0,11,224,0,0,0,0,0,0,0,0,0,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x0108 Ĉ + 20,35,175,23,2,255,0,0,26,144,0,0,0,63,244,0,0,0,255,252,0,0,3,252,255,0,0,11,240,47,192,0,47,128,7,240,0,0,0,0,0,0,0,0,0,0,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x0109 ĉ + 15,29,116,18,2,255,0,10,164,0,0,47,252,0,0,127,255,0,0,254,127,128,3,248,15,224,15,208,2,248,0,0,0,0,0,0,0,0,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x010a Ċ + 20,34,170,23,2,255,0,0,6,128,0,0,0,31,224,0,0,0,31,240,0,0,0,31,224,0,0,0,6,64,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x010b ċ + 15,28,112,18,2,255,0,2,144,0,0,11,240,0,0,15,244,0,0,11,240,0,0,1,128,0,0,0,0,0,0,0,0,0,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x010c Č + 20,35,175,23,2,255,0,42,0,1,160,0,31,208,15,224,0,7,244,63,128,0,2,254,254,0,0,0,191,252,0,0,0,63,240,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,144,0,15,255,255,253,0,127,255,255,252,2,255,245,91,252,7,255,0,0,36,15,252,0,0,0,47,240,0,0,0,63,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,208,1,184,0,255,255,255,248,0,63,255,255,248,0,6,255,255,224,0,0,5,80,0, + // 0x010d č + 15,29,116,18,2,255,10,64,0,164,11,224,7,240,3,252,47,208,0,255,191,64,0,63,253,0,0,31,248,0,0,0,0,0,0,0,0,0,0,6,170,64,0,255,255,244,7,255,255,240,15,254,171,224,63,240,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,63,192,0,0,63,244,0,176,15,255,255,240,3,255,255,240,0,127,255,208,0,1,84,0, + // 0x010e Ď + 21,34,204,26,3,0,1,164,0,10,64,0,0,254,0,127,0,0,0,63,130,252,0,0,0,15,251,240,0,0,0,3,255,208,0,0,0,1,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,169,0,0,0,191,255,255,248,0,0,191,255,255,255,64,0,191,170,175,255,224,0,191,64,0,127,248,0,191,64,0,11,253,0,191,64,0,2,255,0,191,64,0,0,255,64,191,64,0,0,191,128,191,64,0,0,127,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,127,192,191,64,0,0,191,128,191,64,0,0,255,64,191,64,0,2,255,0,191,64,0,11,253,0,191,64,0,127,248,0,191,149,91,255,240,0,191,255,255,255,128,0,191,255,255,248,0,0,191,255,254,64,0,0, + // 0x010f ď + 24,29,174,22,2,255,0,0,0,5,64,84,0,0,0,31,209,253,0,0,0,31,209,252,0,0,0,31,210,244,0,0,0,31,211,240,0,0,0,31,211,208,0,0,0,31,209,64,0,0,0,31,208,0,0,26,164,31,208,0,1,255,255,31,208,0,11,255,255,223,208,0,31,254,91,255,208,0,63,224,0,255,208,0,127,192,0,127,208,0,191,64,0,63,208,0,255,0,0,47,208,0,255,0,0,31,208,0,255,0,0,31,208,0,255,0,0,31,208,0,255,0,0,31,208,0,255,0,0,31,208,0,255,0,0,47,208,0,191,64,0,63,208,0,127,192,0,127,208,0,63,240,1,255,208,0,15,255,255,239,208,0,7,255,255,143,208,0,0,191,253,15,208,0,0,5,64,0,0,0, + // 0x0110 Đ + 23,26,156,26,1,0,6,170,170,144,0,0,7,255,255,255,128,0,7,255,255,255,244,0,7,254,170,255,254,0,7,244,0,7,255,128,7,244,0,0,191,208,7,244,0,0,47,240,7,244,0,0,15,244,7,244,0,0,11,248,7,244,0,0,7,252,7,244,0,0,3,252,91,249,85,0,3,252,255,255,255,64,3,252,255,255,255,64,3,252,255,255,255,0,3,252,7,244,0,0,3,252,7,244,0,0,7,252,7,244,0,0,11,248,7,244,0,0,15,244,7,244,0,0,47,240,7,244,0,0,191,208,7,244,0,7,255,128,7,249,85,191,254,0,7,255,255,255,248,0,7,255,255,255,128,0,7,255,255,228,0,0, + // 0x0111 đ + 20,29,145,23,2,255,0,0,0,5,64,0,0,0,31,208,0,0,0,31,208,0,1,85,111,229,0,11,255,255,255,0,11,255,255,255,0,1,85,111,229,0,0,0,31,208,0,5,64,31,208,0,191,253,31,208,7,255,255,159,208,31,255,255,255,208,63,240,2,255,208,127,192,0,127,208,191,128,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,31,255,255,239,208,7,255,255,143,208,0,191,253,15,208,0,5,64,0,0, + // 0x0112 Ē + 15,31,124,20,3,0,6,170,170,144,11,255,255,208,11,255,255,208,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0113 ē + 17,26,130,21,2,255,2,170,170,160,0,3,255,255,240,0,3,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0114 Ĕ + 15,33,132,20,3,0,15,64,2,240,15,192,7,224,7,255,255,192,2,255,255,64,0,127,248,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0115 ĕ + 17,28,140,21,2,255,11,128,0,244,0,7,208,2,240,0,3,255,255,224,0,1,255,255,192,0,0,47,253,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0116 Ė + 15,33,132,20,3,0,0,6,128,0,0,15,240,0,0,15,240,0,0,15,240,0,0,2,128,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x0117 ė + 17,28,140,21,2,255,0,2,144,0,0,0,11,244,0,0,0,15,244,0,0,0,11,244,0,0,0,1,144,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x0118 Ę + 15,35,140,20,3,247,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252,0,0,7,208,0,0,31,128,0,0,63,0,0,0,126,0,0,0,125,0,0,0,127,84,0,0,63,252,0,0,15,248,0,0,0,0, + // 0x0119 ę + 17,29,145,21,2,247,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,253,0,0,0,86,244,0,0,0,7,208,0,0,0,15,128,0,0,0,31,64,0,0,0,47,64,0,0,0,47,213,0,0,0,15,254,0,0,0,7,254,0,0,0,0,0,0, + // 0x011a Ě + 15,34,136,20,3,0,26,0,1,164,15,208,11,240,3,248,63,192,0,254,255,0,0,127,252,0,0,47,244,0,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x011b ě + 17,29,145,21,2,255,10,64,0,168,0,11,240,7,244,0,2,252,31,208,0,0,191,191,64,0,0,63,254,0,0,0,15,252,0,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x011c Ĝ + 22,35,210,26,2,255,0,0,6,164,0,0,0,0,31,253,0,0,0,0,63,255,0,0,0,0,255,63,192,0,0,3,248,15,240,0,0,11,224,2,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0, + // 0x011d ĝ + 18,37,185,22,2,247,0,2,168,0,0,0,15,254,0,0,0,47,255,64,0,0,191,111,208,0,2,252,11,240,0,7,224,1,252,0,0,0,0,0,0,0,0,0,0,0,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x011e Ğ + 22,34,204,26,2,255,0,7,192,0,244,0,0,3,208,2,240,0,0,3,255,255,224,0,0,0,255,255,192,0,0,0,47,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0, + // 0x011f ğ + 18,36,180,22,2,247,3,192,0,184,0,3,224,1,248,0,1,255,255,240,0,0,191,255,208,0,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x0120 Ġ + 22,34,204,26,2,255,0,0,2,160,0,0,0,0,7,248,0,0,0,0,11,248,0,0,0,0,7,244,0,0,0,0,1,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0, + // 0x0121 ġ + 18,36,180,22,2,247,0,1,160,0,0,0,3,252,0,0,0,7,252,0,0,0,3,252,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x0122 Ģ + 22,34,204,26,2,248,0,0,111,255,228,0,0,11,255,255,255,192,0,63,255,255,255,128,1,255,249,85,191,64,3,255,128,0,2,0,15,252,0,0,0,0,31,240,0,0,0,0,63,224,0,0,0,0,63,192,0,0,0,0,127,128,0,0,0,0,191,64,0,0,0,0,255,64,0,0,0,0,255,0,0,191,255,208,255,0,0,255,255,208,255,64,0,255,255,208,191,64,0,106,175,208,191,128,0,0,31,208,127,192,0,0,31,208,63,192,0,0,31,208,47,224,0,0,31,208,31,244,0,0,31,208,11,254,0,0,31,208,3,255,208,0,111,208,0,255,255,255,255,208,0,47,255,255,255,208,0,2,255,255,254,64,0,0,1,84,0,0,0,0,0,0,0,0,0,0,2,248,0,0,0,0,3,244,0,0,0,0,7,240,0,0,0,0,11,224,0,0,0,0,15,192,0,0,0,0,15,64,0,0, + // 0x0123 ģ + 18,37,185,22,2,247,0,0,40,0,0,0,0,188,0,0,0,0,252,0,0,0,2,248,0,0,0,3,244,0,0,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,26,160,5,64,2,255,255,15,208,11,255,255,207,208,31,254,91,255,208,63,224,0,255,208,127,192,0,127,208,191,64,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,15,255,191,255,208,7,255,255,159,208,0,191,253,31,208,0,5,64,31,208,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,36,0,0,255,64,47,233,91,255,0,47,255,255,252,0,31,255,255,224,0,0,90,165,0,0, + // 0x0124 Ĥ + 21,34,204,27,3,0,0,0,106,64,0,0,0,1,255,208,0,0,0,3,255,240,0,0,0,15,243,252,0,0,0,63,128,255,0,0,0,253,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,106,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,191,85,85,85,191,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64,191,64,0,0,127,64, + // 0x0125 ĥ + 22,36,216,23,254,0,0,42,128,0,0,0,0,255,224,0,0,0,2,255,244,0,0,0,11,246,253,0,0,0,31,208,127,64,0,0,127,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,64,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,106,144,0,0,63,135,255,253,0,0,63,175,255,255,64,0,63,255,150,255,192,0,63,248,0,63,208,0,63,224,0,31,224,0,63,208,0,15,224,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240,0,63,192,0,15,240, + // 0x0126 Ħ + 27,26,182,27,0,0,1,168,0,0,1,169,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,171,255,170,170,171,255,168,255,255,255,255,255,255,252,255,255,255,255,255,255,252,2,253,0,0,2,254,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,255,255,255,255,253,0,2,255,255,255,255,253,0,2,255,255,255,255,253,0,2,253,85,85,86,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0, + // 0x0127 ħ + 20,28,140,23,0,0,1,84,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,255,255,255,240,0,255,255,255,240,0,87,253,85,80,0,3,252,0,0,0,3,252,0,0,0,3,252,11,254,0,3,248,191,255,224,3,250,255,255,248,3,255,228,31,252,3,255,64,3,253,3,254,0,1,254,3,253,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255,3,252,0,0,255, + // 0x0128 Ĩ + 14,33,132,13,255,0,1,160,0,160,15,254,1,240,47,255,251,224,62,31,255,192,124,1,255,0,0,0,0,0,0,0,0,0,6,170,170,0,11,255,255,64,7,255,255,0,0,47,224,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,2,255,253,0,11,255,255,64,11,255,255,64, + // 0x0129 ĩ + 14,27,108,10,254,0,2,144,1,144,31,253,3,208,63,255,239,192,189,47,255,128,244,2,254,0,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x012a Ī + 11,31,93,13,1,0,170,170,168,255,255,252,255,255,252,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x012b ī + 12,25,75,10,255,0,106,170,169,191,255,253,191,255,253,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x012c Ĭ + 13,33,132,13,0,0,184,0,15,64,125,0,47,0,63,255,254,0,31,255,252,0,2,255,208,0,0,0,0,0,0,0,0,0,26,170,168,0,47,255,253,0,31,255,252,0,0,191,128,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,11,255,244,0,47,255,253,0,47,255,253,0, + // 0x012d ĭ + 12,27,81,10,255,0,240,0,46,248,0,126,127,255,252,47,255,244,7,255,128,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x012e Į + 11,35,105,13,1,247,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244,0,15,192,0,63,0,0,125,0,0,252,0,0,252,0,0,254,80,0,127,244,0,47,240,0,0,0, + // 0x012f į + 7,36,72,10,1,247,6,128,15,240,15,240,15,240,2,128,0,0,0,0,5,80,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,11,192,47,0,126,0,188,0,252,0,190,80,127,244,31,244,0,0, + // 0x0130 İ + 11,33,99,13,1,0,0,168,0,2,253,0,2,254,0,1,253,0,0,100,0,0,0,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x0131 ı + 4,20,20,10,3,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0132 IJ + 19,34,170,23,1,248,106,170,160,2,168,191,255,244,3,252,127,255,240,3,252,2,254,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,2,253,0,3,252,47,255,208,3,252,191,255,244,3,252,191,255,244,3,252,0,0,0,3,252,0,0,0,7,248,0,0,0,15,244,0,0,37,127,240,0,0,63,255,208,0,0,63,255,128,0,0,47,248,0,0,0,0,0,0, + // 0x0133 ij + 14,36,144,20,3,247,104,0,6,128,255,0,31,224,255,0,31,240,255,0,15,224,40,0,6,64,0,0,0,0,0,0,0,0,85,0,5,64,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,255,0,15,224,0,0,15,224,0,0,15,224,0,0,15,224,0,0,31,224,0,0,47,208,0,42,255,192,0,127,255,128,0,127,254,0,0,26,144,0, + // 0x0134 Ĵ + 15,42,168,10,253,248,0,10,164,0,0,47,252,0,0,127,255,0,0,254,127,128,3,248,15,224,15,208,2,248,0,0,0,0,0,0,0,0,0,10,160,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,11,240,0,0,15,240,0,0,15,240,0,0,47,224,0,85,191,208,0,255,255,128,0,255,254,0,0,191,228,0,0,0,0,0,0, + // 0x0135 ĵ + 13,37,148,10,254,247,0,42,128,0,0,255,224,0,2,255,244,0,11,246,253,0,31,192,127,0,127,0,31,192,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,128,0,0,191,128,0,170,255,64,0,255,254,0,0,255,248,0,0,106,64,0,0, + // 0x0136 Ķ + 20,34,170,23,3,248,106,0,0,2,168,191,64,0,15,244,191,64,0,63,224,191,64,0,191,128,191,64,2,255,0,191,64,7,252,0,191,64,31,240,0,191,64,63,192,0,191,64,255,64,0,191,67,253,0,0,191,79,248,0,0,191,111,240,0,0,191,255,244,0,0,191,255,252,0,0,191,247,254,0,0,191,208,255,64,0,191,64,191,192,0,191,64,63,240,0,191,64,15,248,0,191,64,7,252,0,191,64,2,255,0,191,64,0,255,128,191,64,0,63,208,191,64,0,47,240,191,64,0,15,248,191,64,0,3,253,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,1,252,0,0,0,2,252,0,0,0,3,244,0,0,0,3,224,0,0,0,7,192,0,0, + // 0x0137 ķ + 17,36,180,20,3,248,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,85,0,255,0,3,254,0,255,0,15,248,0,255,0,47,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,254,31,240,0,0,254,127,192,0,0,254,255,192,0,0,255,255,240,0,0,255,239,248,0,0,255,131,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,63,224,0,255,0,15,244,0,255,0,7,252,0,255,0,2,255,0,255,0,0,255,128,0,0,0,0,0,0,0,0,0,0,0,15,208,0,0,0,31,192,0,0,0,47,192,0,0,0,63,64,0,0,0,62,0,0,0,0,124,0,0,0, + // 0x0138 ĸ + 17,20,100,20,3,0,85,0,0,85,0,255,0,3,254,0,255,0,11,248,0,255,0,31,240,0,255,0,127,192,0,255,0,255,0,0,255,3,253,0,0,255,15,244,0,0,255,47,224,0,0,255,191,192,0,0,255,255,240,0,0,255,255,248,0,0,255,211,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,63,224,0,255,0,15,244,0,255,0,7,252,0,255,0,2,255,0,255,0,0,255,128, + // 0x0139 Ĺ + 16,34,136,19,3,0,0,170,0,0,3,254,0,0,7,248,0,0,15,224,0,0,63,128,0,0,190,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x013a ĺ + 8,36,72,10,3,0,1,170,3,253,15,244,47,208,127,64,253,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x013b Ļ + 16,34,136,19,3,248,106,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253,0,0,0,0,0,0,0,0,0,7,244,0,0,11,240,0,0,11,224,0,0,15,192,0,0,31,64,0,0,47,0,0, + // 0x013c ļ + 6,36,72,10,2,248,21,64,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,0,0,0,0,31,208,31,192,47,128,63,0,126,0,188,0, + // 0x013d Ľ + 16,26,104,19,3,0,106,0,0,169,191,64,1,253,191,64,1,252,191,64,2,244,191,64,3,240,191,64,3,192,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x013e ľ + 10,28,84,10,3,0,85,1,80,255,15,240,255,15,208,255,15,192,255,31,64,255,47,0,255,20,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x013f Ŀ + 16,26,104,19,3,0,106,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,10,64,191,64,47,208,191,64,63,208,191,64,47,208,191,64,6,64,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x0140 ŀ + 10,28,84,11,3,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,10,64,255,63,192,255,63,208,255,47,192,255,6,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0141 Ł + 19,26,130,19,0,0,1,168,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,7,0,0,2,253,127,64,0,2,255,255,128,0,2,255,253,0,0,2,255,224,0,0,11,255,0,0,0,127,253,0,0,0,63,253,0,0,0,42,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,254,85,85,80,2,255,255,255,244,2,255,255,255,244,2,255,255,255,244, + // 0x0142 ł + 10,28,84,10,0,0,1,80,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,128,3,255,224,3,255,240,3,255,128,31,253,0,191,248,0,255,248,0,123,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0,3,248,0, + // 0x0143 Ń + 22,34,204,28,3,0,0,0,0,106,128,0,0,0,0,255,64,0,0,0,3,253,0,0,0,0,7,244,0,0,0,0,15,208,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x0144 ń + 17,28,140,23,3,0,0,0,10,160,0,0,0,63,224,0,0,0,127,192,0,0,0,255,0,0,0,3,248,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x0145 Ņ + 22,34,204,28,3,248,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,208,0,0,0,0,31,192,0,0,0,0,47,128,0,0,0,0,63,0,0,0,0,0,62,0,0,0,0,0,124,0,0,0, + // 0x0146 ņ + 17,28,140,23,3,248,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,0,0,0,0,0,0,0,0,0,0,0,2,248,0,0,0,3,244,0,0,0,7,240,0,0,0,11,224,0,0,0,15,192,0,0,0,15,64,0,0, + // 0x0147 Ň + 22,34,204,28,3,0,0,104,0,6,144,0,0,63,64,47,192,0,0,15,224,255,0,0,0,3,251,252,0,0,0,1,255,240,0,0,0,0,191,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,128,0,0,10,144,191,240,0,0,15,224,191,244,0,0,15,224,191,252,0,0,15,224,191,254,0,0,15,224,191,255,64,0,15,224,190,127,192,0,15,224,191,63,224,0,15,224,191,15,240,0,15,224,191,11,252,0,15,224,191,3,253,0,15,224,191,1,255,0,15,224,191,0,191,128,15,224,191,0,63,208,15,224,191,0,31,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,2,255,15,224,191,0,0,255,143,224,191,0,0,127,207,224,191,0,0,47,255,224,191,0,0,15,255,224,191,0,0,7,255,224,191,0,0,3,255,224,191,0,0,0,255,224,191,0,0,0,191,224, + // 0x0148 ň + 17,28,140,23,3,0,10,64,0,164,0,11,224,7,244,0,2,252,31,208,0,0,255,191,64,0,0,63,254,0,0,0,15,252,0,0,0,0,0,0,0,0,0,0,0,0,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,128,0,127,128,255,64,0,63,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192, + // 0x0149 ʼn + 23,26,156,26,0,0,10,160,0,0,0,0,31,224,0,0,0,0,47,208,0,0,0,0,47,192,0,0,0,0,63,128,0,0,0,0,63,64,0,0,0,0,127,5,64,26,164,0,190,15,194,255,255,64,252,15,219,255,255,208,0,15,255,229,191,240,0,15,253,0,15,244,0,15,248,0,7,248,0,15,244,0,3,248,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252, + // 0x014a Ŋ + 22,34,204,28,3,248,106,128,0,0,10,144,191,240,0,0,15,224,191,248,0,0,15,224,191,253,0,0,15,224,191,255,0,0,15,224,191,255,128,0,15,224,190,127,208,0,15,224,191,47,240,0,15,224,191,15,248,0,15,224,191,7,253,0,15,224,191,2,255,0,15,224,191,0,255,128,15,224,191,0,63,208,15,224,191,0,47,240,15,224,191,0,15,248,15,224,191,0,3,253,15,224,191,0,1,255,15,224,191,0,0,255,143,224,191,0,0,63,223,224,191,0,0,31,255,224,191,0,0,15,255,224,191,0,0,3,255,224,191,0,0,1,255,224,191,0,0,0,191,224,191,0,0,0,63,224,191,0,0,0,31,224,0,0,0,0,15,208,0,0,0,0,31,208,0,0,0,0,47,192,0,0,1,85,255,192,0,0,2,255,255,0,0,0,2,255,253,0,0,0,1,255,224,0,0,0,0,0,0,0, + // 0x014b ŋ + 17,29,145,23,3,247,84,1,170,64,0,252,47,255,244,0,253,191,255,253,0,255,254,91,255,0,255,224,0,255,64,255,192,0,127,128,255,64,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,106,255,64,0,0,127,255,0,0,0,127,252,0,0,0,26,144,0, + // 0x014c Ō + 24,32,192,28,2,255,0,6,170,170,144,0,0,7,255,255,224,0,0,7,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x014d ō + 18,26,130,22,2,255,1,170,170,164,0,2,255,255,244,0,2,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x014e Ŏ + 24,34,204,28,2,255,0,15,64,1,240,0,0,11,192,3,240,0,0,3,255,255,208,0,0,1,255,255,128,0,0,0,127,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x014f ŏ + 18,28,140,22,2,255,3,208,0,124,0,3,240,1,248,0,1,255,255,240,0,0,191,255,208,0,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x0150 Ő + 24,35,210,28,2,255,0,0,106,66,168,0,0,0,255,11,244,0,0,2,252,15,224,0,0,7,240,47,128,0,0,15,208,126,0,0,0,47,64,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x0151 ő + 18,29,145,22,2,255,0,26,128,169,0,0,127,194,253,0,0,255,7,244,0,1,252,15,224,0,3,240,47,128,0,11,192,62,0,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x0152 Œ + 30,27,216,34,2,255,0,1,191,254,170,170,170,160,0,47,255,255,255,255,255,240,0,255,255,255,255,255,255,240,3,255,229,91,255,170,170,144,11,254,0,1,254,0,0,0,15,244,0,1,254,0,0,0,47,224,0,1,254,0,0,0,63,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,191,128,0,1,254,0,0,0,191,64,0,1,254,0,0,0,255,64,0,1,255,255,255,192,255,0,0,1,255,255,255,192,255,0,0,1,255,255,255,192,255,64,0,1,254,0,0,0,191,64,0,1,254,0,0,0,191,128,0,1,254,0,0,0,127,192,0,1,254,0,0,0,63,192,0,1,254,0,0,0,63,224,0,1,254,0,0,0,31,240,0,1,254,0,0,0,15,252,0,1,254,0,0,0,3,255,144,6,254,85,85,80,0,255,255,255,255,255,255,240,0,63,255,255,255,255,255,240,0,6,255,255,255,255,255,240,0,0,5,80,0,0,0,0, + // 0x0153 œ + 31,21,168,34,2,255,0,6,169,0,0,170,128,0,0,255,255,208,11,255,252,0,7,255,255,248,63,255,255,64,15,254,91,254,255,145,191,192,63,224,0,255,253,0,31,224,127,192,0,63,248,0,15,240,191,64,0,47,240,0,7,244,255,0,0,31,240,0,7,244,255,0,0,31,250,170,175,248,255,0,0,15,255,255,255,248,255,0,0,15,255,255,255,248,255,0,0,15,240,0,0,0,255,0,0,31,240,0,0,0,255,0,0,47,240,0,0,0,191,64,0,63,244,0,0,0,63,192,0,127,252,0,0,0,47,244,1,255,255,64,1,160,15,255,255,253,127,254,255,224,2,255,255,244,31,255,255,224,0,127,255,128,2,255,255,128,0,1,80,0,0,5,64,0, + // 0x0154 Ŕ + 19,34,170,23,3,0,0,0,10,164,0,0,0,47,240,0,0,0,127,192,0,0,0,255,0,0,0,2,252,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,106,170,165,0,0,191,255,255,224,0,191,255,255,253,0,191,170,191,255,0,191,64,1,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,128,191,64,2,255,0,191,234,191,253,0,191,255,255,244,0,191,255,255,128,0,191,170,191,192,0,191,64,47,208,0,191,64,15,240,0,191,64,11,248,0,191,64,3,253,0,191,64,1,255,0,191,64,0,191,128,191,64,0,63,192,191,64,0,47,240,191,64,0,15,244,191,64,0,7,252, + // 0x0155 ŕ + 12,28,84,15,3,0,0,1,169,0,7,252,0,15,244,0,47,208,0,127,64,0,252,0,0,0,0,0,0,0,84,1,169,252,15,254,253,63,253,254,255,253,255,248,0,255,208,0,255,128,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0156 Ŗ + 19,34,170,23,3,248,106,170,165,0,0,191,255,255,224,0,191,255,255,253,0,191,170,191,255,0,191,64,1,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,128,191,64,2,255,0,191,234,191,253,0,191,255,255,244,0,191,255,255,128,0,191,170,191,192,0,191,64,47,208,0,191,64,15,240,0,191,64,11,248,0,191,64,3,253,0,191,64,1,255,0,191,64,0,191,128,191,64,0,63,192,191,64,0,47,240,191,64,0,15,244,191,64,0,7,252,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,1,253,0,0,0,1,252,0,0,0,3,244,0,0,0,3,224,0,0,0,7,192,0,0, + // 0x0157 ŗ + 13,28,112,15,2,248,21,0,106,64,63,3,255,128,63,79,255,64,63,191,255,64,63,254,0,0,63,244,0,0,63,224,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,0,0,0,0,0,0,0,0,31,208,0,0,47,192,0,0,63,128,0,0,63,0,0,0,125,0,0,0,188,0,0,0, + // 0x0158 Ř + 19,34,170,23,3,0,10,64,0,168,0,11,240,3,244,0,2,252,31,208,0,0,191,191,128,0,0,63,254,0,0,0,15,252,0,0,0,0,0,0,0,0,0,0,0,0,106,170,165,0,0,191,255,255,224,0,191,255,255,253,0,191,170,191,255,0,191,64,1,255,128,191,64,0,127,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,63,192,191,64,0,127,128,191,64,2,255,0,191,234,191,253,0,191,255,255,244,0,191,255,255,128,0,191,170,191,192,0,191,64,47,208,0,191,64,15,240,0,191,64,11,248,0,191,64,3,253,0,191,64,1,255,0,191,64,0,191,128,191,64,0,63,192,191,64,0,47,240,191,64,0,15,244,191,64,0,7,252, + // 0x0159 ř + 13,28,112,15,2,0,104,0,6,128,63,64,47,128,31,208,254,0,7,251,252,0,2,255,240,0,0,255,208,0,0,0,0,0,0,0,0,0,21,0,106,64,63,3,255,128,63,79,255,64,63,191,255,64,63,254,0,0,63,244,0,0,63,224,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0, + // 0x015a Ś + 16,35,140,20,2,255,0,0,10,160,0,0,63,224,0,0,191,128,0,0,254,0,0,3,248,0,0,11,224,0,0,0,0,0,0,0,0,0,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,21,64,0, + // 0x015b ś + 14,29,116,17,2,255,0,0,170,64,0,1,255,0,0,3,252,0,0,11,240,0,0,31,192,0,0,63,0,0,0,0,0,0,0,0,0,0,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x015c Ŝ + 16,35,140,20,2,255,0,10,164,0,0,47,252,0,0,127,255,0,0,254,127,128,3,248,15,224,15,208,2,248,0,0,0,0,0,0,0,0,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,21,64,0, + // 0x015d ŝ + 14,29,116,17,2,255,0,106,128,0,0,255,208,0,3,255,244,0,11,242,252,0,47,192,191,0,190,0,31,192,0,0,0,0,0,0,0,0,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x015e Ş + 16,35,140,20,2,247,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,31,192,0,0,31,64,0,0,63,224,0,0,7,248,0,0,0,252,0,0,0,252,0,0,171,248,0,1,255,240,0,0,169,64,0, + // 0x015f ş + 14,29,116,17,2,247,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,127,0,0,0,62,0,0,0,191,208,0,0,27,240,0,0,2,244,0,0,3,244,0,2,175,240,0,3,255,208,0,1,169,0,0, + // 0x0160 Š + 16,35,140,20,2,255,10,64,0,164,11,224,7,240,3,252,47,208,0,255,191,64,0,63,253,0,0,31,248,0,0,0,0,0,0,0,0,0,0,111,255,144,7,255,255,253,31,255,255,253,63,249,86,252,191,192,0,20,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,208,0,0,63,253,0,0,15,255,208,0,3,255,253,0,0,127,255,208,0,6,255,244,0,0,47,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,255,64,0,1,255,249,0,11,253,255,255,255,248,255,255,255,224,111,255,254,0,0,21,64,0, + // 0x0161 š + 14,29,116,17,2,255,104,0,6,128,127,64,47,128,31,208,254,0,7,251,252,0,2,255,240,0,0,255,192,0,0,0,0,0,0,0,0,0,0,106,164,0,15,255,255,192,63,255,255,192,255,149,111,128,254,0,0,0,254,0,0,0,255,0,0,0,255,208,0,0,63,254,0,0,15,255,244,0,1,255,254,0,0,27,255,192,0,0,191,208,0,0,31,240,0,0,15,240,0,0,15,240,208,0,47,224,255,170,255,192,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x0162 Ţ + 20,35,175,20,0,247,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,61,0,0,0,0,188,0,0,0,0,255,128,0,0,0,31,224,0,0,0,7,240,0,0,0,7,240,0,0,6,175,224,0,0,7,255,128,0,0,2,164,0,0, + // 0x0163 ţ + 13,33,132,14,0,247,0,60,0,0,0,188,0,0,0,252,0,0,0,252,0,0,3,253,85,64,47,255,255,128,127,255,255,128,43,254,170,64,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,253,0,0,1,255,0,0,0,255,255,192,0,127,255,192,0,31,255,128,0,3,224,0,0,11,192,0,0,15,248,0,0,1,253,0,0,0,126,0,0,0,126,0,0,106,253,0,0,191,248,0,0,106,64,0, + // 0x0164 Ť + 20,34,170,20,0,0,0,164,0,10,64,0,254,0,127,0,0,63,194,252,0,0,15,251,244,0,0,3,255,208,0,0,1,255,128,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,169,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x0165 ť + 18,29,145,14,0,255,0,0,0,5,80,0,0,0,15,240,0,0,0,15,208,0,0,0,15,192,0,60,0,31,64,0,188,0,47,0,0,252,0,20,0,0,252,0,0,0,3,253,85,64,0,47,255,255,128,0,127,255,255,128,0,43,254,170,64,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,252,0,0,0,2,253,0,0,0,1,255,0,0,0,0,255,255,192,0,0,127,255,192,0,0,31,255,128,0,0,0,80,0,0, + // 0x0166 Ŧ + 20,26,130,20,0,0,106,170,170,170,170,191,255,255,255,255,191,255,255,255,255,106,170,255,170,170,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,1,170,255,170,128,3,255,255,255,192,3,255,255,255,192,2,170,255,170,128,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0, + // 0x0167 ŧ + 13,25,100,14,0,255,0,60,0,0,0,188,0,0,0,252,0,0,0,252,0,0,3,253,85,64,47,255,255,128,127,255,255,128,43,254,170,64,2,252,0,0,2,252,0,0,2,252,0,0,23,253,85,0,63,255,255,64,63,255,255,64,23,253,85,0,2,252,0,0,2,252,0,0,2,252,0,0,2,252,0,0,2,253,0,0,1,255,0,0,0,255,255,192,0,127,255,192,0,31,255,128,0,0,80,0, + // 0x0168 Ũ + 21,34,204,27,3,255,0,6,128,2,128,0,0,63,248,7,192,0,0,191,255,239,128,0,0,248,127,255,0,0,1,240,7,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x0169 ũ + 17,28,140,23,3,255,0,104,0,40,0,3,255,128,124,0,11,255,254,248,0,15,135,255,240,0,31,0,127,192,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x016a Ū + 21,32,192,27,3,255,0,42,170,170,0,0,0,63,255,255,0,0,0,63,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x016b ū + 17,26,130,23,3,255,2,170,170,160,0,3,255,255,240,0,3,255,255,240,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x016c Ŭ + 21,34,204,27,3,255,0,184,0,15,0,0,0,125,0,47,0,0,0,63,255,254,0,0,0,31,255,248,0,0,0,2,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x016d ŭ + 17,28,140,23,3,255,11,128,0,240,0,7,208,2,240,0,3,255,255,224,0,1,255,255,128,0,0,47,253,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x016e Ů + 21,37,222,27,3,255,0,0,105,0,0,0,0,2,255,208,0,0,0,7,231,240,0,0,0,11,128,244,0,0,0,15,64,244,0,0,0,11,129,240,0,0,0,3,255,224,0,0,0,1,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x016f ů + 17,31,155,23,3,255,0,6,144,0,0,0,47,253,0,0,0,126,127,0,0,0,184,15,64,0,0,180,15,64,0,0,188,31,0,0,0,63,254,0,0,0,31,248,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x0170 Ű + 21,35,210,27,3,255,0,6,164,42,128,0,0,15,240,127,128,0,0,47,208,255,0,0,0,63,66,252,0,0,0,189,3,240,0,0,1,244,15,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x0171 ű + 17,29,145,23,3,255,0,106,66,168,0,0,255,7,248,0,1,253,15,240,0,3,244,47,192,0,11,208,63,0,0,31,64,252,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x0172 Ų + 21,35,210,27,3,247,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,254,0,63,224,0,3,253,0,15,253,0,47,252,0,7,255,255,255,240,0,1,255,255,255,192,0,0,47,255,255,0,0,0,0,20,125,0,0,0,0,0,248,0,0,0,0,2,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,249,64,0,0,0,1,255,208,0,0,0,0,127,208,0,0,0,0,0,0,0, + // 0x0173 ų + 17,29,145,23,3,247,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,47,128,0,21,0,125,0,0,0,1,248,0,0,0,3,240,0,0,0,7,224,0,0,0,7,208,0,0,0,7,245,64,0,0,3,255,192,0,0,0,255,128,0,0,0,0,0, + // 0x0174 Ŵ + 34,34,50,34,0,0,0,0,0,2,168,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,191,111,208,0,0,0,0,0,1,253,7,244,0,0,0,0,0,7,240,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,2,168,0,0,26,144,127,128,0,7,252,0,0,47,192,63,192,0,11,253,0,0,63,192,63,192,0,15,254,0,0,63,128,47,208,0,31,255,0,0,127,64,31,224,0,47,255,64,0,191,0,15,240,0,63,191,128,0,255,0,15,240,0,63,111,192,0,254,0,11,244,0,127,31,192,1,253,0,7,248,0,191,15,208,2,252,0,3,252,0,254,15,240,3,252,0,3,252,1,253,11,240,3,248,0,2,253,2,252,3,244,7,244,0,1,254,3,248,3,248,11,240,0,0,255,3,244,2,252,15,240,0,0,191,7,240,1,252,15,224,0,0,127,75,240,0,253,31,208,0,0,63,143,224,0,254,47,192,0,0,63,143,208,0,191,63,192,0,0,47,223,192,0,63,63,64,0,0,31,239,128,0,63,191,0,0,0,15,255,64,0,47,255,0,0,0,15,255,0,0,31,254,0,0,0,11,255,0,0,15,253,0,0,0,7,254,0,0,15,252,0,0,0,3,253,0,0,11,252,0,0, + // 0x0175 ŵ + 29,28,224,29,0,0,0,0,0,106,64,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,240,0,0,0,0,0,15,243,252,0,0,0,0,0,63,128,255,0,0,0,0,0,190,0,47,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,85,64,0,21,64,127,128,0,255,192,0,127,64,63,192,0,255,192,0,191,0,63,192,1,255,208,0,255,0,47,208,2,251,240,0,254,0,15,224,3,243,240,2,253,0,15,240,7,243,244,3,252,0,11,240,11,226,248,3,248,0,7,244,15,209,252,7,244,0,3,248,15,192,252,11,240,0,3,252,31,192,254,15,240,0,2,252,63,128,191,15,224,0,1,253,63,0,127,31,208,0,0,254,127,0,63,111,192,0,0,254,126,0,47,175,192,0,0,127,189,0,31,191,64,0,0,63,252,0,15,255,0,0,0,63,252,0,15,255,0,0,0,47,244,0,11,254,0,0,0,31,240,0,7,253,0,0, + // 0x0176 Ŷ + 21,34,204,21,0,0,0,0,106,64,0,0,0,1,255,208,0,0,0,3,255,240,0,0,0,15,243,252,0,0,0,63,128,255,0,0,0,253,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x0177 ŷ + 19,37,185,19,0,247,0,1,169,0,0,0,7,255,64,0,0,15,255,192,0,0,63,207,240,0,0,254,3,252,0,3,244,0,190,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x0178 Ÿ + 21,33,198,21,0,0,0,5,0,20,0,0,0,47,192,254,0,0,0,63,192,255,0,0,0,47,128,190,0,0,0,5,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x0179 Ź + 19,34,170,21,1,0,0,0,2,169,0,0,0,11,252,0,0,0,31,240,0,0,0,63,192,0,0,0,191,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x017a ź + 15,28,112,17,1,0,0,0,42,144,0,0,191,192,0,0,255,0,0,3,252,0,0,11,240,0,0,31,128,0,0,0,0,0,0,0,0,0,21,85,85,80,63,255,255,248,63,255,255,248,42,170,175,244,0,0,31,224,0,0,63,192,0,0,255,0,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,128,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,192,0,0,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x017b Ż + 19,33,165,21,1,0,0,0,168,0,0,0,1,253,0,0,0,2,254,0,0,0,1,253,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x017c ż + 15,27,108,17,1,0,0,10,128,0,0,31,224,0,0,47,224,0,0,31,208,0,0,6,64,0,0,0,0,0,0,0,0,0,21,85,85,80,63,255,255,248,63,255,255,248,42,170,175,244,0,0,31,224,0,0,63,192,0,0,255,0,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,128,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,192,0,0,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x017d Ž + 19,34,170,21,1,0,2,160,0,42,0,1,252,0,253,0,0,191,7,244,0,0,47,239,224,0,0,15,255,128,0,0,3,255,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,160,127,255,255,255,240,127,255,255,255,240,42,170,170,191,240,0,0,0,63,192,0,0,0,255,64,0,0,2,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,255,64,0,0,2,254,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,0,255,64,0,0,2,254,0,0,0,7,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,80,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244, + // 0x017e ž + 15,28,112,17,1,0,42,0,2,160,31,192,15,224,7,244,127,128,2,254,254,0,0,191,252,0,0,63,240,0,0,0,0,0,0,0,0,0,21,85,85,80,63,255,255,248,63,255,255,248,42,170,175,244,0,0,31,224,0,0,63,192,0,0,255,0,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,128,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,192,0,0,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x017f ſ + 11,28,84,12,3,0,0,89,64,11,255,244,47,255,240,127,250,224,191,128,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Simplified_Chinese_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Simplified_Chinese_26.cpp new file mode 100644 index 000000000000..607d9118ae1e --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Simplified_Chinese_26.cpp @@ -0,0 +1,778 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Simplified Chinese 36pt, capital 'A' height: 26px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +extern const uint8_t NotoSans_Medium_Simplified_Chinese_26[20454] = { + 162,26,28,32,26,255,34,247, // unifont_t + // 0x201c “ + 28,32,13,10,40,14,0,16,1,160,6,128,3,240,15,192,7,240,31,192,15,224,47,128,15,208,63,64,47,192,191,0,63,192,255,0,63,192,255,0,127,129,254,0,0,0,0,0, + // 0x201d ” + 29,32,13,10,40,14,0,16,10,160,42,128,15,240,63,192,15,240,63,192,31,208,127,128,47,192,127,0,63,128,191,0,63,64,253,0,63,0,252,0,125,1,248,0,0,0,0,0, + // 0x22bf ⊿ + 191,34,28,29,203,36,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,31,0,0,0,0,0,0,127,0,0,0,0,0,1,255,0,0,0,0,0,7,255,0,0,0,0,0,31,255,0,0,0,0,0,127,255,0,0,0,0,1,255,63,0,0,0,0,3,252,63,0,0,0,0,15,240,63,0,0,0,0,63,192,63,0,0,0,0,255,0,63,0,0,0,3,252,0,63,0,0,0,15,240,0,63,0,0,0,63,192,0,63,0,0,0,255,64,0,63,0,0,3,253,0,0,63,0,0,15,244,0,0,63,0,0,63,208,0,0,63,0,0,255,64,0,0,63,0,2,253,0,0,0,63,0,11,244,0,0,0,63,0,47,224,0,0,0,63,0,191,128,0,0,0,63,2,254,0,0,0,0,63,11,255,255,255,255,255,255,47,255,255,255,255,255,255,191,255,255,255,255,255,255, + // 0x4e00 一 + 0,78,34,4,36,36,1,12,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,42,170,170,170,170,170,170,170,144, + // 0x4e09 三 + 9,78,32,29,232,36,2,255,1,85,85,85,85,85,85,64,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,84,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,21,85,85,85,85,85,85,84, + // 0x4e0a 上 + 10,78,32,32,0,36,2,255,0,0,0,21,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,213,85,85,64,0,0,0,63,255,255,255,224,0,0,0,63,255,255,255,224,0,0,0,63,255,255,255,224,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,85,85,85,127,213,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x4e0b 下 + 11,78,32,32,0,36,2,253,85,85,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,253,0,0,0,0,0,0,47,255,208,0,0,0,0,0,47,255,252,0,0,0,0,0,47,223,255,128,0,0,0,0,47,194,255,244,0,0,0,0,47,192,127,255,0,0,0,0,47,192,11,255,208,0,0,0,47,192,0,255,240,0,0,0,47,192,0,47,192,0,0,0,47,192,0,7,64,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x4e0d 不 + 13,78,33,32,32,36,2,253,21,85,85,85,85,85,85,84,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,0,0,0,2,255,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,3,255,242,224,0,0,0,0,0,15,255,251,252,0,0,0,0,0,63,255,247,255,64,0,0,0,0,255,207,240,255,224,0,0,0,7,255,79,240,47,252,0,0,0,31,253,15,240,7,255,64,0,0,191,240,15,240,1,255,208,0,7,255,192,15,240,0,63,248,0,47,254,0,15,240,0,15,254,0,255,248,0,15,240,0,2,255,64,191,208,0,15,240,0,0,253,0,62,0,0,15,240,0,0,52,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0, + // 0x4e13 专 + 19,78,32,35,24,36,2,252,0,0,0,127,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,0,0,3,244,0,0,0,0,0,0,7,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,208,0,0,0,0,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,0,0,127,64,0,0,0,0,0,0,191,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,253,0,0,0,0,0,0,2,255,255,255,255,255,0,0,3,255,255,255,255,255,192,0,3,255,255,255,255,255,0,0,0,0,0,0,11,252,0,0,0,0,0,0,47,240,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,0,0,0,0,190,64,11,252,0,0,0,1,255,249,47,240,0,0,0,1,191,255,255,208,0,0,0,0,6,255,255,128,0,0,0,0,0,31,255,244,0,0,0,0,0,0,191,255,64,0,0,0,0,0,11,255,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x4e1d 丝 + 29,78,32,32,0,36,2,255,0,0,144,0,0,2,64,0,0,1,252,0,0,7,240,0,0,2,252,0,0,15,240,0,0,3,244,0,0,15,208,0,0,7,240,0,0,47,192,0,0,15,224,0,0,63,0,0,0,31,192,0,0,190,0,0,0,63,128,56,1,252,0,244,0,127,0,191,3,248,2,253,0,253,0,254,7,240,3,248,1,252,2,252,15,208,15,240,3,244,7,244,63,128,31,208,15,224,15,240,255,255,255,128,63,255,255,192,255,255,255,0,63,255,255,64,191,255,253,0,31,255,255,0,101,7,248,0,4,2,252,0,0,15,240,0,0,7,244,0,0,47,192,0,0,15,224,0,0,127,64,0,0,63,192,0,0,254,0,0,0,255,0,0,3,248,0,0,2,252,0,0,15,240,0,0,15,255,255,252,127,255,255,252,31,255,255,252,191,255,255,252,15,255,255,252,127,255,255,248,10,149,0,0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x4e2a 个 + 42,78,34,33,41,36,1,253,0,0,0,7,252,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,63,255,64,0,0,0,0,0,0,191,255,192,0,0,0,0,0,1,255,31,240,0,0,0,0,0,7,253,11,252,0,0,0,0,0,31,248,2,255,0,0,0,0,0,127,224,0,191,192,0,0,0,1,255,128,0,47,244,0,0,0,11,254,0,0,11,254,0,0,0,47,248,0,0,2,255,192,0,0,255,208,0,0,0,127,244,0,11,255,64,3,248,0,15,255,64,127,252,0,3,248,0,3,255,224,255,224,0,3,248,0,0,127,240,63,0,0,3,248,0,0,11,192,24,0,0,3,248,0,0,1,64,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x4e2d 中 + 45,78,30,34,16,36,3,253,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,21,85,85,127,149,85,85,64,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,85,85,127,149,85,95,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0, + // 0x4e3a 为 + 58,78,31,34,16,36,2,253,0,0,0,190,0,0,0,0,0,44,0,191,0,0,0,0,0,254,0,191,0,0,0,0,0,191,64,191,0,0,0,0,0,63,192,191,0,0,0,0,0,15,224,191,0,0,0,0,0,11,224,191,0,0,0,0,0,2,0,190,0,0,0,0,21,85,85,255,85,85,85,80,63,255,255,255,255,255,255,244,63,255,255,255,255,255,255,244,63,255,255,255,255,255,255,244,0,0,0,253,0,0,3,244,0,0,1,252,0,0,3,244,0,0,2,252,0,0,3,244,0,0,3,248,0,0,7,240,0,0,3,244,24,0,7,240,0,0,7,240,254,0,7,240,0,0,15,240,191,64,7,240,0,0,15,224,63,192,7,240,0,0,47,192,15,224,11,240,0,0,63,128,7,244,11,240,0,0,255,64,3,252,11,240,0,1,254,0,1,244,15,224,0,3,252,0,0,64,15,224,0,15,248,0,0,0,15,224,0,63,224,0,0,0,15,208,0,255,192,0,0,0,31,208,3,255,0,0,0,0,47,192,31,252,0,0,0,0,127,192,191,240,0,0,15,255,255,128,63,192,0,0,7,255,255,0,14,0,0,0,3,255,252,0,0,0,0,0,1,85,64,0, + // 0x4e3b 主 + 59,78,32,33,8,36,2,254,0,0,0,36,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,63,244,0,0,0,0,0,0,11,253,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,189,0,0,0,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,5,85,85,95,245,85,85,80,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,2,255,255,255,255,255,255,128,2,255,255,255,255,255,255,128,2,255,255,255,255,255,255,128,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,21,85,85,95,245,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x4e49 义 + 73,78,34,34,50,36,1,253,0,0,0,6,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,7,240,0,3,224,0,0,4,0,3,248,0,7,244,0,0,190,0,2,252,0,15,240,0,0,127,0,0,253,0,15,224,0,0,63,128,0,190,0,47,192,0,0,47,192,0,127,0,63,192,0,0,15,208,0,32,0,127,64,0,0,11,240,0,0,0,255,0,0,0,3,248,0,0,1,253,0,0,0,2,252,0,0,3,252,0,0,0,0,254,0,0,11,244,0,0,0,0,191,64,0,31,240,0,0,0,0,63,192,0,63,192,0,0,0,0,31,240,0,191,64,0,0,0,0,11,248,1,255,0,0,0,0,0,3,254,7,252,0,0,0,0,0,0,255,79,244,0,0,0,0,0,0,127,255,208,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,191,255,240,0,0,0,0,0,7,255,111,254,0,0,0,0,0,47,252,7,255,208,0,0,0,2,255,224,0,255,253,0,0,0,47,255,64,0,31,255,208,0,7,255,248,0,0,2,255,254,64,127,255,128,0,0,0,47,255,208,63,248,0,0,0,0,2,255,64,14,64,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0, + // 0x4e4b 之 + 75,78,34,34,50,36,1,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,252,0,1,85,85,85,85,85,95,244,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,1,0,0,11,252,0,0,0,0,11,224,0,47,240,0,0,0,0,15,224,0,191,192,0,0,0,0,31,208,2,255,0,0,0,0,0,63,192,15,252,0,0,0,0,0,127,240,127,240,0,0,0,0,0,255,249,255,192,0,0,0,0,1,255,255,254,0,0,0,0,0,3,252,255,244,0,0,0,0,0,11,244,63,248,0,0,0,0,0,15,240,15,255,229,0,0,0,0,63,208,2,255,255,255,255,255,208,191,192,0,47,255,255,255,255,192,47,64,0,1,175,255,255,255,128,6,0,0,0,0,1,85,85,0, + // 0x4e86 了 + 134,78,29,32,0,36,3,253,21,85,85,85,85,85,84,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,192,127,255,255,255,255,255,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,47,244,0,0,0,0,0,0,191,208,0,0,0,0,0,3,255,64,0,0,0,0,0,15,253,0,0,0,0,0,0,127,240,0,0,0,0,0,26,255,192,0,0,0,0,0,47,254,0,0,0,0,0,0,47,244,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,5,85,127,192,0,0,0,0,11,255,255,128,0,0,0,0,7,255,255,0,0,0,0,0,3,255,232,0,0,0,0, + // 0x4e8c 二 + 140,78,32,26,208,36,2,0,2,170,170,170,170,170,170,128,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,254, + // 0x4e8e 于 + 142,78,32,32,0,36,2,253,1,85,85,85,85,85,85,64,7,255,255,255,255,255,255,208,7,255,255,255,255,255,255,208,7,255,255,255,255,255,255,208,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,85,85,85,91,245,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,0,0,1,85,111,240,0,0,0,0,1,255,255,240,0,0,0,0,0,255,255,208,0,0,0,0,0,191,250,0,0,0,0, + // 0x4ea4 交 + 164,78,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,21,85,85,95,229,85,85,84,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,0,0,0,0,0,4,0,0,0,0,121,0,0,47,0,0,0,1,255,64,0,255,208,0,0,7,253,0,0,63,248,0,0,31,248,0,0,11,255,0,0,191,224,0,0,1,255,192,3,255,128,0,0,0,127,240,31,254,5,0,0,100,15,252,191,244,191,0,0,255,3,255,63,192,63,64,1,254,0,252,14,0,47,192,3,252,0,32,0,0,15,224,7,248,0,0,0,0,11,244,15,240,0,0,0,0,3,252,63,208,0,0,0,0,1,255,191,128,0,0,0,0,0,191,255,0,0,0,0,0,0,63,252,0,0,0,0,0,0,127,253,0,0,0,0,0,2,255,255,128,0,0,0,0,47,255,255,248,0,0,0,2,255,248,47,255,128,0,0,191,255,192,7,255,254,0,111,255,253,0,0,191,255,254,255,255,208,0,0,11,255,255,127,248,0,0,0,0,111,253,62,64,0,0,0,0,1,184,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,5,85,85,85,85,84,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,1,252,0,0,63,64,0,0,1,252,0,0,63,64,0,0,1,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,21,85,85,85,85,84,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,169,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,125,0,0,0,0,0,0,189,125,0,47,192,11,224,0,189,125,0,63,128,15,224,0,189,125,0,63,128,15,224,0,189,0,0,63,64,15,224,0,0,0,0,127,0,15,224,0,0,0,0,255,0,15,224,0,0,0,1,254,0,15,224,0,52,0,7,252,0,15,224,0,63,0,47,244,0,15,240,0,63,6,255,224,0,15,240,0,191,255,255,64,0,11,255,255,254,191,248,0,0,7,255,255,252,62,64,0,0,1,191,255,224,0,0,0,0,0,0,0,0, + // 0x4ece 从 + 206,78,34,32,32,36,1,253,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,253,0,0,63,128,0,0,0,0,253,0,0,63,64,0,0,0,1,253,0,0,63,64,0,0,0,1,253,0,0,63,128,0,0,0,1,252,0,0,127,192,0,0,0,2,252,0,0,127,192,0,0,0,2,252,0,0,191,192,0,0,0,3,252,0,0,191,192,0,0,0,3,248,0,0,255,208,0,0,0,3,253,0,0,255,224,0,0,0,7,255,0,1,255,240,0,0,0,7,255,192,2,255,240,0,0,0,11,255,224,3,255,248,0,0,0,15,255,244,3,250,252,0,0,0,15,231,252,7,245,252,0,0,0,31,210,255,15,240,253,0,0,0,47,192,255,95,240,255,0,0,0,63,192,63,111,208,127,64,0,0,127,128,46,63,192,63,192,0,0,255,0,8,255,64,47,208,0,1,255,0,1,255,0,15,240,0,3,253,0,3,253,0,11,252,0,7,252,0,15,252,0,3,254,0,15,244,0,63,240,0,1,255,128,63,240,0,255,208,0,0,255,224,127,208,0,255,128,0,0,63,192,31,128,0,46,0,0,0,15,0,2,0,0,4,0,0,0,1,0, + // 0x4ee4 令 + 228,78,34,34,50,36,1,253,0,0,0,7,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,191,255,192,0,0,0,0,0,1,255,31,240,0,0,0,0,0,7,253,11,252,0,0,0,0,0,31,244,2,255,64,0,0,0,0,127,224,0,191,208,0,0,0,2,255,64,0,47,248,0,0,0,11,253,0,0,11,255,0,0,0,63,244,0,0,1,255,208,0,1,255,255,255,255,255,255,248,0,15,255,31,255,255,255,143,255,128,127,248,31,255,255,255,130,255,224,63,208,0,0,0,0,0,127,192,14,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,31,208,0,0,0,0,63,0,63,255,192,0,0,0,0,63,0,63,255,192,0,0,0,0,63,0,47,254,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x4ee5 以 + 229,78,34,31,23,36,1,253,0,127,0,0,0,0,11,240,0,0,127,0,0,0,0,15,240,0,0,127,0,8,0,0,15,224,0,0,127,0,191,0,0,15,224,0,0,127,0,127,128,0,15,208,0,0,127,0,47,208,0,31,208,0,0,127,0,15,244,0,47,192,0,0,127,0,7,252,0,47,192,0,0,63,0,2,253,0,63,128,0,0,63,64,0,255,0,63,128,0,0,63,64,0,191,64,127,64,0,0,63,64,0,61,0,191,0,0,0,63,64,0,16,0,254,0,0,0,63,64,0,0,1,253,0,0,0,63,64,0,0,2,252,0,0,0,63,64,0,0,3,252,0,0,0,63,64,0,0,11,244,0,0,0,63,128,4,0,15,240,0,0,0,63,128,124,0,47,224,0,0,0,63,139,253,0,127,244,0,0,0,63,255,254,0,255,253,0,0,0,63,255,228,3,255,255,0,0,7,255,254,0,15,252,191,192,0,127,255,224,0,63,240,63,240,0,127,253,0,1,255,208,15,252,0,63,128,0,11,255,64,3,255,0,40,0,0,127,253,0,1,255,128,0,0,11,255,240,0,0,127,208,0,0,31,255,128,0,0,47,224,0,0,7,248,0,0,0,15,64,0,0,1,128,0,0,0,1,0, + // 0x4ef6 件 + 246,78,34,34,50,36,1,253,0,0,144,0,0,21,0,0,0,0,0,253,0,0,191,0,0,0,0,2,252,10,64,191,0,0,0,0,3,248,15,208,191,0,0,0,0,7,240,15,192,191,0,0,0,0,15,240,31,192,191,0,0,0,0,31,208,47,128,191,0,0,0,0,63,192,63,149,191,85,84,0,0,127,64,63,255,255,255,254,0,0,255,0,191,255,255,255,254,0,2,255,0,255,255,255,255,254,0,7,255,1,252,0,191,0,0,0,15,255,3,248,0,191,0,0,0,63,255,7,244,0,191,0,0,0,191,255,11,240,0,191,0,0,0,127,127,0,128,0,191,0,0,0,44,63,0,0,0,191,0,0,0,4,63,0,0,0,191,0,0,0,0,63,11,255,255,255,255,255,208,0,63,11,255,255,255,255,255,208,0,63,11,255,255,255,255,255,208,0,63,1,85,85,191,85,85,64,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,190,0,0,0, + // 0x4efd 份 + 253,78,34,35,59,36,1,252,0,0,144,0,0,0,0,0,0,0,1,252,0,63,255,252,0,0,0,3,252,0,63,255,253,0,0,0,3,244,0,63,255,254,0,0,0,11,240,6,64,0,127,0,0,0,15,208,15,224,0,63,64,0,0,47,192,15,208,0,63,128,0,0,63,128,47,192,0,47,192,0,0,255,0,63,64,0,15,224,0,1,255,0,127,0,0,11,240,0,3,255,0,254,0,0,7,252,0,11,255,2,252,0,0,2,253,0,47,255,3,244,0,0,0,255,64,127,255,15,240,0,0,0,191,208,255,255,63,192,0,0,0,63,224,254,127,63,191,255,255,255,239,192,124,127,14,63,255,255,255,226,0,32,127,0,63,255,255,255,208,0,0,127,0,0,47,128,15,208,0,0,127,0,0,63,64,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,127,0,15,208,0,0,127,0,0,190,0,15,208,0,0,127,0,0,253,0,15,192,0,0,127,0,1,252,0,15,192,0,0,127,0,3,248,0,15,192,0,0,127,0,7,244,0,31,192,0,0,127,0,15,224,0,31,192,0,0,127,0,63,192,0,47,192,0,0,127,0,255,64,0,127,128,0,0,127,7,254,0,63,255,64,0,0,127,7,244,0,63,255,0,0,0,127,1,208,0,47,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f11 休 + 17,79,34,34,50,36,1,253,0,0,36,0,0,84,0,0,0,0,0,127,64,0,252,0,0,0,0,0,255,0,0,252,0,0,0,0,0,254,0,0,252,0,0,0,0,2,252,0,0,252,0,0,0,0,7,248,0,0,252,0,0,0,0,15,240,0,0,252,0,0,0,0,31,224,0,0,252,0,0,0,0,63,192,0,0,252,0,0,0,0,255,139,255,255,255,255,255,192,2,255,139,255,255,255,255,255,192,7,255,139,255,255,255,255,255,192,31,255,129,85,95,255,213,85,64,127,255,128,0,15,255,224,0,0,255,239,128,0,47,255,240,0,0,191,47,128,0,63,255,244,0,0,61,47,128,0,127,254,252,0,0,20,47,128,0,254,253,253,0,0,0,47,128,2,252,252,127,0,0,0,47,128,3,248,252,63,128,0,0,47,128,11,240,252,47,192,0,0,47,128,31,208,252,15,240,0,0,47,128,63,192,252,7,248,0,0,47,128,255,64,252,3,253,0,0,47,130,254,0,252,0,255,0,0,47,139,252,0,252,0,191,192,0,47,255,240,0,252,0,63,240,0,47,159,208,0,252,0,15,192,0,47,139,64,0,252,0,3,64,0,47,129,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,31,128,0,0,252,0,0,0, + // 0x4f20 传 + 32,79,34,35,59,36,1,252,0,0,144,0,2,144,0,0,0,0,1,252,0,3,244,0,0,0,0,2,252,0,7,240,0,0,0,0,3,244,0,11,240,0,0,0,0,11,241,255,255,255,255,254,0,0,15,225,255,255,255,255,254,0,0,47,193,255,255,255,255,254,0,0,63,128,0,47,192,0,0,0,0,255,0,0,63,128,0,0,0,1,255,0,0,63,64,0,0,0,3,255,0,0,127,0,0,0,0,15,255,31,255,255,255,255,255,208,47,255,31,255,255,255,255,255,208,191,255,31,255,255,255,255,255,208,255,191,0,2,252,0,0,0,0,189,127,0,3,248,0,0,0,0,56,127,0,3,244,0,0,0,0,16,127,0,7,240,0,0,0,0,0,127,0,11,255,255,255,244,0,0,127,0,15,255,255,255,253,0,0,127,0,31,255,255,255,248,0,0,127,0,0,0,0,47,240,0,0,127,0,0,0,0,127,192,0,0,127,0,0,0,0,255,0,0,0,127,0,0,20,3,252,0,0,0,127,0,0,126,15,244,0,0,0,127,0,0,255,255,208,0,0,0,127,0,0,47,255,64,0,0,0,127,0,0,7,255,0,0,0,0,127,0,0,0,255,208,0,0,0,127,0,0,0,47,248,0,0,0,127,0,0,0,11,253,0,0,0,127,0,0,0,1,248,0,0,0,127,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f4d 位 + 77,79,34,34,50,36,1,253,0,0,100,0,0,168,0,0,0,0,0,254,0,0,253,0,0,0,0,1,253,0,0,253,0,0,0,0,3,252,0,0,253,0,0,0,0,7,244,0,0,253,0,0,0,0,15,240,0,0,253,0,0,0,0,31,208,0,0,253,0,0,0,0,63,195,255,255,255,255,255,192,0,191,67,255,255,255,255,255,192,1,255,67,255,255,255,255,255,192,3,255,64,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,64,5,128,0,11,144,0,191,255,64,15,192,0,15,240,0,255,127,64,15,208,0,15,224,0,125,63,64,11,224,0,15,208,0,56,63,64,7,240,0,31,192,0,0,63,64,3,240,0,47,192,0,0,63,64,3,244,0,63,128,0,0,63,64,3,248,0,63,64,0,0,63,64,2,248,0,127,0,0,0,63,64,1,252,0,127,0,0,0,63,64,1,252,0,254,0,0,0,63,64,0,252,0,253,0,0,0,63,64,0,253,1,252,0,0,0,63,64,0,253,2,252,0,0,0,63,64,0,254,3,244,0,0,0,63,64,0,80,3,240,0,0,0,63,64,0,0,7,240,0,0,0,63,75,255,255,255,255,255,224,0,63,75,255,255,255,255,255,224,0,63,75,255,255,255,255,255,224,0,63,64,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,34,34,50,36,1,253,0,0,144,0,0,0,0,0,0,0,1,252,0,0,0,0,96,0,0,2,252,0,0,0,111,248,0,0,3,244,0,5,191,255,254,0,0,11,240,251,255,255,255,228,0,0,15,224,255,255,255,228,0,0,0,47,192,255,254,95,192,0,0,0,63,128,254,0,15,192,0,0,0,191,0,253,0,15,208,0,0,1,255,0,253,0,15,208,0,0,3,255,0,253,0,15,208,0,0,11,255,0,253,0,15,208,0,0,31,255,0,253,0,15,208,0,0,127,255,0,255,255,255,255,255,208,255,255,0,255,255,255,255,255,208,254,127,0,255,255,255,255,255,208,124,127,0,253,0,7,240,0,0,32,127,0,253,0,7,240,0,0,0,127,0,253,0,3,240,0,0,0,127,0,253,0,3,244,0,0,0,127,0,253,0,3,248,0,0,0,127,0,253,0,2,252,0,0,0,127,0,253,0,1,252,0,0,0,127,0,253,1,172,253,0,0,0,127,0,255,255,252,254,0,0,0,127,15,255,255,252,191,2,208,0,127,15,255,254,144,63,66,240,0,127,11,249,0,0,63,194,240,0,127,0,0,0,0,31,227,240,0,127,0,0,0,0,15,255,224,0,127,3,255,255,255,227,255,208,0,127,3,255,255,255,225,255,128,0,127,3,255,255,255,224,21,0,0,106,0,0,0,0,0,0,0, + // 0x4f53 体 + 83,79,34,34,50,36,1,253,0,1,144,0,1,248,0,0,0,0,3,248,0,1,252,0,0,0,0,3,244,0,1,252,0,0,0,0,11,240,0,1,252,0,0,0,0,15,224,0,1,252,0,0,0,0,31,192,0,1,252,0,0,0,0,63,128,0,1,252,0,0,0,0,127,15,255,255,255,255,255,192,0,255,15,255,255,255,255,255,192,2,255,15,255,255,255,255,255,192,3,255,0,0,31,255,192,0,0,15,255,0,0,47,255,208,0,0,47,255,0,0,63,255,240,0,0,127,255,0,0,127,255,240,0,0,255,191,0,0,253,253,248,0,0,62,127,0,1,249,252,252,0,0,44,127,0,3,241,252,190,0,0,0,127,0,11,241,252,63,0,0,0,127,0,15,209,252,47,128,0,0,127,0,47,129,252,15,208,0,0,127,0,127,1,252,11,240,0,0,127,0,254,1,252,3,252,0,0,127,3,252,1,252,1,254,0,0,127,15,244,1,252,0,255,128,0,127,47,235,255,255,255,127,208,0,127,127,203,255,255,255,31,224,0,127,31,11,255,255,255,11,128,0,127,8,0,1,252,0,2,0,0,127,0,0,1,252,0,0,0,0,127,0,0,1,252,0,0,0,0,127,0,0,1,252,0,0,0,0,127,0,0,1,252,0,0,0,0,127,0,0,1,252,0,0,0,0,126,0,0,0,168,0,0,0, + // 0x4f59 余 + 89,79,34,35,59,36,1,252,0,0,0,7,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,255,191,208,0,0,0,0,0,3,255,15,248,0,0,0,0,0,15,252,3,254,0,0,0,0,0,63,240,0,255,192,0,0,0,1,255,192,0,63,244,0,0,0,11,254,0,0,11,255,0,0,0,127,244,0,0,1,255,208,0,3,255,208,0,0,0,63,254,0,47,255,255,255,255,255,251,255,208,127,245,255,255,255,255,241,255,192,31,65,255,255,255,255,240,31,64,4,0,0,3,248,0,0,1,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,144,3,248,0,208,0,0,0,3,252,3,248,7,248,0,0,0,11,244,3,248,7,254,0,0,0,47,224,3,248,0,255,192,0,0,191,192,3,248,0,63,240,0,2,255,0,3,248,0,15,252,0,31,252,0,3,248,0,3,255,0,63,240,0,3,248,0,0,255,128,31,128,15,255,244,0,0,62,0,5,0,7,255,240,0,0,20,0,0,0,3,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,34,34,50,36,1,253,0,0,100,0,4,0,0,0,0,0,0,191,0,47,128,0,0,0,0,0,253,0,63,64,0,0,0,0,2,252,0,127,0,0,0,0,0,3,248,0,254,0,0,0,0,0,11,240,1,253,0,0,0,0,0,15,224,3,255,255,255,255,224,0,47,192,7,255,255,255,255,224,0,127,128,15,255,255,255,255,224,0,255,64,31,210,252,0,0,0,2,255,64,63,193,252,0,0,0,7,255,64,191,1,252,0,0,0,15,255,65,254,1,252,0,0,0,63,255,71,252,1,252,0,0,0,191,255,75,244,1,255,255,255,128,63,63,66,208,1,255,255,255,128,29,63,64,64,1,255,255,255,128,4,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,255,255,255,192,0,63,64,0,1,255,255,255,192,0,63,64,0,1,255,255,255,192,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0, + // 0x4f7f 使 + 127,79,34,35,59,36,1,252,0,0,116,0,0,189,0,0,0,0,0,254,0,0,190,0,0,0,0,1,252,0,0,190,0,0,0,0,3,252,0,0,190,0,0,0,0,7,251,255,255,255,255,255,224,0,15,243,255,255,255,255,255,224,0,31,211,255,255,255,255,255,224,0,63,192,0,0,190,0,0,0,0,191,64,0,0,190,0,0,0,1,255,64,0,0,190,0,0,0,3,255,64,255,255,255,255,255,64,15,255,65,255,255,255,255,255,64,47,255,65,255,255,255,255,255,64,191,255,65,252,0,190,0,47,64,255,127,65,252,0,190,0,47,64,126,63,65,252,0,190,0,47,64,60,63,65,252,0,190,0,47,64,16,63,65,252,0,190,0,47,64,0,63,65,255,255,255,255,255,64,0,63,65,255,255,255,255,255,64,0,63,64,255,255,255,255,255,64,0,63,64,20,0,252,0,0,0,0,63,64,253,1,252,0,0,0,0,63,64,127,2,252,0,0,0,0,63,64,63,195,248,0,0,0,0,63,64,15,251,240,0,0,0,0,63,64,3,255,224,0,0,0,0,63,64,0,255,224,0,0,0,0,63,64,1,255,253,0,0,0,0,63,64,11,255,255,244,0,0,0,63,65,255,244,191,255,233,0,0,63,95,255,208,11,255,255,224,0,63,75,253,0,0,111,255,192,0,63,67,144,0,0,0,111,64,0,0,0,0,0,0,0,0,0, + // 0x4f9b 供 + 155,79,34,34,50,36,1,253,0,0,144,1,164,0,42,0,0,0,0,253,1,252,0,63,0,0,0,2,252,1,252,0,63,0,0,0,3,248,1,252,0,63,0,0,0,7,240,1,252,0,63,0,0,0,15,224,1,252,0,63,0,0,0,31,192,1,252,0,63,0,0,0,63,128,2,252,0,63,64,0,0,191,3,255,255,255,255,255,192,1,255,3,255,255,255,255,255,192,3,255,3,255,255,255,255,255,192,11,255,0,1,252,0,63,0,0,47,255,0,1,252,0,63,0,0,127,255,0,1,252,0,63,0,0,255,191,0,1,252,0,63,0,0,126,127,0,1,252,0,63,0,0,56,127,0,1,252,0,63,0,0,16,127,0,1,252,0,63,0,0,0,127,0,1,252,0,63,0,0,0,127,11,255,255,255,255,255,224,0,127,11,255,255,255,255,255,224,0,127,11,255,255,255,255,255,224,0,127,1,85,85,85,85,85,64,0,127,0,0,0,0,0,0,0,0,127,0,0,160,0,9,0,0,0,127,0,2,253,0,127,0,0,0,127,0,3,248,0,63,192,0,0,127,0,15,240,0,31,240,0,0,127,0,63,208,0,7,248,0,0,127,0,191,128,0,2,253,0,0,127,2,255,0,0,0,255,0,0,127,15,252,0,0,0,63,192,0,127,3,240,0,0,0,31,128,0,127,0,128,0,0,0,8,0, + // 0x4fb5 侵 + 181,79,34,35,59,36,1,252,0,0,144,0,0,0,0,0,0,0,1,252,42,170,170,170,164,0,0,3,252,127,255,255,255,252,0,0,3,244,127,255,255,255,252,0,0,11,240,0,0,0,1,252,0,0,15,224,0,0,0,1,252,0,0,47,192,21,85,85,86,252,0,0,63,128,47,255,255,255,252,0,0,255,0,47,255,255,255,252,0,2,255,0,0,0,0,1,252,0,3,255,0,0,0,0,1,252,0,15,255,0,255,255,255,255,252,0,63,255,0,255,255,255,255,252,0,191,255,0,106,170,170,170,168,0,255,191,0,0,0,0,0,0,0,189,127,6,170,170,170,170,170,128,52,127,11,255,255,255,255,255,192,0,127,11,255,255,255,255,255,192,0,127,11,208,0,0,0,15,192,0,127,11,208,0,0,0,15,192,0,127,11,234,170,170,170,159,192,0,127,11,255,255,255,255,255,192,0,127,0,63,255,255,255,240,0,0,127,0,2,240,0,31,208,0,0,127,0,3,252,0,127,192,0,0,127,0,1,254,1,255,0,0,0,127,0,0,127,203,253,0,0,0,127,0,0,31,255,240,0,0,0,127,0,0,11,255,208,0,0,0,127,0,0,191,255,253,0,0,0,127,1,111,255,255,255,249,64,0,127,15,255,254,1,255,255,224,0,127,3,255,208,0,11,255,192,0,126,3,228,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x4fdd 保 + 221,79,34,35,59,36,1,252,0,0,80,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,253,63,255,255,255,253,0,0,2,252,63,255,255,255,253,0,0,3,244,63,255,255,255,253,0,0,11,240,63,0,0,0,253,0,0,15,208,63,0,0,0,253,0,0,47,192,63,0,0,0,253,0,0,127,128,63,0,0,0,253,0,0,255,64,63,0,0,0,253,0,2,255,64,63,0,0,0,253,0,7,255,64,63,255,255,255,253,0,31,255,64,63,255,255,255,253,0,63,255,64,63,255,255,255,253,0,255,191,64,0,0,254,0,0,0,127,63,64,0,0,254,0,0,0,60,63,64,0,0,254,0,0,0,16,63,64,0,0,254,0,0,0,0,63,75,255,255,255,255,255,208,0,63,75,255,255,255,255,255,208,0,63,75,255,255,255,255,255,208,0,63,64,0,15,255,224,0,0,0,63,64,0,47,255,244,0,0,0,63,64,0,127,255,252,0,0,0,63,64,1,254,254,191,0,0,0,63,64,7,252,254,63,192,0,0,63,64,31,240,254,15,240,0,0,63,64,127,192,254,7,252,0,0,63,66,255,64,254,2,255,64,0,63,95,253,0,254,0,191,224,0,63,79,240,0,254,0,47,224,0,63,71,128,0,254,0,7,128,0,63,64,0,0,254,0,0,0,0,63,64,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4fe1 信 + 225,79,34,34,50,36,1,253,0,0,184,0,0,0,0,0,0,0,0,254,10,170,170,170,160,0,0,1,252,15,255,255,255,244,0,0,3,248,15,255,255,255,244,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,199,255,255,255,255,255,224,0,191,71,255,255,255,255,255,224,1,255,71,255,255,255,255,255,208,3,255,64,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,47,255,64,47,255,255,255,252,0,191,255,64,47,255,255,255,252,0,255,127,64,26,170,170,170,168,0,125,63,64,0,0,0,0,0,0,56,63,64,0,0,0,0,0,0,0,63,64,47,255,255,255,252,0,0,63,64,47,255,255,255,252,0,0,63,64,26,170,170,170,168,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,42,170,170,170,168,0,0,63,64,63,255,255,255,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,170,170,170,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,0,0,0,253,0,0,42,0,63,0,0,0,168,0, + // 0x503c 值 + 60,80,34,34,50,36,1,253,0,0,144,0,0,170,0,0,0,0,1,252,0,0,254,0,0,0,0,2,252,0,0,253,0,0,0,0,3,244,0,0,253,0,0,0,0,7,243,255,255,255,255,255,64,0,15,227,255,255,255,255,255,64,0,47,195,255,255,255,255,255,64,0,63,128,0,2,244,0,0,0,0,191,0,0,3,240,0,0,0,1,254,0,42,171,250,170,160,0,3,254,0,63,255,255,255,244,0,11,254,0,63,255,255,255,244,0,31,254,0,62,0,0,2,244,0,63,254,0,62,0,0,2,244,0,191,254,0,62,0,0,2,244,0,127,126,0,63,255,255,255,244,0,44,126,0,63,255,255,255,244,0,20,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,31,255,255,255,255,255,208,0,126,47,255,255,255,255,255,208,0,126,47,255,255,255,255,255,208,0,126,0,0,0,0,0,0,0, + // 0x503e 倾 + 62,80,34,35,59,36,1,252,0,10,64,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,31,192,0,63,255,255,255,208,0,47,128,0,63,255,255,255,208,0,63,15,192,63,255,255,255,208,0,127,15,192,0,2,252,0,0,0,253,15,192,0,3,244,0,0,1,252,15,192,0,3,240,0,0,3,252,15,192,11,255,255,255,0,7,252,15,192,11,255,255,255,0,15,252,15,192,11,255,255,255,0,47,252,15,255,203,208,0,63,0,63,252,15,255,203,208,80,63,0,255,252,15,255,203,209,244,63,0,253,252,15,192,11,209,244,63,0,188,252,15,192,11,209,244,63,0,48,252,15,192,11,209,244,63,0,16,252,15,192,11,209,244,63,0,0,252,15,192,11,209,244,63,0,0,252,15,192,11,209,244,63,0,0,252,15,192,11,209,244,63,0,0,252,15,193,139,209,240,63,0,0,252,15,223,203,210,240,63,0,0,252,15,255,203,210,240,63,0,0,252,31,255,11,211,240,63,0,0,252,63,244,6,135,224,21,0,0,252,31,128,0,15,213,0,0,0,252,12,0,0,31,207,128,0,0,252,0,0,0,127,95,240,0,0,252,0,0,1,254,7,253,0,0,252,0,0,11,252,0,255,128,0,252,0,0,127,224,0,47,208,0,252,0,0,191,64,0,11,192,0,252,0,0,56,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,34,34,50,36,1,253,0,2,64,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,231,255,255,255,255,255,208,0,15,215,255,255,255,255,255,208,0,31,199,255,255,255,255,255,208,0,63,128,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,191,0,255,255,255,255,255,0,0,253,0,255,255,255,255,255,0,3,253,0,254,170,170,170,191,0,7,253,0,252,0,0,0,127,0,15,253,0,252,0,0,0,127,0,47,253,0,252,0,0,0,127,0,127,253,0,255,255,255,255,255,0,255,253,0,255,255,255,255,255,0,254,189,0,254,170,170,170,170,0,124,189,0,252,0,0,0,0,0,48,189,0,252,0,0,0,0,0,0,189,1,255,255,255,255,255,128,0,189,1,255,255,255,255,255,128,0,189,2,255,235,250,254,175,128,0,189,2,255,194,240,124,31,128,0,189,3,255,194,240,124,31,128,0,189,3,255,194,240,124,31,128,0,189,7,255,235,250,254,175,128,0,189,11,239,255,255,255,255,128,0,189,15,223,255,255,255,255,128,0,189,31,207,194,240,124,31,128,0,189,63,143,194,240,124,31,128,0,189,127,15,194,240,124,31,128,0,189,254,15,194,240,124,31,128,0,189,60,15,194,240,125,255,128,0,189,4,15,194,240,124,255,64,0,189,0,15,129,160,104,253,0, + // 0x505c 停 + 92,80,34,34,50,36,1,253,0,0,144,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,0,3,252,0,0,253,0,0,0,0,3,251,255,255,255,255,255,208,0,11,247,255,255,255,255,255,208,0,15,215,255,255,255,255,255,208,0,63,192,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,63,255,255,255,248,0,2,255,0,63,255,255,255,248,0,7,255,0,63,85,85,86,248,0,15,255,0,63,64,0,2,248,0,63,255,0,63,64,0,2,248,0,255,255,0,63,255,255,255,248,0,255,127,0,63,255,255,255,248,0,188,127,0,21,85,85,85,80,0,52,127,0,0,0,0,0,0,0,16,127,10,170,170,170,170,170,144,0,127,15,255,255,255,255,255,224,0,127,15,255,255,255,255,255,224,0,127,15,192,0,0,0,7,224,0,127,15,192,0,0,0,7,224,0,127,15,198,170,170,170,151,224,0,127,15,203,255,255,255,215,224,0,127,0,11,255,255,255,208,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,3,255,253,0,0,0,0,127,0,1,255,252,0,0,0,0,126,0,0,255,224,0,0,0, + // 0x50a8 储 + 168,80,34,34,50,36,1,253,0,15,64,0,0,47,64,0,0,0,15,192,0,0,63,64,14,64,0,31,130,0,0,63,64,31,192,0,47,95,192,0,63,64,63,64,0,63,15,224,63,255,255,127,0,0,126,3,248,63,255,255,254,0,0,253,1,253,63,255,255,252,0,0,252,0,189,0,63,67,248,0,2,248,0,48,0,63,75,240,0,3,248,0,0,0,63,79,208,0,11,248,0,0,0,63,127,192,0,15,248,0,0,255,255,255,255,208,47,248,255,240,255,255,255,255,208,127,248,255,240,255,255,255,255,208,255,248,255,240,0,31,240,0,0,189,248,2,240,0,127,192,0,0,56,248,2,240,1,255,64,0,0,32,248,2,240,11,253,0,0,0,0,248,2,240,63,255,255,255,0,0,248,2,241,255,255,255,255,0,0,248,2,242,255,250,170,191,0,0,248,2,240,255,240,0,63,0,0,248,2,240,19,240,0,63,0,0,248,2,240,3,249,85,127,0,0,248,2,240,3,255,255,255,0,0,248,2,240,3,255,255,255,0,0,248,2,242,227,240,0,63,0,0,248,3,255,243,240,0,63,0,0,248,3,255,211,240,0,63,0,0,248,15,254,3,250,170,191,0,0,248,11,244,3,255,255,255,0,0,248,3,128,3,255,255,255,0,0,248,0,0,3,240,0,63,0,0,248,0,0,2,240,0,42,0, + // 0x50cf 像 + 207,80,34,34,50,36,1,253,0,2,64,1,164,0,0,0,0,0,7,240,3,248,0,0,0,0,0,11,240,11,249,85,144,0,0,0,15,208,31,255,255,248,0,0,0,31,192,63,255,255,244,0,0,0,63,128,255,0,11,240,0,0,0,63,66,253,0,31,208,0,0,0,191,11,253,85,127,213,85,0,0,254,63,255,255,255,255,255,0,3,253,127,255,255,255,255,255,0,7,253,11,240,0,252,0,63,0,15,253,3,240,0,252,0,63,0,47,253,3,240,0,252,0,63,0,191,253,3,255,255,255,255,255,0,255,253,3,255,255,255,255,255,0,188,189,1,85,191,219,229,85,0,120,189,0,2,255,7,224,1,0,32,189,0,111,255,3,240,15,64,0,189,11,255,239,194,244,127,192,0,189,47,253,15,225,249,255,0,0,189,11,144,47,244,255,252,0,0,189,0,1,255,252,255,224,0,0,189,0,31,248,253,127,64,0,0,189,1,255,192,190,63,64,0,0,189,31,253,2,255,47,192,0,0,189,15,224,11,255,15,224,0,0,189,1,0,127,255,75,240,0,0,189,0,2,255,63,67,252,0,0,189,0,47,248,63,64,255,0,0,189,2,255,208,63,0,191,208,0,189,63,253,0,191,0,47,192,0,189,47,225,255,253,0,11,64,0,189,10,0,255,248,0,1,0,0,189,0,0,255,208,0,0,0, + // 0x5145 充 + 69,81,33,35,59,36,2,252,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,15,240,0,20,0,0,0,0,0,31,208,0,124,0,0,0,0,0,63,192,1,255,64,0,0,0,0,63,64,0,127,208,0,0,0,0,191,0,0,31,244,0,0,0,0,253,0,0,7,253,0,0,0,2,254,170,255,255,255,64,0,31,255,255,255,255,255,255,208,0,31,255,255,255,255,255,255,240,0,31,255,255,234,149,80,7,252,0,9,80,0,0,0,0,2,248,0,0,0,31,192,3,240,0,208,0,0,0,47,192,3,240,0,0,0,0,0,63,192,3,240,0,0,0,0,0,63,128,3,240,0,0,0,0,0,63,128,3,240,0,0,0,0,0,127,64,3,240,0,0,0,0,0,191,0,3,240,0,16,0,0,0,255,0,3,240,0,46,0,0,2,253,0,3,240,0,47,64,0,7,252,0,3,240,0,47,64,0,31,244,0,3,240,0,47,64,0,191,224,0,3,240,0,63,0,27,255,128,0,3,248,0,127,0,255,253,0,0,3,255,255,255,0,191,224,0,0,1,255,255,253,0,62,0,0,0,0,127,255,244,0,0,0,0,0,0,0,0,0,0, + // 0x5148 先 + 72,81,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,11,144,11,224,0,0,0,0,15,224,11,224,0,0,0,0,15,208,11,224,0,0,0,0,31,192,11,224,0,0,0,0,63,192,11,240,0,0,0,0,63,255,255,255,255,255,192,0,191,255,255,255,255,255,192,0,255,255,255,255,255,255,192,1,252,0,11,224,0,0,0,3,248,0,11,224,0,0,0,11,240,0,11,224,0,0,0,15,224,0,11,224,0,0,0,3,192,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,0,0,11,240,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,63,128,3,240,0,0,0,0,63,64,3,240,0,0,0,0,63,64,3,240,0,0,0,0,127,0,3,240,0,0,0,0,191,0,3,240,0,0,0,0,254,0,3,240,0,0,0,2,252,0,3,240,0,52,0,7,252,0,3,240,0,63,0,15,240,0,3,240,0,63,0,127,224,0,3,240,0,63,2,255,192,0,3,244,0,191,111,254,0,0,3,255,255,254,255,248,0,0,2,255,255,252,63,192,0,0,0,191,255,244,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,34,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,1,0,0,0,109,0,3,248,0,7,224,0,0,255,0,3,248,0,15,240,0,0,127,64,3,248,0,15,224,0,0,63,192,3,248,0,47,192,0,0,31,208,3,248,0,63,128,0,0,15,240,3,248,0,127,0,0,0,7,244,3,248,0,254,0,0,0,3,248,3,248,2,252,0,0,0,2,252,3,248,3,248,0,0,0,1,208,3,248,0,96,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,15,240,0,252,0,0,0,0,0,15,224,0,252,0,0,0,0,0,15,208,0,252,0,0,0,0,0,15,208,0,252,0,0,0,0,0,31,192,0,252,0,0,0,0,0,47,192,0,252,0,0,0,0,0,63,192,0,252,0,0,0,0,0,127,64,0,252,0,0,0,0,0,255,0,0,252,0,10,0,0,2,254,0,0,252,0,11,208,0,7,252,0,0,252,0,11,208,0,31,244,0,0,252,0,15,208,0,191,224,0,0,252,0,15,192,27,255,128,0,0,253,0,31,192,127,254,0,0,0,255,255,255,128,47,240,0,0,0,191,255,255,64,14,0,0,0,0,31,255,253,0,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,34,32,32,36,1,253,0,2,255,255,252,0,0,0,0,0,2,255,255,252,0,0,0,0,0,2,255,255,252,0,0,0,0,0,1,85,85,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,5,255,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,63,223,192,0,0,0,0,0,0,127,79,224,0,0,0,0,0,0,255,11,240,0,0,0,0,0,1,254,7,248,0,0,0,0,0,3,253,3,252,0,0,0,0,0,7,252,2,254,0,0,0,0,0,15,244,0,255,0,0,0,0,0,31,240,0,191,192,0,0,0,0,63,192,0,63,224,0,0,0,0,255,128,0,31,244,0,0,0,2,255,0,0,11,252,0,0,0,11,253,0,0,3,255,0,0,0,47,244,0,0,0,255,208,0,0,191,224,0,0,0,127,244,0,3,255,128,0,0,0,31,254,0,47,254,0,0,0,0,7,255,208,127,248,0,0,0,0,0,255,192,15,208,0,0,0,0,0,47,0,2,0,0,0,0,0,0,5,0, + // 0x5168 全 + 104,81,34,33,41,36,1,254,0,0,0,7,252,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,127,191,192,0,0,0,0,0,1,255,15,240,0,0,0,0,0,7,252,7,252,0,0,0,0,0,15,240,1,255,0,0,0,0,0,63,208,0,127,192,0,0,0,1,255,64,0,31,244,0,0,0,7,252,0,0,3,254,0,0,0,47,240,0,0,0,255,192,0,0,255,192,0,0,0,47,244,0,11,254,0,0,0,0,7,255,0,63,255,255,255,255,255,255,255,208,127,235,255,255,255,255,254,191,192,31,71,255,255,255,255,254,31,64,8,0,0,3,248,0,0,1,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64, + // 0x5171 共 + 113,81,32,34,16,36,2,253,0,0,168,0,0,42,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,1,253,0,0,191,64,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,85,85,254,85,85,191,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,120,0,0,0,0,255,128,3,255,0,0,0,3,255,0,0,255,208,0,0,15,252,0,0,47,248,0,0,127,240,0,0,11,255,0,2,255,192,0,0,1,255,192,31,254,0,0,0,0,127,240,127,244,0,0,0,0,15,253,47,208,0,0,0,0,3,248,10,0,0,0,0,0,0,144, + // 0x5173 关 + 115,81,26,35,245,36,5,252,0,4,0,0,3,128,0,0,188,0,0,11,244,0,0,255,0,0,15,240,0,0,63,128,0,31,208,0,0,47,192,0,63,128,0,0,15,240,0,191,0,0,0,7,240,0,253,0,0,0,3,64,0,24,0,0,11,255,255,255,255,254,0,11,255,255,255,255,254,0,11,255,255,255,255,254,0,0,0,3,248,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,63,255,255,255,255,255,192,63,255,255,255,255,255,192,63,255,255,255,255,255,192,0,0,7,254,0,0,0,0,0,11,255,0,0,0,0,0,15,255,64,0,0,0,0,31,255,192,0,0,0,0,63,207,208,0,0,0,0,191,75,244,0,0,0,1,255,3,252,0,0,0,7,252,1,255,0,0,0,47,244,0,191,208,0,1,255,208,0,63,248,0,31,255,64,0,15,255,208,191,252,0,0,2,255,208,63,208,0,0,0,127,128,13,0,0,0,0,6,0,0,0,0,0,0,0,0, + // 0x5177 具 + 119,81,32,33,8,36,2,253,0,26,170,170,170,170,168,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,149,85,85,86,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,149,85,85,86,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,26,170,170,170,170,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,4,0,0,0,0,0,0,0,63,0,0,184,0,0,0,2,255,192,3,255,208,0,0,127,255,64,1,255,254,0,11,255,248,0,0,31,255,228,255,255,64,0,0,0,191,254,63,228,0,0,0,0,11,252,13,0,0,0,0,0,0,160, + // 0x5197 冗 + 151,81,33,32,32,36,2,253,21,85,85,85,85,85,85,84,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,0,0,255,255,255,255,0,0,0,0,0,255,255,255,255,0,0,0,0,0,255,255,255,255,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,1,252,0,0,191,0,0,0,0,2,252,0,0,191,0,0,0,0,3,252,0,0,191,0,40,0,0,11,244,0,0,191,0,47,64,0,15,240,0,0,191,0,47,64,0,63,208,0,0,191,0,63,64,1,255,192,0,0,191,0,63,64,11,255,0,0,0,191,0,127,0,191,252,0,0,0,191,255,255,0,255,224,0,0,0,63,255,254,0,127,64,0,0,0,31,255,248,0,36,0,0,0,0,0,85,64,0, + // 0x51b7 冷 + 183,81,34,34,50,36,1,253,0,0,0,0,7,244,0,0,0,0,0,0,0,15,252,0,0,0,7,0,0,0,47,255,0,0,0,31,208,0,0,63,255,128,0,0,63,244,0,0,255,47,208,0,0,15,254,0,3,253,15,244,0,0,2,255,128,11,248,3,253,0,0,0,191,192,47,240,1,255,64,0,0,47,64,191,192,0,127,224,0,0,9,2,255,0,0,31,248,0,0,0,11,252,0,0,7,255,64,0,0,63,255,255,255,253,255,224,0,1,255,203,255,255,252,63,208,0,1,255,11,255,255,252,11,128,0,0,184,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,255,255,255,255,252,0,0,15,211,255,255,255,255,252,0,0,31,227,255,255,255,255,252,0,0,63,192,0,63,128,1,252,0,0,191,64,0,63,128,1,252,0,0,255,0,0,63,128,1,252,0,3,252,0,0,63,128,1,252,0,11,248,0,0,63,128,1,252,0,31,240,0,0,63,128,1,252,0,63,208,0,0,63,130,255,252,0,127,128,0,0,63,129,255,248,0,31,0,0,0,63,128,255,224,0,5,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,47,64,0,0,0, + // 0x51c6 准 + 198,81,34,34,50,36,1,253,0,0,0,0,228,0,100,0,0,0,0,0,2,252,0,191,0,0,2,0,0,3,248,0,254,0,0,15,208,0,7,240,0,252,0,0,31,248,0,15,224,1,252,0,0,7,255,0,31,208,3,244,0,0,0,255,192,63,192,3,240,0,0,0,47,224,127,255,255,255,255,128,0,11,192,255,255,255,255,255,128,0,2,2,255,255,255,255,255,128,0,0,7,255,64,15,208,0,0,0,0,15,255,64,15,192,0,0,0,0,63,255,64,15,192,0,0,0,0,255,255,64,15,192,0,0,0,0,127,63,255,255,255,255,0,0,0,28,63,255,255,255,255,0,0,0,0,63,255,255,255,255,0,0,0,0,63,64,15,192,0,0,0,1,0,63,64,15,192,0,0,0,11,64,63,64,15,192,0,0,0,15,192,63,64,15,192,0,0,0,47,192,63,64,15,192,0,0,0,127,128,63,255,255,255,255,0,0,255,0,63,255,255,255,255,0,2,253,0,63,255,255,255,255,0,3,252,0,63,64,15,192,0,0,15,240,0,63,64,15,192,0,0,47,224,0,63,64,15,192,0,0,127,192,0,63,64,15,192,0,0,63,0,0,63,255,255,255,255,224,10,0,0,63,255,255,255,255,224,0,0,0,63,255,255,255,255,224,0,0,0,63,64,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x51fa 出 + 250,81,28,35,245,36,4,252,0,0,0,169,0,0,0,0,0,0,253,0,0,0,0,0,0,253,0,0,0,26,64,0,253,0,1,164,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,255,255,255,255,255,248,47,255,255,255,255,255,248,47,255,255,255,255,255,248,0,0,0,254,0,0,0,0,0,0,253,0,0,0,84,0,0,253,0,0,21,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,254,85,85,254,85,85,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,0,0,0,0,0,127,253,0,0,0,0,0,127,0,0,0,0,0,0,0, + // 0x51fb 击 + 251,81,32,34,16,36,2,253,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,1,85,85,91,245,85,85,64,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,21,85,85,91,245,85,85,84,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,252,0,11,240,0,47,192,3,253,85,91,245,85,127,192,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192, + // 0x5206 分 + 6,82,34,34,50,36,1,252,0,0,15,144,0,47,0,0,0,0,0,31,224,0,191,64,0,0,0,0,63,192,0,63,192,0,0,0,0,127,192,0,31,224,0,0,0,0,255,64,0,15,244,0,0,0,2,254,0,0,7,252,0,0,0,7,252,0,0,2,255,0,0,0,15,244,0,0,0,255,128,0,0,63,240,0,0,0,63,224,0,0,255,192,0,0,0,47,244,0,3,255,64,0,0,0,11,253,0,15,253,0,0,0,0,3,255,128,127,253,85,85,85,85,85,255,224,255,223,255,255,255,255,255,127,208,63,79,255,255,255,255,255,15,64,13,15,255,255,255,255,255,1,0,0,0,0,127,0,0,127,0,0,0,0,0,191,0,0,127,0,0,0,0,0,255,0,0,127,0,0,0,0,0,254,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,2,252,0,0,191,0,0,0,0,3,252,0,0,191,0,0,0,0,7,248,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,63,224,0,0,254,0,0,0,0,191,192,0,0,253,0,0,0,3,255,64,0,1,253,0,0,0,31,253,0,0,2,252,0,0,1,255,244,0,21,23,252,0,0,15,255,208,0,63,255,248,0,0,7,254,0,0,63,255,240,0,0,2,224,0,0,47,255,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x5207 切 + 7,82,33,33,41,36,1,253,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,47,255,255,255,255,192,0,190,0,47,255,255,255,255,192,0,190,0,47,255,255,255,255,192,0,190,0,0,3,248,0,47,192,0,190,0,0,2,248,0,47,128,0,190,0,24,3,248,0,47,128,0,190,27,253,3,248,0,47,128,0,255,255,254,3,244,0,63,128,127,255,255,253,3,244,0,63,128,191,255,249,0,3,244,0,63,128,191,254,0,0,3,244,0,63,128,100,190,0,0,3,244,0,63,128,0,190,0,0,3,240,0,63,64,0,190,0,0,7,240,0,63,64,0,190,0,0,7,240,0,63,64,0,190,0,0,11,240,0,63,64,0,190,0,224,15,224,0,63,64,0,190,0,252,15,208,0,63,64,0,190,0,252,31,192,0,63,0,0,190,0,252,47,192,0,127,0,0,191,65,252,63,128,0,127,0,0,191,255,248,191,0,0,127,0,0,63,255,240,255,0,0,191,0,0,31,255,210,253,0,0,191,0,0,0,0,7,248,0,0,254,0,0,0,0,31,240,0,0,254,0,0,0,0,127,208,0,2,253,0,0,0,3,255,128,31,255,252,0,0,0,7,254,0,15,255,244,0,0,0,1,244,0,11,255,224,0,0,0,0,128,0,1,84,0,0, + // 0x521b 创 + 27,82,32,34,16,36,1,253,0,0,14,0,0,0,0,21,0,0,47,192,0,0,0,127,0,0,63,128,0,0,0,127,0,0,191,208,0,0,0,127,0,1,255,244,0,10,128,127,0,3,255,252,0,31,192,127,0,11,240,255,0,31,192,127,0,31,208,63,192,31,192,127,0,127,128,31,240,31,192,127,0,255,0,7,248,31,192,127,3,252,0,2,253,31,192,127,31,240,0,0,255,31,192,127,127,208,0,0,63,31,192,127,127,255,255,255,252,31,192,127,30,255,255,255,228,31,192,127,0,255,255,255,208,31,192,127,0,253,0,15,208,31,192,127,0,253,0,15,208,31,192,127,0,253,0,15,208,31,192,127,0,253,0,15,192,31,192,127,0,253,0,15,192,31,192,127,0,253,0,31,192,31,192,127,0,253,0,47,192,31,192,127,0,253,31,255,128,31,192,127,0,253,15,255,0,31,192,127,0,253,10,164,0,0,0,127,0,253,0,0,57,0,0,127,0,253,0,0,63,0,0,127,0,253,0,0,63,0,0,127,0,254,0,0,190,0,0,127,0,191,255,255,253,0,0,191,0,63,255,255,252,7,255,254,0,27,255,255,224,3,255,253,0,0,0,0,0,3,255,224, + // 0x521d 初 + 29,82,33,34,50,36,1,253,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,15,255,255,255,255,192,0,15,192,15,255,255,255,255,192,0,15,192,15,255,255,255,255,192,0,15,208,0,2,252,0,47,192,63,255,255,208,1,252,0,47,128,63,255,255,240,2,252,0,47,128,63,255,255,208,2,252,0,47,128,0,0,31,192,2,252,0,63,128,0,0,63,64,2,248,0,63,128,0,0,191,0,2,248,0,63,128,0,0,253,16,3,248,0,63,128,0,3,248,120,3,248,0,63,128,0,11,240,253,3,244,0,63,128,0,31,242,244,3,244,0,63,64,0,63,255,224,7,240,0,63,64,0,255,255,128,7,240,0,63,64,3,255,255,128,11,224,0,63,64,15,255,239,224,15,224,0,63,64,127,239,199,248,15,208,0,63,64,191,143,194,244,47,192,0,63,0,62,15,192,224,63,128,0,127,0,40,15,192,0,127,64,0,127,0,0,15,192,0,255,0,0,127,0,0,15,192,1,253,0,0,191,0,0,15,192,7,252,0,0,254,0,0,15,192,15,244,0,0,254,0,0,15,192,63,224,0,2,253,0,0,15,193,255,192,15,255,252,0,0,15,193,255,0,15,255,248,0,0,15,192,124,0,11,255,224,0,0,15,192,16,0,1,84,0,0, + // 0x522b 别 + 43,82,32,34,16,36,1,252,0,0,0,0,0,0,0,127,11,255,255,255,192,0,0,127,11,255,255,255,192,0,0,127,11,255,255,255,192,0,0,127,11,208,0,31,192,63,64,127,11,208,0,31,192,63,64,127,11,208,0,31,192,63,64,127,11,208,0,31,192,63,64,127,11,208,0,31,192,63,64,127,11,208,0,31,192,63,64,127,11,255,255,255,192,63,64,127,11,255,255,255,192,63,64,127,11,255,255,255,192,63,64,127,0,0,0,0,0,63,64,127,0,3,240,0,0,63,64,127,0,3,240,0,0,63,64,127,0,3,240,0,0,63,64,127,63,255,255,255,224,63,64,127,63,255,255,255,208,63,64,127,63,255,255,255,208,63,64,127,0,7,224,15,208,63,64,127,0,11,224,15,208,63,64,127,0,15,208,15,208,63,64,127,0,15,192,15,192,63,64,127,0,31,192,15,192,0,0,127,0,63,128,15,192,0,0,127,0,127,0,31,192,0,0,127,0,254,0,31,192,0,0,127,3,252,0,47,192,0,0,127,15,244,0,63,128,1,85,255,127,224,63,255,64,3,255,254,63,128,47,255,0,2,255,253,13,0,47,248,0,1,255,224,0,0,0,0,0,0,0,0, + // 0x5230 到 + 48,82,32,33,8,36,1,253,0,0,0,0,0,0,0,63,63,255,255,255,252,0,0,63,63,255,255,255,252,0,0,63,63,255,255,255,252,126,0,63,0,15,240,0,0,126,0,63,0,15,208,0,0,126,0,63,0,47,192,60,0,126,0,63,0,63,192,254,0,126,0,63,0,63,64,63,64,126,0,63,0,127,0,47,192,126,0,63,0,254,0,15,240,126,0,63,63,255,255,255,244,126,0,63,63,255,255,255,252,126,0,63,63,255,255,255,253,126,0,63,5,85,0,0,126,126,0,63,0,0,190,0,32,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,15,255,255,255,240,126,0,63,15,255,255,255,240,126,0,63,15,255,255,255,240,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,0,0,63,0,0,190,0,0,0,0,63,0,0,190,0,88,0,0,63,0,0,191,255,252,0,0,63,26,255,255,255,252,0,0,63,127,255,255,255,248,1,85,191,127,255,250,80,0,3,255,255,62,148,0,0,0,1,255,253,0,0,0,0,0,0,255,228, + // 0x5236 制 + 54,82,33,34,50,36,1,253,0,0,47,0,0,0,0,21,0,1,248,63,64,0,0,0,63,64,2,248,63,64,0,0,0,63,64,3,244,63,64,0,3,224,63,64,3,240,63,64,0,3,240,63,64,7,255,255,255,252,3,240,63,64,15,255,255,255,252,3,240,63,64,31,255,255,255,252,3,240,63,64,47,192,63,64,0,3,240,63,64,63,64,63,64,0,3,240,63,64,127,0,63,64,0,3,240,63,64,10,0,63,64,0,3,240,63,64,127,255,255,255,255,131,240,63,64,127,255,255,255,255,131,240,63,64,127,255,255,255,255,131,240,63,64,0,0,63,64,0,3,240,63,64,0,0,63,64,0,3,240,63,64,0,0,63,64,0,3,240,63,64,15,255,255,255,254,3,240,63,64,15,255,255,255,254,3,240,63,64,15,255,255,255,254,3,240,63,64,15,192,63,64,190,3,240,63,64,15,192,63,64,190,3,240,63,64,15,192,63,64,190,2,160,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,95,253,0,0,63,64,15,192,63,79,252,0,0,63,64,15,192,63,79,228,0,85,127,64,0,0,63,64,0,0,255,255,0,0,0,63,64,0,0,191,254,0,0,0,63,64,0,0,63,228,0, + // 0x5237 刷 + 55,82,32,34,16,36,1,253,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,63,7,255,255,255,254,0,0,63,7,255,255,255,254,5,64,63,7,255,255,255,254,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,255,255,255,254,15,192,63,7,255,255,255,254,15,192,63,7,255,255,255,254,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,239,255,255,255,15,192,63,7,239,255,255,255,15,192,63,7,239,255,255,255,15,192,63,7,239,67,240,63,15,192,63,11,223,67,240,63,15,192,63,11,223,67,240,63,15,192,63,11,223,67,240,63,15,192,63,15,207,67,240,63,15,192,63,15,207,67,240,63,10,128,63,15,207,67,240,63,0,0,63,31,143,67,240,63,0,0,63,31,143,67,247,254,0,0,63,63,79,67,243,253,0,0,63,63,15,67,241,160,0,0,63,190,0,3,240,0,0,85,191,189,0,3,240,0,0,255,255,28,0,3,240,0,0,191,254,0,0,3,240,0,0,127,228, + // 0x5272 割 + 114,82,31,34,16,36,2,253,0,1,248,0,0,0,0,84,0,1,252,0,0,0,0,252,0,1,252,0,0,0,0,252,170,171,254,170,164,0,0,252,255,255,255,255,248,127,0,252,255,255,255,255,248,127,0,252,252,0,0,1,248,127,0,252,252,1,252,1,248,127,0,252,252,1,252,1,248,127,0,252,15,255,255,255,192,127,0,252,15,255,255,255,192,127,0,252,5,86,253,85,64,127,0,252,0,1,252,0,0,127,0,252,5,86,253,85,0,127,0,252,15,255,255,255,64,127,0,252,15,255,255,255,64,127,0,252,0,1,252,0,0,127,0,252,0,1,252,0,0,127,0,252,170,170,254,170,160,127,0,252,255,255,255,255,244,127,0,252,255,255,255,255,244,127,0,252,0,0,0,0,0,127,0,252,6,170,170,170,64,127,0,252,15,255,255,255,192,127,0,252,15,255,255,255,192,0,0,252,15,192,0,31,192,0,0,252,15,192,0,31,192,0,0,252,15,192,0,31,192,0,0,252,15,192,0,31,192,0,0,252,15,234,170,175,192,0,0,252,15,255,255,255,192,5,86,252,15,255,255,255,192,7,255,252,15,192,0,31,192,3,255,248,15,192,0,5,64,3,255,144, + // 0x529b 力 + 155,82,31,35,24,36,2,252,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,21,85,85,255,85,85,87,244,0,0,0,254,0,0,3,244,0,0,0,254,0,0,3,244,0,0,0,253,0,0,3,244,0,0,1,252,0,0,3,240,0,0,2,252,0,0,7,240,0,0,3,252,0,0,7,240,0,0,3,248,0,0,7,240,0,0,11,244,0,0,11,240,0,0,15,240,0,0,11,240,0,0,31,224,0,0,11,240,0,0,63,192,0,0,15,224,0,0,191,192,0,0,15,224,0,0,255,0,0,0,15,208,0,3,254,0,0,0,15,208,0,11,252,0,0,0,31,192,0,47,244,0,0,0,47,192,0,191,208,0,0,0,63,192,3,255,128,0,0,0,63,128,31,254,0,0,21,85,255,64,191,244,0,0,15,255,255,0,127,208,0,0,15,255,253,0,30,0,0,0,11,255,224,0,0,0,0,0,0,0,0,0, + // 0x529f 功 + 159,82,33,34,50,36,1,253,0,0,0,0,0,84,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,63,255,255,240,0,253,0,0,0,63,255,255,240,0,253,0,0,0,63,255,255,240,0,253,0,0,0,0,31,208,0,0,253,0,0,0,0,15,192,11,255,255,255,255,128,0,15,192,11,255,255,255,255,128,0,15,192,11,255,255,255,255,128,0,15,192,0,1,253,0,47,128,0,15,192,0,1,252,0,47,128,0,15,192,0,1,252,0,47,128,0,15,192,0,2,252,0,63,64,0,15,192,0,2,248,0,63,64,0,15,192,0,3,248,0,63,64,0,15,192,0,3,244,0,63,64,0,15,192,0,3,244,0,63,64,0,15,192,0,7,240,0,63,64,0,15,193,184,11,240,0,63,0,0,15,255,252,15,224,0,63,0,0,111,255,252,31,208,0,63,0,111,255,255,224,63,192,0,127,0,127,255,228,0,127,128,0,127,0,63,249,0,0,255,0,0,191,0,57,0,0,2,254,0,0,190,0,0,0,0,11,252,0,0,254,0,0,0,0,47,240,0,0,253,0,0,0,0,191,208,0,2,252,0,0,0,7,255,128,31,255,252,0,0,0,7,254,0,15,255,244,0,0,0,1,244,0,15,255,208,0,0,0,0,64,0,0,0,0,0, + // 0x52a0 加 + 160,82,32,34,16,36,1,253,0,5,64,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,2,255,255,255,21,95,213,85,2,255,255,255,63,255,255,255,194,255,255,255,63,255,255,255,194,248,0,191,63,255,255,255,194,248,0,191,0,31,192,31,194,248,0,191,0,31,192,31,130,248,0,191,0,47,128,31,130,248,0,191,0,47,128,47,130,248,0,191,0,47,128,47,130,248,0,191,0,47,128,47,130,248,0,191,0,63,64,47,130,248,0,191,0,63,64,47,130,248,0,191,0,63,0,47,130,248,0,191,0,63,0,47,130,248,0,191,0,127,0,47,130,248,0,191,0,190,0,63,66,248,0,191,0,190,0,63,66,248,0,191,0,253,0,63,66,248,0,191,1,252,0,63,66,248,0,191,2,252,0,63,66,248,0,191,3,244,0,63,2,248,0,191,7,240,0,63,2,248,0,191,15,240,0,127,2,255,255,255,31,208,0,255,2,255,255,255,63,193,255,254,2,255,255,255,191,64,255,252,2,248,0,191,46,0,255,244,2,248,0,191,8,0,20,0,1,84,0,0, + // 0x52a8 动 + 168,82,32,34,16,36,2,253,0,0,0,0,0,21,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,63,0,0,63,255,255,252,0,63,0,0,63,255,255,252,0,63,0,0,47,255,255,252,0,63,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,63,0,0,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0,0,127,0,191,255,255,255,254,0,127,0,127,255,255,255,254,0,190,0,127,255,255,255,254,0,190,0,190,0,127,0,0,0,190,0,190,0,190,0,0,0,253,0,190,0,253,0,0,0,253,0,190,0,252,7,208,0,252,0,190,1,252,3,240,1,252,0,190,2,248,3,240,2,252,0,253,3,240,1,248,2,248,0,253,7,240,0,252,3,244,0,253,15,208,1,253,7,240,0,253,15,197,191,254,11,240,0,253,63,255,255,255,15,224,0,252,191,255,254,127,95,208,1,252,127,254,64,46,127,192,1,252,62,64,0,0,191,64,2,252,0,0,0,1,255,0,3,248,0,0,0,3,253,47,255,244,0,0,0,7,248,15,255,240,0,0,0,0,240,15,255,128,0,0,0,0,64,0,0,0, + // 0x5316 化 + 22,83,34,33,41,36,1,253,0,0,47,128,190,0,0,0,0,0,0,63,192,190,0,0,0,0,0,0,191,64,190,0,0,0,0,0,0,255,0,190,0,0,0,0,0,2,253,0,190,0,0,0,0,0,3,252,0,190,0,0,0,0,0,15,240,0,190,0,0,48,0,0,31,224,0,190,0,0,252,0,0,63,208,0,190,0,7,255,0,0,255,208,0,190,0,47,253,0,3,255,208,0,190,1,255,240,0,11,255,208,0,190,11,255,64,0,47,255,208,0,190,127,248,0,0,191,239,208,0,191,255,208,0,0,255,143,208,0,191,253,0,0,0,127,15,208,0,191,224,0,0,0,60,15,208,0,191,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,7,128,0,15,208,0,190,0,0,11,224,0,15,208,0,190,0,0,11,224,0,15,208,0,190,0,0,11,208,0,15,208,0,191,0,0,15,208,0,15,208,0,127,64,0,47,192,0,15,208,0,63,255,255,255,192,0,15,208,0,63,255,255,255,64,0,15,208,0,11,255,255,253,0,0,10,128,0,0,0,0,0,0, + // 0x5347 升 + 71,83,32,35,24,36,2,252,0,0,0,1,0,5,0,0,0,0,0,31,64,47,128,0,0,0,2,255,208,47,128,0,0,0,111,255,208,47,128,0,0,31,255,253,0,47,128,0,27,255,255,144,0,47,128,0,191,255,252,0,0,47,128,0,63,250,252,0,0,47,128,0,41,0,252,0,0,47,128,0,0,0,252,0,0,47,128,0,0,0,252,0,0,47,128,0,0,0,252,0,0,47,128,0,0,0,252,0,0,47,128,0,0,0,252,0,0,47,128,0,0,1,253,0,0,63,128,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,1,252,0,0,47,128,0,0,2,252,0,0,47,128,0,0,2,248,0,0,47,128,0,0,3,248,0,0,47,128,0,0,3,244,0,0,47,128,0,0,7,240,0,0,47,128,0,0,15,240,0,0,47,128,0,0,31,224,0,0,47,128,0,0,63,192,0,0,47,128,0,0,191,128,0,0,47,128,0,2,255,0,0,0,47,128,0,11,253,0,0,0,47,128,0,63,244,0,0,0,47,128,0,255,208,0,0,0,47,128,0,127,64,0,0,0,47,128,0,24,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0, + // 0x534a 半 + 74,83,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,120,0,15,224,0,62,0,2,252,0,15,224,0,127,192,0,254,0,15,224,0,191,0,0,191,64,15,224,0,254,0,0,63,192,15,224,2,252,0,0,47,208,15,224,3,248,0,0,15,240,15,224,11,240,0,0,11,240,15,224,31,208,0,0,7,144,15,224,7,192,0,0,0,0,15,224,0,0,0,1,85,85,95,229,85,85,80,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,85,85,85,95,245,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x534f 协 + 79,83,33,34,50,36,2,253,1,248,0,0,26,64,0,0,0,1,248,0,0,47,128,0,0,0,1,248,0,0,47,128,0,0,0,1,248,0,0,47,128,0,0,0,1,248,0,0,47,128,0,0,0,1,248,0,0,47,128,0,0,0,1,248,0,0,47,128,0,0,0,1,248,2,255,255,255,255,0,0,2,252,2,255,255,255,255,0,0,255,255,246,255,255,255,255,0,0,255,255,244,0,63,128,127,0,0,255,255,244,0,63,64,127,0,0,1,248,0,0,63,64,127,0,0,1,248,0,0,63,0,127,0,0,1,248,2,244,63,0,127,248,0,1,248,3,240,63,0,127,252,0,1,248,3,240,127,0,127,189,0,1,248,7,224,190,0,126,126,0,1,248,15,208,254,0,126,63,0,1,248,15,192,253,0,190,63,0,1,248,47,129,252,0,190,47,64,1,248,63,3,248,0,190,47,128,1,248,126,3,244,0,190,31,128,1,248,12,11,240,0,189,15,192,1,248,0,31,224,0,253,4,0,1,248,0,63,192,0,253,0,0,1,248,0,127,128,0,252,0,0,1,248,1,255,0,0,252,0,0,1,248,3,253,0,1,252,0,0,1,248,15,248,0,3,252,0,0,1,248,63,240,31,255,244,0,0,1,248,127,192,15,255,240,0,0,1,248,31,0,11,255,128,0,0,1,164,4,0,0,0,0,0,0, + // 0x5355 单 + 85,83,32,34,16,36,2,253,0,0,144,0,0,2,64,0,0,7,240,0,0,11,244,0,0,3,252,0,0,15,240,0,0,1,254,0,0,47,208,0,0,0,191,64,0,63,128,0,0,0,63,128,0,255,0,0,2,170,191,170,171,255,170,128,2,255,255,255,255,255,255,192,2,255,255,255,255,255,255,192,2,248,0,15,224,0,31,192,2,248,0,15,224,0,31,192,2,248,0,15,224,0,31,192,2,254,170,175,250,170,191,192,2,255,255,255,255,255,255,192,2,255,255,255,255,255,255,192,2,248,0,15,224,0,31,192,2,248,0,15,224,0,31,192,2,248,0,15,224,0,31,192,2,255,255,255,255,255,255,192,2,255,255,255,255,255,255,192,2,255,255,255,255,255,255,192,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,11,224,0,0,0, + // 0x5361 卡 + 97,83,32,34,16,36,2,253,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,255,255,255,0,0,0,0,47,255,255,255,0,0,0,0,47,255,255,255,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,111,213,85,85,85,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,238,0,0,0,0,0,0,47,255,248,0,0,0,0,0,47,255,255,208,0,0,0,0,47,203,255,254,0,0,0,0,47,192,111,255,208,0,0,0,47,192,1,255,192,0,0,0,47,192,0,31,64,0,0,0,47,192,0,1,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x5370 印 + 112,83,30,34,16,36,3,253,0,0,6,0,0,0,0,0,0,0,127,192,0,0,0,0,0,7,255,224,85,85,85,80,17,191,255,145,255,255,255,240,127,255,248,1,255,255,255,240,127,254,64,1,255,255,255,240,127,144,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,64,0,1,252,0,3,240,127,255,255,209,252,0,3,240,127,255,255,209,252,0,3,240,127,255,255,209,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,255,255,225,252,0,7,240,127,255,255,225,252,15,255,240,127,255,255,225,252,11,255,240,127,64,0,1,252,7,255,192,127,0,0,1,252,2,148,0,127,0,0,1,252,0,0,0,21,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0, + // 0x5371 危 + 113,83,34,35,59,36,1,252,0,0,31,144,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,255,255,244,0,0,0,0,0,255,255,255,255,0,0,0,0,2,255,255,255,254,0,0,0,0,7,252,0,3,252,0,0,0,0,15,240,0,7,248,0,0,0,0,63,224,0,15,240,0,0,0,0,191,192,0,31,224,0,0,0,2,255,255,255,255,255,255,255,128,11,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,127,255,64,0,0,0,0,0,0,31,63,64,0,0,0,0,0,0,4,63,64,0,0,0,0,0,0,0,63,65,255,255,255,255,0,0,0,63,65,255,255,255,255,0,0,0,63,65,255,255,255,255,0,0,0,63,1,252,0,0,63,0,0,0,63,1,252,0,0,127,0,0,0,63,1,252,0,0,127,0,0,0,127,1,252,0,0,190,0,0,0,191,1,252,0,0,254,0,0,0,190,1,252,2,255,253,0,0,0,253,1,252,1,255,252,0,0,0,252,1,252,0,255,224,9,0,2,252,1,252,0,0,0,11,208,3,248,1,252,0,0,0,15,208,7,244,1,252,0,0,0,15,208,15,240,1,252,0,0,0,15,192,47,208,1,254,0,0,0,127,192,127,192,0,255,255,255,255,255,64,127,0,0,127,255,255,255,255,0,13,0,0,27,255,255,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x5374 却 + 116,83,32,34,16,36,1,253,0,0,252,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,252,0,2,255,255,255,0,0,252,0,2,255,255,255,0,0,252,0,2,255,255,255,0,0,252,0,2,248,0,127,15,255,255,255,194,248,0,127,15,255,255,255,194,248,0,127,15,255,255,255,194,248,0,127,0,0,252,0,2,248,0,127,0,0,252,0,2,248,0,127,0,0,252,0,2,248,0,127,0,0,252,0,2,248,0,127,0,0,252,0,2,248,0,127,191,255,255,255,242,248,0,127,191,255,255,255,242,248,0,127,191,255,255,255,242,248,0,127,0,15,224,0,2,248,0,127,0,31,208,0,2,248,0,127,0,47,192,0,2,248,0,127,0,63,128,16,2,248,0,127,0,63,65,244,2,248,0,127,0,127,1,252,2,248,0,127,0,254,0,253,2,248,0,127,0,252,0,127,2,248,21,191,1,252,0,63,130,248,63,255,3,249,90,255,194,248,47,253,111,255,255,255,210,248,31,228,127,255,255,255,242,248,0,0,127,255,233,67,242,248,0,0,37,64,0,3,246,248,0,0,0,0,0,1,66,248,0,0,0,0,0,0,2,248,0,0,0,0,0,0,2,248,0,0, + // 0x5378 卸 + 120,83,32,34,16,36,1,253,0,62,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,127,0,0,2,255,255,255,0,254,0,0,2,255,255,255,0,255,255,255,226,255,255,255,2,255,255,255,226,252,0,63,7,255,255,255,226,248,0,63,15,224,126,0,2,248,0,63,47,192,126,0,2,248,0,63,63,128,126,0,2,248,0,63,15,0,126,0,2,248,0,63,0,0,126,0,2,248,0,63,63,255,255,255,242,248,0,63,63,255,255,255,242,248,0,63,63,255,255,255,242,248,0,63,0,0,126,0,2,248,0,63,0,0,126,0,2,248,0,63,1,80,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,127,255,194,248,0,63,3,224,127,255,194,248,0,63,3,224,127,255,194,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,63,255,3,224,126,6,178,248,47,255,3,224,191,255,246,248,31,253,27,255,255,255,246,248,5,64,191,255,255,254,82,248,0,0,191,255,233,0,2,248,0,0,126,144,0,0,2,248,0,0,0,0,0,0,2,248,0,0,0,0,0,0,2,248,0,0, + // 0x538b 压 + 139,83,34,32,32,36,1,253,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,244,0,0,0,0,0,0,0,3,244,0,0,5,64,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,191,255,255,255,255,254,0,3,240,191,255,255,255,255,254,0,3,240,191,255,255,255,255,254,0,3,240,0,0,31,208,0,0,0,3,240,0,0,15,192,0,0,0,3,240,0,0,15,192,32,0,0,3,240,0,0,15,192,252,0,0,3,240,0,0,15,192,255,64,0,7,240,0,0,15,192,63,208,0,7,224,0,0,15,192,15,240,0,11,224,0,0,15,192,3,248,0,15,208,0,0,15,192,1,240,0,15,192,0,0,15,192,0,64,0,15,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,63,143,255,255,255,255,255,255,192,127,15,255,255,255,255,255,255,192,191,15,255,255,255,255,255,255,192,45,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0, + // 0x539f 原 + 159,83,33,32,32,36,1,253,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,252,0,0,31,208,0,0,0,1,252,0,0,47,192,0,0,0,1,252,0,0,63,192,0,0,0,1,252,31,255,255,255,255,240,0,1,252,31,255,255,255,255,240,0,1,252,31,234,170,170,171,240,0,1,252,31,192,0,0,7,240,0,1,252,31,192,0,0,7,240,0,1,252,31,213,85,85,91,240,0,1,252,31,255,255,255,255,240,0,1,252,31,255,255,255,255,240,0,2,252,31,192,0,0,7,240,0,2,248,31,192,0,0,7,240,0,2,248,31,192,0,0,7,240,0,2,248,31,255,255,255,255,240,0,3,244,31,255,255,255,255,240,0,3,244,10,170,175,234,170,160,0,3,244,0,0,15,208,0,0,0,3,240,0,144,15,208,28,0,0,7,240,2,252,15,208,191,0,0,11,240,7,248,15,208,63,208,0,15,224,15,240,15,208,15,244,0,15,208,63,192,15,208,3,252,0,31,192,255,64,15,208,0,255,0,47,199,253,0,15,208,0,127,192,63,79,244,0,15,208,0,31,192,191,2,208,31,255,208,0,10,0,126,0,0,15,255,192,0,0,0,5,0,0,11,254,0,0,0,0, + // 0x53cc 双 + 204,83,33,32,32,36,1,252,47,255,255,252,127,255,255,255,0,47,255,255,253,127,255,255,255,0,47,255,255,252,127,255,255,255,0,0,0,1,252,47,128,0,190,0,0,0,1,252,31,192,0,254,0,0,0,2,252,31,192,0,253,0,1,0,3,248,15,192,0,252,0,7,192,3,244,15,208,1,252,0,31,224,3,240,11,224,2,248,0,11,244,7,240,7,240,3,244,0,3,253,11,240,7,240,3,240,0,0,255,15,224,3,240,11,240,0,0,127,207,208,3,248,15,224,0,0,47,255,192,1,252,31,208,0,0,15,255,128,0,252,47,192,0,0,3,255,64,0,254,63,128,0,0,1,255,0,0,191,191,0,0,0,0,255,64,0,63,254,0,0,0,1,255,192,0,63,252,0,0,0,3,255,224,0,31,248,0,0,0,7,255,244,0,15,240,0,0,0,15,243,252,0,63,248,0,0,0,47,210,253,0,191,253,0,0,0,127,192,255,2,255,255,0,0,0,255,0,188,11,253,191,192,0,3,254,0,48,47,244,63,240,0,15,252,0,1,255,208,15,252,0,63,240,0,11,255,64,3,255,128,127,192,0,15,253,0,0,255,192,31,64,0,7,224,0,0,63,0,8,0,0,2,64,0,0,9,0,0,0,0,0,0,0,0,0,0, + // 0x53cd 反 + 205,83,32,33,8,36,2,252,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,254,85,85,85,85,85,80,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,254,0,0,0,0,4,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,0,0,253,47,192,0,0,255,0,0,252,15,224,0,1,253,0,0,252,11,240,0,3,252,0,0,252,7,248,0,7,248,0,1,252,3,252,0,15,240,0,1,252,1,254,0,47,224,0,2,252,0,191,128,127,192,0,2,248,0,63,209,255,64,0,3,244,0,31,247,254,0,0,3,244,0,11,255,248,0,0,7,240,0,2,255,240,0,0,11,240,0,2,255,224,0,0,15,208,0,31,255,253,0,0,31,192,0,255,255,255,208,0,63,192,31,255,193,255,254,64,127,70,255,253,0,47,255,249,255,11,255,224,0,7,255,253,125,3,254,0,0,0,47,248,8,1,144,0,0,0,1,176,0,0,0,0,0,0,0,0, + // 0x53d6 取 + 214,83,34,32,32,36,1,253,63,255,255,255,244,0,0,0,0,63,255,255,255,244,0,0,0,0,63,255,255,255,244,0,0,0,0,2,248,0,127,47,255,255,255,64,2,248,0,63,31,255,255,255,64,2,248,0,63,31,255,255,255,64,2,248,0,63,5,149,85,127,0,2,248,0,63,15,208,0,127,0,2,255,255,255,15,224,0,127,0,2,255,255,255,11,240,0,190,0,2,255,255,255,7,240,0,253,0,2,248,0,63,3,244,0,252,0,2,248,0,63,3,248,1,252,0,2,248,0,63,1,252,3,248,0,2,248,0,63,0,253,3,244,0,2,255,255,255,0,255,11,240,0,2,255,255,255,0,127,15,224,0,2,255,255,255,0,63,175,208,0,2,248,0,63,0,31,255,192,0,2,248,0,63,0,15,255,64,0,2,248,0,63,0,11,255,0,0,2,248,0,63,0,3,253,0,0,2,248,26,255,0,7,253,0,0,7,255,255,255,0,15,255,64,0,255,255,255,255,0,63,255,192,0,191,255,254,191,0,255,175,240,0,127,229,0,63,3,255,15,252,0,16,0,0,63,31,252,3,255,64,0,0,0,63,191,240,0,255,224,0,0,0,63,127,128,0,63,208,0,0,0,63,45,0,0,11,128,0,0,0,63,0,0,0,1,0, + // 0x53d8 变 + 216,83,32,35,24,36,2,252,0,0,0,27,192,0,0,0,0,0,0,31,208,0,0,0,0,0,0,15,240,0,0,0,0,0,0,7,244,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,0,0,15,208,11,240,0,0,0,41,15,208,11,240,80,0,0,63,79,208,11,243,244,0,0,255,15,208,11,242,253,0,1,253,15,208,11,240,191,128,7,248,15,208,11,240,47,208,15,240,15,208,11,240,11,244,63,192,15,208,11,240,3,252,11,0,15,208,11,240,0,224,0,0,15,208,11,240,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,248,0,3,255,255,255,255,255,254,0,3,255,255,255,255,255,252,0,0,15,224,0,0,11,248,0,0,3,248,0,0,47,224,0,0,1,254,0,0,191,192,0,0,0,191,192,3,255,0,0,0,0,31,248,47,248,0,0,0,0,7,255,255,224,0,0,0,0,0,255,255,0,0,0,0,0,7,255,255,144,0,0,0,6,255,255,255,255,64,0,26,255,255,244,47,255,255,164,255,255,254,64,1,191,255,255,63,254,128,0,0,6,255,252,62,64,0,0,0,0,1,184,0,0,0,0,0,0,0,0, + // 0x53f0 台 + 240,83,32,34,16,36,2,253,0,0,3,208,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,208,0,9,0,0,0,0,63,192,0,63,64,0,0,0,191,64,0,191,208,0,0,0,254,0,0,31,244,0,0,3,252,0,0,7,254,0,0,7,244,0,0,1,255,64,0,15,245,170,175,255,255,208,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,252,127,255,255,250,170,85,66,255,21,64,0,0,0,0,0,255,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,0,0,0,1,254,0,0,127,0,0,0,0,253,0, + // 0x5403 吃 + 3,84,32,34,16,36,3,253,0,0,0,0,144,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,252,0,0,0,255,255,224,3,244,0,0,0,255,255,224,11,240,0,0,0,255,255,224,15,240,0,0,0,252,11,224,31,255,255,255,252,252,7,224,63,255,255,255,252,252,7,224,191,255,255,255,252,252,7,224,254,0,0,0,0,252,7,227,252,0,0,0,0,252,7,239,244,0,0,0,0,252,7,235,224,0,0,0,0,252,7,225,207,255,255,255,64,252,7,224,15,255,255,255,192,252,7,224,15,255,255,255,0,252,7,224,0,0,31,252,0,252,7,224,0,0,127,224,0,252,7,224,0,1,255,128,0,252,7,224,0,7,253,0,0,252,7,224,0,31,244,0,0,252,11,224,0,127,192,0,0,255,255,224,1,255,0,0,0,255,255,224,7,252,0,0,0,255,255,224,15,240,0,0,0,252,0,0,63,192,0,0,116,252,0,0,191,0,0,0,126,248,0,0,253,0,0,0,126,0,0,1,252,0,0,0,189,0,0,1,253,0,0,0,253,0,0,0,255,255,255,255,252,0,0,0,191,255,255,255,248,0,0,0,31,255,255,255,224,0,0,0,0,21,85,84,0, + // 0x5408 合 + 8,84,34,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,127,255,192,0,0,0,0,0,1,255,31,240,0,0,0,0,0,7,253,11,252,0,0,0,0,0,31,248,2,255,64,0,0,0,0,127,224,0,191,208,0,0,0,1,255,128,0,47,248,0,0,0,11,254,0,0,7,255,0,0,0,63,248,0,0,1,255,208,0,1,255,208,0,0,0,127,253,0,15,255,255,255,255,255,255,255,128,127,248,255,255,255,255,241,255,224,63,192,255,255,255,255,240,47,192,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,208,0,0,0,127,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,208,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0, + // 0x540d 名 + 13,84,31,34,16,36,1,253,0,0,0,249,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,47,255,255,255,208,0,0,0,191,255,255,255,240,0,0,1,255,255,255,255,224,0,0,11,253,0,0,47,192,0,0,47,244,0,0,127,128,0,0,255,240,0,0,255,0,0,11,255,252,0,2,253,0,0,63,255,255,64,7,252,0,0,63,224,191,224,15,240,0,0,15,64,31,248,63,208,0,0,4,0,7,254,255,128,0,0,0,0,1,255,254,0,0,0,0,0,0,127,248,0,0,0,0,0,0,191,224,0,0,0,0,0,3,255,255,255,255,252,0,0,47,255,255,255,255,252,0,1,255,255,255,255,255,252,0,31,255,240,0,0,2,252,6,255,255,240,0,0,1,252,127,255,215,240,0,0,1,252,63,253,7,240,0,0,1,252,31,128,7,240,0,0,1,252,4,0,7,240,0,0,1,252,0,0,7,240,0,0,1,252,0,0,7,240,0,0,1,252,0,0,7,255,255,255,255,252,0,0,7,255,255,255,255,252,0,0,7,255,255,255,255,252,0,0,7,240,0,0,2,252,0,0,6,160,0,0,1,252, + // 0x540e 后 + 14,84,34,34,50,36,1,253,0,0,0,0,0,0,6,64,0,0,0,0,0,0,91,255,208,0,0,0,0,22,191,255,255,244,0,0,191,255,255,255,255,254,64,0,0,191,255,255,255,233,64,0,0,0,191,255,169,64,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,224,0,191,255,255,255,255,255,255,224,0,191,255,255,255,255,255,255,224,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,253,11,255,255,255,255,248,0,0,253,11,255,255,255,255,248,0,0,252,11,255,255,255,255,248,0,1,252,11,224,0,0,3,248,0,1,252,11,224,0,0,3,248,0,2,252,11,224,0,0,3,248,0,3,248,11,224,0,0,3,248,0,3,244,11,224,0,0,3,248,0,7,240,11,224,0,0,3,248,0,11,240,11,224,0,0,3,248,0,15,224,11,224,0,0,3,248,0,47,192,11,255,255,255,255,248,0,63,128,11,255,255,255,255,248,0,191,64,11,255,255,255,255,248,0,46,0,11,224,0,0,3,248,0,8,0,11,224,0,0,2,244,0, + // 0x5411 向 + 17,84,30,34,16,36,3,253,0,0,0,190,64,0,0,0,0,0,0,255,0,0,0,0,0,0,1,254,0,0,0,0,0,0,2,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,244,0,0,0,0,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,85,85,85,85,85,95,224,127,0,0,0,0,0,11,224,127,0,0,0,0,0,11,224,127,0,0,0,0,0,11,224,127,0,0,0,0,0,11,224,127,0,255,255,255,240,11,224,127,0,255,255,255,240,11,224,127,0,255,255,255,240,11,224,127,0,252,0,3,240,11,224,127,0,252,0,3,240,11,224,127,0,252,0,3,240,11,224,127,0,252,0,3,240,11,224,127,0,252,0,3,240,11,224,127,0,252,0,3,240,11,224,127,0,255,255,255,240,11,224,127,0,255,255,255,240,11,224,127,0,255,255,255,240,11,224,127,0,252,0,0,0,11,224,127,0,252,0,0,0,11,224,127,0,252,0,0,0,11,224,127,0,0,0,0,0,11,224,127,0,0,0,0,85,95,224,127,0,0,0,0,255,255,208,127,0,0,0,0,127,255,192,127,0,0,0,0,63,250,0, + // 0x5426 否 + 38,84,33,32,32,36,1,253,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,0,0,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,248,4,0,0,0,0,0,2,255,248,63,128,0,0,0,0,31,255,248,255,248,0,0,0,1,255,247,248,47,255,64,0,0,31,255,131,248,2,255,240,0,1,255,253,3,248,0,47,254,0,111,255,224,3,248,0,7,255,192,63,254,0,3,248,0,0,191,192,31,224,0,3,248,0,0,31,0,10,0,0,3,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,26,128,0, + // 0x542f 启 + 47,84,31,35,24,36,1,252,0,0,0,0,0,0,25,0,0,0,0,0,1,111,255,64,0,0,1,106,255,255,255,192,0,235,255,255,255,255,233,0,0,255,255,255,255,148,0,0,0,255,254,149,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,255,255,255,255,255,255,244,0,255,255,255,255,255,255,244,0,255,255,255,255,255,255,244,0,253,0,0,0,0,3,244,0,253,0,0,0,0,3,244,0,253,0,0,0,0,3,244,0,253,0,0,0,0,3,244,0,255,255,255,255,255,255,244,0,255,255,255,255,255,255,244,0,255,255,255,255,255,255,244,0,253,0,0,0,0,0,0,0,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,127,255,255,255,255,248,1,252,127,255,255,255,255,252,2,248,127,255,255,255,255,252,3,248,127,0,0,0,2,252,3,244,127,0,0,0,2,252,7,240,127,0,0,0,2,252,11,240,127,0,0,0,2,252,15,224,127,0,0,0,2,252,31,208,127,0,0,0,2,252,63,192,127,255,255,255,255,252,127,64,127,255,255,255,255,252,47,0,127,255,255,255,255,252,5,0,127,0,0,0,2,252,0,0,0,0,0,0,0,0, + // 0x544a 告 + 74,84,32,35,24,36,2,252,0,6,64,3,248,0,0,0,0,15,240,3,248,0,0,0,0,15,208,3,248,0,0,0,0,47,192,3,248,0,0,0,0,63,128,3,248,0,0,0,0,191,255,255,255,255,255,208,1,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,11,244,0,3,248,0,0,0,31,240,0,3,248,0,0,0,63,192,0,3,248,0,0,0,31,64,0,3,248,0,0,0,1,0,0,3,248,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,0,0,0,0,0,0,0, + // 0x5468 周 + 104,84,31,33,8,36,1,252,0,255,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,253,0,0,84,0,1,252,0,253,0,1,248,0,1,252,0,253,0,1,248,0,1,252,0,253,10,171,254,170,129,252,0,253,31,255,255,255,193,252,0,253,31,255,255,255,193,252,0,253,0,1,248,0,1,252,0,253,0,1,248,0,1,252,0,253,0,1,248,0,1,252,0,253,42,171,254,170,161,252,0,253,63,255,255,255,241,252,0,253,63,255,255,255,241,252,0,253,0,0,0,0,1,252,0,253,0,0,0,0,1,252,0,252,6,170,170,170,1,252,0,252,11,255,255,255,1,252,1,252,11,255,255,255,1,252,1,252,11,208,0,63,1,252,2,248,11,208,0,63,1,252,3,248,11,208,0,63,1,252,3,244,11,208,0,63,1,252,7,240,11,208,0,63,1,252,11,240,11,255,255,255,1,252,15,224,11,255,255,255,1,252,31,208,11,250,170,170,1,252,63,192,11,208,0,0,2,252,127,64,6,128,0,15,255,248,127,0,0,0,0,11,255,244,13,0,0,0,0,7,255,128,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,34,35,59,36,1,252,0,0,0,11,252,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,127,255,128,0,0,0,0,0,1,255,111,224,0,0,0,0,0,7,253,11,252,0,0,0,0,0,47,248,2,255,0,0,0,0,0,255,208,0,191,208,0,0,0,7,255,64,0,31,248,0,0,0,47,252,0,0,3,255,64,0,2,255,255,255,255,255,255,240,0,31,255,223,255,255,255,111,255,64,255,253,15,255,255,255,71,255,240,127,224,0,0,0,0,0,191,208,46,0,0,0,0,0,0,11,128,0,0,0,0,0,0,0,0,0,0,255,255,252,15,255,255,248,0,0,255,255,252,15,255,255,248,0,0,255,255,252,15,255,255,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,255,255,252,15,192,2,248,0,0,255,255,252,15,192,2,248,0,0,255,255,252,15,195,255,244,0,0,252,0,0,15,194,255,240,0,0,252,0,0,15,193,255,144,0,0,252,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,32,34,16,36,1,253,0,0,0,4,0,0,0,0,0,0,1,252,0,0,0,0,0,1,191,255,0,0,0,0,6,255,255,255,64,0,0,0,47,255,255,144,15,255,255,254,15,255,252,0,15,255,255,254,4,1,252,0,15,255,255,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,63,255,255,255,143,192,0,254,63,255,255,255,143,192,0,254,63,255,255,255,143,192,0,254,0,7,252,0,15,192,0,254,0,15,254,0,15,192,0,254,0,15,255,64,15,192,0,254,0,47,255,208,15,192,0,254,0,63,255,240,15,192,0,254,0,191,254,252,15,192,0,254,0,253,252,255,15,192,0,254,3,245,252,63,143,192,0,254,7,241,252,47,15,192,0,254,15,209,252,13,15,192,0,254,63,193,252,0,15,192,0,254,191,65,252,0,15,192,0,254,190,1,252,0,15,255,255,254,60,1,252,0,15,255,255,254,16,1,252,0,15,255,255,254,0,1,252,0,15,208,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0, + // 0x54cd 响 + 205,84,32,34,16,36,2,253,0,0,0,0,0,233,0,0,0,0,0,0,1,254,0,0,0,0,0,0,2,252,0,0,127,255,240,0,3,252,0,0,127,255,240,0,7,244,0,0,127,255,240,0,11,240,0,0,126,3,240,191,255,255,255,254,126,3,240,191,255,255,255,254,126,3,240,191,255,255,255,254,126,3,240,189,0,0,0,190,126,3,240,189,0,0,0,190,126,3,240,189,0,0,0,190,126,3,240,189,5,85,80,190,126,3,240,189,15,255,240,190,126,3,240,189,15,255,240,190,126,3,240,189,15,65,240,190,126,3,240,189,15,65,240,190,126,3,240,189,15,65,240,190,126,3,240,189,15,65,240,190,126,3,240,189,15,65,240,190,126,3,240,189,15,65,240,190,127,255,240,189,15,65,240,190,127,255,240,189,15,150,240,190,127,255,240,189,15,255,240,190,126,0,0,189,15,255,240,190,126,0,0,189,15,64,0,190,126,0,0,189,15,64,0,190,41,0,0,189,0,0,0,190,0,0,0,189,0,0,0,190,0,0,0,189,0,0,0,190,0,0,0,189,0,0,0,190,0,0,0,189,0,0,127,254,0,0,0,189,0,0,63,252,0,0,0,189,0,0,47,224, + // 0x55b7 喷 + 183,85,33,34,50,36,2,253,0,0,0,0,1,164,0,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,1,248,0,0,0,127,255,192,170,171,254,170,168,0,127,255,193,255,255,255,255,252,0,127,255,193,255,255,255,255,252,0,125,11,192,0,1,248,0,0,0,124,11,192,11,193,248,47,0,0,124,11,192,15,208,0,63,0,0,124,11,198,175,250,170,191,170,0,124,11,203,255,255,255,255,255,0,124,11,203,255,255,255,255,255,0,124,11,192,15,208,0,63,0,0,124,11,192,15,208,0,63,0,0,124,11,192,0,0,0,0,0,0,124,11,192,42,170,170,170,160,0,124,11,192,127,255,255,255,240,0,124,11,192,127,255,255,255,240,0,124,11,192,126,0,0,3,240,0,124,11,192,126,0,0,3,240,0,124,11,192,126,1,164,3,240,0,127,255,192,126,1,248,3,240,0,127,255,192,126,1,248,3,240,0,127,255,192,126,1,248,3,240,0,125,0,0,126,1,248,3,240,0,124,0,0,126,2,248,3,240,0,124,0,0,126,3,244,3,240,0,40,0,0,21,11,241,145,80,0,0,0,0,0,63,211,253,0,0,0,0,0,2,255,65,255,208,0,0,0,1,191,252,0,47,253,0,0,0,63,255,208,0,2,255,192,0,0,15,249,0,0,0,63,64,0,0,5,0,0,0,0,6,0, + // 0x5634 嘴 + 52,86,33,35,59,36,2,252,0,0,0,2,240,15,192,0,0,0,0,0,3,240,15,192,0,0,0,0,1,131,240,15,192,112,0,127,255,195,211,240,15,194,252,0,127,255,195,211,255,223,239,244,0,127,255,195,211,255,223,255,64,0,124,11,195,211,245,79,244,0,0,124,11,195,211,240,15,192,0,0,124,11,195,211,240,15,192,15,64,124,11,195,211,246,159,192,15,64,124,11,195,255,255,223,229,111,64,124,11,239,255,255,219,255,255,0,124,11,239,255,252,2,255,252,0,124,11,218,67,248,1,0,0,0,124,11,192,11,255,255,192,0,0,124,11,192,31,255,255,208,0,0,124,11,192,127,64,47,128,0,0,124,11,193,255,0,127,64,0,0,124,11,203,255,255,255,255,248,0,124,11,255,255,255,255,255,248,0,127,255,207,190,0,248,2,248,0,127,255,192,126,0,248,2,248,0,127,255,192,127,255,255,255,248,0,124,0,0,127,255,255,255,248,0,124,0,0,190,0,248,2,248,0,124,0,0,189,0,248,2,248,0,40,0,0,254,1,252,2,248,0,0,0,0,255,255,255,255,248,0,0,0,2,255,255,255,255,248,0,0,0,3,248,0,0,2,248,0,0,0,15,240,0,0,2,248,0,0,0,63,208,0,1,87,244,0,0,0,191,64,0,3,255,240,0,0,0,29,0,0,1,255,144,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,34,34,50,36,1,252,1,170,170,168,2,170,170,168,0,2,255,255,252,3,255,255,248,0,2,255,255,252,3,255,255,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,254,170,252,3,250,171,248,0,2,255,255,252,3,255,255,248,0,2,255,255,255,147,255,255,248,0,0,0,0,15,240,0,0,0,0,0,0,0,63,192,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,63,240,0,255,64,0,0,0,1,255,192,0,63,224,0,0,0,11,255,0,0,31,253,0,0,0,191,252,0,0,3,255,208,0,27,255,224,0,0,0,255,253,0,255,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,208,47,255,255,253,11,255,255,255,128,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,255,255,253,11,255,255,240,0,0,255,255,253,11,255,255,240,0,0,255,255,253,11,255,255,240,0,0,252,0,189,11,208,3,240,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,33,35,59,36,2,252,0,0,0,0,0,252,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,85,85,253,85,84,0,0,0,0,255,255,255,255,252,0,127,255,240,255,255,255,255,252,0,127,255,240,0,0,252,0,0,0,127,255,240,7,208,252,47,0,0,125,3,240,7,208,168,47,0,0,125,3,241,91,229,85,127,85,0,125,3,251,255,255,255,255,255,128,125,3,251,255,255,255,255,255,128,125,3,240,7,208,0,47,0,0,125,3,240,7,208,0,47,0,0,125,3,240,0,0,0,0,0,0,125,3,240,127,255,255,255,240,0,125,3,240,127,255,255,255,240,0,125,3,240,126,0,0,3,240,0,125,3,240,126,0,0,3,240,0,125,3,240,127,255,255,255,240,0,125,3,240,127,255,255,255,240,0,125,3,240,126,0,0,3,240,0,127,255,240,126,0,0,3,240,0,127,255,240,127,255,255,255,240,0,127,255,240,127,255,255,255,240,0,125,0,0,126,0,0,3,240,0,125,0,0,126,0,0,3,240,0,61,0,0,127,255,255,255,240,0,0,0,0,127,255,255,255,240,0,0,0,0,2,228,0,248,0,0,0,0,0,31,252,2,255,64,0,0,0,6,255,224,0,127,244,0,0,0,127,255,0,0,11,254,0,0,0,63,228,0,0,0,255,64,0,0,14,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,30,33,8,36,3,253,85,85,85,85,85,85,85,80,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,254,0,0,0,0,0,11,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240, + // 0x56e0 因 + 224,86,30,32,0,36,3,253,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,7,240,253,0,0,26,64,0,7,240,253,0,0,47,64,0,7,240,253,0,0,63,64,0,7,240,253,0,0,63,64,0,7,240,253,0,0,63,0,0,7,240,253,0,0,63,0,0,7,240,253,63,255,255,255,255,199,240,253,63,255,255,255,255,199,240,253,63,255,255,255,255,199,240,253,0,0,127,192,0,7,240,253,0,0,191,208,0,7,240,253,0,0,255,240,0,7,240,253,0,1,255,240,0,7,240,253,0,3,249,252,0,7,240,253,0,7,240,253,0,7,240,253,0,31,240,191,64,7,240,253,0,127,192,63,208,7,240,253,1,255,64,15,248,7,240,253,31,253,0,7,255,135,240,253,63,240,0,0,255,135,240,253,31,128,0,0,47,7,240,253,4,0,0,0,0,7,240,253,0,0,0,0,0,7,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,7,240, + // 0x56fa 固 + 250,86,30,32,0,36,3,253,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,21,64,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,26,170,191,234,170,139,240,253,47,255,255,255,255,139,240,253,47,255,255,255,255,139,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,1,170,191,234,164,11,240,253,2,255,255,255,252,11,240,253,2,255,255,255,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,254,170,170,252,11,240,253,2,255,255,255,252,11,240,253,2,255,255,255,252,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,254,0,0,0,0,0,11,240,253,0,0,0,0,0,7,240, + // 0x56fe 图 + 254,86,30,33,8,36,3,252,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,252,0,1,64,0,0,7,240,252,0,3,244,0,0,7,240,252,0,15,224,0,0,7,240,252,0,63,255,255,253,7,240,252,0,255,255,255,255,7,240,252,3,254,170,171,252,7,240,252,31,255,0,11,240,7,240,252,191,239,208,47,208,7,240,252,62,11,249,255,0,7,240,252,4,1,255,252,0,7,240,252,0,1,255,248,0,7,240,252,0,47,255,255,208,7,240,252,27,255,244,191,255,151,240,254,255,255,64,11,255,247,240,252,191,226,144,0,111,199,240,252,121,7,255,128,0,71,240,252,0,2,255,253,0,7,240,252,0,0,7,255,0,7,240,252,0,0,0,45,0,7,240,252,0,255,228,0,0,7,240,252,3,255,255,228,0,7,240,252,0,27,255,255,228,7,240,252,0,0,6,255,244,7,240,252,0,0,0,7,240,7,240,252,0,0,0,0,0,7,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,252,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0, + // 0x5728 在 + 40,87,33,34,50,36,1,253,0,0,0,100,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,47,192,0,0,0,0,0,0,0,127,128,0,20,0,0,0,0,0,255,0,0,190,0,0,0,0,2,253,0,0,190,0,0,0,0,7,252,0,0,190,0,0,0,0,15,240,0,0,190,0,0,0,0,63,208,0,0,190,0,0,0,0,191,192,0,0,190,0,0,0,2,255,192,127,255,255,255,253,0,15,255,192,127,255,255,255,253,0,63,255,192,127,255,255,255,253,0,127,223,192,0,0,254,0,0,0,63,31,192,0,0,190,0,0,0,24,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,254,0,0,0,0,31,195,255,255,255,255,255,128,0,31,195,255,255,255,255,255,128,0,31,195,255,255,255,255,255,128,0,31,192,0,0,0,0,0,0, + // 0x574f 坏 + 79,87,34,34,50,36,1,253,0,42,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,1,255,255,255,255,255,208,0,63,1,255,255,255,255,255,208,0,63,1,255,255,255,255,255,208,0,63,0,0,0,15,240,0,0,0,63,0,0,0,31,224,0,0,0,63,0,0,0,63,192,0,0,0,63,0,0,0,191,128,0,0,63,255,255,0,0,255,0,0,0,63,255,255,0,3,254,0,0,0,63,255,255,0,15,254,32,0,0,0,63,64,0,47,254,253,0,0,0,63,0,0,191,255,255,128,0,0,63,0,2,255,254,63,224,0,0,63,0,15,253,190,15,252,0,0,63,0,127,240,190,2,255,0,0,63,3,255,192,190,0,191,192,0,63,7,255,0,190,0,47,240,0,63,2,248,0,190,0,11,192,0,63,0,144,0,190,0,2,0,0,63,7,64,0,190,0,0,0,0,63,255,64,0,190,0,0,0,0,127,255,128,0,190,0,0,0,27,255,254,0,0,190,0,0,0,191,255,208,0,0,190,0,0,0,127,248,0,0,0,190,0,0,0,63,64,0,0,0,190,0,0,0,16,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0, + // 0x5757 块 + 87,87,33,35,59,36,1,252,0,21,0,0,1,164,0,0,0,0,63,0,0,2,248,0,0,0,0,63,0,0,2,248,0,0,0,0,63,0,0,2,248,0,0,0,0,63,0,0,2,248,0,0,0,0,63,0,0,2,248,0,0,0,0,63,0,31,255,255,255,248,0,0,63,0,31,255,255,255,248,0,0,63,64,31,255,255,255,248,0,63,255,255,0,2,248,2,248,0,63,255,255,0,2,248,1,248,0,63,255,255,0,2,248,1,248,0,0,63,0,0,2,248,1,248,0,0,63,0,0,2,248,1,248,0,0,63,0,0,2,248,1,248,0,0,63,0,0,2,248,1,248,0,0,63,0,0,2,248,2,248,0,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,11,0,7,255,128,0,0,0,63,255,0,11,255,192,0,0,0,63,255,64,15,239,208,0,0,6,255,253,0,31,199,240,0,0,127,255,208,0,63,195,248,0,0,127,249,0,0,191,66,252,0,0,63,128,0,1,255,0,255,0,0,40,0,0,3,252,0,127,192,0,0,0,0,31,248,0,63,240,0,0,0,0,191,224,0,15,253,0,0,0,7,255,128,0,3,255,128,0,0,31,254,0,0,0,255,192,0,0,11,240,0,0,0,63,64,0,0,3,64,0,0,0,6,0,0,0,0,0,0,0,0,0,0, + // 0x578b 型 + 139,87,32,33,8,36,2,254,0,0,0,0,0,0,3,240,31,255,255,255,224,0,3,240,31,255,255,255,224,190,3,240,31,255,255,255,224,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,191,255,255,255,248,190,3,240,191,255,255,255,248,190,3,240,191,255,255,255,248,190,3,240,0,190,1,252,0,190,3,240,0,253,1,252,0,190,3,240,1,252,1,252,0,20,3,240,3,248,1,252,0,0,3,240,15,240,1,252,0,0,3,240,127,208,1,252,0,11,255,240,191,128,1,252,0,3,255,240,62,0,0,175,240,3,255,128,4,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x57ab 垫 + 171,87,33,33,41,36,2,254,0,47,64,0,11,208,0,0,0,0,47,64,0,11,208,0,0,0,0,47,64,0,11,208,0,0,0,0,47,128,0,11,208,0,0,0,255,255,255,143,255,255,255,128,0,255,255,255,143,255,255,255,128,0,255,255,255,143,255,255,255,128,0,0,47,64,0,15,192,31,128,0,0,47,64,0,15,192,31,128,0,0,47,65,71,159,192,31,128,0,0,47,255,207,255,128,31,128,0,91,255,255,203,255,128,31,128,0,255,255,254,64,255,208,31,128,0,255,255,128,0,127,248,31,128,0,185,47,64,0,255,255,95,128,0,0,47,64,2,252,191,79,139,64,0,47,64,11,244,31,15,203,192,0,47,64,63,224,0,15,207,192,47,255,64,255,128,0,11,255,128,15,255,0,62,0,0,3,255,0,15,248,0,31,224,0,0,189,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,2,255,255,255,255,255,255,128,0,2,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0, + // 0x586b 填 + 107,88,34,35,59,36,1,252,0,21,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,1,255,255,255,255,255,192,0,63,1,255,255,255,255,255,192,0,63,1,255,255,255,255,255,192,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,11,255,255,255,244,0,63,255,254,11,255,255,255,244,0,63,255,254,11,208,0,3,244,0,63,255,254,11,208,0,3,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,208,0,3,244,0,0,63,11,11,255,255,255,244,0,0,63,255,11,255,255,255,244,0,0,63,255,64,0,0,0,0,0,2,255,254,0,0,0,0,0,0,111,255,235,255,255,255,255,255,208,191,254,11,255,255,255,255,255,224,63,208,11,255,255,255,255,255,224,61,0,0,0,16,0,8,0,0,0,0,0,1,255,0,127,64,0,0,0,0,11,253,0,127,224,0,0,0,1,191,240,0,11,253,0,0,0,15,255,128,0,1,255,128,0,0,11,248,0,0,0,63,208,0,0,2,144,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x58f3 壳 + 243,88,32,34,16,36,2,253,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,106,170,170,175,250,170,170,169,0,0,0,15,224,0,0,0,1,85,85,95,245,85,85,64,2,255,255,255,255,255,255,192,2,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,170,170,170,170,170,170,252,63,0,0,0,0,0,0,252,63,5,85,85,85,85,80,252,63,15,255,255,255,255,240,252,0,15,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,0,0,0,3,255,255,255,255,0,0,0,3,255,255,255,255,0,0,0,3,244,0,0,191,0,0,0,3,244,0,0,191,0,0,0,7,240,0,0,191,0,16,0,15,240,0,0,191,0,61,0,63,208,0,0,191,0,63,2,255,128,0,0,127,0,126,111,254,0,0,0,127,255,253,127,248,0,0,0,63,255,252,63,128,0,0,0,31,255,240,8,0,0,0,0,0,0,0, + // 0x5907 备 + 7,89,34,35,59,36,1,252,0,0,0,249,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,47,255,255,255,253,0,0,0,0,191,255,255,255,255,0,0,0,3,255,255,255,255,253,0,0,0,31,253,0,0,11,248,0,0,0,191,255,128,0,63,240,0,0,11,255,191,224,1,255,192,0,0,11,253,15,253,11,254,0,0,0,3,224,2,255,255,244,0,0,0,0,0,0,127,255,192,0,0,0,0,0,1,255,255,249,0,0,0,0,0,127,255,255,255,228,0,0,1,175,255,254,11,255,255,250,64,191,255,255,208,0,111,255,255,224,127,255,244,0,0,1,191,255,192,63,249,0,0,0,0,1,175,0,20,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,64,3,248,0,63,192,0,0,63,64,3,248,0,63,192,0,0,63,64,3,248,0,63,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,234,171,254,170,191,192,0,0,63,64,3,248,0,63,192,0,0,63,64,3,248,0,63,192,0,0,63,64,3,248,0,63,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,64,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0, + // 0x590d 复 + 13,89,24,35,210,36,6,252,0,15,128,0,0,0,0,31,192,0,0,0,0,63,128,0,0,0,0,191,255,255,255,224,0,255,255,255,255,240,3,255,255,255,255,240,11,244,0,0,0,0,31,240,0,0,0,0,127,224,0,0,0,0,255,255,255,255,255,0,190,255,255,255,255,0,24,189,0,0,63,0,0,189,0,0,63,0,0,191,255,255,255,0,0,191,255,255,255,0,0,189,0,0,63,0,0,189,0,0,63,0,0,191,255,255,255,0,0,191,255,255,255,0,0,1,254,0,0,0,0,3,252,0,0,0,0,15,255,255,254,0,0,63,255,255,255,0,1,255,149,86,254,0,11,255,192,3,252,0,191,251,244,15,244,0,127,130,254,127,208,0,28,0,191,255,64,0,0,0,63,254,0,0,0,6,255,255,224,0,1,191,255,191,255,148,127,255,228,11,255,253,63,254,0,0,191,248,30,64,0,0,1,176,0,0,0,0,0,0, + // 0x5916 外 + 22,89,34,34,50,36,1,253,0,0,164,0,0,3,244,0,0,0,0,254,0,0,3,244,0,0,0,0,253,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,3,248,0,0,3,244,0,0,0,3,248,0,0,3,244,0,0,0,11,255,255,248,3,244,0,0,0,15,255,255,252,3,244,0,0,0,31,255,255,252,3,244,0,0,0,63,192,3,255,3,244,0,0,0,127,64,3,255,195,244,0,0,0,255,0,7,255,211,244,0,0,2,252,0,11,251,243,244,0,0,7,252,0,15,227,255,244,0,0,15,254,0,15,208,255,244,0,0,63,255,208,31,192,127,244,0,0,255,175,248,63,128,47,244,0,0,47,7,255,127,64,15,248,0,0,8,0,255,255,0,3,255,0,0,0,0,47,254,0,3,255,208,0,0,0,11,252,0,3,255,248,0,0,0,3,248,0,3,255,255,64,0,0,15,240,0,3,246,255,240,0,0,47,208,0,3,244,127,224,0,0,63,192,0,3,244,11,128,0,0,255,64,0,3,244,1,0,0,3,254,0,0,3,244,0,0,0,15,248,0,0,3,244,0,0,0,63,240,0,0,3,244,0,0,1,255,192,0,0,3,244,0,0,15,255,0,0,0,3,244,0,0,47,248,0,0,0,3,244,0,0,11,208,0,0,0,3,244,0,0,2,0,0,0,0,3,244,0,0, + // 0x591a 多 + 26,89,32,35,24,36,2,252,0,0,0,46,64,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,0,0,0,0,0,0,11,255,255,255,224,0,0,0,127,255,255,255,244,0,0,2,255,255,255,255,224,0,0,47,253,0,0,63,192,0,6,255,252,0,0,255,64,0,63,255,255,128,3,253,0,0,31,244,127,244,15,248,0,0,11,64,11,254,127,224,0,0,0,0,1,255,255,64,0,0,0,0,0,127,253,64,0,0,0,0,2,255,231,252,0,0,0,0,127,255,79,244,0,0,0,27,255,244,127,224,0,0,26,255,255,66,255,255,255,248,127,255,224,15,255,255,255,253,47,249,0,191,255,255,255,252,25,0,11,255,128,0,11,244,0,0,191,253,0,0,31,240,0,31,255,255,64,0,63,192,0,127,253,191,240,0,255,64,0,31,144,31,253,3,254,0,0,8,0,2,255,159,248,0,0,0,0,0,127,255,224,0,0,0,0,0,31,255,64,0,0,0,0,0,191,252,0,0,0,0,0,27,255,224,0,0,0,0,22,255,254,0,0,0,0,91,255,255,224,0,0,0,2,255,255,249,0,0,0,0,0,255,254,64,0,0,0,0,0,186,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,85,85,85,111,229,85,85,85,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,63,252,0,0,0,0,0,0,127,253,0,0,0,0,0,0,191,254,0,0,0,0,0,0,255,191,0,0,0,0,0,1,254,127,64,0,0,0,0,2,252,63,192,0,0,0,0,3,252,31,224,0,0,0,0,11,244,15,240,0,0,0,0,31,240,11,252,0,0,0,0,63,208,3,253,0,0,0,0,191,192,0,255,64,0,0,2,255,0,0,191,208,0,0,11,253,0,0,63,244,0,0,47,248,0,0,15,253,0,0,255,224,0,0,3,255,128,7,255,128,0,0,0,255,240,127,254,0,0,0,0,63,254,255,244,0,0,0,0,15,254,63,128,0,0,0,0,1,252,8,0,0,0,0,0,0,32, + // 0x5929 天 + 41,89,33,33,41,36,2,252,85,85,85,85,85,85,85,85,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,21,85,85,127,249,85,85,84,0,0,0,0,63,252,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,255,191,0,0,0,0,0,0,1,254,63,192,0,0,0,0,0,3,252,47,224,0,0,0,0,0,15,248,15,244,0,0,0,0,0,63,240,7,252,0,0,0,0,0,255,208,2,255,64,0,0,0,7,255,64,0,255,208,0,0,0,47,253,0,0,63,253,0,0,2,255,244,0,0,15,255,208,0,127,255,128,0,0,2,255,254,64,255,253,0,0,0,0,127,255,0,127,208,0,0,0,0,7,253,0,57,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x592a 太 + 42,89,34,35,59,36,1,252,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,21,85,85,91,245,85,85,85,64,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,0,15,255,0,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,159,208,0,0,0,0,0,0,63,79,224,0,0,0,0,0,0,191,11,240,0,0,0,0,0,0,255,3,248,0,0,0,0,0,1,253,3,252,0,0,0,0,0,3,252,1,255,0,0,0,0,0,11,248,0,191,64,0,0,0,0,31,240,0,63,192,0,0,0,0,63,215,0,47,240,0,0,0,0,255,239,208,15,248,0,0,0,3,255,63,244,7,254,0,0,0,15,253,11,253,2,255,128,0,0,127,244,2,255,64,191,240,0,2,255,208,0,191,208,47,253,0,47,255,64,0,63,240,11,255,208,127,252,0,0,15,224,2,255,208,31,208,0,0,3,64,0,127,64,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x5931 失 + 49,89,33,35,59,36,2,252,0,4,0,15,224,0,0,0,0,0,15,208,15,224,0,0,0,0,0,47,192,15,224,0,0,0,0,0,63,192,15,224,0,0,0,0,0,63,128,15,224,0,0,0,0,0,191,0,15,224,0,0,0,0,0,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,11,249,85,95,229,85,85,64,0,15,240,0,15,224,0,0,0,0,47,208,0,15,224,0,0,0,0,127,192,0,15,224,0,0,0,0,127,64,0,15,208,0,0,0,0,10,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,85,85,85,111,229,85,85,85,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,127,252,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,1,254,127,64,0,0,0,0,0,3,252,63,192,0,0,0,0,0,11,248,31,240,0,0,0,0,0,47,240,15,252,0,0,0,0,0,191,208,3,254,0,0,0,0,3,255,128,0,255,208,0,0,0,47,254,0,0,63,248,0,0,2,255,244,0,0,31,255,144,0,111,255,192,0,0,2,255,254,64,255,253,0,0,0,0,127,255,64,127,208,0,0,0,0,7,254,0,41,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x5934 头 + 52,89,32,34,16,36,2,253,0,0,0,0,42,0,0,0,0,4,0,0,63,0,0,0,0,31,128,0,63,0,0,0,0,63,253,0,63,0,0,0,0,31,255,128,63,0,0,0,0,1,255,244,127,0,0,0,0,0,31,244,127,0,0,0,0,0,2,224,127,0,0,0,1,0,0,64,127,0,0,0,7,224,0,0,127,0,0,0,15,254,0,0,127,0,0,0,7,255,224,0,127,0,0,0,0,127,252,0,191,0,0,0,0,7,253,0,191,0,0,0,0,0,248,0,254,0,0,0,0,0,16,0,254,0,0,0,0,0,0,0,253,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,7,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,63,194,0,0,0,0,0,0,191,143,224,0,0,0,0,2,255,31,254,0,0,0,0,11,252,2,255,224,0,0,0,127,240,0,63,253,0,0,3,255,192,0,7,255,128,0,127,255,0,0,0,191,244,27,255,244,0,0,0,15,254,191,255,128,0,0,0,2,254,63,244,0,0,0,0,0,120,25,0,0,0,0,0,0,0, + // 0x597d 好 + 125,89,34,35,59,36,1,252,0,30,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,128,3,255,255,255,254,0,0,63,64,3,255,255,255,255,128,0,63,0,3,255,255,255,255,0,0,63,0,0,0,0,3,253,0,0,127,0,0,0,0,7,248,0,0,190,0,0,0,0,15,240,0,127,255,255,240,0,0,63,192,0,127,255,255,240,0,0,255,0,0,127,255,255,240,0,11,252,0,0,1,252,3,240,0,15,240,0,0,2,248,7,240,0,15,208,0,0,3,244,7,224,0,15,208,0,0,3,240,11,224,0,15,208,0,0,3,240,15,223,255,255,255,255,224,7,224,15,223,255,255,255,255,224,11,208,15,207,255,255,255,255,224,15,192,47,192,0,15,208,0,0,15,192,63,128,0,15,208,0,0,31,244,63,64,0,15,208,0,0,47,254,191,0,0,15,208,0,0,63,255,254,0,0,15,208,0,0,11,63,253,0,0,15,208,0,0,0,11,254,0,0,15,208,0,0,0,7,255,128,0,15,208,0,0,0,15,255,224,0,15,208,0,0,0,47,223,248,0,15,208,0,0,0,127,131,248,0,15,208,0,0,1,255,0,240,0,15,208,0,0,11,252,0,0,0,31,208,0,0,63,244,0,0,63,255,192,0,0,31,208,0,0,47,255,192,0,0,10,0,0,0,31,253,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x59cb 始 + 203,89,34,34,50,36,1,253,0,30,128,0,0,57,0,0,0,0,31,192,0,0,127,64,0,0,0,47,128,0,0,191,0,0,0,0,63,64,0,0,254,0,0,0,0,63,0,0,0,253,0,0,0,0,63,0,0,2,252,0,0,0,0,127,0,0,3,248,1,128,0,0,190,0,0,3,244,15,208,0,127,255,255,240,7,240,11,240,0,127,255,255,240,11,224,3,248,0,127,255,255,240,15,192,1,253,0,1,248,3,240,31,192,0,191,0,2,244,7,241,127,235,255,255,128,3,240,7,235,255,255,255,255,192,3,240,11,235,255,255,255,255,224,7,240,15,215,250,165,64,11,240,11,224,15,192,0,0,0,3,128,15,208,31,192,0,0,0,0,0,15,192,47,128,0,0,0,0,0,31,192,63,64,127,255,255,255,0,47,244,63,0,127,255,255,255,0,63,255,191,0,127,255,255,255,0,63,255,254,0,127,0,0,127,0,6,47,252,0,127,0,0,127,0,0,7,255,0,127,0,0,127,0,0,11,255,192,127,0,0,127,0,0,15,255,240,127,0,0,127,0,0,63,203,252,127,0,0,127,0,0,255,66,244,127,0,0,127,0,3,254,0,160,127,255,255,255,0,31,252,0,0,127,255,255,255,0,47,224,0,0,127,255,255,255,0,15,128,0,0,127,0,0,127,0,5,0,0,0,126,0,0,42,0, + // 0x5b50 子 + 80,91,33,33,41,36,2,252,0,85,85,85,85,85,84,0,0,2,255,255,255,255,255,255,64,0,2,255,255,255,255,255,255,192,0,2,255,255,255,255,255,255,64,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,2,255,128,0,0,0,0,0,0,31,253,0,0,0,0,0,0,6,255,240,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,85,85,85,95,245,85,85,85,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,1,85,95,224,0,0,0,0,0,1,255,255,224,0,0,0,0,0,0,255,255,192,0,0,0,0,0,0,191,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,34,34,50,36,1,253,0,0,0,185,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,253,11,255,255,255,240,0,0,7,252,11,255,255,255,252,0,0,15,240,11,255,255,255,240,0,0,47,224,0,0,0,63,192,0,0,191,192,0,0,1,255,0,0,2,255,192,0,0,7,252,0,0,11,255,192,0,0,63,224,0,0,63,255,192,0,0,63,128,0,0,191,255,192,0,0,63,64,0,0,63,95,194,255,255,255,255,255,208,44,31,194,255,255,255,255,255,208,0,31,194,255,255,255,255,255,208,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,127,64,0,0,0,31,192,1,255,255,0,0,0,0,31,192,0,255,255,0,0,0,0,31,192,0,255,248,0,0,0, + // 0x5b89 安 + 137,91,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,64,0,0,0,0,1,252,63,64,0,16,0,0,1,252,63,64,0,191,0,0,1,252,63,64,0,254,0,0,1,252,63,64,2,252,0,0,1,252,0,0,3,248,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,255,64,0,31,224,0,0,0,254,0,0,47,192,0,0,3,252,0,0,63,192,0,0,7,248,0,0,127,64,0,0,15,240,0,0,255,0,0,0,31,244,0,2,253,0,0,0,63,255,144,7,252,0,0,0,127,255,254,95,240,0,0,0,191,47,255,255,208,0,0,0,5,1,191,255,208,0,0,0,0,0,31,255,253,0,0,0,0,1,255,255,255,208,0,0,0,127,255,130,255,253,0,5,191,255,248,0,47,255,208,47,255,255,128,0,2,255,240,15,255,228,0,0,0,47,192,7,164,0,0,0,0,7,0,0,0,0,0,0,0,0,0, + // 0x5b8c 完 + 140,91,32,34,16,36,2,253,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,75,255,255,255,255,209,252,0,11,255,255,255,255,208,0,0,11,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,63,128,15,224,0,0,0,0,63,64,11,224,0,0,0,0,127,0,11,224,0,0,0,0,191,0,11,224,0,0,0,0,255,0,11,224,0,0,0,1,253,0,11,224,0,16,0,3,252,0,11,224,0,62,0,15,248,0,11,224,0,63,0,127,240,0,11,224,0,63,6,255,192,0,11,240,0,127,191,255,0,0,11,255,255,254,255,248,0,0,3,255,255,253,127,128,0,0,1,255,255,244,36,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,33,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,195,255,255,255,255,252,127,0,5,67,255,255,255,255,252,21,0,0,3,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,7,224,3,248,0,0,0,0,0,7,240,3,248,0,0,0,0,0,11,240,3,248,0,0,0,0,0,15,224,3,255,255,255,192,0,0,15,208,3,255,255,255,192,0,0,31,224,3,255,255,255,192,0,0,47,240,3,248,0,0,0,0,0,63,244,3,248,0,0,0,0,0,127,252,3,248,0,0,0,0,0,255,255,3,248,0,0,0,0,1,253,63,211,248,0,0,0,0,3,252,31,251,248,0,0,0,0,11,244,7,255,253,0,0,0,0,47,240,1,255,255,255,255,255,192,127,192,0,47,255,255,255,255,128,47,64,0,1,191,255,255,255,64,9,0,0,0,0,5,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,34,34,50,36,1,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,192,0,80,0,0,0,127,0,15,192,0,255,0,0,0,127,0,15,192,3,253,0,0,0,127,0,15,192,15,254,170,170,128,127,0,0,0,63,255,255,255,244,0,0,0,0,255,255,255,255,240,0,0,0,7,255,64,0,47,208,0,0,0,127,255,208,0,191,128,0,0,3,255,223,248,2,255,0,0,0,3,254,3,255,31,248,0,0,0,0,244,0,191,255,224,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,191,255,244,0,0,0,0,0,27,255,255,255,208,0,0,0,2,255,254,11,255,255,164,0,1,191,255,224,0,191,255,255,208,127,255,253,0,0,6,255,255,128,63,255,255,255,255,255,255,255,0,31,147,255,255,255,255,252,5,0,0,3,255,255,255,255,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,244,0,0,1,252,0,0, + // 0x5bab 宫 + 171,91,30,35,24,36,3,252,0,0,0,110,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,254,85,85,85,85,85,91,240,253,0,0,0,0,0,7,240,253,0,0,0,0,0,7,240,253,42,170,170,170,170,135,240,253,63,255,255,255,255,199,240,0,63,255,255,255,255,192,0,0,63,0,0,0,15,192,0,0,63,0,0,0,15,192,0,0,63,0,0,0,15,192,0,0,63,170,170,170,175,192,0,0,63,255,255,255,255,192,0,0,63,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,240,0,0,0,0,190,0,7,240,0,0,0,0,190,0,7,240,0,0,0,0,190,0,7,240,0,0,0,0,190,0,7,240,0,0,0,0,190,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,240,0,0,0,0,190,0,0,0,0,0,0,0,0,0, + // 0x5bf9 对 + 249,91,33,34,50,36,2,253,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,127,255,255,248,0,0,63,64,0,127,255,255,248,0,0,63,64,0,127,255,255,244,0,0,63,64,0,0,0,3,244,0,0,63,128,0,0,0,3,242,255,255,255,255,64,0,0,7,242,255,255,255,255,64,0,0,11,242,255,255,255,255,64,1,0,11,224,0,0,63,64,0,15,128,15,208,0,0,63,64,0,47,224,31,192,0,0,63,64,0,15,248,47,192,4,0,63,64,0,3,254,63,128,188,0,63,64,0,0,255,191,64,254,0,63,64,0,0,63,255,0,127,64,63,64,0,0,15,255,0,63,192,63,64,0,0,3,254,0,15,208,63,64,0,0,2,255,64,15,224,63,64,0,0,3,255,192,7,240,63,64,0,0,15,255,240,3,240,63,64,0,0,31,239,248,2,64,63,64,0,0,63,195,252,0,0,63,64,0,0,191,129,255,0,0,63,64,0,1,255,0,190,0,0,63,64,0,7,252,0,52,0,0,63,64,0,31,244,0,0,0,0,63,64,0,127,224,0,0,0,165,191,64,0,255,128,0,0,0,255,255,0,0,62,0,0,0,0,255,254,0,0,20,0,0,0,0,191,228,0,0, + // 0x5c06 将 + 6,92,34,34,50,36,1,253,0,3,240,0,0,0,6,224,0,0,3,240,0,0,22,255,248,0,0,3,240,5,175,255,255,252,0,0,3,242,255,255,255,254,64,0,4,3,241,255,255,233,0,0,0,126,3,240,233,64,16,0,20,0,63,67,240,0,2,244,0,63,64,47,195,240,109,2,248,0,191,64,15,211,240,127,0,252,0,254,0,11,243,240,63,64,253,3,252,0,3,247,240,47,128,190,7,244,0,3,255,240,15,192,126,15,224,0,1,231,240,15,208,100,63,192,0,0,3,240,11,128,0,191,0,0,0,3,240,0,0,0,127,64,0,0,3,240,0,0,0,47,128,0,0,3,240,0,0,0,47,128,0,0,3,242,255,255,255,255,255,224,0,3,242,255,255,255,255,255,224,0,11,242,255,255,255,255,255,224,0,127,240,0,0,0,47,128,0,2,255,240,0,128,0,47,128,0,31,255,240,11,240,0,47,128,0,191,251,240,7,248,0,47,128,0,191,195,240,2,253,0,47,128,0,63,3,240,0,255,0,47,128,0,40,3,240,0,127,128,47,128,0,0,3,240,0,47,192,47,128,0,0,3,240,0,15,64,47,128,0,0,3,240,0,4,0,47,128,0,0,3,240,0,0,0,63,128,0,0,3,240,0,0,191,255,128,0,0,3,240,0,0,127,255,0,0,0,3,240,0,0,63,248,0,0, + // 0x5c0f 小 + 15,92,34,35,59,36,1,252,0,0,0,1,84,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,14,64,2,252,0,46,0,0,0,31,224,2,252,0,255,0,0,0,47,208,2,252,0,127,128,0,0,63,192,2,252,0,63,192,0,0,63,192,2,252,0,31,224,0,0,127,128,2,252,0,15,240,0,0,191,0,2,252,0,7,248,0,0,255,0,2,252,0,3,252,0,1,254,0,2,252,0,2,254,0,2,253,0,2,252,0,0,255,0,3,252,0,2,252,0,0,255,64,11,244,0,2,252,0,0,127,128,15,240,0,2,252,0,0,63,192,47,224,0,2,252,0,0,47,208,127,192,0,2,252,0,0,31,224,127,64,0,2,252,0,0,15,240,6,0,0,2,252,0,0,15,208,0,0,0,2,252,0,0,4,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,21,87,252,0,0,0,0,0,0,63,255,248,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,31,254,128,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c31 就 + 49,92,34,35,59,36,1,252,0,0,252,0,0,7,224,0,0,0,0,252,0,0,7,224,80,0,0,0,252,0,0,7,227,240,0,0,0,252,0,0,7,226,252,0,0,0,252,0,0,7,224,254,0,63,255,255,255,240,7,224,127,64,63,255,255,255,240,7,224,47,192,63,255,255,255,240,7,224,15,128,0,0,0,0,0,7,224,4,0,0,0,0,0,0,11,240,0,0,3,255,255,255,79,255,255,255,208,7,255,255,255,79,255,255,255,208,7,255,255,255,79,255,255,255,208,7,240,0,47,64,11,224,0,0,7,240,0,47,64,15,228,0,0,7,240,0,47,64,15,254,0,0,7,240,0,47,64,15,254,0,0,7,255,255,255,64,15,254,0,0,7,255,255,255,64,31,254,0,0,7,255,255,255,64,47,254,0,0,0,0,253,0,0,63,254,0,0,0,0,253,4,0,63,190,0,0,3,240,253,63,0,127,126,0,0,7,240,253,63,0,191,126,0,0,11,224,253,47,128,254,126,0,0,15,208,253,15,194,252,126,1,0,15,192,253,15,211,248,126,2,208,47,128,253,7,235,244,126,2,240,63,64,253,2,95,240,126,2,240,191,0,253,0,63,192,126,3,224,44,0,252,0,255,128,127,71,224,0,127,252,3,255,0,63,255,208,0,63,252,2,252,0,63,255,192,0,63,224,0,112,0,15,255,64,0,0,0,0,0,0,0,0,0, + // 0x5c4f 屏 + 79,92,33,33,41,36,1,252,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,0,1,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,188,0,0,127,64,0,0,253,0,254,0,0,255,0,0,0,253,0,63,64,1,252,0,0,0,253,0,47,128,3,248,0,0,0,253,127,255,255,255,255,255,0,0,253,191,255,255,255,255,255,0,0,252,191,255,255,255,255,255,0,0,252,0,31,192,3,240,0,0,1,252,0,31,192,3,240,0,0,1,252,0,31,192,3,240,0,0,1,252,0,31,192,3,240,0,0,2,248,0,31,192,3,240,0,0,3,250,255,255,255,255,255,255,192,3,246,255,255,255,255,255,255,192,3,242,255,255,255,255,255,255,192,7,240,0,63,64,3,240,0,0,11,224,0,191,0,3,240,0,0,15,224,1,254,0,3,240,0,0,31,192,7,252,0,3,240,0,0,63,192,47,244,0,3,240,0,0,127,65,255,208,0,3,240,0,0,127,0,255,64,0,3,240,0,0,9,0,56,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x5de5 工 + 229,93,32,28,224,36,2,255,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,5,85,85,95,245,85,85,80,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85, + // 0x5dee 差 + 238,93,33,34,50,36,1,253,0,0,20,0,0,3,144,0,0,0,1,252,0,0,7,248,0,0,0,0,255,0,0,15,240,0,0,0,0,127,64,0,31,208,0,0,0,0,63,192,0,63,192,0,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,253,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,3,254,255,255,255,255,224,0,0,3,250,255,255,255,255,240,0,0,11,242,255,255,255,255,240,0,0,15,240,0,15,224,0,0,0,0,47,208,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,255,64,0,15,224,0,0,0,2,254,0,0,15,224,0,0,0,7,252,0,0,15,224,0,0,0,47,244,255,255,255,255,255,255,0,127,224,255,255,255,255,255,255,0,31,128,255,255,255,255,255,255,0,6,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,31,31,248,36,3,254,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,21,85,85,85,85,87,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,229,85,85,85,87,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,2,248,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,208,15,224,0,0,0,0,1,252,15,224,0,0,0,0,1,252,15,224,0,0,0,0,2,252,15,224,0,0,0,0,3,252,15,240,0,0,0,0,7,248,11,254,85,85,85,85,111,240,3,255,255,255,255,255,255,224,1,255,255,255,255,255,255,192,0,43,255,255,255,255,249,0, + // 0x5e73 平 + 115,94,32,32,0,36,2,253,5,85,85,85,85,85,85,80,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,4,0,15,224,0,80,0,0,126,0,15,224,0,255,0,0,127,0,15,224,0,254,0,0,63,128,15,224,2,252,0,0,47,192,15,224,3,248,0,0,15,208,15,224,7,244,0,0,11,240,15,224,15,224,0,0,7,240,15,224,31,192,0,0,3,224,15,224,47,128,0,0,1,0,15,224,1,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,95,245,85,85,85,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x5e76 并 + 118,94,32,35,24,36,2,252,0,1,192,0,0,3,144,0,0,15,224,0,0,11,248,0,0,11,244,0,0,15,240,0,0,3,252,0,0,47,208,0,0,1,253,0,0,63,192,0,0,0,255,0,0,191,0,0,0,0,127,0,0,253,0,0,0,0,56,0,0,44,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,1,253,0,0,191,0,0,0,2,252,0,0,127,0,0,0,3,248,0,0,127,0,0,0,3,248,0,0,127,0,0,0,11,240,0,0,127,0,0,0,15,224,0,0,127,0,0,0,63,208,0,0,127,0,0,0,191,128,0,0,127,0,0,3,255,0,0,0,127,0,0,31,252,0,0,0,127,0,0,191,244,0,0,0,127,0,0,63,192,0,0,0,127,0,0,30,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0, + // 0x5e8a 床 + 138,94,34,34,50,36,1,253,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,0,0,0,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,191,255,255,255,255,255,192,2,248,191,255,255,255,255,255,192,2,248,191,255,255,255,255,255,192,2,248,0,0,127,253,0,0,0,3,248,0,0,191,255,0,0,0,3,244,0,1,255,255,128,0,0,3,244,0,3,255,255,208,0,0,3,244,0,11,251,251,240,0,0,3,240,0,47,219,243,252,0,0,7,240,0,127,203,241,255,0,0,7,240,1,255,11,240,191,192,0,11,224,7,253,11,240,47,240,0,15,208,31,244,11,240,15,253,0,15,208,191,224,11,240,3,255,128,31,195,255,128,11,240,0,255,224,63,194,253,0,11,240,0,47,128,63,64,180,0,11,240,0,7,0,191,0,0,0,11,240,0,0,0,62,0,0,0,11,240,0,0,0,8,0,0,0,11,224,0,0,0, + // 0x5e94 应 + 148,94,34,35,59,36,1,252,0,0,0,0,189,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,192,0,0,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,0,24,0,0,208,0,2,248,0,0,253,0,1,253,0,2,248,26,0,190,0,2,252,0,2,248,127,0,127,0,3,252,0,2,248,63,64,63,0,3,244,0,2,248,47,128,63,128,7,240,0,2,248,31,192,47,192,15,240,0,2,248,15,208,31,192,15,208,0,3,248,11,240,15,208,47,192,0,3,248,7,240,15,224,63,128,0,3,244,3,244,11,224,127,0,0,3,244,2,248,7,240,191,0,0,3,244,1,252,7,224,253,0,0,3,240,0,253,0,2,252,0,0,7,240,0,248,0,3,244,0,0,11,240,0,64,0,11,240,0,0,15,224,0,0,0,15,208,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,63,64,0,0,47,199,255,255,255,255,255,255,208,63,135,255,255,255,255,255,255,208,127,71,255,255,255,255,255,255,208,63,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e9f 废 + 159,94,33,35,59,36,1,252,0,0,0,0,109,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,127,192,0,0,0,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,248,0,0,4,0,0,0,0,3,248,3,160,15,192,20,0,0,3,248,7,240,31,192,253,0,0,3,248,11,240,47,192,191,64,0,3,248,15,224,63,128,47,192,0,3,248,31,192,63,64,15,240,0,3,248,63,192,127,0,3,128,0,3,248,191,255,255,255,255,255,64,3,244,127,255,255,255,255,255,64,3,244,63,255,255,255,255,255,64,3,244,16,2,252,0,0,0,0,3,244,0,3,244,0,0,0,0,3,244,0,11,240,0,0,0,0,3,244,0,15,255,255,255,128,0,3,240,0,47,255,255,255,224,0,7,240,0,127,255,255,255,192,0,7,240,0,255,208,0,127,64,0,11,240,3,255,244,1,255,0,0,11,224,15,251,253,7,252,0,0,15,208,63,224,191,159,240,0,0,15,209,255,128,47,255,192,0,0,31,203,255,0,15,255,128,0,0,47,207,248,0,191,255,248,0,0,63,131,208,27,255,239,255,228,0,127,1,3,255,253,2,255,255,192,127,0,3,255,208,0,31,255,0,9,0,0,248,0,0,0,109,0,0,0,0,0,0,0,0,0,0, + // 0x5ea6 度 + 166,94,33,35,59,36,1,252,0,0,0,0,190,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,0,0,0,0,0,0,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,249,170,255,234,171,255,170,64,2,249,255,255,255,255,255,255,128,2,249,255,255,255,255,255,255,128,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,244,0,63,170,170,252,0,0,2,244,0,63,255,255,252,0,0,3,244,0,63,255,255,252,0,0,3,244,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,255,255,255,255,255,224,0,3,240,255,255,255,255,255,240,0,3,240,170,191,170,170,191,224,0,7,240,0,255,0,0,127,192,0,11,224,0,63,192,1,255,0,0,15,208,0,31,244,11,252,0,0,15,192,0,7,255,127,240,0,0,31,192,0,0,255,255,128,0,0,63,128,0,6,255,255,144,0,0,63,64,22,255,255,255,255,148,0,191,3,255,255,248,31,255,255,192,126,2,255,254,0,0,191,255,128,8,1,249,0,0,0,1,111,0,0,0,0,0,0,0,0,0,0, + // 0x5f00 开 + 0,95,32,33,8,36,2,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,255,0,0,63,128,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,255,0,0,127,128,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,253,0,0,63,64,0,0,1,252,0,0,63,64,0,0,1,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,3,248,0,0,63,64,0,0,11,244,0,0,63,64,0,0,15,240,0,0,63,64,0,0,47,224,0,0,63,64,0,0,127,192,0,0,63,64,0,0,255,64,0,0,63,64,0,7,254,0,0,0,63,64,0,31,252,0,0,0,63,64,0,191,240,0,0,0,63,64,0,63,192,0,0,0,63,64,0,14,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0, + // 0x5f03 弃 + 3,95,33,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,3,252,0,0,0,0,0,0,0,7,248,0,11,64,0,0,0,0,15,240,0,63,240,0,0,0,0,47,208,0,11,253,0,0,0,0,63,128,0,1,255,128,0,15,255,255,239,255,255,255,224,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,255,0,1,85,85,64,0,0,0,191,64,0,0,63,64,0,31,192,44,0,0,0,63,64,0,31,192,0,0,0,0,63,64,0,31,192,0,0,0,0,63,64,0,31,192,0,0,0,0,63,64,0,31,192,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,191,0,0,31,192,0,0,0,0,254,0,0,31,192,0,0,0,2,253,0,0,31,192,0,0,0,7,252,0,0,31,192,0,0,0,31,244,0,0,31,192,0,0,0,191,208,0,0,31,192,0,0,7,255,128,0,0,31,192,0,0,127,253,0,0,0,31,192,0,0,47,224,0,0,0,31,192,0,0,14,0,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f0f 式 + 15,95,33,34,50,36,2,253,0,0,0,0,15,208,32,0,0,0,0,0,0,15,224,189,0,0,0,0,0,0,15,224,255,128,0,0,0,0,0,15,224,63,224,0,0,0,0,0,15,224,11,244,0,0,0,0,0,15,224,2,224,0,21,85,85,85,95,229,85,149,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,47,255,255,255,195,244,0,0,0,47,255,255,255,195,248,0,0,0,47,255,255,255,195,248,0,0,0,0,2,252,0,2,252,0,0,0,0,2,248,0,2,252,0,0,0,0,2,248,0,1,252,0,0,0,0,2,248,0,0,253,0,0,0,0,2,248,0,0,254,0,0,0,0,2,248,0,0,255,0,0,0,0,2,248,0,0,127,0,8,0,0,2,248,0,0,63,128,31,64,0,2,248,5,176,63,192,31,128,0,2,254,255,240,31,208,47,128,0,91,255,255,240,15,240,47,64,111,255,255,254,80,11,248,63,0,191,255,254,64,0,3,255,191,0,63,254,64,0,0,1,255,254,0,57,0,0,0,0,0,127,252,0,0,0,0,0,0,0,11,224,0, + // 0x5f15 引 + 21,95,29,35,24,36,2,252,0,0,0,0,0,0,5,0,0,0,0,0,0,0,63,128,31,255,255,255,0,0,63,128,31,255,255,255,0,0,63,128,31,255,255,255,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,7,255,255,255,0,0,63,128,11,255,255,255,0,0,63,128,11,255,255,255,0,0,63,128,15,208,0,0,0,0,63,128,15,208,0,0,0,0,63,128,15,192,0,0,0,0,63,128,31,192,0,0,0,0,63,128,47,192,0,0,0,0,63,128,47,255,255,255,64,0,63,128,63,255,255,255,64,0,63,128,63,255,255,255,0,0,63,128,127,0,0,127,0,0,63,128,26,0,0,127,0,0,63,128,0,0,0,127,0,0,63,128,0,0,0,191,0,0,63,128,0,0,0,190,0,0,63,128,0,0,0,254,0,0,63,128,0,0,0,253,0,0,63,128,0,0,1,253,0,0,63,128,0,0,2,252,0,0,63,128,0,149,91,252,0,0,63,128,0,191,255,244,0,0,63,128,0,127,255,240,0,0,63,128,0,63,254,64,0,0,63,128,0,0,0,0,0,0,0,0, + // 0x5f39 弹 + 57,95,33,35,59,36,2,252,0,0,0,0,64,0,10,64,0,0,0,0,7,224,0,15,224,0,255,255,244,7,244,0,47,192,0,255,255,244,2,252,0,63,128,0,255,255,244,0,253,0,127,0,0,0,2,244,0,191,0,253,0,0,0,2,244,0,61,1,252,0,0,0,2,244,0,0,3,244,0,0,0,2,244,63,255,255,255,252,0,0,3,244,63,255,255,255,252,0,63,255,244,63,170,255,170,252,0,127,255,244,63,0,254,0,252,0,127,255,244,63,0,254,0,252,0,126,0,0,63,170,255,170,252,0,126,0,0,63,255,255,255,252,0,125,0,0,63,255,255,255,252,0,125,0,0,63,0,254,0,252,0,125,0,0,63,0,254,0,252,0,127,255,244,63,0,254,0,252,0,191,255,244,63,255,255,255,252,0,191,255,244,63,255,255,255,252,0,0,3,244,42,170,255,170,168,0,0,3,240,0,0,254,0,0,0,0,3,240,0,0,254,0,0,0,0,3,247,255,255,255,255,255,64,0,3,243,255,255,255,255,255,64,0,3,243,255,255,255,255,255,64,0,7,240,0,0,254,0,0,0,0,7,224,0,0,254,0,0,0,0,11,224,0,0,254,0,0,0,0,31,208,0,0,254,0,0,0,63,255,192,0,0,254,0,0,0,47,255,128,0,0,254,0,0,0,31,254,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f52 归 + 82,95,30,35,24,36,3,252,0,2,244,0,0,0,0,0,0,3,244,0,0,0,0,0,0,3,244,0,0,0,0,0,0,3,244,63,255,255,255,240,168,3,244,63,255,255,255,240,253,3,244,63,255,255,255,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,0,0,0,11,240,253,3,244,15,255,255,255,240,253,3,244,15,255,255,255,240,253,3,244,15,255,255,255,240,253,3,244,5,85,85,91,240,253,3,244,0,0,0,11,240,253,3,240,0,0,0,11,240,253,7,240,0,0,0,11,240,169,11,240,0,0,0,11,240,0,15,240,0,0,0,11,240,0,15,224,0,0,0,11,240,0,31,208,0,0,0,11,240,0,63,192,0,0,0,11,240,0,127,128,21,85,85,91,240,0,255,0,191,255,255,255,240,3,254,0,191,255,255,255,240,11,252,0,191,255,255,255,240,47,240,0,0,0,0,11,240,31,208,0,0,0,0,11,240,3,64,0,0,0,0,6,160,0,0,0,0,0,0,0,0, + // 0x5f84 径 + 132,95,34,34,50,36,1,253,0,0,144,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,244,63,255,255,255,253,0,0,47,224,63,255,255,255,253,0,0,191,192,63,255,255,255,252,0,3,255,0,2,244,0,3,248,0,15,252,0,2,252,0,15,240,0,127,240,16,0,254,0,47,208,0,63,128,126,0,127,128,127,128,0,45,0,255,0,47,225,255,0,0,0,2,252,0,11,251,252,0,0,0,11,244,0,3,255,240,0,0,0,31,224,0,1,255,224,0,0,0,127,192,0,31,255,254,0,0,1,255,192,1,255,251,255,224,0,7,255,192,111,255,64,191,255,144,47,255,195,255,248,0,11,255,224,255,255,193,255,64,21,0,191,192,191,95,192,160,0,63,0,2,0,61,31,192,0,0,63,0,0,0,20,31,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,195,255,255,255,255,255,208,0,31,195,255,255,255,255,255,208,0,31,195,255,255,255,255,255,208,0,31,192,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,34,34,50,36,1,253,0,1,128,0,0,106,0,0,0,0,3,248,0,0,127,0,0,0,0,11,244,0,0,127,0,0,0,0,47,224,0,0,127,0,0,0,0,127,192,0,0,191,0,0,0,2,255,0,63,255,255,255,255,0,11,252,0,63,255,255,255,255,0,63,240,0,63,255,255,255,255,0,63,192,0,0,0,127,0,0,0,30,0,252,0,0,127,0,0,0,4,2,252,0,0,127,0,0,0,0,7,244,0,0,191,0,0,0,0,15,243,255,255,255,255,255,224,0,63,195,255,255,255,255,255,224,0,255,131,255,255,255,255,255,224,3,255,128,0,0,0,47,192,0,31,255,128,0,0,0,47,192,0,191,255,128,0,0,0,47,192,0,127,95,131,255,255,255,255,255,208,61,31,131,255,255,255,255,255,208,16,31,131,255,255,255,255,255,208,0,31,128,0,0,0,47,192,0,0,31,128,2,192,0,47,192,0,0,31,128,15,224,0,47,192,0,0,31,128,11,244,0,47,192,0,0,31,128,3,252,0,47,192,0,0,31,128,1,254,0,47,192,0,0,31,128,0,191,0,47,192,0,0,31,128,0,63,64,47,192,0,0,31,128,0,44,0,47,192,0,0,31,128,0,0,0,47,128,0,0,31,128,0,0,127,255,128,0,0,31,128,0,0,63,255,64,0,0,31,128,0,0,63,248,0,0, + // 0x5faa 循 + 170,95,34,34,50,36,1,253,0,3,144,0,0,0,0,80,0,0,11,240,0,0,0,111,248,0,0,31,208,80,22,255,255,254,0,0,127,128,255,255,255,255,144,0,1,255,0,255,255,255,240,0,0,7,252,0,254,64,7,240,0,0,47,240,0,253,0,7,240,0,0,191,128,64,253,0,7,240,0,0,62,1,252,255,255,255,255,255,208,4,3,248,255,255,255,255,255,208,0,11,240,255,255,255,255,255,208,0,31,208,253,0,7,224,0,0,0,63,192,253,0,11,224,0,0,0,255,64,253,0,11,208,0,0,2,255,64,253,0,11,208,0,0,11,255,64,253,63,255,255,255,0,47,255,64,252,63,255,255,255,0,255,255,64,252,63,170,170,255,0,191,63,64,252,63,0,0,63,0,60,63,64,252,63,0,0,63,0,0,63,64,252,63,255,255,255,0,0,63,64,252,63,255,255,255,0,0,63,65,252,63,85,85,127,0,0,63,65,248,63,0,0,63,0,0,63,66,248,63,0,0,63,0,0,63,67,244,63,255,255,255,0,0,63,67,240,63,255,255,255,0,0,63,71,240,63,85,85,127,0,0,63,75,224,63,0,0,63,0,0,63,79,208,63,0,0,63,0,0,63,95,192,63,255,255,255,0,0,63,111,128,63,255,255,255,0,0,63,71,0,63,85,85,127,0,0,47,65,0,63,0,0,42,0, + // 0x5fae 微 + 174,95,34,34,50,36,1,253,0,29,0,15,64,0,184,0,0,0,63,192,15,64,0,252,0,0,0,191,0,15,64,0,252,0,0,1,254,31,15,67,193,252,0,0,7,248,31,15,67,193,248,0,0,15,240,31,15,67,194,244,0,0,63,192,31,15,67,195,244,0,0,191,0,31,15,67,195,255,255,208,61,15,239,15,67,199,255,255,224,16,31,239,15,67,203,255,255,224,0,63,159,255,255,223,208,63,0,0,127,31,255,255,239,208,63,0,0,254,31,255,255,255,224,62,0,3,253,0,0,0,127,224,126,0,11,253,0,0,0,255,240,125,0,31,253,0,0,0,253,240,188,0,63,253,63,255,255,244,240,252,0,255,253,63,255,255,224,244,252,0,189,253,63,255,255,208,249,248,0,56,253,2,240,125,0,190,244,0,16,253,2,240,125,0,127,240,0,0,253,3,240,125,0,63,240,0,0,253,3,240,125,0,63,224,0,0,253,3,240,125,0,47,192,0,0,253,3,224,125,0,31,192,0,0,253,7,224,126,184,63,208,0,0,253,11,208,191,248,191,240,0,0,253,15,194,255,245,255,244,0,0,253,31,129,254,3,249,252,0,0,253,63,64,144,15,240,255,0,0,253,255,0,0,127,192,63,208,0,253,60,0,0,255,0,31,240,0,253,20,0,0,188,0,7,192,0,189,0,0,0,32,0,1,64, + // 0x5fc3 心 + 195,95,34,34,50,36,1,253,0,0,0,144,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,1,255,254,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,31,0,0,1,228,15,208,0,0,127,128,0,1,252,15,208,0,0,47,208,0,2,252,15,208,0,0,15,240,0,2,248,15,208,0,0,7,248,0,3,248,15,208,0,0,3,252,0,3,244,15,208,0,0,1,254,0,7,240,15,208,0,0,0,255,0,11,240,15,208,0,0,0,127,128,15,224,15,208,0,0,0,63,192,31,208,15,208,0,0,0,47,208,47,192,15,208,0,0,208,15,224,127,128,15,208,0,0,252,15,240,255,0,15,208,0,0,252,11,208,126,0,15,208,0,1,252,1,0,4,0,15,208,0,1,252,0,0,0,0,15,208,0,2,248,0,0,0,0,15,240,0,7,244,0,0,0,0,15,255,255,255,240,0,0,0,0,7,255,255,255,224,0,0,0,0,1,191,255,255,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x5ffd 忽 + 253,95,34,34,50,36,1,253,0,0,45,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,255,255,255,255,255,248,0,0,11,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,191,192,127,64,254,3,244,0,2,255,0,254,1,252,3,244,0,11,252,2,252,3,248,3,240,0,63,240,7,244,7,240,3,240,0,31,192,31,224,15,224,7,240,0,3,0,127,192,47,192,7,240,0,0,1,255,0,127,64,7,240,0,0,11,252,0,255,0,11,240,0,0,63,240,3,252,0,15,224,0,2,255,192,15,244,0,15,208,0,3,254,0,63,208,0,47,192,0,0,244,2,255,64,127,255,192,0,0,0,15,253,0,63,255,64,0,0,0,11,244,0,47,249,0,0,0,0,2,199,208,0,0,0,0,0,0,0,15,252,0,0,0,0,0,16,5,71,255,64,14,0,0,0,63,15,192,191,208,127,128,0,0,127,15,192,31,192,63,224,0,0,254,15,192,7,0,15,244,0,1,252,15,192,0,3,67,252,0,3,252,15,192,0,3,241,255,0,11,244,15,192,0,3,240,191,128,47,224,15,208,0,11,240,63,192,127,192,15,255,255,255,224,31,208,15,0,7,255,255,255,192,14,0,0,0,1,255,255,254,0,0,0, + // 0x6027 性 + 39,96,33,35,59,36,1,252,0,63,64,0,0,47,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,3,244,63,64,0,0,0,63,64,3,240,63,64,0,0,0,63,64,7,240,63,64,0,0,0,63,64,11,240,63,64,0,0,0,63,88,11,224,63,64,0,0,10,63,252,15,224,63,128,0,0,31,63,190,31,255,255,255,255,0,47,63,127,47,255,255,255,255,0,47,63,95,127,255,255,255,255,0,63,63,79,255,64,63,64,0,0,62,63,79,255,0,63,64,0,0,61,63,64,254,0,63,64,0,0,125,63,66,252,0,63,64,0,0,188,63,64,120,0,63,64,0,0,188,63,64,0,0,63,64,0,0,0,63,64,0,0,63,128,0,0,0,63,64,15,255,255,255,253,0,0,63,64,15,255,255,255,253,0,0,63,64,15,255,255,255,253,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,128,0,0,0,63,67,255,255,255,255,255,192,0,63,67,255,255,255,255,255,192,0,63,67,255,255,255,255,255,192,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x603b 总 + 59,96,33,34,50,36,2,253,0,0,96,0,0,13,0,0,0,0,2,252,0,0,47,208,0,0,0,0,254,0,0,63,192,0,0,0,0,191,64,0,191,64,0,0,0,0,63,192,0,254,0,0,0,0,0,31,208,2,252,0,0,0,0,0,15,128,3,248,0,0,0,0,127,255,255,255,255,254,0,0,0,127,255,255,255,255,254,0,0,0,127,255,255,255,255,254,0,0,0,127,0,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,127,255,255,255,255,254,0,0,0,127,255,255,255,255,254,0,0,0,127,255,255,255,255,254,0,0,0,0,0,7,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,240,0,0,0,0,1,0,169,11,252,0,7,0,0,11,240,254,1,255,0,47,128,0,15,224,254,0,127,192,31,208,0,15,208,254,0,47,192,11,240,0,31,192,254,0,11,0,3,252,0,47,192,254,0,0,1,1,253,0,63,64,254,0,0,3,224,191,0,191,0,254,0,0,3,244,63,64,254,0,255,0,0,7,240,47,0,124,0,255,255,255,255,240,20,0,4,0,127,255,255,255,208,0,0,0,0,27,255,255,255,64,0,0, + // 0x6062 恢 + 98,96,34,35,59,36,1,252,0,63,0,31,64,0,0,0,0,0,63,0,31,64,0,0,0,0,0,63,0,31,64,0,0,0,0,0,63,0,47,64,0,0,0,0,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,103,255,255,255,255,255,208,10,63,248,31,64,0,0,0,0,31,63,188,31,64,3,240,0,0,31,63,61,31,64,3,240,0,0,31,63,46,31,64,3,240,0,0,46,63,31,47,64,3,240,0,0,46,63,15,47,73,3,240,11,128,61,63,14,47,79,131,240,15,192,60,63,0,47,79,67,240,31,128,188,63,0,47,79,3,240,47,0,248,63,0,47,95,3,240,63,0,16,63,0,47,47,3,240,125,0,0,63,0,63,62,3,240,188,0,0,63,0,63,61,3,244,248,0,0,63,0,63,124,7,244,96,0,0,63,0,63,4,11,248,0,0,0,63,0,126,0,15,252,0,0,0,63,0,190,0,31,189,0,0,0,63,0,253,0,63,63,0,0,0,63,0,252,0,127,47,64,0,0,63,1,252,0,253,15,192,0,0,63,2,248,2,252,15,224,0,0,63,3,240,11,240,7,248,0,0,63,11,240,47,224,2,254,0,0,63,15,209,255,128,0,255,192,0,63,47,195,254,0,0,63,224,0,63,15,66,248,0,0,15,192,0,63,2,0,208,0,0,2,64,0,0,0,0,0,0,0,0,0, + // 0x606f 息 + 111,96,33,34,50,36,2,253,0,0,0,15,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,31,192,0,0,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,170,170,170,170,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,149,85,85,85,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,149,85,85,85,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,170,170,170,170,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,0,0,9,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,224,0,8,0,0,3,224,127,11,248,0,190,0,0,3,240,127,2,254,0,191,128,0,11,240,127,0,255,0,63,224,0,15,208,127,0,56,0,15,244,0,47,192,127,0,0,30,3,252,0,127,128,127,0,0,31,128,255,0,255,0,127,0,0,63,128,191,64,253,0,63,255,255,255,64,63,64,36,0,47,255,255,255,0,24,0,0,0,11,255,255,248,0,0,0, + // 0x611f 感 + 31,97,34,33,41,36,1,254,0,0,0,0,11,224,189,0,0,0,0,0,0,7,225,255,208,0,0,0,0,0,7,240,31,224,0,1,170,170,170,175,250,171,234,64,1,255,255,255,255,255,255,255,128,1,255,255,255,255,255,255,255,128,1,248,0,0,3,244,0,0,0,1,248,0,0,2,248,1,0,0,1,248,0,0,1,252,11,224,0,1,249,255,255,244,252,15,208,0,2,249,255,255,244,253,31,192,0,2,244,0,0,0,190,63,128,0,2,244,0,0,0,127,127,0,0,3,244,255,255,240,63,254,0,0,3,240,255,255,240,47,252,0,0,3,240,253,87,240,15,244,1,0,7,240,252,3,240,15,240,3,128,11,224,252,3,240,63,244,3,224,15,192,253,87,240,255,252,7,208,31,192,255,255,247,254,255,75,192,63,128,255,255,255,248,127,255,192,191,0,0,5,7,224,31,255,64,61,0,0,47,129,64,2,253,0,8,0,5,111,244,0,1,0,0,0,36,31,199,254,0,47,128,0,0,127,31,192,255,64,47,224,0,0,254,31,192,46,0,11,248,0,1,252,31,192,4,7,147,253,0,3,248,31,192,0,7,224,255,0,15,240,31,192,0,15,224,63,192,63,208,15,255,255,255,192,31,208,47,128,11,255,255,255,192,15,64,5,0,1,255,255,254,0,0,0, + // 0x620f 戏 + 15,98,34,35,59,36,1,252,0,0,0,0,7,224,8,0,0,0,0,0,0,11,240,63,0,0,0,0,0,0,11,240,127,192,0,0,0,0,0,7,240,31,240,0,63,255,255,224,7,240,7,252,0,63,255,255,244,7,240,1,252,0,63,255,255,240,7,240,0,96,0,0,0,3,240,3,240,0,0,0,0,0,7,240,3,244,1,107,128,6,0,11,224,7,255,255,255,192,31,128,15,215,255,255,255,255,192,47,208,15,215,255,255,255,233,64,15,240,31,199,255,253,64,0,0,3,248,47,193,67,248,0,96,0,1,253,63,64,2,252,0,189,0,0,191,127,0,2,252,0,253,0,0,63,255,0,1,252,2,252,0,0,31,254,0,1,253,3,244,0,0,11,252,0,0,253,11,240,0,0,3,252,0,0,254,31,208,0,0,7,254,0,0,255,63,192,0,0,15,255,0,0,191,191,0,0,0,47,255,192,0,127,253,0,0,0,127,223,224,0,63,248,0,0,0,255,15,240,0,63,240,5,0,3,254,7,248,0,63,208,11,128,11,252,2,248,1,255,224,11,208,47,240,0,224,7,255,240,15,192,191,208,0,64,47,255,252,15,192,63,64,0,1,255,227,255,111,192,13,0,0,11,255,65,255,255,128,0,0,0,2,252,0,127,255,0,0,0,0,0,160,0,31,254,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,34,35,59,36,1,252,0,0,0,0,15,224,96,0,0,0,0,0,0,15,225,254,0,0,0,0,0,0,15,225,255,192,0,0,0,0,0,15,224,47,244,0,0,0,0,0,15,224,7,252,0,0,0,0,0,15,224,0,240,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,253,85,85,91,245,85,85,64,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,2,252,0,0,3,240,1,228,0,2,252,0,0,3,244,3,252,0,2,255,255,255,3,244,3,244,0,2,255,255,255,3,248,11,240,0,2,255,255,255,2,248,15,224,0,2,252,0,127,2,252,31,192,0,2,252,0,127,1,252,63,192,0,2,252,0,127,0,253,127,64,0,2,252,0,127,0,254,255,0,0,2,252,0,127,0,255,253,0,0,3,248,0,190,0,191,248,0,0,3,248,0,190,0,127,240,0,0,3,244,0,190,0,63,208,5,0,7,244,0,253,0,191,192,11,128,11,241,255,253,1,255,208,11,208,11,240,255,252,11,255,240,11,208,15,224,191,224,63,255,248,15,192,47,208,0,2,255,211,254,31,192,63,192,0,31,255,1,255,255,128,127,64,0,15,248,0,127,255,0,47,0,0,3,208,0,15,253,0,9,0,0,1,0,0,0,80,0,0,0,0,0,0,0,0,0,0, + // 0x6237 户 + 55,98,30,35,24,36,1,252,0,0,0,1,240,0,0,0,0,0,0,3,248,0,0,0,0,0,0,2,252,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,224,0,63,255,255,255,255,255,224,0,63,255,255,255,255,255,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,64,0,0,0,15,224,0,63,255,255,255,255,255,224,0,63,255,255,255,255,255,224,0,127,255,255,255,255,255,224,0,127,0,0,0,0,15,224,0,191,0,0,0,0,15,224,0,191,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,64,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,34,34,50,36,1,253,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,189,0,47,255,255,255,192,0,31,255,128,47,255,255,255,196,7,255,255,64,47,255,255,255,207,255,255,224,0,0,0,0,0,15,255,249,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,224,0,127,15,224,0,0,0,11,224,0,127,15,255,255,255,224,11,224,0,127,15,255,255,255,224,11,224,0,127,15,255,255,255,224,11,224,0,127,15,208,7,240,0,11,255,255,255,15,208,7,240,0,11,255,255,255,15,192,7,240,0,11,255,255,255,15,192,7,240,0,11,224,0,0,31,192,7,240,0,11,224,0,0,47,192,7,240,0,11,208,0,0,47,128,7,240,0,15,208,0,0,63,64,7,240,0,15,208,0,0,127,0,7,240,0,15,192,0,0,191,0,7,240,0,31,192,0,0,253,0,7,240,0,31,192,0,2,252,0,7,240,0,47,128,0,3,248,0,7,240,0,63,64,0,11,240,0,7,240,0,191,0,0,47,224,0,7,240,0,254,0,0,63,192,0,7,240,0,124,0,0,15,64,0,7,240,0,8,0,0,1,0,0,7,240,0, + // 0x6247 扇 + 71,98,32,32,0,36,1,253,31,255,255,255,255,255,255,255,31,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,255,170,170,170,170,171,240,0,253,0,0,0,0,3,240,0,253,0,0,0,0,3,240,0,255,170,170,170,170,171,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,255,255,241,255,255,252,0,253,255,255,241,255,255,252,0,252,170,171,240,170,170,252,1,252,24,3,240,44,1,252,1,252,127,3,240,191,1,252,2,252,47,131,240,47,193,252,2,248,15,211,240,15,209,252,3,244,7,131,240,3,65,252,7,240,0,3,240,0,21,252,11,240,1,243,240,2,253,252,15,224,111,247,240,111,253,252,31,215,255,211,243,255,209,252,47,195,253,3,242,253,1,252,127,67,144,3,241,128,1,252,255,0,1,171,240,0,171,248,45,0,0,255,224,0,191,244,4,0,0,255,128,0,63,208, + // 0x624b 手 + 75,98,32,35,24,36,2,252,0,0,0,0,0,0,104,0,0,0,0,0,22,191,254,0,0,5,90,191,255,255,255,64,11,255,255,255,255,255,228,0,7,255,255,255,254,80,0,0,3,255,169,95,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,95,245,85,85,85,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,1,64,31,224,0,0,0,0,3,255,255,224,0,0,0,0,2,255,255,192,0,0,0,0,0,255,249,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,34,34,50,36,1,253,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,15,255,255,255,255,224,0,15,192,15,255,255,255,255,224,0,15,192,15,255,255,255,255,224,0,15,192,5,85,85,254,85,64,63,255,255,240,0,0,253,0,0,63,255,255,240,0,0,253,0,0,63,255,255,240,0,0,253,0,0,0,31,208,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,214,240,0,0,253,0,0,0,31,255,240,0,0,253,0,0,6,255,255,240,0,0,253,0,0,127,255,254,64,0,0,253,0,0,63,255,208,0,0,0,253,0,0,63,175,192,0,0,0,253,0,0,20,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,1,253,0,0,0,31,192,0,47,255,253,0,0,15,255,192,0,31,255,252,0,0,15,255,128,0,15,255,240,0,0,7,249,0,0,6,165,0,0,0, + // 0x6267 执 + 103,98,34,35,59,36,1,252,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,0,63,0,0,31,192,0,0,0,63,255,254,191,255,255,255,192,0,63,255,254,191,255,255,255,128,0,63,255,254,191,255,255,255,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,63,64,47,128,0,0,63,0,4,63,64,47,128,0,0,63,91,63,127,64,47,128,0,0,63,255,191,255,0,47,128,0,1,191,255,31,255,0,47,128,0,127,255,249,2,255,208,47,128,0,127,255,64,0,191,248,47,64,0,63,191,0,0,255,255,111,64,0,36,63,0,0,253,255,255,64,0,0,63,0,2,252,47,175,128,0,0,63,0,3,244,7,47,128,0,0,63,0,11,240,0,47,128,0,0,63,0,15,224,0,31,130,0,0,63,0,63,192,0,31,131,208,0,63,0,191,128,0,15,195,224,0,63,2,255,0,0,15,199,208,0,127,11,252,0,0,15,235,208,47,255,47,244,0,0,7,255,192,15,254,15,208,0,0,3,255,128,15,228,3,64,0,0,0,190,0,0,0,0,0,0,0,0,0,0, + // 0x6279 批 + 121,98,34,34,50,36,1,253,0,63,0,42,0,2,160,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,127,255,253,63,64,7,240,0,0,127,255,253,63,64,7,240,4,0,127,255,253,63,64,7,240,31,0,0,127,0,63,64,7,240,127,128,0,63,0,63,64,7,241,255,128,0,63,0,63,255,215,247,254,0,0,63,0,63,255,215,255,244,0,0,63,0,63,255,215,255,192,0,0,63,0,63,64,7,253,0,0,0,63,188,63,64,7,240,0,0,0,127,253,63,64,7,240,0,0,27,255,253,63,64,7,240,0,0,255,255,208,63,64,7,240,0,0,191,255,0,63,64,7,240,0,0,126,127,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,7,128,0,63,0,63,64,7,240,7,224,0,63,0,63,86,151,240,7,224,0,63,0,63,255,231,240,11,208,0,127,11,255,255,227,240,15,208,63,254,15,255,255,147,255,255,192,31,253,15,254,144,3,255,255,128,15,228,6,64,0,0,191,254,0, + // 0x6296 抖 + 150,98,34,35,59,36,1,252,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,16,0,47,128,0,0,47,128,0,126,0,47,128,0,0,47,128,0,255,208,47,128,0,0,47,128,0,47,248,47,128,0,0,47,128,0,7,254,47,128,0,63,255,255,192,0,253,47,128,0,63,255,255,192,0,36,47,128,0,63,255,255,192,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,1,64,0,47,128,0,0,47,128,3,244,0,47,128,0,0,47,128,11,254,0,47,128,0,0,47,128,2,255,208,47,128,0,0,47,128,64,127,244,47,128,0,0,47,223,192,11,240,47,128,0,0,47,255,192,1,192,47,128,0,27,255,255,192,0,0,47,128,0,191,255,249,0,0,0,47,128,0,127,255,192,0,0,0,47,239,208,63,175,128,0,0,6,191,255,208,16,47,128,0,107,255,255,255,224,0,47,128,63,255,255,255,249,64,0,47,128,63,255,255,191,128,0,0,47,128,47,250,64,47,128,0,0,47,128,21,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,47,255,128,0,0,0,47,128,0,15,255,0,0,0,0,47,128,0,15,248,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0,0, + // 0x62a5 报 + 165,98,34,35,59,36,1,252,0,31,192,0,0,0,0,0,0,0,31,192,15,255,255,255,253,0,0,31,192,15,255,255,255,253,0,0,31,192,15,255,255,255,253,0,0,31,192,15,208,0,0,253,0,0,31,192,15,208,0,0,252,0,0,31,192,15,208,0,0,252,0,63,255,255,143,208,0,1,252,0,63,255,255,143,208,0,2,252,0,63,255,255,143,208,42,171,248,0,0,47,192,15,208,63,255,244,0,0,31,192,15,208,47,255,208,0,0,31,192,15,208,0,0,0,0,0,31,192,15,208,0,0,0,0,0,31,192,15,255,255,255,254,0,0,31,192,15,255,255,255,255,0,0,31,219,143,255,255,255,255,0,0,47,255,207,219,224,0,191,0,27,255,255,207,215,240,0,253,0,191,255,254,79,211,244,1,252,0,127,255,192,15,209,252,2,252,0,63,175,192,15,208,253,3,244,0,16,31,192,15,208,191,11,240,0,0,31,192,15,208,63,207,224,0,0,31,192,15,208,31,255,192,0,0,31,192,15,208,11,255,64,0,0,31,192,15,208,3,255,0,0,0,31,192,15,208,7,255,64,0,0,31,192,15,208,31,255,208,0,0,31,192,15,208,127,255,248,0,0,47,192,15,211,255,75,255,128,63,255,192,15,255,253,2,255,208,63,255,64,15,223,240,0,127,64,47,249,0,15,211,128,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x62ac 抬 + 172,98,34,35,59,36,1,252,0,31,192,0,3,228,0,0,0,0,31,192,0,3,252,0,0,0,0,31,192,0,7,244,0,0,0,0,31,192,0,11,240,0,0,0,0,31,192,0,15,224,0,0,0,0,31,192,0,31,208,1,0,0,0,31,192,0,47,192,31,0,0,127,255,255,128,63,64,63,192,0,127,255,255,128,127,0,15,224,0,127,255,255,128,254,0,11,244,0,0,47,192,0,253,0,3,252,0,0,31,192,2,252,0,1,254,0,0,31,192,87,253,170,255,255,0,0,31,192,191,255,255,255,255,128,0,31,192,191,255,255,255,255,192,0,31,192,191,250,165,80,15,224,0,31,219,192,0,0,0,11,192,0,47,255,192,0,0,0,1,0,6,255,255,192,0,0,0,0,0,255,255,249,11,255,255,255,252,0,191,255,192,11,255,255,255,252,0,126,111,192,11,255,255,255,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,224,0,1,252,0,0,31,192,11,255,255,255,252,0,0,47,192,11,255,255,255,252,0,31,255,128,11,255,255,255,252,0,15,255,64,11,224,0,1,252,0,15,249,0,11,224,0,0,168,0,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,33,35,59,36,1,252,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,127,255,255,0,0,47,64,0,0,127,255,255,47,255,255,255,255,192,127,255,255,47,255,255,255,255,192,0,47,128,47,255,255,255,255,192,0,47,64,47,128,63,128,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,159,111,64,47,64,47,192,0,63,255,111,64,47,64,47,192,27,255,255,175,255,255,255,255,192,255,255,248,47,255,255,255,255,192,191,255,128,47,255,255,255,255,192,126,127,64,47,128,47,128,47,192,16,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,255,255,255,255,192,0,47,64,47,255,255,255,255,192,0,63,64,47,255,255,255,255,192,47,255,64,47,128,0,0,47,192,31,255,0,47,64,0,0,47,192,15,248,0,47,64,0,0,26,128,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,34,35,59,36,1,252,0,47,64,0,31,192,16,0,0,0,47,64,0,31,192,125,0,0,0,47,64,0,31,192,255,192,0,0,47,64,0,31,192,47,244,0,0,47,64,0,31,192,7,254,0,0,47,64,0,31,192,0,254,0,0,47,64,0,31,192,0,44,0,127,255,255,0,31,192,0,0,0,127,255,255,127,255,255,255,255,192,127,255,255,127,255,255,255,255,192,106,191,234,127,255,255,255,255,192,0,47,64,0,47,128,0,0,0,0,47,64,0,47,128,0,0,0,0,47,64,0,63,192,0,64,0,0,47,64,0,63,208,2,248,0,0,47,64,0,63,224,3,244,0,0,47,135,64,63,240,3,240,0,0,47,255,64,127,240,7,240,0,6,255,255,128,191,248,11,224,0,191,255,253,0,254,252,15,208,0,191,255,128,0,252,189,31,192,0,127,191,64,1,252,127,47,192,0,32,47,64,2,248,63,127,64,0,0,47,64,3,244,31,255,0,0,0,47,64,7,240,15,254,0,0,0,47,64,15,224,7,252,0,0,0,47,64,31,208,7,252,0,0,0,47,64,63,192,15,255,64,0,0,47,64,191,64,63,255,208,0,0,47,65,254,0,255,95,244,0,0,63,67,252,7,254,7,255,64,47,255,79,244,47,248,1,255,224,31,255,11,208,47,208,0,47,192,15,248,2,128,7,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x62e9 择 + 233,98,34,35,59,36,1,252,0,47,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,47,255,255,255,248,0,0,63,64,47,255,255,255,253,0,0,63,64,47,255,255,255,252,0,0,63,64,0,253,0,7,244,0,0,63,64,0,127,0,31,208,0,127,255,255,64,47,192,127,128,0,127,255,255,64,11,246,254,0,0,127,255,255,64,3,255,248,0,0,0,63,64,0,0,255,224,0,0,0,63,64,0,7,255,248,0,0,0,63,64,0,127,255,255,128,0,0,63,64,11,255,208,255,254,0,0,63,64,255,254,0,31,255,224,0,63,65,191,224,0,2,255,192,0,63,175,61,0,63,64,27,64,0,63,255,0,0,63,64,0,0,11,255,255,64,0,63,64,0,0,191,255,228,15,255,255,255,252,0,127,255,64,15,255,255,255,252,0,62,127,64,15,255,255,255,252,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,255,255,255,255,255,208,0,63,64,255,255,255,255,255,208,0,63,64,255,255,255,255,255,208,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,31,255,64,0,0,63,64,0,0,15,255,0,0,0,63,64,0,0,15,248,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,34,35,59,36,1,252,0,47,64,0,0,63,0,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,63,255,255,255,255,192,0,47,64,63,255,255,255,255,192,127,255,255,127,255,255,255,255,192,127,255,255,127,0,0,0,15,192,127,255,255,127,1,252,0,15,192,0,47,128,63,2,252,0,15,192,0,47,64,63,3,248,0,15,192,0,47,64,0,3,240,0,0,0,0,47,64,0,7,240,0,0,0,0,47,64,0,15,224,0,0,0,0,47,64,127,255,255,255,255,224,0,47,70,191,255,255,255,255,224,0,47,255,255,255,255,255,255,224,1,191,255,128,63,64,7,240,0,191,255,254,0,127,0,15,240,0,191,255,128,0,254,0,15,224,0,127,191,64,0,252,0,31,208,0,36,47,64,2,252,0,47,192,0,0,47,64,3,255,64,63,64,0,0,47,64,7,255,248,255,0,0,0,47,64,11,255,255,253,0,0,0,47,64,0,65,255,252,0,0,0,47,64,0,0,63,255,64,0,0,47,64,0,1,255,255,240,0,0,47,64,0,31,255,47,253,0,0,63,64,6,255,248,7,255,128,47,255,65,255,255,128,0,191,208,31,255,0,255,244,0,0,31,128,15,248,0,121,0,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x6321 挡 + 33,99,33,35,59,36,1,252,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,1,0,63,64,20,0,0,63,64,47,128,63,64,63,64,0,63,64,31,192,63,64,127,0,0,63,64,15,208,63,64,190,0,0,63,64,11,224,63,64,253,0,127,255,255,67,240,63,65,252,0,127,255,255,67,244,63,66,248,0,127,255,255,66,248,63,67,240,0,0,63,128,1,248,63,71,224,0,0,63,64,0,128,63,66,208,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,128,0,0,0,63,64,63,255,255,255,255,0,0,63,64,63,255,255,255,255,0,0,63,91,63,255,255,255,255,0,0,63,255,64,0,0,0,127,0,6,255,255,64,0,0,0,127,0,191,255,249,0,0,0,0,127,0,191,255,128,0,0,0,0,127,0,127,127,64,31,255,255,255,255,0,16,63,64,31,255,255,255,255,0,0,63,64,31,255,255,255,255,0,0,63,64,0,0,0,0,127,0,0,63,64,0,0,0,0,127,0,0,63,64,0,0,0,0,127,0,0,63,64,0,0,0,0,127,0,0,63,64,191,255,255,255,255,0,0,63,64,191,255,255,255,255,0,0,63,64,191,255,255,255,255,0,47,255,64,0,0,0,0,127,0,31,255,0,0,0,0,0,127,0,15,248,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0, + // 0x6324 挤 + 36,99,34,34,50,36,1,253,0,126,0,0,1,180,0,0,0,0,126,0,0,2,252,0,0,0,0,126,0,0,0,253,0,0,0,0,126,0,0,0,191,0,0,0,0,126,2,255,255,255,255,255,192,0,126,2,255,255,255,255,255,192,0,126,2,255,255,255,255,255,192,127,255,252,3,244,0,15,224,0,127,255,252,1,252,0,47,192,0,127,255,252,0,254,0,63,128,0,0,191,0,0,127,64,255,0,0,0,126,0,0,47,211,253,0,0,0,126,0,0,11,255,244,0,0,0,126,0,0,3,255,224,0,0,0,126,0,0,11,255,244,0,0,0,126,0,1,255,255,255,212,0,0,127,186,255,255,215,255,255,224,0,191,253,255,253,0,111,255,192,11,255,252,255,144,0,1,191,128,191,255,144,80,252,0,63,65,0,127,254,0,0,252,0,63,64,0,62,190,0,0,252,0,63,64,0,16,126,0,0,252,0,63,64,0,0,126,0,0,252,0,63,64,0,0,126,0,1,252,0,63,64,0,0,126,0,1,252,0,63,64,0,0,126,0,3,248,0,63,64,0,0,126,0,3,244,0,63,64,0,0,126,0,11,240,0,63,64,0,0,126,0,47,224,0,63,64,0,0,190,0,191,192,0,63,64,0,63,254,7,255,0,0,63,64,0,31,252,7,248,0,0,63,64,0,15,224,0,144,0,0,63,64,0, + // 0x635f 损 + 95,99,34,35,59,36,1,252,0,63,0,0,0,0,0,0,0,0,63,0,6,170,170,170,160,0,0,63,0,7,255,255,255,240,0,0,63,0,7,255,255,255,240,0,0,63,0,7,240,0,3,240,0,0,63,0,7,240,0,3,240,0,0,63,0,7,240,0,3,240,0,127,255,255,7,240,0,3,240,0,127,255,255,7,255,255,255,240,0,127,255,255,7,255,255,255,240,0,0,127,0,6,170,170,170,160,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,31,255,255,255,253,0,0,63,0,31,255,255,255,253,0,0,63,0,31,234,170,170,253,0,0,63,6,31,128,0,0,253,0,0,63,255,31,128,0,0,253,0,0,191,255,95,128,63,0,253,0,111,255,254,31,128,127,0,253,0,191,255,144,31,128,127,0,253,0,191,255,0,31,128,127,0,253,0,120,63,0,31,128,127,0,253,0,0,63,0,31,128,127,0,253,0,0,63,0,31,128,190,0,253,0,0,63,0,31,128,253,0,253,0,0,63,0,26,67,252,16,84,0,0,63,0,0,15,244,125,0,0,0,63,0,0,127,240,255,128,0,0,63,0,6,255,192,127,244,0,21,191,0,127,254,0,11,254,0,63,255,7,255,244,0,1,255,208,31,254,2,255,64,0,0,47,208,15,228,0,224,0,0,0,7,64,0,0,0,0,0,0,0,0,0, + // 0x6362 换 + 98,99,34,35,59,36,1,252,0,127,0,0,14,128,0,0,0,0,127,0,0,47,192,0,0,0,0,127,0,0,63,128,0,0,0,0,127,0,0,191,255,255,128,0,0,127,0,1,255,255,255,240,0,0,127,0,3,255,255,255,208,0,0,127,0,15,240,0,63,192,0,127,255,252,63,208,0,191,0,0,127,255,252,255,128,1,253,0,0,127,255,254,255,170,171,254,168,0,0,127,0,191,255,255,255,252,0,0,127,0,63,255,255,255,252,0,0,127,0,31,128,127,1,252,0,0,127,0,31,128,127,1,252,0,0,127,0,31,128,127,1,252,0,0,127,0,31,128,127,1,252,0,0,127,109,31,128,127,1,252,0,0,127,253,31,128,127,1,252,0,27,255,254,31,128,127,1,252,0,191,255,244,31,128,190,1,252,0,127,255,3,255,255,255,255,255,192,62,191,3,255,255,255,255,255,192,0,127,3,255,255,255,255,255,192,0,127,0,0,3,255,64,0,0,0,127,0,0,11,255,192,0,0,0,127,0,0,15,235,224,0,0,0,127,0,0,63,195,248,0,0,0,127,0,0,255,65,254,0,0,0,127,0,7,253,0,191,128,0,0,127,0,47,244,0,47,244,0,0,191,1,255,208,0,11,254,64,47,255,31,255,0,0,1,255,224,15,253,15,248,0,0,0,127,192,15,228,3,128,0,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,34,35,59,36,1,252,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,191,255,255,192,0,63,0,0,0,191,255,255,192,0,63,0,0,0,191,255,255,192,0,63,0,0,0,190,0,0,0,127,255,255,0,0,190,0,0,0,127,255,255,0,0,190,0,0,0,127,255,255,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,63,0,63,170,170,170,253,0,0,63,0,63,0,0,0,253,0,0,63,0,63,0,0,0,253,0,0,63,0,63,255,255,255,253,0,0,63,1,63,255,255,255,253,0,0,63,190,63,85,85,85,253,0,0,127,255,63,0,0,0,253,0,47,255,255,63,0,0,0,253,0,127,255,208,63,170,170,170,253,0,63,255,0,63,255,255,255,253,0,57,127,0,63,255,255,255,253,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,127,0,0,0,190,0,0,0,63,255,0,0,0,190,0,0,0,63,254,0,0,0,190,0,0,0,47,228,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,34,34,50,36,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,0,189,0,0,0,15,192,0,63,0,189,15,193,248,15,192,127,255,253,189,15,193,248,15,192,127,255,253,189,31,129,248,10,128,127,255,253,0,47,129,248,0,0,0,127,0,0,63,65,248,3,64,0,63,0,0,191,1,248,3,224,0,63,0,2,253,1,252,7,208,0,63,0,31,248,1,255,255,192,0,63,0,255,224,0,255,255,128,0,63,0,127,64,127,26,169,0,0,63,188,16,0,127,0,0,0,0,191,253,0,0,127,0,0,0,111,255,253,0,0,127,0,0,0,191,255,144,255,255,255,255,255,192,127,255,0,255,255,255,255,255,192,120,63,0,255,255,255,255,255,192,0,63,0,0,11,255,244,0,0,0,63,0,0,31,255,252,0,0,0,63,0,0,63,255,255,0,0,0,63,0,0,255,127,63,128,0,0,63,0,3,252,127,31,224,0,0,63,0,15,244,127,7,248,0,0,63,0,127,208,127,2,255,0,0,63,7,255,64,127,0,191,224,0,127,11,253,0,127,0,47,208,63,254,3,224,0,127,0,7,128,31,253,0,64,0,127,0,0,0,15,228,0,0,0,127,0,0,0, + // 0x63a5 接 + 165,99,34,35,59,36,1,252,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,191,255,255,255,255,64,0,47,64,191,255,255,255,255,64,0,47,64,127,255,255,255,255,64,0,47,128,0,252,0,15,192,0,127,255,254,0,253,0,31,192,0,127,255,254,0,126,0,63,64,0,127,255,254,0,127,0,63,0,0,0,47,64,0,63,0,126,0,0,0,47,66,255,255,255,255,255,208,0,47,67,255,255,255,255,255,208,0,47,67,255,255,255,255,255,208,0,47,64,0,7,244,0,0,0,0,47,174,0,11,240,0,0,0,0,63,255,0,15,208,0,0,0,27,255,255,255,255,255,255,255,208,255,255,230,255,255,255,255,255,208,191,255,66,255,255,255,255,255,208,126,47,64,0,253,0,31,192,0,0,47,64,1,252,0,47,192,0,0,47,64,3,248,0,63,64,0,0,47,64,7,244,0,127,0,0,0,47,64,15,255,128,254,0,0,0,47,64,31,255,255,252,0,0,0,47,64,6,159,255,248,0,0,0,47,64,0,0,255,254,0,0,0,47,64,0,7,255,255,224,0,0,63,64,5,191,253,191,253,0,47,255,71,255,255,224,11,255,64,15,255,3,255,249,0,0,191,0,15,248,2,249,0,0,0,28,0,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,34,34,50,36,1,253,0,62,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,127,1,248,31,193,248,15,192,127,255,253,248,31,129,248,15,192,127,255,253,248,31,129,248,15,192,127,255,253,248,47,65,248,0,0,0,63,0,0,63,1,248,1,0,0,63,0,0,127,1,248,7,192,0,63,0,1,253,1,248,11,192,0,63,0,11,252,1,255,175,192,0,63,25,191,240,0,255,255,128,0,63,253,191,128,0,127,254,0,0,191,254,56,0,0,0,0,0,47,255,248,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,191,255,0,63,255,255,255,254,0,125,127,0,63,255,255,255,254,0,0,63,0,63,255,255,255,254,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,127,3,255,255,255,255,255,224,63,254,3,255,255,255,255,255,224,31,253,3,255,255,255,255,255,224,15,228,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,34,35,59,36,1,252,0,126,0,0,0,0,0,0,0,0,126,0,15,255,255,255,252,0,0,126,0,15,255,255,255,252,0,0,126,0,15,213,85,86,252,0,0,126,0,15,192,0,0,252,0,0,126,0,15,192,0,0,252,0,0,126,0,15,255,255,255,252,0,127,255,254,15,255,255,255,252,0,127,255,254,15,213,85,85,252,0,127,255,254,15,192,0,0,252,0,0,127,0,15,192,0,0,252,0,0,126,0,15,255,255,255,252,0,0,126,0,15,255,255,255,252,0,0,126,0,5,85,85,85,84,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,126,24,255,255,255,255,255,192,0,127,253,255,255,255,255,255,192,6,255,254,170,170,255,170,170,128,191,255,248,0,0,127,0,0,0,191,255,0,11,128,127,0,0,0,126,190,0,15,192,127,0,0,0,0,126,0,15,192,127,170,168,0,0,126,0,31,192,127,255,252,0,0,126,0,47,192,127,255,252,0,0,126,0,63,192,127,0,0,0,0,126,0,63,224,127,0,0,0,0,126,0,191,244,127,0,0,0,0,126,0,253,252,127,0,0,0,0,126,2,252,63,191,0,0,0,0,126,7,244,31,255,255,255,224,63,254,15,240,2,255,255,255,208,47,252,47,192,0,27,255,255,192,31,228,7,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,33,34,50,36,1,253,0,62,0,0,0,0,0,0,0,0,63,0,0,0,0,22,248,0,0,63,0,1,90,191,255,253,0,0,63,0,127,255,255,255,254,0,0,63,0,63,255,255,233,64,0,0,63,0,42,85,127,0,0,0,0,63,0,0,0,63,0,0,0,127,255,253,0,0,63,0,0,0,127,255,254,255,255,255,255,255,192,127,255,254,255,255,255,255,255,192,0,127,1,255,255,255,255,255,192,0,63,0,0,0,63,0,0,0,0,63,0,0,0,63,0,0,0,0,63,0,0,4,63,0,0,0,0,63,0,0,62,63,0,0,0,0,63,0,182,255,255,63,255,64,0,63,124,191,254,191,63,255,64,0,127,253,191,208,63,47,255,64,111,255,253,190,0,63,0,47,64,191,255,144,189,0,63,0,47,64,127,191,0,189,0,63,0,47,64,32,63,0,191,253,63,47,255,64,0,63,0,191,253,63,47,255,64,0,63,0,191,253,63,47,255,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,191,255,255,255,255,64,0,127,0,191,255,255,255,255,64,63,254,0,191,255,255,255,255,64,31,253,0,189,0,0,0,47,64,15,228,0,125,0,0,0,47,64, + // 0x6536 收 + 54,101,34,35,59,36,1,252,0,0,15,192,3,144,0,0,0,0,0,31,192,3,244,0,0,0,0,0,31,192,7,240,0,0,0,0,0,31,192,11,240,0,0,0,2,144,31,192,15,224,0,0,0,7,240,31,192,31,208,0,0,0,7,240,31,192,47,192,0,0,0,7,240,31,192,63,255,255,255,224,7,240,31,192,127,255,255,255,224,7,240,31,192,255,255,255,255,224,7,240,31,193,255,0,0,253,0,7,240,31,195,255,64,1,252,0,7,240,31,199,255,128,2,252,0,7,240,31,207,255,192,3,248,0,7,240,31,239,239,192,3,244,0,7,240,31,255,203,224,7,240,0,7,240,31,223,7,240,11,240,0,7,240,31,198,3,244,15,208,0,7,240,31,192,2,252,47,192,0,7,240,31,192,1,252,63,128,0,7,240,31,192,0,254,191,0,0,7,241,191,192,0,127,254,0,0,7,255,255,192,0,63,252,0,0,127,255,255,192,0,47,248,0,0,127,255,175,192,0,31,240,0,0,63,228,31,192,0,127,252,0,0,41,0,31,192,1,255,254,0,0,0,0,31,192,7,254,255,128,0,0,0,31,192,47,248,63,240,0,0,0,31,193,255,224,15,253,0,0,0,31,203,255,128,7,255,128,0,0,31,239,253,0,0,255,224,0,0,31,207,224,0,0,47,192,0,0,31,199,0,0,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x653e 放 + 62,101,34,35,59,36,1,252,0,3,240,0,0,185,0,0,0,0,3,240,0,0,254,0,0,0,0,3,240,0,0,254,0,0,0,0,3,240,0,0,253,0,0,0,0,3,240,0,1,252,0,0,0,0,7,244,0,2,252,0,0,0,127,255,255,255,67,248,0,0,0,127,255,255,255,67,255,255,255,224,127,255,255,255,71,255,255,255,224,0,126,0,0,15,255,255,255,224,0,126,0,0,31,224,2,252,0,0,126,0,0,47,240,2,248,0,0,126,0,0,63,240,3,244,0,0,127,255,252,191,244,3,240,0,0,127,255,253,255,248,7,240,0,0,127,255,255,254,252,11,224,0,0,126,0,253,248,252,15,208,0,0,126,0,252,112,190,31,192,0,0,126,0,252,0,127,47,192,0,0,190,0,252,0,63,127,64,0,0,190,1,252,0,63,255,0,0,0,253,1,252,0,31,254,0,0,0,253,1,252,0,15,253,0,0,0,252,1,252,0,11,252,0,0,1,252,1,252,0,11,252,0,0,2,252,1,248,0,31,253,0,0,3,248,2,248,0,127,255,64,0,7,240,2,248,1,255,191,192,0,15,240,2,248,7,253,47,240,0,31,208,3,244,47,244,15,253,0,63,192,7,245,255,208,3,255,128,255,67,255,251,255,64,0,255,208,126,2,255,227,252,0,0,47,128,8,1,255,64,208,0,0,6,0,0,0,0,0,0,0,0,0,0, + // 0x6570 数 + 112,101,34,35,59,36,1,252,0,0,252,0,0,46,64,0,0,7,192,252,15,128,63,128,0,0,11,208,252,31,192,63,64,0,0,3,240,252,63,0,127,0,0,0,2,244,252,189,0,127,0,0,0,1,240,252,120,0,190,0,0,0,42,234,254,170,160,254,0,0,0,127,255,255,255,241,255,255,255,224,127,255,255,255,242,255,255,255,224,0,7,255,0,3,255,255,255,224,0,31,255,224,3,248,0,253,0,0,127,255,252,11,252,1,252,0,2,254,253,255,79,252,2,252,0,31,244,252,63,239,253,2,252,0,127,208,252,11,127,254,3,248,0,63,0,252,0,255,191,3,244,0,24,2,252,0,254,63,7,240,0,0,11,240,0,124,63,79,240,0,0,15,208,0,4,47,207,224,0,127,255,255,255,240,31,239,192,0,191,255,255,255,240,15,255,192,0,191,255,255,255,240,11,255,64,0,0,253,0,252,0,3,255,0,0,2,252,2,252,0,3,254,0,0,3,248,3,244,0,3,253,0,0,11,255,71,240,0,15,255,0,0,15,255,255,224,0,63,255,192,0,6,159,255,192,0,191,255,224,0,0,2,255,240,3,255,15,248,0,0,31,255,254,31,252,3,254,0,6,255,247,255,255,240,1,255,208,63,255,128,127,255,192,0,127,208,47,248,0,13,190,0,0,31,64,14,64,0,0,52,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x6572 敲 + 114,101,34,35,59,36,1,252,0,1,252,0,0,11,224,0,0,0,1,252,0,0,11,224,0,0,0,1,252,0,0,11,224,0,0,0,1,252,0,0,11,224,0,0,42,171,254,170,160,11,224,0,0,127,255,255,255,240,11,255,255,192,127,255,255,255,240,11,255,255,192,0,0,0,0,0,11,255,255,192,0,85,85,84,0,11,224,0,0,1,255,255,252,0,11,224,0,0,1,255,255,252,0,11,224,0,0,1,248,0,252,0,11,224,0,0,1,248,0,252,0,11,224,0,0,1,249,85,252,63,255,255,254,0,1,255,255,252,63,255,255,255,0,1,255,255,252,63,255,255,255,0,0,0,0,0,2,160,0,190,0,5,85,85,85,67,240,0,253,0,31,255,255,255,194,244,1,252,0,31,255,255,255,193,252,3,248,0,31,64,0,15,192,253,7,244,0,31,64,0,15,192,191,15,240,0,31,79,255,79,192,63,95,208,0,31,79,255,79,192,47,255,192,0,31,79,7,79,192,15,255,64,0,31,79,7,79,192,7,254,0,0,31,79,7,79,192,7,254,0,0,31,79,255,79,192,31,255,128,0,31,79,255,79,192,191,255,224,0,31,79,0,15,195,255,95,253,0,31,79,0,15,223,254,7,255,128,31,68,1,95,255,248,1,255,224,31,64,3,255,159,208,0,63,192,31,64,1,254,14,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6574 整 + 116,101,33,33,41,36,2,254,0,3,240,0,0,120,0,0,0,0,3,240,0,0,254,0,0,0,255,255,255,255,128,252,0,0,0,255,255,255,255,130,252,0,0,0,85,87,245,85,3,255,255,255,0,0,3,240,0,11,255,255,255,0,63,255,255,255,31,250,175,250,0,63,255,255,255,63,224,11,208,0,63,3,240,63,255,240,15,192,0,62,3,240,63,253,252,47,128,0,63,3,240,63,56,190,63,0,0,63,255,255,255,0,63,254,0,0,63,255,255,255,0,31,252,0,0,0,63,254,0,0,15,248,0,0,0,255,255,208,0,127,254,0,0,7,251,251,253,2,255,255,208,0,63,211,240,254,127,252,47,254,0,255,67,240,45,255,224,7,255,64,120,3,240,0,126,0,0,190,0,0,1,80,0,16,0,0,8,0,10,170,170,170,170,170,170,160,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,0,11,224,0,0,0,0,0,26,64,11,224,0,0,0,0,0,47,128,11,250,170,168,0,0,0,47,128,11,255,255,253,0,0,0,47,128,11,255,255,253,0,0,0,47,128,11,224,0,0,0,0,0,47,128,11,224,0,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x6599 料 + 153,101,34,34,50,36,1,253,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,24,11,208,164,1,0,15,208,0,62,11,208,252,15,128,15,208,0,47,11,208,252,31,244,15,208,0,31,11,209,244,7,253,15,208,0,15,75,210,240,0,255,79,208,0,15,139,211,240,0,47,15,208,0,11,203,211,208,0,9,15,208,0,11,203,215,192,0,0,15,208,0,7,139,219,128,0,0,15,208,0,0,11,208,0,0,0,15,208,0,127,255,255,252,120,0,15,208,0,127,255,255,252,255,64,15,208,0,127,255,255,252,191,224,15,208,0,0,63,224,0,31,252,15,208,0,0,63,240,0,2,248,15,208,0,0,191,252,0,0,176,15,208,0,0,255,255,0,0,0,15,208,0,1,255,255,128,0,0,15,208,64,3,251,239,208,0,0,15,255,208,3,235,215,240,0,22,255,255,224,15,203,211,248,107,255,255,255,224,31,203,209,243,255,255,255,228,0,63,75,208,131,255,254,95,208,0,191,11,208,2,249,0,15,208,0,189,11,208,0,0,0,15,208,0,60,11,208,0,0,0,15,208,0,36,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0, + // 0x659c 斜 + 156,101,34,34,50,36,1,253,0,2,253,0,0,0,3,240,0,0,3,255,64,0,0,3,240,0,0,7,255,208,0,0,3,240,0,0,15,255,244,0,180,3,240,0,0,47,203,253,2,253,3,240,0,0,127,130,255,64,255,67,240,0,0,255,0,191,192,63,211,240,0,3,252,0,47,240,15,247,240,0,11,244,0,15,192,3,247,240,0,47,224,0,3,64,0,195,240,0,191,255,255,254,0,0,3,240,0,255,255,255,254,0,0,3,240,0,61,255,255,254,2,192,3,240,0,0,0,253,0,15,244,3,240,0,0,0,253,0,3,254,3,240,0,0,0,253,0,0,191,195,240,0,63,255,255,255,224,47,227,240,0,63,255,255,255,224,11,131,240,0,63,255,255,255,224,1,3,240,0,0,0,253,0,0,0,3,240,64,0,0,253,0,0,0,3,255,208,3,224,253,46,0,1,191,255,224,3,240,253,63,5,191,255,255,224,7,224,253,47,95,255,255,248,0,11,208,253,31,207,255,231,240,0,15,192,253,15,207,164,3,240,0,47,128,253,11,224,0,3,240,0,63,64,253,3,240,0,3,240,0,191,0,253,3,224,0,3,240,0,125,0,253,1,0,0,3,240,0,8,0,253,0,0,0,3,240,0,0,191,252,0,0,0,3,240,0,0,63,252,0,0,0,3,240,0,0,63,224,0,0,0,3,240,0, + // 0x65ad 断 + 173,101,32,35,24,36,3,252,0,0,104,0,0,0,0,64,168,0,188,0,0,0,11,224,248,16,188,0,0,2,255,248,248,244,188,63,41,191,255,228,248,248,188,62,63,255,249,0,248,124,188,124,63,249,0,0,248,60,188,188,63,64,0,0,248,61,188,244,63,64,0,0,248,61,189,240,63,64,0,0,248,16,188,16,63,64,0,0,248,0,188,0,63,64,0,0,249,255,255,255,63,64,0,0,249,255,255,255,63,255,255,254,249,255,255,254,63,255,255,254,248,1,252,0,63,255,255,254,248,3,255,0,63,64,63,0,248,7,255,192,63,64,63,0,248,15,255,240,63,64,63,0,248,31,254,252,63,64,63,0,248,62,188,190,63,0,63,0,248,252,188,60,63,0,63,0,255,248,188,0,63,0,63,0,255,240,188,0,127,0,63,0,249,192,188,0,126,0,63,0,248,0,188,0,190,0,63,0,248,0,188,0,253,0,63,0,248,0,20,1,252,0,63,0,255,255,255,255,252,0,63,0,255,255,255,255,244,0,63,0,255,255,255,255,240,0,63,0,248,0,0,31,208,0,63,0,248,0,0,63,192,0,63,0,248,0,0,31,64,0,63,0,0,0,0,10,0,0,63,0,0,0,0,0,0,0,0,0, + // 0x65b0 新 + 176,101,34,35,59,36,1,252,0,1,168,0,0,0,0,4,0,0,1,252,0,0,0,0,189,0,0,1,252,0,0,0,31,255,128,0,1,252,0,6,91,255,255,64,47,255,255,255,199,255,255,224,0,47,255,255,255,199,255,228,0,0,47,255,255,255,199,244,0,0,0,1,240,0,252,7,240,0,0,0,1,244,1,252,7,240,0,0,0,0,252,2,244,7,240,0,0,0,0,252,3,240,7,240,0,0,0,0,184,2,224,7,240,0,0,0,63,255,255,255,215,255,255,255,224,63,255,255,255,215,255,255,255,224,63,255,255,255,215,255,255,255,224,0,1,252,0,7,240,11,240,0,0,1,252,0,7,240,7,224,0,0,1,252,0,7,240,7,224,0,63,255,255,255,199,224,7,224,0,63,255,255,255,203,224,7,224,0,63,255,255,255,203,224,7,224,0,0,7,252,0,15,208,7,224,0,0,15,255,0,15,208,7,224,0,0,47,255,192,15,192,7,224,0,0,127,255,244,31,192,7,224,0,1,254,254,254,47,128,7,224,0,7,249,252,191,63,64,7,224,0,31,241,252,60,127,0,7,224,0,127,193,252,4,254,0,7,224,0,127,1,252,1,253,0,7,224,0,44,1,252,3,252,0,7,224,0,0,1,252,15,240,0,7,224,0,0,1,252,3,224,0,7,224,0,0,1,248,0,128,0,6,160,0,0,0,0,0,0,0,0,0,0, + // 0x65b9 方 + 185,101,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,11,244,0,0,0,0,0,0,7,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,255,255,255,255,0,0,0,15,255,255,255,255,0,0,0,31,255,255,255,254,0,0,0,31,208,0,0,254,0,0,0,47,192,0,0,254,0,0,0,63,128,0,0,254,0,0,0,127,64,0,0,253,0,0,0,255,0,0,0,253,0,0,0,255,0,0,0,253,0,0,2,253,0,0,1,252,0,0,7,252,0,0,1,252,0,0,15,244,0,0,2,252,0,0,63,224,0,0,3,248,0,0,255,192,0,0,3,248,0,3,255,0,0,0,7,244,0,47,253,0,0,0,15,240,0,255,244,0,3,255,255,224,0,191,192,0,3,255,255,192,0,45,0,0,2,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x65e0 无 + 224,101,33,31,23,36,2,253,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,127,64,0,0,0,0,0,0,0,127,85,0,0,0,0,0,0,0,191,191,0,0,0,0,0,0,0,254,191,0,0,0,0,0,0,0,253,191,0,0,0,0,0,0,2,252,191,0,0,0,0,0,0,3,248,191,0,0,0,0,0,0,11,240,191,0,0,0,0,0,0,31,224,191,0,0,16,0,0,0,127,192,191,0,0,46,0,0,1,255,64,191,0,0,47,128,0,11,254,0,191,0,0,63,128,0,127,248,0,191,0,0,63,64,7,255,224,0,191,0,0,127,0,191,255,64,0,127,255,255,255,0,255,248,0,0,63,255,255,253,0,63,128,0,0,31,255,255,248,0,36,0,0,0,0,85,85,0,0, + // 0x65f6 时 + 246,101,32,34,16,36,3,253,0,0,0,0,0,0,169,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,255,255,253,0,0,0,254,0,255,255,253,0,0,0,254,0,255,255,253,0,0,0,254,0,252,0,189,0,0,0,254,0,252,0,189,63,255,255,255,254,252,0,189,63,255,255,255,254,252,0,189,63,255,255,255,254,252,0,189,21,85,85,254,84,252,0,189,0,0,0,254,0,252,0,189,0,0,0,254,0,255,255,253,2,192,0,254,0,255,255,253,15,224,0,254,0,255,255,253,7,244,0,254,0,252,0,189,3,252,0,254,0,252,0,189,0,254,0,254,0,252,0,189,0,191,64,254,0,252,0,189,0,63,192,254,0,252,0,189,0,31,224,254,0,252,0,189,0,15,240,254,0,252,0,189,0,7,64,254,0,252,0,189,0,0,0,254,0,255,255,253,0,0,0,254,0,255,255,253,0,0,0,254,0,255,255,253,0,0,0,254,0,252,0,0,0,0,0,254,0,252,0,0,0,0,0,254,0,252,0,0,0,0,0,254,0,0,0,0,0,47,255,253,0,0,0,0,0,31,255,252,0,0,0,0,0,15,255,224,0,0,0,0,0,5,80,0,0, + // 0x660e 明 + 14,102,31,33,8,36,3,252,255,255,255,3,255,255,255,244,255,255,255,3,255,255,255,244,255,255,255,3,255,255,255,244,252,0,127,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,255,255,255,244,252,0,63,3,255,255,255,244,255,255,255,3,255,255,255,244,255,255,255,3,240,0,3,244,255,255,255,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,255,255,255,244,252,0,63,11,255,255,255,244,255,255,255,15,255,255,255,244,255,255,255,15,208,0,3,244,255,255,255,15,192,0,3,244,252,0,0,47,192,0,3,244,252,0,0,63,128,0,3,244,252,0,0,127,0,0,3,244,84,0,0,255,0,0,3,244,0,0,2,253,0,0,3,244,0,0,7,252,0,0,3,244,0,0,15,240,0,0,7,244,0,0,127,224,0,31,255,240,0,0,127,128,0,15,255,240,0,0,14,0,0,11,254,64,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,34,33,41,36,1,253,0,21,85,85,85,85,85,64,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,85,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,149,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,0,1,252,0,0,0,0,0,3,144,1,252,0,0,0,0,0,7,244,1,252,0,0,0,0,0,11,240,1,252,0,0,0,0,0,15,240,1,255,255,255,244,0,0,15,224,1,255,255,255,244,0,0,47,240,1,255,255,255,244,0,0,63,252,1,252,0,0,0,0,0,191,255,1,252,0,0,0,0,1,254,127,209,252,0,0,0,0,7,252,31,255,252,0,0,0,0,31,240,7,255,255,255,255,255,208,127,208,0,127,255,255,255,255,192,47,64,0,1,191,255,255,255,128,9,0,0,0,0,0,0,0,0, + // 0x6682 暂 + 130,102,32,34,16,36,2,253,0,14,64,0,0,0,0,16,0,31,208,0,0,0,91,244,170,191,234,170,70,191,255,252,255,255,255,255,139,255,255,228,255,255,255,255,139,250,80,0,3,248,0,0,11,192,0,0,7,240,189,0,11,192,0,0,31,192,189,0,11,192,0,0,127,234,255,170,79,234,170,170,127,255,255,255,207,255,255,255,63,255,255,255,207,255,255,255,16,0,189,0,15,192,63,0,0,0,189,0,15,192,63,0,0,5,255,255,95,128,63,0,191,255,255,255,111,64,63,0,255,255,255,169,63,0,63,0,190,149,189,0,191,0,63,0,0,0,189,0,253,0,63,0,0,0,189,0,60,0,63,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,170,170,170,170,255,0,0,253,0,0,0,0,127,0,0,253,0,0,0,0,127,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,254,85,85,85,85,191,0,0,253,0,0,0,0,127,0,0,253,0,0,0,0,127,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,170,170,170,170,255,0,0,189,0,0,0,0,127,0, + // 0x66ab 暫 + 171,102,32,34,16,36,2,253,0,3,240,0,0,0,1,128,0,3,240,0,0,1,111,240,191,255,255,255,95,191,255,248,191,255,255,255,95,255,254,64,0,3,240,0,31,249,0,0,26,171,250,169,31,128,0,0,63,255,255,254,31,128,0,0,62,3,240,62,31,128,0,0,62,3,240,62,31,255,255,255,63,255,255,254,31,255,255,255,63,171,250,190,31,234,191,170,62,3,240,62,47,64,63,0,63,255,255,254,63,0,63,0,26,171,250,169,63,0,63,0,0,3,240,0,190,0,63,0,255,255,255,255,253,0,63,0,255,255,255,255,248,0,63,0,0,3,240,11,240,0,63,0,0,3,240,2,208,0,63,0,0,1,64,0,64,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,170,170,170,170,252,0,0,63,0,0,0,0,252,0,0,63,0,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,85,85,85,85,252,0,0,63,0,0,0,0,252,0,0,63,0,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,170,170,170,170,252,0,0,63,0,0,0,0,252,0, + // 0x66f4 更 + 244,102,33,33,41,36,2,252,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,254,170,175,250,170,175,208,0,1,252,0,7,240,0,15,208,0,1,252,0,7,240,0,15,208,0,1,254,170,175,250,170,175,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,252,0,7,240,0,15,208,0,1,252,0,7,240,0,15,208,0,1,252,0,11,240,0,15,208,0,1,254,170,175,250,170,175,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,6,0,15,208,0,0,0,0,0,127,64,47,192,0,0,0,0,0,63,208,63,128,0,0,0,0,0,15,244,255,64,0,0,0,0,0,7,255,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,11,255,255,249,0,0,0,0,6,255,255,255,255,255,169,85,0,255,255,244,27,255,255,255,255,64,127,254,0,0,107,255,255,255,0,47,144,0,0,0,21,175,254,0,0,0,0,0,0,0,0,0,0, + // 0x6700 最 + 0,103,32,33,8,36,2,253,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,190,85,85,85,85,254,0,0,190,0,0,0,0,190,0,0,190,0,0,0,0,190,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,190,0,0,0,0,190,0,0,190,0,0,0,0,190,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,171,254,171,255,170,170,170,170,3,240,0,252,0,0,0,0,3,240,0,252,0,0,0,0,3,255,255,252,255,255,255,244,3,255,255,252,255,255,255,244,3,249,85,252,107,234,175,240,3,240,0,252,31,192,15,208,3,249,85,252,15,208,47,192,3,255,255,252,7,240,127,128,3,255,255,252,2,252,255,0,3,240,0,252,0,255,252,0,3,240,0,252,0,127,244,0,3,250,191,252,0,127,240,0,255,255,255,252,7,255,254,0,255,255,255,252,127,253,255,228,254,148,0,255,255,224,47,255,0,0,0,252,254,0,7,254,0,0,0,252,96,0,0,44, + // 0x6709 有 + 9,103,33,35,59,36,1,252,0,0,0,100,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,31,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,255,255,255,255,255,128,0,0,7,255,255,255,255,255,128,0,0,15,255,255,255,255,255,128,0,0,63,253,0,0,0,47,128,0,0,255,253,0,0,0,47,128,0,3,255,253,0,0,0,47,128,0,31,252,255,255,255,255,255,128,0,127,240,255,255,255,255,255,128,0,63,128,255,255,255,255,255,128,0,14,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,255,255,255,255,255,128,0,0,0,255,255,255,255,255,128,0,0,0,255,255,255,255,255,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,63,128,0,0,0,253,0,0,255,255,64,0,0,0,253,0,0,191,255,0,0,0,0,253,0,0,127,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x671f 期 + 31,103,33,34,50,36,1,252,0,252,0,190,0,0,0,0,0,0,252,0,190,1,255,255,255,64,0,252,0,190,1,255,255,255,64,0,252,0,190,1,255,255,255,64,63,255,255,255,241,252,0,63,64,63,255,255,255,241,252,0,63,64,63,255,255,255,241,252,0,63,64,0,252,0,190,1,252,0,63,64,0,252,0,190,1,252,0,63,64,0,254,170,254,1,255,255,255,64,0,255,255,254,1,255,255,255,64,0,255,255,254,1,255,255,255,64,0,252,0,190,1,252,0,63,64,0,252,0,190,1,252,0,63,64,0,252,0,190,1,252,0,63,64,0,254,170,254,1,252,0,63,64,0,255,255,254,1,248,0,63,64,0,255,255,254,1,248,0,63,64,0,252,0,190,1,255,255,255,64,0,252,0,190,2,255,255,255,64,0,252,0,190,2,255,255,255,64,127,255,255,255,242,244,0,63,64,191,255,255,255,243,244,0,63,64,191,255,255,255,243,240,0,63,64,0,16,0,64,3,240,0,63,64,0,126,2,224,7,240,0,63,64,0,255,7,244,11,224,0,63,64,2,252,2,253,15,208,0,63,64,7,248,0,255,31,192,0,63,64,31,240,0,63,175,192,0,63,64,63,208,0,47,127,128,127,255,0,47,64,0,4,63,0,63,255,0,10,0,0,0,10,0,47,248,0,0,0,0,0,0,0,0,0,0, + // 0x673a 机 + 58,103,34,35,59,36,1,252,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,127,255,255,192,0,0,7,240,0,127,255,255,192,0,0,7,240,0,127,255,255,192,0,0,7,240,0,127,0,31,192,0,0,7,240,0,127,0,15,192,0,0,7,240,0,127,0,15,192,0,63,255,255,252,127,0,15,192,0,63,255,255,252,127,0,15,192,0,63,255,255,252,127,0,15,192,0,0,15,240,0,127,0,15,192,0,0,31,240,0,127,0,15,192,0,0,47,240,0,127,0,15,192,0,0,63,244,0,127,0,15,192,0,0,63,252,0,127,0,15,192,0,0,191,255,0,127,0,15,192,0,0,255,255,192,127,0,15,192,0,1,251,255,224,127,0,15,192,0,3,247,243,248,190,0,15,192,0,7,215,241,252,190,0,15,192,0,15,199,240,240,253,0,15,192,0,47,135,240,32,253,0,15,192,0,63,71,240,0,252,0,15,192,0,254,7,240,1,252,0,15,192,64,124,7,240,2,248,0,15,193,224,56,7,240,3,244,0,15,193,240,16,7,240,7,240,0,15,193,240,0,7,240,15,224,0,15,193,240,0,7,240,31,208,0,15,193,240,0,7,240,63,192,0,15,210,240,0,7,240,255,0,0,15,255,240,0,7,240,254,0,0,15,255,208,0,7,240,40,0,0,2,255,128,0,1,64,0,0,0,0,0,0, + // 0x6740 杀 + 64,103,32,34,16,36,2,253,0,0,0,0,0,0,160,0,0,100,0,0,0,3,253,0,1,255,64,0,0,31,252,0,2,255,248,0,0,191,240,0,0,31,255,144,7,255,128,0,0,1,255,253,63,253,0,0,0,0,31,255,255,224,0,0,0,0,0,255,255,64,0,0,0,0,2,255,255,224,0,0,0,0,111,255,255,253,0,0,0,7,255,248,15,255,208,0,1,191,255,128,1,255,253,0,111,255,248,0,0,31,255,128,127,255,64,0,0,1,255,192,31,224,0,11,240,0,47,0,5,0,0,11,240,0,4,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,0,0,0,11,240,0,0,0,0,1,0,11,240,0,0,0,0,7,224,11,240,11,192,0,0,31,240,11,240,31,240,0,0,63,192,11,240,7,253,0,0,255,0,11,240,1,255,64,7,253,0,11,240,0,63,208,31,244,0,11,240,0,15,244,191,208,0,11,240,0,3,253,255,64,0,15,240,0,1,254,61,0,15,255,224,0,0,116,0,0,11,255,208,0,0,0,0,0,7,254,64,0,0,0, + // 0x675f 束 + 95,103,33,34,50,36,2,253,0,0,0,11,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,253,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,3,244,0,15,224,0,31,192,0,3,244,0,15,224,0,31,192,0,3,244,0,15,224,0,31,192,0,3,244,0,15,224,0,31,192,0,3,244,0,15,224,0,31,192,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,0,0,0,255,255,0,0,0,0,0,0,3,255,255,192,0,0,0,0,0,15,255,255,240,0,0,0,0,0,127,223,231,253,0,0,0,0,2,255,79,225,255,128,0,0,0,31,253,15,224,127,244,0,0,0,191,244,15,224,31,255,0,0,11,255,192,15,224,3,255,224,0,191,254,0,15,224,0,191,255,64,255,240,0,15,224,0,15,255,0,63,64,0,15,224,0,1,252,0,20,0,0,15,224,0,0,40,0,0,0,0,11,224,0,0,0,0, + // 0x6761 条 + 97,103,34,34,50,36,1,253,0,0,0,249,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,31,255,255,255,224,0,0,0,0,127,255,255,255,252,0,0,0,2,255,255,255,255,248,0,0,0,11,255,0,0,31,240,0,0,0,127,255,192,0,127,192,0,0,3,255,223,244,1,255,64,0,0,15,254,3,254,11,253,0,0,0,3,244,0,255,255,244,0,0,0,0,64,0,47,255,192,0,0,0,0,0,0,47,255,208,0,0,0,0,0,7,255,255,255,64,0,0,0,1,191,255,91,255,254,64,0,1,191,255,244,0,191,255,255,128,47,255,254,65,84,6,255,255,128,15,255,144,3,248,0,6,255,0,11,164,0,3,248,0,0,5,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,255,255,240,0,0,0,0,0,3,255,255,252,0,0,0,0,0,31,243,249,255,64,0,0,0,0,191,195,248,127,224,0,0,0,7,255,3,248,15,253,0,0,0,127,252,3,248,3,255,208,0,7,255,224,3,248,0,191,254,0,127,255,0,3,248,0,15,255,208,47,244,0,3,248,0,1,255,128,15,64,0,3,248,0,0,31,0,0,0,0,2,248,0,0,0,0, + // 0x6765 来 + 101,103,34,34,50,36,1,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,0,0,64,3,252,0,20,0,0,0,11,192,3,248,0,47,128,0,0,15,208,3,248,0,63,192,0,0,11,240,3,248,0,127,64,0,0,3,248,3,248,0,255,0,0,0,2,252,3,248,1,253,0,0,0,1,253,3,248,3,248,0,0,0,0,253,3,248,7,240,0,0,0,0,80,3,248,1,160,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,127,255,208,0,0,0,0,0,0,255,255,240,0,0,0,0,0,3,255,255,252,0,0,0,0,0,11,247,249,254,0,0,0,0,0,63,211,248,127,192,0,0,0,0,255,131,248,47,240,0,0,0,3,254,3,248,11,252,0,0,0,47,248,3,248,2,255,64,0,0,255,224,3,248,0,191,240,0,11,255,64,3,248,0,47,254,0,127,253,0,3,248,0,7,255,208,63,224,0,3,248,0,0,255,192,15,64,0,3,248,0,0,31,0,0,0,0,3,248,0,0,1,0,0,0,0,3,248,0,0,0,0, + // 0x677f 板 + 127,103,34,35,59,36,1,252,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,2,255,255,255,255,192,0,15,192,2,255,255,255,255,192,0,15,192,2,255,255,255,255,192,0,15,192,2,248,0,0,0,0,0,15,192,2,244,0,0,0,0,0,15,192,2,244,0,0,0,0,63,255,255,226,244,0,0,0,0,63,255,255,226,244,0,0,0,0,63,255,255,226,244,0,0,0,0,0,31,192,2,248,0,0,0,0,0,47,192,2,255,255,255,255,64,0,63,192,3,255,255,255,255,64,0,127,224,3,255,255,255,255,0,0,191,244,3,255,208,0,127,0,0,255,252,3,255,224,0,190,0,1,255,255,3,247,240,0,253,0,2,255,239,131,242,244,1,252,0,3,223,207,211,241,252,2,248,0,11,207,199,243,240,253,3,244,0,15,143,194,199,240,191,11,240,0,63,79,192,71,224,63,95,208,0,127,15,192,11,224,47,255,192,0,253,15,192,15,208,15,255,64,0,60,15,192,31,192,7,254,0,0,36,15,192,47,192,3,253,0,0,0,15,192,63,128,15,255,64,0,0,15,192,127,0,127,255,208,0,0,15,192,191,1,255,159,248,0,0,15,193,253,31,253,7,255,128,0,15,195,252,63,244,1,255,224,0,15,193,244,31,128,0,63,128,0,15,192,32,9,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6797 林 + 151,103,34,34,50,36,1,253,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,7,244,0,0,63,255,255,253,127,255,255,255,192,63,255,255,253,127,255,255,255,192,63,255,255,253,127,255,255,255,192,0,11,244,0,0,15,252,0,0,0,15,252,0,0,31,253,0,0,0,15,255,0,0,47,255,0,0,0,47,255,192,0,63,255,0,0,0,63,255,224,0,127,255,128,0,0,127,251,248,0,255,255,192,0,0,255,246,253,1,255,255,208,0,1,251,244,255,3,247,247,240,0,3,243,244,60,7,243,243,244,0,7,243,244,36,15,211,241,252,0,15,211,244,0,47,195,240,253,0,47,195,244,0,127,67,240,191,0,127,67,244,0,255,3,240,63,128,191,3,244,3,252,3,240,47,208,61,3,244,11,248,3,240,15,224,40,3,244,7,240,3,240,11,128,0,3,244,2,192,3,240,2,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0,0,3,244,0,0,3,240,0,0, + // 0x67f1 柱 + 241,103,34,35,59,36,1,252,0,11,224,0,0,176,0,0,0,0,11,224,0,3,253,0,0,0,0,11,224,0,2,255,128,0,0,0,11,224,0,0,127,240,0,0,0,11,224,0,0,15,252,0,0,0,11,224,0,0,2,253,0,0,0,11,224,0,0,0,244,0,0,0,11,224,3,255,255,255,255,192,63,255,255,247,255,255,255,255,192,63,255,255,247,255,255,255,255,192,63,255,255,244,0,11,240,0,0,0,15,224,0,0,11,240,0,0,0,31,224,0,0,11,240,0,0,0,47,224,0,0,11,240,0,0,0,63,244,0,0,11,240,0,0,0,127,252,0,0,11,240,0,0,0,255,255,0,0,11,240,0,0,0,255,255,192,0,11,240,0,0,2,251,239,224,255,255,255,255,128,3,235,227,244,255,255,255,255,128,11,219,226,244,255,255,255,255,128,15,203,224,224,0,11,240,0,0,47,139,224,64,0,11,240,0,0,127,11,224,0,0,11,240,0,0,190,11,224,0,0,11,240,0,0,60,11,224,0,0,11,240,0,0,36,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,63,255,255,255,255,224,0,11,224,63,255,255,255,255,224,0,11,224,63,255,255,255,255,224,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,34,35,59,36,1,252,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,31,255,255,255,255,192,0,15,192,31,255,255,255,255,192,0,15,192,31,255,255,255,255,192,63,255,255,218,170,170,170,170,128,63,255,255,192,4,0,1,0,0,63,255,255,192,47,64,15,192,0,0,47,192,0,63,128,15,240,0,0,63,192,0,191,0,7,248,0,0,63,192,1,253,0,1,253,0,0,127,240,3,248,0,0,191,0,0,191,244,15,240,0,0,63,192,0,255,252,63,235,0,15,159,208,1,255,255,47,127,64,31,203,192,3,255,223,73,31,192,63,129,0,7,239,207,192,15,192,63,64,0,11,207,199,208,11,240,191,0,0,15,143,195,128,3,244,253,0,0,63,79,193,0,2,255,252,0,0,127,15,192,0,0,255,244,0,0,189,15,192,0,0,127,224,0,0,60,15,192,0,0,63,224,0,0,36,15,192,0,0,255,248,0,0,0,15,192,0,7,255,255,0,0,0,15,192,0,31,245,255,192,0,0,15,192,1,255,208,63,248,0,0,15,192,27,255,0,15,255,128,0,15,192,191,248,0,3,255,208,0,15,192,63,208,0,0,127,128,0,15,192,45,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x683c 格 + 60,104,34,35,59,36,1,252,0,15,192,0,1,224,0,0,0,0,15,192,0,3,248,0,0,0,0,15,192,0,7,244,0,0,0,0,15,192,0,15,240,0,0,0,0,15,192,0,31,255,255,244,0,0,15,192,0,63,255,255,252,0,0,15,192,0,191,255,255,244,0,0,15,192,1,255,0,7,240,0,63,255,255,231,255,64,15,224,0,63,255,255,239,255,192,47,192,0,63,255,255,255,223,224,127,64,0,0,31,192,191,71,248,254,0,0,0,47,208,29,2,255,252,0,0,0,63,244,0,0,191,240,0,0,0,127,252,0,0,127,240,0,0,0,191,255,0,2,255,253,0,0,0,255,239,192,15,255,255,128,0,1,255,207,208,191,240,127,248,0,3,239,195,203,255,128,31,255,208,7,223,194,255,253,0,2,255,224,15,207,192,255,255,255,255,255,128,31,143,192,126,255,255,255,253,0,63,15,192,17,255,255,255,252,0,191,15,192,1,248,0,1,252,0,189,15,192,1,248,0,1,252,0,60,15,192,1,248,0,1,252,0,36,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,248,0,1,252,0,0,0,0,0,0,0,0,0,0, + // 0x68af 梯 + 175,104,33,34,50,36,1,253,0,15,192,0,24,0,2,144,0,0,15,192,0,252,0,3,248,0,0,15,192,0,190,0,7,240,0,0,15,192,0,63,0,15,224,0,0,15,192,0,63,128,31,192,0,0,15,192,0,31,64,31,64,0,0,15,192,15,255,255,255,255,0,0,15,192,15,255,255,255,255,0,63,255,255,207,255,255,255,255,0,63,255,255,192,0,47,64,63,0,63,255,255,192,0,47,64,63,0,0,47,192,0,0,47,64,63,0,0,63,192,0,0,47,64,63,0,0,63,208,7,255,255,255,255,0,0,127,240,11,255,255,255,255,0,0,255,248,11,255,255,255,255,0,0,255,253,15,192,47,64,0,0,2,255,239,15,192,47,64,0,0,3,255,207,223,192,47,64,0,0,7,223,203,239,255,255,255,255,192,15,207,195,111,255,255,255,255,192,31,143,192,63,255,255,255,255,192,63,15,192,63,0,255,64,15,192,190,15,192,0,3,255,64,31,192,124,15,192,0,11,255,64,31,192,56,15,192,0,47,255,64,31,128,16,15,192,0,255,111,64,47,128,0,15,192,3,253,47,64,63,64,0,15,192,31,244,47,95,255,0,0,15,193,255,224,47,79,255,0,0,15,193,255,64,47,79,248,0,0,15,192,124,0,47,64,0,0,0,15,192,16,0,47,64,0,0,0,15,192,0,0,47,64,0,0, + // 0x68c0 检 + 192,104,34,34,50,36,1,253,0,47,64,0,0,61,0,0,0,0,63,64,0,0,255,0,0,0,0,63,64,0,1,254,0,0,0,0,63,64,0,3,255,128,0,0,0,63,64,0,11,255,208,0,0,0,63,64,0,47,219,244,0,0,0,63,64,0,127,66,254,0,0,63,255,254,1,254,0,255,128,0,63,255,254,7,252,0,63,240,0,63,255,254,31,240,0,11,253,0,0,63,64,127,192,0,2,255,192,0,127,66,255,255,255,255,191,224,0,191,203,253,255,255,255,15,192,0,255,227,240,255,255,255,2,64,0,255,245,128,0,0,0,0,0,2,255,252,0,0,0,0,0,0,3,255,190,0,0,0,0,16,0,3,255,127,6,0,188,0,126,0,11,255,94,47,0,188,0,253,0,15,191,72,31,128,125,0,252,0,47,127,64,15,192,125,1,244,0,63,63,64,11,192,62,3,240,0,190,63,64,7,208,63,3,224,0,60,63,64,3,224,63,11,192,0,40,63,64,3,240,47,15,192,0,16,63,64,3,240,26,47,64,0,0,63,64,1,64,0,63,0,0,0,63,64,0,0,0,125,0,0,0,63,64,0,0,0,252,0,0,0,63,66,255,255,255,255,255,128,0,63,66,255,255,255,255,255,128,0,63,66,255,255,255,255,255,128,0,63,64,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0, + // 0x69fd 槽 + 253,105,34,35,59,36,1,252,0,47,64,0,11,208,252,0,0,0,47,64,0,11,208,252,0,0,0,47,64,0,11,208,252,0,0,0,47,64,255,255,255,255,255,224,0,47,64,255,255,255,255,255,224,0,47,64,170,175,250,254,170,144,0,47,64,0,11,208,252,0,0,0,47,128,5,91,229,253,85,0,63,255,255,47,255,255,255,255,64,63,255,255,47,255,255,255,255,64,63,255,255,47,3,208,248,31,64,0,63,64,47,3,208,248,31,64,0,63,64,47,255,255,255,255,64,0,127,128,47,255,255,255,255,64,0,191,192,47,7,208,248,31,64,0,255,240,47,3,208,248,31,64,1,255,244,47,3,208,248,31,64,2,255,252,47,255,255,255,255,64,3,255,190,47,255,255,255,255,64,7,239,111,69,85,85,85,85,0,15,239,79,0,0,0,0,0,0,31,111,73,7,255,255,255,252,0,63,47,64,7,255,255,255,252,0,126,47,64,7,250,170,170,252,0,188,47,64,7,240,0,0,252,0,56,47,64,7,245,85,85,252,0,32,47,64,7,255,255,255,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,240,0,0,252,0,0,47,64,7,240,0,0,252,0,0,47,64,7,250,170,170,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,240,0,0,252,0,0,0,0,0,0,0,0,0,0, + // 0x6a21 模 + 33,106,34,35,59,36,1,252,0,63,0,0,63,0,63,64,0,0,63,0,0,63,0,63,64,0,0,63,0,0,63,0,63,64,0,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,63,0,191,255,255,255,255,128,0,63,0,0,63,0,63,64,0,63,255,254,0,63,0,63,64,0,63,255,254,0,21,0,21,0,0,63,255,254,47,255,255,255,252,0,0,63,84,47,255,255,255,252,0,0,63,64,47,213,85,86,252,0,0,127,128,47,128,0,0,252,0,0,191,208,47,149,85,85,252,0,0,255,240,47,255,255,255,252,0,1,255,248,47,255,255,255,252,0,2,255,253,47,128,0,0,252,0,3,255,127,47,128,0,0,252,0,7,255,47,111,255,255,255,252,0,15,255,14,47,255,255,255,252,0,15,191,8,5,85,191,85,84,0,47,63,0,0,0,190,0,0,0,127,63,0,0,0,254,0,0,0,189,63,1,255,255,255,255,255,128,124,63,1,255,255,255,255,255,192,56,63,1,255,255,255,255,255,192,16,63,0,0,7,255,240,0,0,0,63,0,0,15,243,252,0,0,0,63,0,0,63,208,255,0,0,0,63,0,2,255,128,127,224,0,0,63,0,111,254,0,31,254,64,0,63,7,255,244,0,7,255,208,0,63,2,255,64,0,0,191,128,0,63,0,228,0,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6a59 橙 + 89,106,34,34,50,36,1,253,0,31,192,0,0,0,80,0,0,0,31,192,26,170,130,240,32,0,0,31,192,47,255,241,244,244,0,0,31,192,47,255,224,255,252,0,0,31,192,0,15,192,255,224,0,0,31,192,4,15,192,191,66,0,0,31,192,62,47,128,63,11,192,0,31,192,127,255,0,47,175,192,63,255,255,159,254,0,31,254,0,63,255,255,131,253,0,15,244,0,63,255,255,131,255,255,255,252,0,0,47,192,15,239,255,254,255,0,0,63,192,47,202,170,168,191,208,0,63,192,255,0,0,0,47,240,0,191,226,253,0,0,0,11,192,0,255,244,179,255,255,255,249,64,0,255,252,3,255,255,255,248,0,2,255,255,3,245,85,87,248,0,3,255,223,131,240,0,2,248,0,7,239,207,195,240,0,2,248,0,15,223,199,67,240,0,2,248,0,15,159,194,3,250,170,171,248,0,63,31,192,3,255,255,255,248,0,127,31,192,3,255,255,255,248,0,189,31,192,0,8,0,14,64,0,60,31,192,0,189,0,31,192,0,36,31,192,0,127,0,47,128,0,0,31,192,0,63,0,63,0,0,0,31,192,0,47,64,126,0,0,0,31,192,0,30,0,124,0,0,0,31,192,255,255,255,255,255,224,0,31,192,255,255,255,255,255,224,0,31,192,255,255,255,255,255,208,0,31,192,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,32,32,0,36,2,255,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,255,255,255,244,0,127,0,1,255,255,255,244,0,127,0,1,255,255,255,244,0,127,0,1,253,85,85,80,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,85,191,85,86,253,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6b63 正 + 99,107,32,31,248,36,2,254,5,85,85,85,85,85,85,84,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,106,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,255,255,255,208,0,127,0,3,255,255,255,208,0,127,0,3,255,255,255,208,0,127,0,3,252,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x6b65 步 + 101,107,32,34,16,36,2,253,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,21,0,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,255,255,255,64,0,63,128,11,255,255,255,64,0,63,128,11,255,255,255,64,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,11,224,0,0,0,0,7,144,11,224,0,0,0,0,15,244,11,224,0,57,0,0,63,224,11,224,0,191,64,0,255,128,11,224,0,255,0,3,255,0,11,224,2,253,0,31,252,0,11,224,3,252,0,191,224,0,11,224,15,244,0,127,128,15,255,224,47,240,0,13,0,11,255,208,191,192,0,0,0,7,254,66,255,64,0,0,0,0,0,15,253,0,0,0,0,0,0,191,244,0,0,0,0,0,7,255,208,0,0,0,0,1,191,255,0,0,0,0,1,111,255,244,0,0,0,2,191,255,255,64,0,0,0,3,255,255,228,0,0,0,0,1,255,249,0,0,0,0,0,0,233,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,34,34,50,36,1,253,0,42,64,0,6,160,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,40,0,0,63,128,0,7,240,1,254,0,0,63,128,0,7,240,11,255,64,0,63,255,255,7,240,191,253,0,0,63,255,255,7,251,255,224,0,0,63,255,255,7,255,254,0,0,0,63,149,85,7,255,208,0,0,0,63,128,0,7,253,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,7,128,0,63,128,0,7,240,0,7,240,0,63,128,6,199,240,0,7,224,0,63,150,255,199,240,0,11,224,0,63,255,255,215,240,0,15,208,43,255,255,255,135,244,0,31,208,127,255,255,144,3,255,255,255,192,63,255,144,0,2,255,255,255,128,46,64,0,0,0,191,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x6ca1 没 + 161,108,34,35,59,36,1,252,0,144,0,0,0,0,0,0,0,3,253,0,11,255,255,253,0,0,7,255,192,11,255,255,253,0,0,0,191,244,11,255,255,253,0,0,0,15,244,11,224,0,253,0,0,0,2,224,11,224,0,253,0,0,0,0,64,15,208,0,253,0,0,0,0,0,15,208,0,253,3,64,0,0,0,15,192,0,253,3,224,0,0,0,47,192,0,253,3,224,30,0,0,127,128,0,253,7,208,63,224,0,255,0,0,255,255,208,127,253,7,254,0,0,127,255,192,11,255,143,248,0,0,47,254,0,0,191,67,224,0,0,0,0,0,0,30,0,64,0,0,0,0,0,0,0,2,255,255,255,255,244,0,0,0,2,255,255,255,255,248,0,0,0,2,255,255,255,255,244,0,0,0,0,6,208,0,15,240,0,0,2,208,15,240,0,47,208,0,0,3,244,3,244,0,63,192,0,0,11,240,2,252,0,255,0,0,0,15,224,0,255,3,254,0,0,0,47,192,0,127,207,252,0,0,0,63,128,0,31,255,240,0,0,0,191,0,0,11,255,192,0,0,0,254,0,0,31,255,208,0,0,3,252,0,1,255,255,252,0,0,7,248,0,31,255,239,255,208,0,15,240,27,255,254,2,255,255,128,15,224,63,255,224,0,47,255,208,2,192,31,249,0,0,2,255,128,0,0,14,64,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x6ce2 波 + 226,108,34,35,59,36,1,252,0,64,0,0,0,253,0,0,0,2,244,0,0,0,253,0,0,0,7,255,64,0,0,253,0,0,0,1,255,224,0,0,253,0,0,0,0,47,240,0,0,253,0,0,0,0,7,209,255,255,255,255,255,128,0,0,129,255,255,255,255,255,192,0,0,1,255,255,255,255,255,128,0,0,1,252,0,254,0,63,64,0,0,1,252,0,253,0,127,0,13,0,1,252,0,253,0,190,0,63,208,1,252,0,253,0,252,0,127,252,1,252,0,253,0,120,0,11,255,65,252,0,253,0,0,0,1,255,1,255,255,255,255,244,0,0,45,1,255,255,255,255,252,0,0,0,1,255,255,255,255,248,0,0,0,1,254,248,0,3,244,0,0,0,1,252,252,0,11,240,0,0,0,1,248,190,0,15,208,0,0,7,66,248,63,0,47,192,0,0,15,210,248,47,192,63,128,0,0,31,195,244,15,224,255,0,0,0,63,195,240,11,246,253,0,0,0,63,67,240,3,255,252,0,0,0,191,11,240,0,255,240,0,0,0,253,15,224,0,191,224,0,0,2,252,15,208,2,255,248,0,0,3,248,31,192,15,255,255,64,0,11,240,63,128,191,245,255,228,0,31,224,127,91,255,192,63,255,64,47,192,254,63,254,0,11,255,208,7,128,188,31,224,0,0,191,64,0,0,24,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x6ce8 注 + 232,108,34,34,50,36,1,253,0,128,0,0,40,0,0,0,0,1,253,0,0,127,128,0,0,0,3,255,192,0,255,244,0,0,0,1,255,244,0,47,254,0,0,0,0,31,252,0,7,255,192,0,0,0,2,244,0,0,191,240,0,0,0,0,80,0,0,31,224,0,0,0,0,0,0,0,7,128,0,0,0,0,1,255,255,255,255,255,192,0,0,1,255,255,255,255,255,192,9,0,1,255,255,255,255,255,192,63,224,0,0,0,254,0,0,0,127,254,0,0,0,254,0,0,0,11,255,192,0,0,254,0,0,0,0,191,64,0,0,254,0,0,0,0,10,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,63,255,255,255,253,0,0,0,64,63,255,255,255,253,0,0,0,240,63,255,255,255,253,0,0,2,252,0,0,255,0,0,0,0,3,244,0,0,254,0,0,0,0,11,240,0,0,254,0,0,0,0,15,224,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,255,0,0,0,254,0,0,0,1,254,0,0,0,254,0,0,0,3,252,0,0,0,255,0,0,0,11,244,11,255,255,255,255,255,224,15,240,11,255,255,255,255,255,224,2,208,11,255,255,255,255,255,224,0,64,0,0,0,0,0,0,0, + // 0x6d17 洗 + 23,109,34,35,59,36,1,252,0,64,0,0,0,190,0,0,0,3,224,0,11,224,190,0,0,0,11,254,0,15,224,190,0,0,0,2,255,192,15,208,190,0,0,0,0,127,240,31,192,190,0,0,0,0,15,224,47,192,191,0,0,0,0,2,128,63,255,255,255,255,0,0,0,0,127,255,255,255,255,0,0,0,0,255,255,255,255,255,0,0,0,0,253,0,190,0,0,0,13,0,2,252,0,190,0,0,0,63,128,7,248,0,190,0,0,0,127,248,11,240,0,190,0,0,0,15,255,1,224,0,190,0,0,0,1,255,64,0,0,190,0,0,0,0,46,11,255,255,255,255,255,208,0,4,11,255,255,255,255,255,208,0,0,11,255,255,255,255,255,208,0,0,0,0,254,2,252,0,0,0,0,0,0,253,2,248,0,0,0,7,64,0,253,2,248,0,0,0,11,208,0,252,2,248,0,0,0,15,208,1,252,2,248,0,0,0,47,192,2,252,2,248,0,0,0,63,64,3,248,2,248,0,0,0,127,0,3,244,2,248,1,0,0,254,0,7,240,2,248,3,208,1,253,0,15,224,2,248,3,240,3,252,0,47,208,2,248,3,240,7,244,0,191,128,2,248,3,240,15,240,3,255,0,1,252,7,224,31,224,47,252,0,1,255,255,208,11,192,63,224,0,0,255,255,192,1,128,15,64,0,0,127,254,0,0,0,0,0,0,0,0,0,0, + // 0x6d3b 活 + 59,109,33,34,50,36,2,253,1,0,0,0,0,0,2,128,0,11,128,0,0,0,5,191,224,0,31,248,0,0,26,255,255,248,0,11,255,129,191,255,255,255,144,0,1,255,225,255,255,255,144,0,0,0,47,192,255,250,252,0,0,0,0,3,64,80,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,125,0,31,255,255,255,255,255,64,255,208,31,255,255,255,255,255,64,191,248,31,255,255,255,255,255,64,15,255,0,0,1,252,0,0,0,1,253,0,0,1,252,0,0,0,0,56,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,2,0,255,255,255,255,244,0,0,15,128,255,255,255,255,244,0,0,31,208,255,255,255,255,244,0,0,63,192,252,0,0,3,244,0,0,191,0,252,0,0,3,244,0,0,254,0,252,0,0,3,244,0,3,252,0,252,0,0,3,244,0,7,248,0,252,0,0,3,244,0,15,240,0,252,0,0,3,244,0,47,208,0,255,255,255,255,244,0,127,192,0,255,255,255,255,244,0,63,0,0,255,255,255,255,244,0,10,0,0,252,0,0,3,244,0,0,0,0,188,0,0,2,160,0, + // 0x6d41 流 + 65,109,34,34,50,36,1,253,0,64,0,0,1,252,0,0,0,2,244,0,0,1,252,0,0,0,7,255,0,0,1,252,0,0,0,2,255,224,0,1,252,0,0,0,0,63,244,0,1,252,0,0,0,0,7,247,255,255,255,255,255,192,0,0,199,255,255,255,255,255,192,0,0,7,255,255,255,255,255,192,0,0,0,0,63,192,0,0,0,0,0,0,0,127,64,47,0,0,9,0,0,0,190,0,63,192,0,63,224,0,0,252,0,15,240,0,127,253,0,2,254,170,175,252,0,11,255,131,255,255,255,255,255,0,0,191,3,255,255,255,255,255,128,0,13,3,255,234,149,64,31,208,0,0,0,0,0,0,0,15,64,0,0,0,31,128,0,5,64,0,0,0,0,31,129,248,15,192,0,0,1,0,31,129,248,15,192,0,0,3,208,31,129,248,15,192,0,0,7,240,31,129,248,15,192,0,0,15,240,31,129,248,15,192,0,0,31,208,47,65,248,15,192,0,0,63,192,47,65,248,15,192,0,0,127,64,63,1,248,15,192,0,0,255,0,127,1,248,15,193,0,1,253,0,255,1,248,15,193,224,3,252,1,253,1,248,15,194,240,11,244,3,252,1,248,15,194,224,15,240,15,244,1,248,15,195,224,15,208,63,224,1,248,15,255,208,3,192,15,128,0,164,11,255,192,0,0,2,0,0,0,1,170,0, + // 0x6d4b 测 + 75,109,33,34,50,36,1,253,0,64,0,0,0,0,0,10,0,3,224,0,0,0,0,0,31,64,15,254,15,255,255,244,0,31,64,3,255,207,255,255,244,61,31,64,0,127,223,213,86,244,61,31,64,0,15,143,192,0,244,61,31,64,0,2,15,192,0,244,61,31,64,0,0,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,8,0,15,195,208,244,61,31,64,47,128,15,195,208,244,61,31,64,127,244,15,195,208,244,61,31,64,31,255,15,195,208,244,61,31,64,2,254,15,195,208,244,61,31,64,0,60,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,0,0,15,195,208,244,61,31,64,0,24,15,195,208,244,61,31,64,0,63,15,195,208,244,61,31,64,0,63,15,195,208,244,61,31,64,0,191,15,199,192,244,61,31,64,0,254,15,203,192,244,61,31,64,1,252,5,79,192,80,20,31,64,2,252,0,15,132,0,0,31,64,3,244,0,47,125,0,0,31,64,7,240,0,126,63,64,0,31,64,15,224,1,252,15,208,0,31,64,31,208,7,244,3,240,0,31,64,63,192,63,208,1,252,63,255,64,11,64,63,64,0,184,31,254,0,0,0,8,0,0,16,10,164,0, + // 0x6d88 消 + 136,109,32,35,24,36,2,252,1,0,0,0,2,252,0,0,15,208,0,96,2,252,0,164,47,248,3,244,2,252,0,254,11,255,66,252,2,252,2,252,0,255,192,254,2,252,3,248,0,47,64,191,2,252,11,240,0,6,0,63,130,252,15,208,0,0,0,47,194,252,47,192,0,0,0,13,2,252,6,0,0,0,0,0,2,252,0,0,120,0,1,255,255,255,255,244,255,128,1,255,255,255,255,244,255,240,1,255,255,255,255,244,31,253,1,252,0,0,3,244,3,253,1,252,0,0,3,244,0,184,1,252,0,0,3,244,0,32,1,252,0,0,3,244,0,0,1,255,255,255,255,244,0,0,1,255,255,255,255,244,0,0,1,255,255,255,255,244,0,14,1,252,0,0,3,244,0,31,193,252,0,0,3,244,0,63,129,252,0,0,3,244,0,127,1,255,255,255,255,244,0,255,1,255,255,255,255,244,1,253,1,255,255,255,255,244,3,252,1,252,0,0,3,244,7,244,1,252,0,0,3,244,15,240,1,252,0,0,3,244,31,224,1,252,0,0,3,244,63,192,1,252,0,0,3,244,127,128,1,252,0,11,255,240,31,0,1,252,0,7,255,240,1,0,1,252,0,3,255,128,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,34,34,50,36,1,253,0,0,0,0,0,253,0,0,0,2,224,0,0,0,253,0,0,0,7,254,0,9,64,253,0,160,0,2,255,208,31,128,253,0,254,0,0,127,244,63,64,252,2,252,0,0,11,240,63,0,252,3,244,0,0,1,192,254,1,252,11,240,0,0,0,1,252,2,248,31,192,0,0,0,2,248,3,253,47,64,0,0,0,0,16,7,255,129,0,0,8,0,0,0,15,255,248,0,0,47,128,0,0,63,219,255,64,0,127,244,0,2,255,64,255,240,0,31,255,0,111,254,0,31,254,0,1,255,67,255,244,0,2,255,64,0,46,2,255,128,253,0,126,0,0,4,0,228,0,252,0,8,0,0,0,0,0,0,252,0,0,0,0,0,0,47,64,252,0,190,0,0,3,0,63,65,252,0,255,0,0,11,192,127,1,252,2,253,0,0,15,224,190,2,254,3,248,0,0,47,192,252,3,255,11,240,0,0,63,131,252,3,255,95,208,0,0,191,7,240,11,255,223,128,0,0,254,0,96,15,239,224,0,0,2,253,0,0,63,199,248,0,0,7,252,0,1,255,131,254,0,0,15,240,0,27,254,0,255,208,0,31,224,2,255,248,0,63,254,64,31,192,47,255,208,0,11,255,208,3,128,15,253,0,0,1,255,128,0,0,7,144,0,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6df7 混 + 247,109,34,34,50,36,1,253,0,128,0,0,0,0,0,0,0,3,248,0,170,170,170,170,168,0,7,255,129,255,255,255,255,252,0,1,255,241,255,255,255,255,252,0,0,31,225,252,0,0,1,252,0,0,3,193,252,0,0,1,252,0,0,0,65,252,0,0,1,252,0,0,0,1,255,255,255,255,252,0,0,0,1,255,255,255,255,252,0,0,0,1,254,170,170,170,252,0,13,0,1,252,0,0,1,252,0,63,224,1,252,0,0,1,252,0,127,253,1,254,170,170,171,252,0,7,255,1,255,255,255,255,252,0,0,190,1,255,255,255,255,252,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,15,208,0,0,0,0,0,252,0,15,208,0,0,0,1,0,252,0,15,208,8,0,0,7,128,252,0,15,208,127,0,0,15,224,255,255,207,215,255,128,0,31,208,255,255,207,255,253,0,0,47,192,255,255,207,255,208,0,0,63,64,252,0,15,253,0,0,0,191,0,252,0,15,208,0,0,0,254,0,252,0,15,208,2,0,2,252,0,252,0,15,208,3,224,3,248,0,253,111,207,208,7,224,11,240,22,255,255,207,208,11,208,15,240,63,255,255,207,255,255,192,31,208,63,255,148,7,255,255,192,3,192,42,64,0,1,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x6e05 清 + 5,110,34,34,50,36,1,253,0,64,0,0,0,253,0,0,0,3,248,0,0,0,253,0,0,0,11,255,66,255,255,255,255,255,64,1,255,226,255,255,255,255,255,64,0,47,241,85,85,254,85,85,0,0,7,208,0,0,253,0,0,0,0,0,128,21,85,254,85,84,0,0,0,0,191,255,255,255,253,0,0,0,0,191,255,255,255,253,0,0,0,0,0,0,253,0,0,0,13,0,0,0,0,253,0,0,0,63,208,11,255,255,255,255,255,224,127,253,11,255,255,255,255,255,224,11,255,133,85,85,85,85,85,64,1,255,0,0,0,0,0,0,0,0,46,0,26,170,170,170,164,0,0,4,0,47,255,255,255,252,0,0,0,0,47,255,255,255,252,0,0,0,0,47,128,0,1,252,0,0,1,0,47,128,0,1,252,0,0,3,208,47,255,255,255,252,0,0,7,240,47,255,255,255,252,0,0,15,240,47,128,0,1,252,0,0,31,208,47,128,0,1,252,0,0,63,192,47,128,0,1,252,0,0,127,64,47,255,255,255,252,0,0,255,0,47,255,255,255,252,0,1,254,0,47,149,85,86,252,0,3,252,0,47,128,0,1,252,0,7,244,0,47,128,0,1,252,0,15,240,0,47,128,0,1,252,0,31,208,0,47,128,2,255,248,0,3,192,0,47,128,1,255,244,0,0,0,0,47,128,0,255,144,0, + // 0x6e29 温 + 41,110,34,33,41,36,1,253,0,224,0,0,0,0,0,0,0,3,254,0,127,255,255,255,240,0,3,255,224,127,255,255,255,240,0,0,127,248,127,255,255,255,240,0,0,7,240,127,0,0,3,240,0,0,0,144,127,0,0,3,240,0,0,0,0,127,170,170,171,240,0,0,0,0,127,255,255,255,240,0,0,0,0,127,255,255,255,240,0,4,0,0,127,0,0,3,240,0,47,128,0,127,0,0,3,240,0,127,248,0,127,0,0,3,240,0,31,255,64,127,255,255,255,240,0,1,255,128,127,255,255,255,240,0,0,47,0,127,255,255,255,240,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,253,0,0,3,66,255,255,255,255,253,0,0,7,226,255,255,255,255,253,0,0,15,226,244,47,7,208,253,0,0,31,194,244,47,7,208,253,0,0,63,130,244,47,7,208,253,0,0,127,2,244,47,7,208,253,0,0,254,2,244,47,7,208,253,0,2,252,2,244,47,7,208,253,0,3,248,2,244,47,7,208,253,0,11,240,2,244,47,7,208,253,0,31,224,127,255,255,255,255,255,224,31,192,127,255,255,255,255,255,224,3,128,127,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6e38 游 + 56,110,34,34,50,36,1,253,1,0,0,47,64,2,160,0,0,3,224,0,47,64,3,244,0,0,15,253,0,47,64,7,240,0,0,7,255,128,47,64,7,240,0,0,0,191,192,47,64,11,224,0,0,0,31,64,63,128,15,255,255,224,0,6,191,255,255,223,255,255,224,0,0,191,255,255,239,255,255,224,0,0,191,255,255,255,64,0,0,0,0,2,244,0,191,0,0,0,13,0,2,244,1,253,0,0,0,63,224,2,244,0,127,255,255,64,127,253,3,244,0,15,255,255,208,11,255,3,244,0,11,255,255,128,0,188,3,255,255,0,0,191,0,0,20,3,255,255,0,1,253,0,0,0,3,255,255,0,11,248,0,0,0,3,240,63,0,31,224,0,0,0,3,240,63,0,31,192,0,0,0,7,240,63,0,31,192,0,0,52,7,224,63,63,255,255,224,0,62,11,224,63,63,255,255,224,0,190,11,208,63,63,255,255,224,0,253,15,192,63,0,31,192,0,1,252,15,192,63,0,31,192,0,2,252,31,128,127,0,31,192,0,3,244,63,64,126,0,31,192,0,7,240,63,0,126,0,31,192,0,11,240,190,0,190,0,31,192,0,15,208,252,0,189,0,31,192,0,47,195,252,0,253,0,31,192,0,63,135,240,191,252,31,255,128,0,11,66,208,127,248,15,255,64,0,0,0,128,63,208,15,249,0,0, + // 0x6e90 源 + 144,110,34,34,50,36,1,253,0,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,11,255,3,255,255,255,255,255,192,2,255,211,255,255,255,255,255,192,0,63,227,255,255,255,255,255,192,0,11,195,244,0,15,240,0,0,0,1,3,244,0,15,224,0,0,0,0,3,244,0,15,192,0,0,0,0,3,244,85,111,213,85,0,0,0,3,244,255,255,255,255,0,13,0,3,244,255,255,255,255,0,63,208,3,244,252,0,0,63,0,127,248,3,244,252,0,0,63,0,11,255,3,244,253,85,85,127,0,1,254,3,244,255,255,255,255,0,0,44,3,240,255,255,255,255,0,0,0,3,240,252,0,0,63,0,0,0,3,240,252,0,0,63,0,0,0,3,240,252,0,0,63,0,0,0,7,240,255,255,255,255,0,0,13,7,240,255,255,255,255,0,0,31,139,224,85,95,229,85,0,0,63,139,224,0,15,208,0,0,0,127,15,208,36,15,208,116,0,0,191,15,192,191,15,210,252,0,0,253,31,192,253,15,208,254,0,2,252,47,129,252,15,208,127,64,3,248,63,67,244,15,208,63,192,7,240,127,11,240,15,208,31,208,15,240,254,31,208,15,208,15,224,31,209,253,47,128,15,208,7,208,63,195,252,2,11,255,192,0,0,11,65,244,0,7,255,192,0,0,0,0,16,0,3,249,0,0,0, + // 0x6ea2 溢 + 162,110,34,34,50,36,1,253,0,64,0,0,0,0,0,0,0,3,244,0,0,15,255,252,0,0,11,255,0,6,79,255,253,0,0,2,255,208,15,223,255,255,0,0,0,47,208,47,192,0,63,64,0,0,7,128,127,64,0,47,192,0,0,0,1,254,0,0,15,244,0,0,0,7,254,170,170,175,253,0,0,0,31,243,255,255,253,255,192,0,0,15,195,255,255,252,127,64,14,0,3,0,0,0,0,13,0,63,208,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,0,11,255,0,0,15,255,253,0,0,1,254,0,10,79,255,255,0,0,0,44,0,15,223,255,255,64,0,0,0,0,63,192,0,47,192,0,0,0,0,191,64,0,15,224,0,0,0,1,254,0,0,11,248,0,0,0,3,252,0,0,2,254,0,0,0,31,240,0,0,0,255,208,0,29,127,255,255,255,255,255,208,0,63,175,255,255,255,255,251,64,0,63,73,255,255,255,255,244,0,0,191,0,252,47,11,194,244,0,0,254,0,252,47,11,194,244,0,1,252,0,252,47,11,194,244,0,3,248,0,252,47,11,194,244,0,7,244,0,252,47,11,194,244,0,15,240,0,252,47,11,194,244,0,31,208,127,255,255,255,255,255,224,47,192,127,255,255,255,255,255,224,11,128,127,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6ed1 滑 + 209,110,33,34,50,36,1,253,0,64,0,0,0,0,0,0,0,2,248,0,26,170,170,170,144,0,7,255,64,31,255,255,255,224,0,1,255,240,31,255,255,255,224,0,0,31,244,31,128,0,7,224,0,0,2,224,31,128,0,7,224,0,0,0,64,31,128,255,255,224,0,0,0,0,31,128,255,255,224,0,0,0,0,31,128,244,11,224,0,0,0,0,31,128,244,7,224,0,8,0,0,31,128,244,7,224,0,47,128,10,191,234,250,175,250,128,127,248,15,255,255,255,255,255,192,31,255,79,255,255,255,255,255,192,1,255,79,192,0,0,0,15,192,0,46,15,192,0,0,0,15,192,0,0,15,239,255,255,255,239,192,0,0,6,175,255,255,255,234,128,0,0,0,31,234,170,175,224,0,0,0,0,31,128,0,7,224,0,0,3,192,31,128,0,7,224,0,0,7,240,31,255,255,255,224,0,0,15,240,31,255,255,255,224,0,0,31,208,31,213,85,91,224,0,0,63,192,31,128,0,7,224,0,0,127,64,31,213,85,91,224,0,0,255,0,31,255,255,255,224,0,1,254,0,31,255,255,255,224,0,3,252,0,31,128,0,7,224,0,7,244,0,31,128,0,7,224,0,15,240,0,31,128,0,7,224,0,31,208,0,31,128,6,175,224,0,3,192,0,31,128,7,255,208,0,0,0,0,31,128,3,254,64,0, + // 0x6f0f 漏 + 15,111,33,34,50,36,1,253,1,0,0,0,0,0,0,0,0,3,224,6,170,170,170,170,170,0,15,253,7,255,255,255,255,255,0,3,255,199,255,255,255,255,255,0,0,191,199,224,0,0,0,127,0,0,31,71,224,0,0,0,127,0,0,2,7,224,0,0,0,127,0,0,0,7,250,170,170,170,255,0,0,0,7,255,255,255,255,255,0,0,0,7,255,255,255,255,255,0,4,0,7,224,0,0,0,0,0,47,128,7,224,0,0,0,0,0,127,244,7,250,170,170,170,170,128,31,255,7,255,255,255,255,255,192,2,255,11,255,255,255,255,255,192,0,61,11,224,0,31,64,0,0,0,4,11,208,0,31,64,0,0,0,0,11,234,170,191,170,170,64,0,0,11,255,255,255,255,255,64,0,0,15,255,255,255,255,255,64,0,40,15,239,0,31,64,31,64,0,63,15,239,20,31,84,31,64,0,127,15,239,126,31,126,31,64,0,254,31,175,47,239,95,223,64,0,253,47,175,7,159,67,159,64,2,252,63,111,0,31,64,31,64,3,248,63,47,20,31,100,31,64,7,244,127,47,125,31,190,31,64,11,240,190,47,47,159,95,159,64,15,208,253,47,11,239,71,95,64,47,194,252,47,1,31,64,31,64,63,131,244,47,0,31,65,111,64,31,1,240,47,0,31,71,255,64,1,0,16,47,0,31,3,253,0, + // 0x6fc0 激 + 192,111,34,35,59,36,1,252,1,0,0,15,144,1,228,0,0,3,224,0,31,192,1,252,0,0,15,253,0,47,192,2,248,0,0,3,255,133,127,149,66,244,0,0,0,127,223,255,255,195,244,0,0,0,15,15,255,255,195,240,0,0,0,1,15,64,15,195,240,0,0,0,0,15,64,15,199,255,255,224,0,0,15,149,95,203,255,255,224,0,0,15,255,255,207,255,255,224,13,0,15,255,255,223,192,63,0,63,208,15,64,15,239,192,126,0,127,248,15,64,15,255,208,126,0,15,254,15,149,95,255,208,189,0,1,253,15,255,255,255,224,189,0,0,56,15,255,255,255,240,252,0,0,0,0,31,192,186,240,252,0,0,0,0,31,192,33,244,252,0,0,0,106,191,234,160,249,248,0,0,0,191,255,255,240,254,244,0,0,24,191,255,255,240,191,240,0,0,47,0,252,0,0,127,240,0,0,63,64,252,0,0,63,208,0,0,127,0,254,170,128,47,192,0,0,254,0,255,255,128,47,192,0,0,252,1,255,255,128,63,192,0,2,252,2,244,31,128,191,240,0,3,248,3,240,31,129,255,244,0,7,240,7,240,31,131,253,252,0,15,240,15,208,47,79,240,255,0,31,208,63,192,63,127,208,63,192,63,192,255,15,255,255,128,31,224,11,130,253,15,254,189,0,7,192,0,0,112,6,148,36,0,1,0,0,0,0,0,0,0,0,0,0, + // 0x706f 灯 + 111,112,33,34,50,36,2,253,0,10,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,15,255,255,255,255,128,0,31,192,15,255,255,255,255,128,0,31,192,15,255,255,255,255,128,0,31,192,5,85,87,249,85,0,0,31,194,144,0,3,248,0,0,47,31,195,240,0,3,248,0,0,62,31,195,224,0,3,248,0,0,62,31,203,208,0,3,248,0,0,62,31,207,192,0,3,248,0,0,61,31,207,64,0,3,248,0,0,125,31,239,0,0,3,248,0,0,188,31,238,0,0,3,248,0,0,252,31,192,0,0,3,248,0,0,248,47,128,0,0,3,248,0,0,20,47,128,0,0,3,248,0,0,0,47,128,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,208,0,0,3,248,0,0,0,127,244,0,0,3,248,0,0,0,191,253,0,0,3,248,0,0,0,253,191,64,0,3,248,0,0,2,252,63,208,0,3,248,0,0,3,252,15,240,0,3,248,0,0,11,244,3,208,0,3,248,0,0,15,240,1,128,0,3,248,0,0,63,208,0,0,0,3,248,0,0,255,128,0,0,191,255,244,0,0,255,0,0,0,63,255,240,0,0,60,0,0,0,47,255,208,0,0,16,0,0,0,26,84,0,0,0, + // 0x70b9 点 + 185,112,32,34,16,36,2,253,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,248,0,0,0,15,255,255,255,248,0,0,0,15,255,255,255,248,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,252,0,0,0,0,127,0,0,252,0,0,0,0,127,0,0,252,0,0,0,0,127,0,0,252,0,0,0,0,127,0,0,252,0,0,0,0,127,0,0,252,0,0,0,0,127,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,1,0,31,0,2,252,15,208,31,192,63,192,3,248,15,208,15,192,31,208,11,240,11,224,15,224,11,240,15,224,11,240,7,240,3,252,63,192,7,240,3,244,1,253,191,64,7,240,2,248,0,255,254,0,7,240,1,252,0,126,24,0,2,80,0,64,0,32, + // 0x70ed 热 + 237,112,33,35,59,36,2,252,0,31,128,0,15,192,0,0,0,0,47,128,0,15,192,0,0,0,0,47,128,0,15,192,0,0,0,0,47,128,0,15,192,0,0,0,0,47,128,0,15,192,0,0,0,191,255,255,175,255,255,255,0,0,191,255,255,175,255,255,255,0,0,191,255,255,175,255,255,255,0,0,0,47,128,0,15,192,63,0,0,0,47,128,0,31,192,63,0,0,0,47,128,0,31,128,63,0,0,0,47,129,64,47,128,63,0,0,0,47,255,137,47,64,63,0,0,1,191,255,223,191,64,63,0,0,191,255,255,191,255,0,63,0,0,255,255,208,7,255,0,63,0,0,255,255,128,0,255,224,63,0,0,180,47,128,0,255,252,63,0,0,0,47,128,2,255,255,47,8,0,0,47,128,7,244,191,47,75,128,0,47,128,31,240,29,31,79,192,0,47,128,127,192,0,15,207,128,31,255,66,255,64,0,15,255,64,15,255,0,253,0,0,7,255,0,15,248,0,48,0,0,1,248,0,0,0,0,0,0,0,2,0,0,0,248,0,0,1,64,47,128,0,3,252,15,208,31,192,47,208,0,7,244,11,224,15,208,15,240,0,15,240,7,240,11,240,7,248,0,47,192,7,240,7,240,2,252,0,127,128,7,240,3,244,0,255,0,255,0,3,240,3,248,0,191,0,44,0,2,144,1,144,0,56,0,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,35,24,36,1,252,0,0,0,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,213,85,95,245,85,84,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,213,85,85,85,80,0,0,63,255,255,255,255,244,0,0,63,255,255,255,255,244,0,0,127,255,255,255,255,244,0,0,127,0,0,0,7,244,0,0,191,0,0,0,7,244,0,0,255,0,0,0,7,244,0,0,254,0,0,0,7,244,0,2,252,0,0,0,7,244,0,3,252,0,0,0,7,244,0,11,248,0,0,0,7,244,0,15,240,0,0,0,7,244,0,63,224,0,0,0,7,244,0,127,192,0,0,0,7,244,0,31,0,0,0,0,7,244,0,9,0,0,0,0,7,244,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,34,34,50,36,1,253,0,3,240,0,14,64,0,0,0,0,3,240,0,31,128,0,0,0,11,131,240,0,47,64,0,0,0,15,195,240,0,63,0,0,0,0,15,195,240,0,63,0,0,0,0,15,195,240,0,190,0,0,0,0,15,131,240,0,255,255,255,255,208,31,255,255,209,255,255,255,255,192,31,255,255,211,255,255,255,255,192,47,255,255,215,240,126,15,207,192,63,7,240,15,224,188,31,143,192,62,3,240,31,192,252,47,79,192,125,3,240,63,129,248,63,15,192,252,3,240,255,2,244,63,15,192,44,3,240,125,3,240,126,31,192,0,3,240,4,11,208,189,31,192,0,3,240,96,15,192,252,31,128,0,3,255,240,47,129,248,31,128,0,47,255,240,127,3,244,47,128,27,255,255,144,253,3,240,47,128,127,255,244,2,252,11,224,47,64,63,251,240,11,244,15,192,63,64,62,3,240,47,224,47,192,63,64,0,3,240,63,192,63,64,63,0,0,3,240,15,0,191,0,63,0,0,3,240,0,1,253,0,127,0,0,3,240,0,3,248,0,127,0,0,3,240,0,15,240,0,190,0,0,3,240,0,47,208,0,253,0,0,3,240,0,191,128,2,252,0,0,3,240,3,255,3,255,252,0,0,3,240,1,252,2,255,244,0,0,3,240,0,32,1,255,208,0,0,3,240,0,0,0,0,0,0, + // 0x7279 特 + 121,114,34,34,50,36,1,253,0,3,240,0,0,31,192,0,0,0,3,240,0,0,31,192,0,0,10,67,240,0,0,31,192,0,0,15,195,240,0,0,31,192,0,0,15,195,240,3,255,255,255,255,0,15,195,240,3,255,255,255,255,0,15,131,240,3,255,255,255,255,0,31,239,250,128,0,31,192,0,0,31,255,255,208,0,31,192,0,0,47,255,255,208,0,31,192,0,0,63,91,245,64,0,31,192,0,0,62,3,240,63,255,255,255,255,208,125,3,240,63,255,255,255,255,208,252,3,240,63,255,255,255,255,208,124,3,240,0,0,0,15,208,0,4,3,240,0,0,0,15,208,0,0,3,241,176,0,0,15,208,0,0,3,255,240,0,0,15,208,0,0,111,255,255,255,255,255,255,192,47,255,255,111,255,255,255,255,192,127,255,240,47,255,255,255,255,192,63,251,240,0,0,0,15,208,0,57,3,240,0,180,0,15,208,0,0,3,240,2,252,0,15,208,0,0,3,240,0,255,0,15,208,0,0,3,240,0,63,128,15,208,0,0,3,240,0,31,208,15,208,0,0,3,240,0,11,240,15,208,0,0,3,240,0,3,128,15,208,0,0,3,240,0,0,0,15,208,0,0,3,240,0,0,21,95,192,0,0,3,240,0,0,63,255,192,0,0,3,240,0,0,47,255,128,0,0,3,240,0,0,31,249,0,0, + // 0x7387 率 + 135,115,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,63,64,0,0,0,2,0,0,190,0,0,3,208,31,208,1,252,7,64,15,244,31,248,31,240,15,208,63,208,2,255,127,208,63,65,255,0,0,127,95,240,190,3,248,0,0,28,3,254,248,0,80,0,0,0,0,191,241,64,0,0,0,0,64,47,207,193,128,0,0,27,192,127,7,247,248,0,1,255,209,252,3,255,255,64,111,255,255,255,255,252,191,240,255,228,191,255,255,254,15,253,126,0,127,255,165,127,2,254,32,0,0,15,224,30,0,116,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x73af 环 + 175,115,33,32,32,36,1,253,127,255,253,63,255,255,255,255,192,127,255,253,63,255,255,255,255,192,127,255,253,63,255,255,255,255,192,0,126,0,0,0,31,208,0,0,0,126,0,0,0,63,192,0,0,0,126,0,0,0,63,128,0,0,0,126,0,0,0,191,0,0,0,0,126,0,0,0,255,0,0,0,0,126,0,0,2,254,0,0,0,0,126,0,0,3,254,16,0,0,0,126,0,0,11,255,188,0,0,63,255,248,0,15,255,254,0,0,63,255,248,0,63,254,191,64,0,63,255,248,0,191,254,63,192,0,0,126,0,1,255,190,15,240,0,0,126,0,3,253,190,7,248,0,0,126,0,15,248,190,2,253,0,0,126,0,63,240,190,0,255,0,0,126,0,255,192,190,0,127,192,0,126,0,191,64,190,0,47,64,0,126,0,45,0,190,0,12,0,0,126,24,4,0,190,0,0,0,0,127,253,0,0,190,0,0,0,1,191,253,0,0,190,0,0,0,111,255,248,0,0,190,0,0,0,191,254,64,0,0,190,0,0,0,127,208,0,0,0,190,0,0,0,52,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0, + // 0x7528 用 + 40,117,31,32,0,36,1,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,191,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,252,0,1,252,0,1,252,1,252,0,1,252,0,1,252,2,252,0,1,252,0,1,252,3,248,0,1,252,0,1,252,3,244,0,1,252,0,1,252,11,240,0,1,252,0,1,252,15,224,0,1,252,0,1,252,47,192,0,1,252,0,2,252,127,192,0,1,252,31,255,252,127,0,0,1,252,15,255,244,13,0,0,1,248,11,255,144,0,0,0,0,0,0,0,0, + // 0x7535 电 + 53,117,31,34,16,36,4,253,0,0,0,169,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,21,85,85,254,85,85,84,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,0,254,0,1,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,0,0,253,0,0,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,85,85,254,85,85,85,0,191,0,0,253,0,0,3,224,85,0,0,253,0,0,3,248,0,0,0,254,0,0,3,244,0,0,0,254,0,0,7,244,0,0,0,255,0,0,15,240,0,0,0,191,255,255,255,224,0,0,0,127,255,255,255,192,0,0,0,31,255,255,255,0,0,0,0,0,85,85,80,0, + // 0x7565 略 + 101,117,32,35,24,36,3,252,0,0,0,0,10,64,0,0,0,0,0,0,15,208,0,0,255,255,255,0,47,192,0,0,255,255,255,0,63,128,0,0,255,255,255,0,191,255,255,208,244,124,63,1,255,255,255,240,244,124,63,3,255,255,255,208,244,124,63,15,248,0,47,192,244,124,63,63,252,0,127,0,244,124,63,255,191,0,254,0,244,124,63,253,63,130,252,0,244,124,63,180,15,219,240,0,255,255,255,16,7,255,208,0,255,255,255,0,2,255,128,0,255,255,255,0,7,255,192,0,244,124,63,0,47,255,244,0,244,124,63,0,255,215,254,0,244,124,63,11,255,1,255,228,244,124,63,191,248,0,63,255,244,124,63,255,208,0,7,254,244,124,63,255,255,255,255,252,244,124,63,255,255,255,255,224,244,124,63,31,255,255,255,208,244,124,63,15,208,0,15,208,255,255,255,15,208,0,15,208,255,255,255,15,208,0,15,208,255,255,255,15,208,0,15,208,244,0,0,15,208,0,15,208,244,0,0,15,208,0,15,208,244,0,0,15,208,0,15,208,0,0,0,15,255,255,255,208,0,0,0,15,255,255,255,208,0,0,0,15,255,255,255,208,0,0,0,15,208,0,15,208,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,26,34,238,36,5,253,0,0,11,228,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,31,224,0,0,0,0,0,63,192,0,0,0,85,85,127,213,85,85,80,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,254,85,85,85,85,91,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,254,85,85,85,85,91,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240, + // 0x7684 的 + 132,118,31,34,16,36,3,253,0,46,64,0,14,64,0,0,0,63,128,0,15,208,0,0,0,63,64,0,31,192,0,0,0,127,0,0,47,128,0,0,0,190,0,0,63,64,0,0,0,253,0,0,127,0,0,0,255,255,255,192,191,255,255,244,255,255,255,192,255,255,255,244,255,255,255,194,255,255,255,244,252,0,15,195,248,0,2,244,252,0,15,203,240,0,3,244,252,0,15,207,224,0,3,244,252,0,15,255,192,0,3,244,252,0,15,239,128,0,3,240,252,0,15,199,5,0,3,240,252,0,15,192,63,0,3,240,255,255,255,192,63,192,3,240,255,255,255,192,15,224,3,240,255,255,255,192,11,244,3,240,252,0,15,192,3,252,3,240,252,0,15,192,0,254,3,240,252,0,15,192,0,191,7,240,252,0,15,192,0,63,71,240,252,0,15,192,0,24,7,224,252,0,15,192,0,0,11,224,252,0,15,192,0,0,11,224,252,0,15,192,0,0,15,208,255,255,255,192,0,0,15,208,255,255,255,192,0,0,31,192,255,255,255,192,0,0,63,192,252,0,0,0,7,255,255,128,252,0,0,0,3,255,255,0,252,0,0,0,2,255,248,0,0,0,0,0,0,0,0,0, + // 0x76d1 监 + 209,118,33,34,50,36,2,253,0,0,47,128,1,228,0,0,0,6,144,47,128,2,252,0,0,0,11,224,47,128,3,248,0,0,0,11,224,47,128,3,240,0,0,0,11,224,47,128,7,240,0,0,0,11,224,47,128,15,255,255,255,0,11,224,47,128,31,255,255,255,0,11,224,47,128,47,255,255,255,0,11,224,47,128,63,64,0,0,0,11,224,47,128,191,0,0,0,0,11,224,47,129,253,7,0,0,0,11,224,47,131,252,47,192,0,0,11,224,47,139,244,47,244,0,0,11,224,47,159,224,7,253,0,0,11,224,47,135,192,1,255,128,0,11,224,47,129,64,0,63,208,0,11,208,47,128,0,0,15,224,0,0,0,47,128,0,0,7,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0, + // 0x76f4 直 + 244,118,32,34,16,36,2,253,0,0,0,3,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,21,85,85,85,85,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0, + // 0x7701 省 + 1,119,32,34,16,36,2,253,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,3,208,11,224,2,224,0,0,11,244,11,224,15,252,0,0,47,224,11,224,2,255,0,0,191,192,11,224,0,191,208,2,255,0,11,224,0,31,244,11,252,0,11,224,10,7,253,127,240,0,15,224,47,225,255,191,192,63,255,224,255,192,125,30,0,31,255,219,255,0,16,0,0,15,250,191,244,0,0,0,0,0,27,255,128,0,0,0,0,6,255,253,0,0,0,0,22,255,255,128,0,0,0,111,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,127,255,250,170,170,170,255,0,21,7,240,0,0,0,191,0,0,7,240,0,0,0,191,0,0,7,255,255,255,255,255,0,0,7,255,255,255,255,255,0,0,7,245,85,85,85,191,0,0,7,240,0,0,0,191,0,0,7,240,0,0,0,191,0,0,7,255,255,255,255,255,0,0,7,255,255,255,255,255,0,0,7,245,85,85,85,191,0,0,7,240,0,0,0,191,0,0,7,240,0,0,0,191,0,0,7,255,255,255,255,255,0,0,7,255,255,255,255,255,0,0,7,250,170,170,170,255,0,0,7,240,0,0,0,106,0, + // 0x7720 眠 + 32,119,33,32,32,36,2,253,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,126,0,252,15,192,15,192,0,0,126,0,252,15,192,15,192,0,0,126,0,252,15,192,15,208,0,0,126,0,252,15,192,15,208,0,0,126,0,252,15,192,11,208,0,0,127,255,252,15,255,255,255,255,64,127,255,252,15,255,255,255,255,64,127,255,252,15,255,255,255,255,64,126,0,252,15,208,7,240,0,0,126,0,252,15,192,3,240,0,0,126,0,252,15,192,3,240,0,0,126,0,252,15,192,3,244,0,0,127,0,252,15,192,2,248,0,0,127,255,252,15,192,1,252,0,0,127,255,252,15,192,0,252,7,64,127,255,252,15,192,0,253,7,192,126,0,0,15,192,105,190,11,192,126,0,0,15,255,254,63,11,192,126,0,2,255,255,254,47,223,192,0,0,3,255,255,228,15,255,128,0,0,3,255,164,0,7,255,0,0,0,1,144,0,0,1,252,0, + // 0x786e 确 + 110,120,33,35,59,36,1,252,0,0,0,0,3,144,0,0,0,0,0,0,0,7,240,0,0,0,63,255,255,244,11,224,0,0,0,63,255,255,244,15,255,254,0,0,63,255,255,244,47,255,255,192,0,0,63,64,0,63,255,255,64,0,0,63,0,0,255,0,191,0,0,0,127,0,1,252,0,252,0,0,0,190,0,3,248,3,248,0,0,0,189,0,15,255,255,255,255,64,0,252,0,63,255,255,255,255,64,0,252,0,15,255,255,255,255,64,1,252,0,3,248,11,208,63,64,2,255,255,193,248,11,208,63,64,3,255,255,193,248,11,208,63,64,7,255,255,193,248,11,208,63,64,15,244,15,193,255,255,255,255,64,15,244,15,193,255,255,255,255,64,47,244,15,193,254,175,234,191,64,63,244,15,193,248,11,208,63,64,255,244,15,193,248,11,208,63,64,127,244,15,193,248,11,208,63,64,62,244,15,194,255,255,255,255,64,2,244,15,194,255,255,255,255,64,2,244,15,195,255,255,255,255,64,2,244,15,195,240,0,0,63,64,2,255,255,199,240,0,0,63,64,2,255,255,203,224,0,0,63,64,2,255,255,223,208,0,0,63,64,2,244,0,31,192,0,0,63,64,2,244,0,63,128,0,0,63,64,2,244,0,255,0,0,63,255,0,0,0,0,125,0,0,63,255,0,0,0,0,24,0,0,47,248,0,0,0,0,0,0,0,0,0,0, + // 0x79bb 离 + 187,121,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,1,0,0,0,0,105,2,64,15,208,106,0,0,190,11,248,63,128,191,0,0,190,7,255,254,0,191,0,0,190,0,63,252,0,191,0,0,190,1,191,255,128,191,0,0,190,47,253,47,240,191,0,0,190,47,208,7,208,191,0,0,190,9,0,0,64,191,0,0,191,255,255,255,255,255,0,0,191,255,255,255,255,255,0,0,106,170,191,234,170,170,0,0,0,0,63,128,0,0,0,0,0,0,127,64,0,0,0,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,224,1,252,2,224,11,240,15,224,2,252,3,244,11,240,15,224,3,244,0,252,11,240,15,231,255,250,255,254,11,240,15,227,255,255,255,255,75,240,15,227,255,255,234,175,203,240,15,224,0,0,0,15,75,240,15,224,0,0,0,0,11,240,15,224,0,0,0,15,255,240,15,224,0,0,0,11,255,208,15,224,0,0,0,3,254,64, + // 0x79fb 移 + 251,121,34,34,50,36,1,253,0,0,1,0,0,46,64,0,0,0,0,111,128,0,63,64,0,0,0,111,255,208,0,255,0,0,0,47,255,255,144,3,255,255,248,0,63,255,244,0,15,255,255,254,0,46,159,224,0,63,255,255,252,0,0,11,224,1,255,64,3,248,0,0,11,224,31,255,128,11,240,0,0,11,224,63,255,240,47,208,0,0,11,224,15,67,253,191,128,0,63,255,255,240,0,255,254,0,0,63,255,255,240,0,63,252,0,0,63,255,255,240,0,191,224,0,0,0,31,224,0,11,255,128,0,0,0,47,224,1,191,255,248,0,0,0,63,240,15,255,219,240,0,0,0,127,252,11,254,31,224,0,0,0,255,255,3,144,63,255,255,64,1,255,255,192,0,255,255,255,208,3,251,235,240,7,255,255,255,192,7,235,227,240,31,240,0,63,128,15,203,225,208,255,208,0,191,0,47,139,224,75,255,244,1,254,0,127,11,224,15,251,254,3,252,0,190,11,224,3,192,255,207,244,0,60,11,224,0,0,47,255,208,0,36,11,224,0,0,7,255,128,0,0,11,224,0,0,11,254,0,0,0,11,224,0,0,191,244,0,0,0,11,224,0,27,255,192,0,0,0,11,224,6,255,254,0,0,0,0,11,224,63,255,224,0,0,0,0,11,224,31,253,0,0,0,0,0,11,224,14,64,0,0,0,0, + // 0x7a7a 空 + 122,122,32,33,8,36,2,254,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,0,15,224,15,208,0,252,63,0,15,208,15,208,0,252,63,0,31,192,15,208,0,252,63,0,47,192,15,208,0,252,0,0,63,128,15,208,0,0,0,0,255,0,15,208,0,248,0,7,254,0,15,224,0,252,0,127,248,0,11,255,255,248,47,255,224,0,7,255,255,244,63,255,0,0,1,255,255,208,31,228,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254, + // 0x7aef 端 + 239,122,34,34,50,36,1,253,0,26,0,0,0,47,64,0,0,0,63,0,0,0,47,128,0,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,63,255,255,15,192,47,128,63,0,63,255,255,15,255,255,255,255,0,63,255,255,15,255,255,255,255,0,0,0,0,15,255,255,255,255,0,6,0,120,0,0,0,0,0,0,31,0,190,0,0,0,0,0,0,15,64,189,127,255,255,255,255,208,15,128,252,127,255,255,255,255,208,15,128,252,127,255,255,255,255,208,11,192,252,0,0,63,64,0,0,11,192,248,0,0,127,0,0,0,11,193,244,0,0,191,0,0,0,7,209,244,31,255,255,255,255,128,7,210,240,31,255,255,255,255,128,7,211,240,31,255,255,255,255,128,7,211,224,31,131,224,188,31,128,0,3,230,159,131,224,188,31,128,0,7,255,223,131,224,188,31,128,27,255,255,239,131,224,188,31,128,191,255,254,95,131,224,188,31,128,127,254,64,31,131,224,188,31,128,62,64,0,31,131,224,188,31,128,0,0,0,31,131,224,188,31,128,0,0,0,31,131,224,188,31,128,0,0,0,31,131,224,189,191,128,0,0,0,31,131,224,188,255,64,0,0,0,26,64,0,0,254,0, + // 0x7b2c 第 + 44,123,33,34,50,36,1,253,0,46,64,0,1,244,0,0,0,0,63,64,0,3,248,0,0,0,0,191,0,0,7,240,0,0,0,0,255,255,255,79,255,255,255,192,3,255,255,255,111,255,255,255,192,11,251,254,170,255,239,250,170,128,31,225,252,1,255,3,248,0,0,63,192,253,7,252,1,252,0,0,127,64,190,3,240,0,254,0,0,13,0,96,0,144,0,100,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,2,248,0,7,240,0,0,0,0,2,248,0,7,240,0,0,0,0,2,248,0,7,240,0,0,47,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,127,0,2,248,0,0,0,0,0,191,0,2,248,0,0,0,0,0,254,0,2,248,0,0,0,0,0,255,255,255,255,255,255,255,0,1,255,255,255,255,255,255,255,0,2,255,255,255,255,255,255,255,0,1,164,1,255,248,0,0,190,0,0,0,15,251,248,0,0,254,0,0,0,191,210,248,0,0,253,0,0,11,255,2,248,0,1,252,0,1,255,244,2,248,11,255,252,0,63,255,128,2,248,3,255,244,0,31,248,0,2,248,3,255,208,0,11,128,0,2,248,0,0,0,0,0,0,0,2,244,0,0,0,0, + // 0x7b49 等 + 73,123,34,34,50,36,1,253,0,46,64,0,1,228,0,0,0,0,63,128,0,3,248,0,0,0,0,191,0,0,7,244,0,0,0,0,255,255,255,143,255,255,255,192,2,255,255,255,175,255,255,255,192,7,255,255,255,255,255,255,255,192,15,241,252,0,255,3,248,0,0,63,192,253,3,253,1,252,0,0,127,64,190,2,248,0,254,0,0,30,0,100,3,248,0,116,0,0,0,0,0,3,248,0,0,0,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,127,255,255,255,255,255,224,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,184,0,0,11,240,0,0,0,2,254,0,0,11,240,0,0,0,0,255,192,0,11,240,0,0,0,0,63,240,0,11,240,0,0,0,0,11,252,0,11,240,0,0,0,0,2,252,0,11,240,0,0,0,0,0,224,63,255,224,0,0,0,0,0,0,47,255,208,0,0,0,0,0,0,15,254,0,0,0, + // 0x7bb1 箱 + 177,123,33,35,59,36,1,252,0,47,64,0,1,248,0,0,0,0,63,128,0,3,248,0,0,0,0,127,0,0,7,244,0,0,0,0,255,255,255,75,255,255,255,192,1,255,255,255,159,255,255,255,192,3,255,255,255,191,255,255,255,192,11,241,252,0,191,71,240,0,0,15,224,253,1,255,2,252,0,0,63,192,190,3,252,0,253,0,0,127,64,127,2,248,0,191,0,0,31,0,124,0,112,0,56,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,47,255,255,255,63,0,0,127,0,47,255,255,255,63,0,0,127,0,47,255,255,255,63,0,0,127,0,0,11,248,0,63,255,255,255,0,0,15,252,0,63,255,255,255,0,0,47,255,0,63,170,170,255,0,0,63,255,208,63,0,0,127,0,0,191,255,244,63,0,0,127,0,1,255,250,253,63,0,0,127,0,3,246,248,255,63,255,255,255,0,15,242,248,60,63,255,255,255,0,47,194,248,20,63,170,170,255,0,191,130,248,0,63,0,0,127,0,63,2,248,0,63,0,0,127,0,12,2,248,0,63,234,170,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,0,0,127,0,0,2,248,0,42,0,0,21,0,0,0,0,0,0,0,0,0,0, + // 0x7c7b 类 + 123,124,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,31,0,11,224,0,249,0,0,127,128,11,224,2,253,0,0,47,224,11,224,7,248,0,0,11,244,11,224,15,240,0,0,3,252,11,224,63,192,0,0,2,244,15,224,47,64,0,127,255,255,255,255,255,255,254,127,255,255,255,255,255,255,254,127,255,255,255,255,255,255,254,0,0,3,255,255,192,0,0,0,0,31,255,255,244,0,0,0,0,191,219,231,254,0,0,0,7,255,75,225,255,208,0,0,127,252,11,224,63,254,64,27,255,224,11,224,7,255,249,255,255,64,11,224,0,191,254,63,244,0,5,64,16,11,252,30,64,0,11,224,254,0,100,0,0,0,15,224,191,224,0,0,0,0,15,224,11,252,0,0,0,0,15,208,1,244,0,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,0,0,0,255,253,0,0,0,0,0,2,254,191,64,0,0,0,0,11,252,63,224,0,0,0,0,127,244,15,253,0,0,0,27,255,208,3,255,228,0,27,255,255,0,0,191,255,233,255,255,244,0,0,31,255,255,127,254,0,0,0,0,191,253,62,64,0,0,0,0,1,188,0,0,0,0,0,0,0,0, + // 0x7d22 索 + 34,125,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,0,1,254,0,0,0,253,127,0,7,252,0,64,0,253,127,0,31,240,1,248,0,253,127,30,127,192,11,253,0,253,0,127,254,0,63,240,0,0,0,47,252,1,255,128,0,0,0,3,255,71,253,9,0,0,0,0,127,255,240,63,192,0,0,0,15,255,128,47,244,0,0,0,31,252,0,7,254,0,106,170,255,250,170,170,255,192,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,253,21,80,64,15,224,0,0,248,0,2,228,15,224,10,0,16,0,15,252,15,224,63,224,0,0,127,224,15,224,31,253,0,7,255,128,15,224,2,255,192,127,253,0,15,224,0,63,244,255,224,0,15,224,0,7,254,63,64,0,15,224,0,0,248,4,0,0,15,224,0,0,0, + // 0x7d2b 紫 + 43,125,33,35,59,36,1,252,0,0,126,0,11,224,0,0,0,0,0,126,0,11,224,0,0,0,1,80,126,0,11,224,1,180,0,3,240,127,170,139,224,111,254,0,3,240,127,255,203,251,255,249,0,3,240,127,255,203,255,255,64,0,3,240,126,0,11,255,144,0,0,3,240,126,0,11,240,0,0,0,3,240,126,0,11,224,0,10,64,3,240,126,1,75,224,0,15,192,3,240,191,255,203,240,0,31,192,27,255,255,255,199,255,255,255,192,127,255,255,254,67,255,255,255,64,127,254,148,47,128,191,255,253,0,37,0,0,191,128,0,0,0,0,0,0,2,253,0,126,0,0,0,0,11,79,244,1,255,64,0,0,0,47,255,192,11,252,0,0,0,0,47,255,64,127,224,16,0,0,0,2,255,246,255,66,248,0,0,0,0,47,255,248,2,255,0,0,0,0,7,255,208,0,127,208,0,0,0,2,255,170,171,255,244,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,248,0,0,63,192,0,0,80,3,248,0,64,14,0,0,1,253,3,248,7,244,0,0,0,11,252,3,248,11,255,0,0,0,127,240,3,248,1,255,224,0,7,255,128,3,248,0,47,252,0,63,253,0,3,248,0,3,255,64,15,224,0,3,248,0,0,191,0,2,0,0,3,248,0,0,20,0,0,0,0,0,0,0,0,0,0, + // 0x7ea2 红 + 162,126,34,33,41,36,1,254,0,2,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,240,5,85,85,85,85,0,0,31,208,15,255,255,255,255,128,0,63,192,15,255,255,255,255,128,0,127,64,15,255,255,255,255,128,0,255,0,0,0,31,208,0,0,2,252,3,64,0,31,208,0,0,3,248,11,224,0,31,208,0,0,11,240,31,240,0,31,208,0,0,31,208,63,192,0,31,208,0,0,191,255,255,64,0,31,208,0,0,191,255,254,0,0,31,208,0,0,63,255,252,0,0,31,208,0,0,41,11,244,0,0,31,208,0,0,0,31,208,0,0,31,208,0,0,0,127,128,0,0,31,208,0,0,1,254,0,0,0,31,208,0,0,7,252,22,144,0,31,208,0,0,31,255,255,208,0,31,208,0,0,127,255,255,224,0,31,208,0,0,63,255,233,0,0,31,208,0,0,46,144,0,0,0,31,208,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,31,208,0,0,0,0,27,192,0,31,208,0,0,0,107,255,192,0,31,208,0,0,127,255,255,239,255,255,255,255,208,127,255,249,95,255,255,255,255,208,127,249,0,31,255,255,255,255,208,57,0,0,5,85,85,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x7ea7 级 + 167,126,34,35,59,36,1,252,0,3,128,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,224,47,255,255,255,208,0,0,31,192,47,255,255,255,192,0,0,63,128,47,255,255,255,192,0,0,127,0,0,63,128,63,128,0,0,254,0,0,63,64,63,64,0,1,252,4,0,63,64,127,0,0,3,244,15,128,63,64,191,0,0,7,240,31,192,63,64,254,0,0,15,208,63,128,63,0,252,0,0,47,133,191,0,63,1,252,0,0,191,255,253,0,127,2,255,254,0,127,255,252,0,127,3,255,255,64,63,239,240,0,127,131,255,255,0,16,15,208,0,191,192,0,127,0,0,63,128,0,191,208,0,254,0,0,191,0,0,255,224,0,252,0,1,253,27,192,255,240,1,252,0,3,255,255,192,255,248,3,248,0,15,255,255,129,252,253,7,240,0,127,255,228,2,248,191,15,224,0,127,249,0,3,248,63,95,192,0,62,64,0,3,244,47,255,128,0,16,0,1,199,240,15,255,0,0,0,0,111,207,224,7,254,0,0,0,11,255,239,208,7,254,0,0,1,255,255,111,192,31,255,128,0,47,255,224,63,128,127,255,224,0,63,253,0,191,2,255,79,253,0,63,144,1,254,31,253,3,255,128,40,0,3,252,127,244,0,255,208,0,0,2,248,47,128,0,47,128,0,0,0,48,13,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x7ebf 线 + 191,126,33,34,50,36,2,253,0,9,0,0,3,240,0,0,0,0,15,192,0,3,240,184,0,0,0,31,192,0,3,241,255,64,0,0,63,128,0,3,240,63,224,0,0,127,0,0,3,240,11,208,0,0,191,0,0,3,240,1,64,0,0,253,0,0,3,240,5,164,0,2,248,0,0,3,251,255,248,0,3,240,29,6,191,255,255,252,0,15,224,63,159,255,255,254,144,0,31,192,127,15,255,249,0,0,0,63,65,254,10,83,248,0,0,0,255,255,252,0,2,248,0,0,0,255,255,244,0,2,248,0,89,0,191,255,224,0,1,253,175,254,0,16,47,192,0,6,255,255,255,0,0,127,64,27,255,255,255,228,0,0,254,0,63,255,255,144,0,0,3,252,0,63,254,253,0,32,0,11,240,107,25,0,254,0,190,0,47,255,255,0,0,190,1,253,0,255,255,255,0,0,127,3,248,0,191,255,144,0,0,127,15,240,0,127,144,0,0,0,63,191,192,0,16,0,0,0,0,63,255,0,0,0,0,2,0,0,47,252,0,0,0,1,191,0,0,127,240,0,0,0,111,255,64,3,255,224,8,0,111,255,254,0,47,255,240,15,64,255,255,128,7,255,247,252,15,64,191,224,0,191,255,65,255,111,64,116,0,0,191,244,0,255,255,0,0,0,0,62,64,0,63,254,0,0,0,0,0,0,0,7,248,0, + // 0x7ec6 细 + 198,126,33,34,50,36,1,253,0,1,208,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,244,11,255,255,255,255,64,0,15,240,11,255,255,255,255,64,0,31,208,11,255,255,255,255,64,0,63,192,11,229,95,213,127,64,0,127,64,11,224,15,192,63,64,0,254,0,11,224,15,192,63,64,2,252,1,11,224,15,192,63,64,3,244,3,219,224,15,192,63,64,15,224,15,251,224,15,192,63,64,63,213,175,219,224,15,192,63,64,191,255,255,139,224,15,192,63,64,127,255,255,11,224,15,192,63,64,63,167,252,11,224,15,192,63,64,0,11,244,11,255,255,255,255,64,0,31,208,11,255,255,255,255,64,0,127,64,11,255,255,255,255,64,1,254,0,11,224,15,192,63,64,7,253,111,219,224,15,192,63,64,31,255,255,235,224,15,192,63,64,127,255,255,219,224,15,192,63,64,63,255,164,11,224,15,192,63,64,46,80,0,11,224,15,192,63,64,0,0,0,11,224,15,192,63,64,0,0,0,11,224,15,192,63,64,0,0,0,91,224,15,192,63,64,0,5,191,235,224,15,192,63,64,26,255,255,235,255,255,255,255,64,127,255,255,219,255,255,255,255,64,127,254,144,11,255,255,255,255,64,58,64,0,11,224,0,0,63,64,0,0,0,11,224,0,0,63,64,0,0,0,1,64,0,0,0,0, + // 0x7ec8 终 + 200,126,34,34,50,36,1,253,0,6,64,0,1,164,0,0,0,0,11,240,0,3,252,0,0,0,0,15,224,0,7,244,0,0,0,0,31,192,0,15,240,0,0,0,0,63,128,0,47,255,255,248,0,0,127,64,0,63,255,255,253,0,0,191,0,0,255,255,255,252,0,0,253,0,2,255,0,3,244,0,3,248,9,11,255,192,15,240,0,7,240,31,239,255,224,47,192,0,15,224,63,255,199,244,127,64,0,47,192,127,47,1,254,254,0,0,191,255,254,4,0,191,252,0,0,127,255,252,0,0,63,240,0,0,63,255,240,0,0,255,252,0,0,16,15,224,0,11,255,255,64,0,0,63,192,0,127,248,191,244,0,0,191,0,7,255,208,31,255,64,1,252,0,63,254,0,3,255,240,7,244,22,111,244,16,0,127,192,31,255,255,143,64,253,0,7,64,127,255,255,128,2,255,224,0,0,63,255,233,0,0,111,253,0,0,63,144,0,0,0,2,255,64,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,8,0,0,0,0,1,128,126,64,0,0,0,0,6,255,209,255,248,0,0,0,107,255,255,208,191,255,208,0,0,191,255,254,64,2,255,254,0,0,127,254,64,0,0,27,255,224,0,57,0,0,0,0,0,191,252,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,144,0, + // 0x7ed3 结 + 211,126,33,34,50,36,1,253,0,6,0,0,0,31,192,0,0,0,11,224,0,0,31,192,0,0,0,15,240,0,0,31,192,0,0,0,31,208,0,0,31,192,0,0,0,63,192,0,0,31,208,0,0,0,127,64,15,255,255,255,255,192,0,255,0,15,255,255,255,255,192,1,253,0,15,255,255,255,255,192,3,248,11,128,0,31,192,0,0,11,240,31,224,0,31,192,0,0,31,208,63,192,0,31,192,0,0,127,218,191,128,0,31,192,0,0,191,255,255,0,0,31,192,0,0,127,255,252,7,255,255,255,255,0,63,175,248,7,255,255,255,255,0,0,15,240,7,255,255,255,255,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,7,252,26,208,0,0,0,0,0,31,255,255,225,255,255,255,253,0,127,255,255,225,255,255,255,253,0,63,255,233,1,255,255,255,253,0,63,148,0,1,252,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,5,161,252,0,0,253,0,0,27,255,241,252,0,0,253,0,111,255,255,241,252,0,0,253,0,191,255,254,65,255,255,255,253,0,127,249,0,1,255,255,255,253,0,37,0,0,1,255,255,255,253,0,0,0,0,1,252,0,0,253,0,0,0,0,1,248,0,0,169,0, + // 0x7ed9 给 + 217,126,33,34,50,36,1,253,0,6,0,0,0,41,0,0,0,0,11,224,0,0,63,64,0,0,0,15,224,0,0,191,64,0,0,0,31,192,0,0,255,192,0,0,0,63,128,0,1,255,224,0,0,0,127,64,0,3,255,240,0,0,0,255,0,0,11,242,252,0,0,1,253,0,0,31,224,254,0,0,3,248,15,64,63,192,127,128,0,7,240,47,192,255,64,47,224,0,15,208,63,131,254,0,15,248,0,47,197,191,15,252,0,3,255,0,191,255,253,63,255,255,255,255,192,127,255,252,255,255,255,255,191,128,63,239,240,63,63,255,255,79,0,16,15,224,8,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,3,248,26,131,255,255,255,240,0,15,255,255,131,255,255,255,240,0,127,255,255,131,255,255,255,240,0,63,255,164,3,244,0,7,240,0,63,144,0,3,244,0,7,240,0,0,0,0,3,244,0,7,240,0,0,0,0,3,244,0,7,240,0,0,0,6,195,244,0,7,240,0,0,27,255,195,244,0,7,240,0,43,255,255,195,244,0,7,240,0,127,255,249,3,255,255,255,240,0,63,249,0,3,255,255,255,240,0,57,0,0,3,255,255,255,240,0,0,0,0,3,244,0,7,240,0,0,0,0,3,244,0,7,240,0, + // 0x7edf 统 + 223,126,34,34,50,36,1,253,0,7,64,0,0,110,0,0,0,0,11,240,0,0,191,0,0,0,0,15,240,0,0,63,128,0,0,0,31,208,0,0,47,192,0,0,0,63,192,0,0,31,128,0,0,0,127,64,31,255,255,255,255,192,0,255,0,31,255,255,255,255,192,1,253,4,31,255,255,255,255,192,3,248,15,64,3,252,0,0,0,11,240,47,192,11,244,2,0,0,31,208,127,128,15,240,31,192,0,127,218,255,0,63,192,15,224,0,191,255,253,0,191,64,7,244,0,127,255,248,2,254,0,7,252,0,63,175,240,31,254,191,255,254,0,0,31,208,63,255,255,255,255,0,0,63,128,47,255,255,234,127,192,0,255,0,31,165,0,0,31,192,2,252,6,64,63,64,252,9,0,11,254,255,64,63,64,252,0,0,47,255,255,64,63,0,252,0,0,127,255,254,0,63,0,252,0,0,63,249,0,0,63,0,252,0,0,45,0,0,0,127,0,252,0,0,0,0,0,0,190,0,252,0,0,0,0,27,64,254,0,252,6,0,0,6,255,129,252,0,252,7,208,1,191,255,131,252,0,252,7,208,63,255,248,11,244,0,252,7,208,63,254,64,63,240,0,252,11,192,63,208,2,255,192,0,255,255,192,36,0,3,255,0,0,255,255,128,0,0,0,252,0,0,47,254,0,0,0,0,80,0,0,0,0,0, + // 0x7ee7 继 + 231,126,34,32,32,36,1,255,0,10,0,0,0,0,164,0,0,0,15,208,10,64,0,248,0,0,0,31,192,31,128,0,248,4,0,0,47,192,31,143,128,248,31,64,0,63,64,31,139,192,248,47,0,0,127,0,31,131,208,248,62,0,0,253,0,31,131,224,248,124,0,1,252,0,31,130,240,248,248,0,3,244,14,31,129,240,248,240,0,7,240,47,223,128,144,248,160,0,15,208,63,95,128,0,248,0,0,47,192,191,31,159,255,255,255,192,191,255,252,31,159,255,255,255,192,127,255,248,31,159,255,255,255,192,63,239,240,31,128,7,253,0,0,16,15,208,31,128,15,255,0,0,0,63,128,31,128,31,255,192,0,0,191,0,31,128,63,255,224,0,1,252,0,31,128,125,250,244,0,3,244,107,95,128,248,248,252,0,15,255,255,31,131,240,248,127,0,127,255,255,31,139,224,248,47,128,63,254,144,31,159,192,248,15,64,46,64,0,31,143,64,248,6,0,0,0,0,31,134,0,248,0,0,0,0,0,31,128,0,248,0,0,0,0,111,159,128,0,248,0,0,1,111,255,159,128,0,244,0,0,127,255,255,95,128,0,0,0,0,127,255,144,31,255,255,255,255,208,63,144,0,31,255,255,255,255,208,16,0,0,31,255,255,255,255,208, + // 0x7eea 绪 + 234,126,34,35,59,36,1,252,0,6,0,0,0,252,0,0,0,0,11,224,0,0,252,0,0,0,0,15,208,0,0,252,0,46,0,0,31,192,0,0,252,0,63,64,0,63,64,11,255,255,254,191,0,0,127,0,11,255,255,255,253,0,0,253,0,11,255,255,255,252,0,1,252,0,0,0,252,11,240,0,3,244,15,64,0,252,31,224,0,7,224,31,192,0,252,63,192,0,15,192,63,128,0,252,255,0,0,47,149,191,127,255,255,255,255,224,191,255,253,127,255,255,255,255,224,63,255,248,127,255,255,255,255,224,63,155,240,0,0,255,128,0,0,16,15,224,0,3,255,0,0,0,0,47,192,0,15,252,0,0,0,0,63,0,0,127,240,0,0,0,0,253,0,2,255,255,255,254,0,2,248,5,31,255,255,255,254,0,11,255,255,255,255,255,255,254,0,47,255,254,191,255,0,0,190,0,63,255,233,61,127,0,0,190,0,63,228,0,0,127,0,0,190,0,20,0,0,0,127,255,255,254,0,0,0,0,0,127,255,255,254,0,0,0,1,128,127,170,170,254,0,0,5,191,192,127,0,0,190,0,6,255,255,192,127,0,0,190,0,127,255,254,64,127,0,0,190,0,63,254,64,0,127,255,255,254,0,63,128,0,0,127,255,255,254,0,0,0,0,0,127,255,255,254,0,0,0,0,0,127,0,0,189,0,0,0,0,0,0,0,0,0,0, + // 0x7eed 续 + 237,126,33,35,59,36,1,252,0,2,0,0,0,63,64,0,0,0,7,224,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,192,3,255,255,255,248,0,0,47,128,3,255,255,255,252,0,0,63,0,3,255,255,255,252,0,0,190,0,0,0,63,64,0,0,0,252,0,0,0,63,64,0,0,2,248,29,0,0,63,64,0,0,3,240,63,111,255,255,255,255,64,11,208,127,47,255,255,255,255,64,31,192,253,31,255,255,255,255,0,127,255,252,0,0,0,0,63,0,127,255,240,0,52,15,192,126,0,63,239,224,0,255,15,192,188,0,16,31,192,0,47,223,192,252,0,0,63,64,9,7,223,192,16,0,0,190,0,31,192,79,192,0,0,1,252,26,11,244,15,192,0,0,7,251,254,1,252,15,192,0,0,15,255,254,0,52,31,192,0,0,63,255,144,127,255,255,255,255,128,63,228,0,127,255,255,255,255,128,40,0,0,127,255,255,255,255,128,0,0,6,0,0,254,0,0,0,0,1,191,0,1,252,36,0,0,0,47,255,0,7,252,254,0,0,7,255,249,0,15,240,191,128,0,127,255,128,0,127,208,47,240,0,63,244,0,2,255,64,7,252,0,62,0,0,31,253,0,0,255,0,16,0,0,255,240,0,0,63,192,0,0,0,63,128,0,0,15,128,0,0,0,24,0,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x7eff 绿 + 255,126,34,34,50,36,1,253,0,14,0,0,0,0,0,0,0,0,15,208,3,255,255,255,252,0,0,31,192,3,255,255,255,252,0,0,63,128,3,255,255,255,252,0,0,127,64,0,0,0,0,252,0,0,191,0,0,0,0,0,252,0,0,253,0,0,0,0,0,252,0,2,252,0,1,255,255,255,252,0,3,244,29,1,255,255,255,252,0,7,240,63,65,170,170,170,252,0,15,208,127,0,0,0,1,248,0,47,192,254,0,0,0,1,248,0,191,255,252,0,0,0,2,248,0,127,255,244,15,255,255,255,255,208,63,255,240,15,255,255,255,255,208,20,31,208,15,255,255,255,255,208,0,63,128,0,0,31,192,0,0,0,191,0,1,64,31,192,8,0,1,252,0,11,224,31,192,63,128,3,244,26,7,248,31,192,255,128,15,255,254,1,254,31,195,253,0,63,255,254,0,127,31,239,240,0,63,255,148,0,44,47,255,128,0,47,144,0,0,1,255,254,0,0,0,0,0,0,11,255,255,0,0,0,0,1,0,127,239,239,192,0,0,1,190,2,255,95,207,244,0,0,111,255,31,248,31,195,254,0,31,255,253,127,208,31,192,255,224,127,255,128,47,0,31,192,47,192,63,228,0,8,0,31,192,7,64,57,0,0,0,11,255,128,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,3,249,0,0,0, + // 0x7f16 编 + 22,127,33,34,50,36,1,253,0,10,0,0,0,47,0,0,0,0,15,208,0,0,63,64,0,0,0,31,192,0,0,63,192,0,0,0,47,128,0,0,31,208,0,0,0,63,0,15,255,255,255,255,0,0,126,0,15,255,255,255,255,0,0,253,0,15,255,255,255,255,0,1,252,0,15,192,0,0,63,0,3,244,45,15,192,0,0,63,0,7,240,63,15,192,0,0,63,0,15,192,190,15,234,170,170,255,0,31,129,252,31,255,255,255,255,0,127,255,248,31,255,255,255,255,0,127,255,240,31,192,0,0,0,0,63,255,224,31,192,0,0,0,0,41,31,192,31,128,0,0,0,0,0,63,64,31,255,255,255,255,64,0,190,0,31,255,255,255,255,64,0,252,0,47,254,191,191,175,64,3,244,104,47,252,46,31,15,64,15,255,252,47,252,46,31,15,64,63,255,252,63,252,46,31,15,64,63,255,144,63,188,46,31,15,64,63,144,0,63,190,191,191,175,64,16,0,0,126,191,255,255,255,64,0,0,108,189,191,255,255,255,64,0,11,253,253,188,46,31,15,64,1,191,253,252,188,46,31,15,64,47,255,145,248,188,46,31,15,64,127,248,3,244,188,46,31,15,64,63,64,7,240,188,46,31,15,64,36,0,11,224,188,46,31,191,64,0,0,1,192,188,25,9,127,0,0,0,0,0,84,0,0,20,0, + // 0x7f3a 缺 + 58,127,34,34,50,36,1,253,2,144,0,0,0,47,128,0,0,3,244,0,0,0,47,128,0,0,3,240,0,0,0,47,128,0,0,7,240,0,0,0,47,128,0,0,11,240,0,0,0,47,128,0,0,15,255,255,252,0,47,128,0,0,15,255,255,252,191,255,255,252,0,31,255,255,252,191,255,255,252,0,47,135,240,0,191,255,255,252,0,63,71,240,0,0,47,128,252,0,191,7,240,0,0,47,128,252,0,126,7,240,0,0,47,128,252,0,8,7,240,0,0,47,128,252,0,127,255,255,254,0,47,128,252,0,127,255,255,254,0,47,128,252,0,127,255,255,254,0,47,128,252,0,0,7,240,0,0,47,128,252,0,0,7,240,0,255,255,255,255,224,26,7,240,188,255,255,255,255,224,31,7,240,188,255,255,255,255,224,31,7,240,188,0,63,240,0,0,31,7,240,188,0,127,248,0,0,31,7,240,188,0,191,252,0,0,31,7,240,188,0,254,253,0,0,31,7,240,188,1,252,191,0,0,31,7,240,188,3,252,63,64,0,31,255,255,252,11,244,63,192,0,31,255,255,252,31,224,15,240,0,31,255,255,252,127,192,11,248,0,31,0,0,189,255,64,3,254,0,31,0,0,31,254,0,0,255,208,26,0,0,47,248,0,0,127,208,0,0,0,11,208,0,0,31,128,0,0,0,2,64,0,0,2,0, + // 0x7f51 网 + 81,127,30,32,0,36,3,253,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,254,0,31,128,3,240,7,240,253,0,31,128,3,240,3,240,253,0,31,128,3,240,3,240,253,0,31,128,3,240,3,240,253,0,31,64,3,240,3,240,253,0,47,66,3,240,3,240,253,60,47,75,199,224,3,240,253,191,47,15,247,224,3,240,253,63,255,3,255,208,3,240,253,15,255,0,255,208,3,240,253,3,255,0,63,208,3,240,253,0,255,0,31,224,3,240,253,0,127,128,15,248,3,240,253,0,191,208,15,253,3,240,253,0,255,240,31,255,3,240,253,0,255,252,47,127,195,240,253,1,252,252,63,15,211,240,253,2,244,116,63,7,131,240,253,3,240,16,190,2,3,240,253,7,240,0,253,0,3,240,253,15,224,1,252,0,3,240,253,31,192,3,248,0,3,240,253,63,128,11,240,0,3,240,253,191,0,31,224,0,3,240,253,46,0,11,192,0,3,240,253,4,0,1,0,0,11,240,253,0,0,0,0,31,255,240,253,0,0,0,0,15,255,208,253,0,0,0,0,15,254,64, + // 0x7f6e 置 + 110,127,33,34,50,36,2,252,5,85,85,85,85,85,85,80,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,15,208,11,208,11,224,7,240,0,15,208,11,208,11,224,7,240,0,15,229,95,229,91,229,91,240,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,106,170,170,175,234,170,170,169,0,0,0,0,15,192,0,0,0,0,0,0,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,255,255,255,255,255,255,255,64,11,255,255,255,255,255,255,255,64,11,250,170,170,170,170,170,170,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,33,34,50,36,1,252,1,85,85,85,85,85,85,84,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,3,244,2,244,2,248,0,252,0,3,244,2,244,2,248,0,252,0,3,244,2,244,2,248,0,252,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,95,229,85,85,84,0,0,0,0,11,224,0,0,80,0,0,42,170,175,250,170,130,248,0,0,63,255,255,255,255,219,252,0,0,63,255,255,255,255,255,224,0,0,0,0,11,224,1,255,128,0,0,0,0,11,224,15,253,0,0,42,170,170,175,250,191,254,170,128,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,31,255,192,0,0,0,0,0,6,255,253,0,0,0,0,0,0,191,255,249,85,85,80,0,0,111,255,255,255,255,255,240,0,47,255,255,255,255,255,255,240,0,127,255,254,0,0,0,7,240,0,47,228,126,0,0,0,11,240,0,9,0,127,255,255,255,255,240,0,0,0,127,255,255,255,255,240,0,0,0,126,0,0,0,7,240,0,0,0,126,0,0,0,7,240,0,0,0,127,85,85,85,91,240,0,0,0,127,255,255,255,255,240,0,0,0,127,255,255,255,255,240,0,0,0,126,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0, + // 0x8005 者 + 5,128,33,34,50,36,1,253,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,144,0,0,0,0,63,64,0,2,252,0,0,0,0,63,64,0,7,248,0,0,255,255,255,255,255,159,240,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,64,0,0,0,0,63,64,3,254,0,0,0,0,0,63,64,15,248,0,0,0,0,0,63,64,63,224,0,0,0,0,0,63,64,255,192,0,0,0,0,0,63,67,255,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,47,248,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,47,254,0,0,0,0,0,0,2,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,11,255,255,255,255,255,255,128,0,191,255,254,0,0,0,63,128,0,63,244,190,0,0,0,63,128,0,30,0,190,0,0,0,63,128,0,0,0,191,255,255,255,255,128,0,0,0,191,255,255,255,255,128,0,0,0,191,170,170,170,191,128,0,0,0,190,0,0,0,63,128,0,0,0,190,0,0,0,63,128,0,0,0,190,0,0,0,63,128,0,0,0,191,255,255,255,255,128,0,0,0,191,255,255,255,255,128,0,0,0,191,255,255,255,255,128,0,0,0,190,0,0,0,47,128,0, + // 0x806a 聪 + 106,128,34,35,59,36,1,252,0,0,0,0,9,0,2,128,0,0,0,0,0,63,0,3,244,0,63,255,255,240,47,128,7,240,0,63,255,255,240,15,192,15,208,0,63,255,255,240,11,224,31,192,0,7,208,47,0,3,240,47,64,0,7,208,47,0,3,208,63,0,0,7,208,47,1,255,255,255,254,0,7,208,47,2,255,255,255,255,0,7,250,191,2,255,255,255,255,0,7,255,255,2,244,0,0,127,0,7,255,255,2,244,0,0,127,0,7,208,47,2,244,0,0,127,0,7,208,47,2,244,0,0,127,0,7,208,47,2,244,0,0,127,0,7,208,47,2,244,0,0,127,0,7,208,47,2,255,255,255,255,0,7,255,255,2,255,255,255,255,0,7,255,255,1,255,255,255,254,0,7,250,191,0,0,5,0,0,0,7,208,47,0,0,63,0,0,0,7,208,47,0,1,95,192,0,0,7,208,47,1,11,199,240,40,0,7,208,47,243,235,194,244,188,0,7,235,255,243,219,192,252,62,0,31,255,255,247,219,192,180,47,0,127,255,255,7,203,192,0,15,128,127,249,47,15,203,192,3,143,192,36,0,47,15,139,192,3,231,208,0,0,47,31,75,208,3,211,224,0,0,47,47,7,250,175,194,128,0,0,47,5,3,255,255,192,0,0,0,47,0,1,255,255,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x80fd 能 + 253,128,34,35,59,36,1,252,0,15,128,0,3,240,0,0,0,0,31,208,0,3,240,0,0,0,0,47,192,16,3,240,0,16,0,0,63,66,240,3,240,1,244,0,0,127,2,252,3,240,47,253,0,0,254,0,253,3,247,255,248,0,1,252,0,191,3,255,254,64,0,7,254,191,255,131,255,208,0,0,127,255,255,255,195,244,0,0,0,127,255,255,255,227,240,0,9,0,127,169,84,7,247,240,0,11,208,0,0,0,3,131,240,0,15,208,0,0,0,0,3,244,0,15,192,7,255,255,254,3,255,255,255,192,7,255,255,254,2,255,255,255,64,7,255,255,254,0,191,255,253,0,7,224,0,190,0,0,0,0,0,7,224,0,190,2,160,0,0,0,7,250,170,254,3,240,0,0,0,7,255,255,254,3,240,0,36,0,7,255,255,254,3,240,2,252,0,7,224,0,190,3,240,47,255,0,7,224,0,190,3,246,255,248,0,7,224,0,190,3,255,255,64,0,7,255,255,254,3,255,224,0,0,7,255,255,254,3,249,0,0,0,7,250,170,254,3,240,0,1,0,7,224,0,190,3,240,0,3,208,7,224,0,190,3,240,0,7,224,7,224,0,190,3,240,0,7,224,7,224,0,190,3,244,0,15,208,7,224,127,254,3,255,255,255,192,7,224,63,252,2,255,255,255,128,7,224,63,224,0,111,255,253,0,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,26,35,245,36,5,252,0,0,3,232,0,0,0,0,0,7,248,0,0,0,0,0,11,240,0,0,0,0,0,15,240,0,0,0,0,0,15,208,0,0,0,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,64,0,0,0,15,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,224,0,0,0,0,0,0,0, + // 0x81f3 至 + 243,129,32,31,248,36,2,254,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,0,0,15,244,0,0,0,0,0,0,31,224,0,124,0,0,0,0,63,192,2,255,64,0,0,0,63,128,0,191,208,0,0,0,191,0,0,47,248,0,0,0,254,0,0,7,254,0,0,2,254,170,191,255,255,192,47,255,255,255,255,255,255,240,47,255,255,255,255,255,255,252,47,255,255,170,85,64,3,253,21,0,0,0,0,0,1,244,0,0,0,15,224,0,0,64,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x83dc 菜 + 220,131,33,34,50,36,1,253,0,0,47,128,0,47,128,0,0,0,0,47,128,0,47,128,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,47,128,0,47,128,0,0,0,0,47,128,0,47,128,0,0,0,0,26,128,0,22,175,128,0,0,0,5,86,175,255,255,224,0,11,255,255,255,255,255,255,244,0,7,255,255,255,255,254,148,0,0,3,255,254,169,84,0,1,64,0,0,0,0,6,192,0,3,248,0,0,124,0,15,208,0,11,244,0,0,255,0,11,240,0,15,224,0,0,63,128,3,244,0,47,192,0,0,47,192,3,248,0,63,128,0,0,15,224,2,224,0,191,0,0,0,11,208,2,248,0,252,0,0,0,1,0,3,248,0,20,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,1,255,255,240,0,0,0,0,0,11,255,255,253,0,0,0,0,0,127,243,248,255,128,0,0,0,7,255,131,248,63,248,0,0,0,127,253,3,248,11,255,144,0,11,255,240,3,248,0,255,254,64,127,255,64,3,248,0,31,255,192,47,248,0,3,248,0,2,255,64,15,64,0,3,248,0,0,26,0,0,0,0,3,248,0,0,0,0, + // 0x84dd 蓝 + 221,132,33,33,41,36,2,254,0,0,253,0,0,127,0,0,0,0,0,253,0,0,127,0,0,0,191,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,253,0,0,127,0,0,0,0,0,253,0,0,127,0,0,0,0,0,0,0,1,0,0,0,0,0,0,21,0,11,224,0,0,0,1,64,47,64,15,208,0,0,0,7,240,47,64,15,192,0,0,0,7,240,47,64,47,255,255,248,0,7,240,47,64,63,255,255,248,0,7,240,47,64,127,255,255,244,0,7,240,47,64,254,2,64,0,0,7,240,47,65,252,31,192,0,0,7,240,47,67,248,15,240,0,0,7,240,47,75,240,3,248,0,0,7,240,47,66,208,1,252,0,0,7,240,47,64,64,0,254,0,0,0,0,47,64,0,0,125,0,0,0,0,0,0,0,0,16,0,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,254,171,250,175,234,191,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,1,252,3,240,15,192,47,128,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x86c7 蛇 + 199,134,34,33,41,36,1,254,0,5,64,0,0,11,208,0,0,0,11,192,0,0,15,208,0,0,0,11,192,0,0,15,208,0,0,0,11,192,0,0,15,208,0,0,0,11,192,0,0,15,208,0,0,0,11,192,3,255,255,255,255,192,0,11,192,3,255,255,255,255,192,31,255,255,243,255,255,255,255,192,31,255,255,243,240,0,0,15,192,31,239,235,243,240,0,0,15,192,31,7,194,243,240,0,0,15,192,31,7,194,243,240,0,0,15,192,31,7,194,243,255,192,0,0,0,31,7,194,240,15,192,0,0,0,31,7,194,240,15,192,0,32,0,31,7,194,240,15,192,1,252,0,31,7,194,240,15,192,47,254,0,31,239,235,240,15,194,255,244,0,31,255,255,240,15,255,255,64,0,31,255,255,240,15,255,228,0,0,31,11,192,0,15,253,0,0,0,31,11,192,0,15,208,0,0,0,0,11,194,208,15,192,0,0,0,0,11,195,240,15,192,0,0,0,0,11,194,240,15,192,0,0,0,0,11,193,244,15,192,0,10,0,0,11,193,252,15,192,0,11,208,0,31,255,252,15,192,0,11,192,127,255,255,253,15,192,0,15,192,127,255,255,190,15,192,0,31,192,127,250,64,62,15,255,255,255,128,36,0,0,61,11,255,255,255,0,0,0,0,0,1,255,255,248,0, + // 0x884c 行 + 76,136,34,35,59,36,1,252,0,0,228,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,11,248,3,255,255,255,255,64,0,47,240,3,255,255,255,255,64,0,191,192,3,255,255,255,255,64,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,63,128,46,64,0,0,0,0,0,29,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,11,248,47,255,255,255,255,208,0,31,240,47,255,255,255,255,208,0,127,192,47,255,255,255,255,208,1,255,192,0,0,0,127,64,0,7,255,192,0,0,0,127,0,0,47,255,192,0,0,0,127,0,0,191,255,192,0,0,0,127,0,0,127,143,192,0,0,0,127,0,0,46,15,192,0,0,0,127,0,0,8,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,1,85,191,0,0,0,15,192,0,3,255,255,0,0,0,15,192,0,3,255,254,0,0,0,15,192,0,2,255,228,0,0,0,0,0,0,0,0,0,0,0, + // 0x88ab 被 + 171,136,34,34,50,36,1,253,0,47,64,0,0,11,208,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,3,255,255,255,255,208,63,255,255,67,255,255,255,255,192,63,255,255,195,255,255,255,255,192,63,255,255,131,240,11,224,47,128,0,0,63,3,240,11,224,63,64,0,0,190,3,240,11,224,63,0,0,1,252,3,240,11,224,126,0,0,3,244,131,240,11,224,0,0,0,15,225,247,255,255,255,254,0,0,47,211,231,255,255,255,255,0,0,191,255,199,255,255,255,254,0,2,255,255,7,255,192,0,253,0,11,255,254,7,239,208,1,252,0,47,255,191,75,231,240,3,248,0,255,239,143,203,227,244,3,244,0,127,47,139,203,210,252,15,240,0,60,47,131,79,208,253,31,208,0,16,47,128,15,192,191,63,192,0,0,47,128,31,192,63,255,64,0,0,47,128,47,128,31,254,0,0,0,47,128,63,64,15,252,0,0,0,47,128,63,0,47,254,0,0,0,47,128,191,0,255,255,208,0,0,47,128,254,7,255,127,248,0,0,47,129,252,127,252,15,255,128,0,47,131,248,255,224,2,255,208,0,47,130,240,127,64,0,127,128,0,47,128,80,36,0,0,7,0, + // 0x88c5 装 + 197,136,34,35,59,36,1,252,0,0,190,0,0,47,128,0,0,0,0,190,0,0,47,128,0,0,7,64,190,0,0,47,128,0,0,31,224,190,0,0,47,128,0,0,11,248,190,0,0,47,128,0,0,1,253,190,63,255,255,255,255,192,0,120,190,63,255,255,255,255,192,0,16,190,63,255,255,255,255,192,0,0,190,0,0,47,128,0,0,0,0,190,0,0,47,128,0,0,0,31,190,0,0,47,128,0,0,1,255,190,0,0,47,128,0,0,47,255,190,0,0,47,128,0,0,127,244,190,15,255,255,255,255,0,63,64,190,15,255,255,255,255,0,20,0,190,11,255,255,255,255,0,0,0,190,0,0,0,0,0,0,0,0,20,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,42,170,170,171,254,170,170,170,128,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,2,255,63,64,0,80,0,0,0,47,248,31,192,2,248,0,0,6,255,208,11,224,31,248,0,1,191,255,0,3,249,255,192,0,127,255,255,0,1,255,253,0,0,47,248,127,0,0,191,224,0,0,9,0,63,0,0,47,244,0,0,0,0,63,90,254,11,255,64,0,0,26,255,255,254,1,255,249,0,0,127,255,255,253,0,47,255,208,0,63,255,148,0,0,2,255,128,0,41,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x8981 要 + 129,137,33,34,50,36,2,252,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,0,0,15,208,11,208,0,0,0,0,0,15,208,11,208,0,0,0,0,0,15,208,11,208,0,0,0,10,170,175,250,175,250,170,160,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,15,208,15,208,11,208,7,240,0,15,208,15,208,11,208,7,240,0,15,208,15,208,11,208,7,240,0,15,208,15,208,11,208,7,240,0,15,250,175,250,175,250,175,240,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,3,252,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,224,0,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,170,171,255,170,170,191,250,170,0,0,3,252,0,0,63,192,0,0,0,11,244,0,0,191,64,0,0,0,15,244,0,2,254,0,0,0,0,63,255,249,11,252,0,0,0,0,127,255,255,255,240,0,0,0,0,5,6,255,255,244,0,0,0,0,0,1,191,255,255,228,0,0,0,90,255,255,231,255,255,144,0,127,255,255,249,0,27,255,252,0,63,255,254,64,0,0,111,244,0,46,165,0,0,0,0,1,224,0,0,0,0,0,0,0,0,0,0, + // 0x89d2 角 + 210,137,31,35,24,36,1,252,0,0,11,160,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,255,255,248,0,0,0,0,127,255,255,255,0,0,0,0,255,255,255,254,0,0,0,3,253,0,2,252,0,0,0,15,244,0,7,244,0,0,0,63,224,0,15,224,0,0,0,255,255,255,255,255,255,244,7,255,255,255,255,255,255,244,47,255,255,255,255,255,255,244,15,239,192,0,189,0,3,244,3,79,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,255,255,255,255,255,244,0,15,255,255,255,255,255,244,0,15,255,255,255,255,255,244,0,15,192,0,189,0,3,244,0,31,192,0,189,0,3,244,0,31,192,0,189,0,3,244,0,47,192,0,189,0,3,244,0,47,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,191,0,0,0,0,3,244,0,253,0,0,0,0,3,244,2,252,0,0,0,0,3,244,7,248,0,0,0,0,3,244,31,240,0,0,0,0,7,244,127,192,0,0,0,255,255,244,63,64,0,0,0,127,255,240,13,0,0,0,0,63,254,64,0,0,0,0,0,0,0,0, + // 0x8ba1 计 + 161,139,34,34,50,36,1,253,0,0,0,0,0,47,128,0,0,0,60,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,127,208,0,0,63,192,0,0,0,31,244,0,0,63,192,0,0,0,7,253,0,0,63,192,0,0,0,1,253,0,0,63,192,0,0,0,0,116,0,0,63,192,0,0,0,0,16,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,21,85,64,0,0,63,192,0,0,127,255,224,191,255,255,255,255,208,127,255,224,191,255,255,255,255,208,127,255,224,191,255,255,255,255,208,0,15,224,85,85,127,213,85,64,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,0,0,63,192,0,0,0,15,224,176,0,63,192,0,0,0,15,227,240,0,63,192,0,0,0,15,255,248,0,63,192,0,0,0,15,255,224,0,63,192,0,0,0,15,255,64,0,63,192,0,0,0,63,252,0,0,63,192,0,0,0,127,224,0,0,63,192,0,0,0,63,64,0,0,63,192,0,0,0,28,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0, + // 0x8bae 议 + 174,139,33,34,50,36,2,252,1,128,0,0,11,128,0,0,0,11,224,0,0,31,192,1,64,0,11,244,1,244,15,224,3,248,0,3,252,2,248,11,240,3,248,0,0,255,1,252,3,244,3,244,0,0,127,64,252,2,252,7,240,0,0,47,0,252,1,252,7,240,0,0,8,0,253,0,253,11,240,0,0,0,0,190,0,160,15,224,0,0,0,0,127,0,0,15,208,0,0,0,0,63,64,0,31,192,0,255,254,0,47,128,0,63,128,0,255,254,0,31,192,0,63,64,0,255,254,0,15,208,0,127,0,0,0,190,0,15,224,0,255,0,0,0,190,0,7,240,0,253,0,0,0,190,0,3,248,2,252,0,0,0,190,0,2,252,3,248,0,0,0,190,0,0,254,11,240,0,0,0,190,0,0,191,15,224,0,0,0,190,0,0,63,255,192,0,0,0,190,0,0,47,255,64,0,0,0,190,0,0,15,255,0,0,0,0,190,3,0,7,253,0,0,0,0,190,31,0,15,255,0,0,0,0,191,255,128,63,255,192,0,0,0,191,255,0,255,255,244,0,0,0,255,248,7,254,15,254,0,0,0,255,208,47,248,2,255,208,0,3,254,2,255,224,0,191,254,0,2,248,31,255,64,0,31,255,128,0,208,15,248,0,0,2,255,0,0,0,7,128,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x8bbe 设 + 190,139,33,35,59,36,1,252,0,16,0,0,0,0,0,0,0,0,248,0,0,191,255,255,64,0,2,254,0,0,191,255,255,64,0,0,191,192,0,191,255,255,64,0,0,47,240,0,189,0,63,64,0,0,11,248,0,189,0,63,64,0,0,2,244,0,253,0,63,64,0,0,0,208,0,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,3,248,0,63,64,0,0,0,0,11,244,0,63,64,0,0,0,0,47,240,0,47,255,192,127,255,129,255,192,0,31,255,192,127,255,129,255,0,0,6,255,128,127,255,128,120,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,63,255,255,255,248,0,0,47,128,63,255,255,255,252,0,0,47,128,63,255,255,255,252,0,0,47,128,11,208,0,3,244,0,0,47,128,7,240,0,11,240,0,0,47,128,3,248,0,15,208,0,0,47,128,1,253,0,63,192,0,0,47,128,0,191,0,191,64,0,0,47,131,64,63,194,254,0,0,0,47,159,192,15,251,252,0,0,0,47,255,192,7,255,240,0,0,0,63,255,0,3,255,192,0,0,0,63,248,0,31,255,248,0,0,0,191,224,1,255,255,255,128,0,1,255,64,191,255,130,255,254,64,0,189,3,255,248,0,47,255,192,0,48,0,255,128,0,6,255,64,0,0,0,164,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x8bd5 试 + 213,139,33,34,50,36,2,253,0,0,0,0,0,10,128,0,0,1,192,0,0,0,15,215,192,0,7,240,0,0,0,15,219,240,0,7,253,0,0,0,15,211,248,0,1,255,0,0,0,15,208,253,0,0,127,192,0,0,15,208,127,0,0,31,224,0,0,15,208,60,0,0,11,128,0,0,15,224,16,0,0,1,7,255,255,255,255,255,64,0,0,7,255,255,255,255,255,64,0,0,7,255,255,255,255,255,64,0,0,0,0,0,15,224,0,0,255,255,0,0,0,11,224,0,0,255,255,0,0,0,11,224,0,0,255,255,0,0,0,11,224,0,0,0,127,0,0,0,11,240,0,0,0,127,1,255,255,199,240,0,0,0,127,1,255,255,199,240,0,0,0,127,1,255,255,199,240,0,0,0,127,0,3,240,3,240,0,0,0,127,0,3,240,3,244,0,0,0,127,0,3,240,3,244,0,0,0,127,0,3,240,3,248,0,0,0,127,0,3,240,2,248,0,0,0,127,0,3,240,2,252,4,0,0,127,10,3,240,17,252,14,0,0,127,127,3,250,240,253,15,128,0,127,255,7,255,244,254,15,128,0,191,254,255,255,244,191,31,64,1,255,226,255,249,0,127,255,0,3,255,1,254,64,0,63,255,0,1,248,0,128,0,0,31,254,0,0,208,0,0,0,0,11,252,0,0,0,0,0,0,0,2,240,0, + // 0x8bef 误 + 239,139,34,34,50,36,1,252,0,144,0,0,0,0,0,0,0,2,244,0,15,255,255,255,252,0,3,254,0,15,255,255,255,252,0,0,255,128,15,255,255,255,252,0,0,63,224,15,192,0,0,252,0,0,15,240,15,192,0,0,252,0,0,3,208,15,192,0,0,252,0,0,1,64,15,192,0,0,252,0,0,0,0,15,255,255,255,252,0,0,0,0,15,255,255,255,252,0,127,255,128,15,255,255,255,252,0,127,255,128,0,0,0,0,0,0,127,255,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,0,0,63,0,0,0,0,47,128,0,0,63,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,255,255,255,255,255,224,0,47,128,255,255,255,255,255,224,0,47,128,255,255,255,255,255,224,0,47,129,0,1,255,192,0,0,0,47,139,64,3,255,240,0,0,0,47,255,128,7,251,244,0,0,0,47,255,128,31,242,253,0,0,0,63,253,0,127,192,255,128,0,0,191,240,3,255,64,63,244,0,0,191,128,127,253,0,31,255,64,0,61,1,255,240,0,3,255,208,0,36,0,191,128,0,0,191,128,0,0,0,52,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x8bf7 请 + 247,139,34,34,50,36,1,253,0,0,0,0,0,63,0,0,0,0,208,0,0,0,63,0,0,0,3,248,0,0,0,63,0,0,0,3,254,0,63,255,255,255,255,64,0,191,128,63,255,255,255,255,64,0,47,224,21,85,191,149,85,0,0,11,240,0,0,63,0,0,0,0,2,192,31,255,255,255,253,0,0,0,0,31,255,255,255,253,0,0,0,0,5,85,127,85,84,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,127,255,129,255,255,255,255,255,208,127,255,129,255,255,255,255,255,208,127,255,128,85,85,85,85,85,64,0,31,128,0,0,0,0,0,0,0,31,128,15,255,255,255,252,0,0,31,128,15,255,255,255,252,0,0,31,128,15,234,170,170,252,0,0,31,128,15,192,0,1,252,0,0,31,128,15,192,0,1,252,0,0,31,128,15,255,255,255,252,0,0,31,128,15,255,255,255,252,0,0,31,128,15,213,85,86,252,0,0,31,130,79,192,0,1,252,0,0,31,143,143,192,0,1,252,0,0,31,255,207,255,255,255,252,0,0,47,255,79,255,255,255,252,0,0,63,252,15,213,85,86,252,0,0,127,240,15,192,0,1,252,0,0,255,128,15,192,0,1,252,0,0,189,0,15,192,2,255,248,0,0,52,0,15,192,1,255,244,0,0,0,0,15,192,0,254,64,0, + // 0x8bfb 读 + 251,139,33,35,59,36,1,252,0,0,0,0,0,127,0,0,0,0,224,0,0,0,127,0,0,0,3,248,0,0,0,127,0,0,0,3,255,0,31,255,255,255,252,0,0,191,192,47,255,255,255,252,0,0,47,240,47,255,255,255,252,0,0,11,240,0,0,127,0,0,0,0,2,192,0,0,127,0,0,0,0,0,64,0,0,127,0,0,0,0,0,0,255,255,255,255,255,64,0,0,0,255,255,255,255,255,64,0,0,0,191,255,255,255,255,0,127,255,64,0,0,0,0,63,0,127,255,64,1,208,10,64,125,0,127,255,64,3,253,31,192,252,0,0,47,64,0,191,159,192,252,0,0,47,64,20,15,239,192,16,0,0,47,64,190,2,95,128,0,0,0,47,64,47,224,31,128,0,0,0,47,64,3,248,47,128,0,0,0,47,64,0,176,63,64,0,0,0,47,66,255,255,255,255,255,192,0,47,66,255,255,255,255,255,192,0,47,66,255,255,255,255,255,192,0,47,78,0,1,253,0,0,0,0,47,191,0,3,252,48,0,0,0,47,255,64,15,244,253,0,0,0,47,253,0,63,224,255,128,0,0,63,244,0,255,192,47,240,0,0,63,208,11,255,0,7,253,0,0,255,0,127,252,0,1,255,64,0,252,3,255,224,0,0,63,192,0,48,1,255,0,0,0,15,192,0,0,0,180,0,0,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x8c03 调 + 3,140,32,34,16,36,1,252,0,144,0,0,0,0,0,0,2,244,0,127,255,255,255,255,3,253,0,127,255,255,255,255,0,255,64,127,255,255,255,255,0,63,208,126,0,0,0,63,0,15,240,126,0,62,0,63,0,3,208,126,0,62,0,63,0,1,64,126,5,127,84,63,0,0,0,126,31,255,253,63,0,0,0,126,31,255,253,63,0,0,0,126,0,62,0,63,127,255,128,126,0,62,0,63,127,255,128,126,0,62,0,63,127,255,128,126,63,255,255,63,0,47,128,126,63,255,255,63,0,47,128,126,21,85,85,63,0,47,128,126,0,0,0,63,0,47,128,126,0,0,0,63,0,47,128,126,47,255,252,63,0,47,128,125,47,255,252,63,0,47,128,189,47,85,188,63,0,47,128,252,47,0,124,63,0,47,128,252,47,0,124,63,0,47,136,252,47,0,124,63,0,47,190,252,47,85,188,63,0,47,255,248,47,255,252,63,0,63,255,244,47,255,252,63,0,63,247,240,47,0,0,63,0,191,215,240,26,0,0,63,1,255,15,208,0,0,0,63,1,252,31,192,0,0,63,255,0,112,31,128,0,0,47,254,0,0,3,0,0,0,31,244,0,0,0,0,0,0,0,0, + // 0x8d25 败 + 37,141,33,35,59,36,2,252,0,0,0,0,0,64,0,0,0,0,0,0,0,0,252,0,0,0,63,255,255,244,1,252,0,0,0,63,255,255,244,2,248,0,0,0,63,255,255,244,2,244,0,0,0,63,0,1,244,3,240,0,0,0,63,0,1,244,7,240,0,0,0,63,5,65,244,11,255,255,255,0,63,11,193,244,15,255,255,255,0,63,11,193,244,31,255,255,255,0,63,11,193,244,63,128,3,224,0,63,11,193,244,63,0,7,208,0,63,11,193,244,191,0,7,208,0,63,11,193,244,255,0,11,192,0,63,11,193,247,255,0,15,192,0,63,11,193,251,255,128,15,192,0,63,11,193,246,255,192,31,128,0,63,11,193,244,207,192,47,64,0,63,11,193,244,7,224,63,0,0,63,15,193,244,3,240,63,0,0,63,15,193,244,2,248,125,0,0,63,15,193,244,0,252,252,0,0,63,15,193,244,0,191,252,0,0,63,31,129,244,0,63,244,0,0,21,47,64,0,0,47,240,0,0,0,63,8,0,0,15,224,0,0,0,126,62,0,0,47,248,0,0,0,253,63,64,0,191,254,0,0,2,252,15,192,2,253,255,64,0,11,240,11,240,11,248,63,224,0,47,208,3,248,127,224,15,252,0,255,128,0,253,255,128,3,255,64,189,0,0,160,253,0,0,190,0,52,0,0,0,32,0,0,8,0,0,0,0,0,0,0,0,0,0, + // 0x8d2a 贪 + 42,141,33,35,59,36,2,252,0,0,0,2,224,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,127,253,0,0,0,0,0,0,7,255,255,208,0,0,0,0,0,127,252,47,254,0,0,0,0,11,255,210,3,255,228,0,0,1,255,254,31,128,127,255,144,0,191,255,224,31,240,7,255,255,64,255,253,0,3,252,0,47,255,0,127,144,0,1,244,0,1,188,0,20,127,255,255,255,255,240,0,0,0,127,255,255,255,255,252,0,0,0,42,170,170,170,191,240,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,252,0,0,0,0,191,255,255,255,255,253,0,0,0,191,255,255,255,255,253,0,0,0,191,255,255,255,255,253,0,0,0,190,0,0,0,0,253,0,0,0,190,0,11,224,0,253,0,0,0,190,0,15,224,0,253,0,0,0,190,0,15,224,0,253,0,0,0,190,0,15,224,0,253,0,0,0,190,0,15,208,0,253,0,0,0,190,0,47,192,0,253,0,0,0,190,0,127,197,0,253,0,0,0,0,1,255,31,228,0,0,0,0,0,31,253,63,255,128,0,0,0,1,255,244,6,255,253,0,0,1,191,255,128,0,31,255,224,0,47,255,248,0,0,1,191,252,0,15,255,64,0,0,0,11,240,0,7,208,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0, + // 0x8d77 起 + 119,141,34,35,59,36,1,252,0,1,164,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,11,255,255,254,0,0,2,248,0,11,255,255,254,0,15,255,255,255,11,255,255,254,0,15,255,255,255,0,0,0,190,0,15,255,255,255,0,0,0,190,0,0,2,248,0,0,0,0,190,0,0,2,248,0,0,0,0,190,0,0,2,248,0,0,0,0,190,0,0,2,248,0,0,0,0,190,0,63,255,255,255,194,170,170,254,0,63,255,255,255,199,255,255,254,0,63,255,255,255,199,255,255,254,0,0,0,253,0,7,240,0,190,0,0,0,253,0,7,240,0,0,0,0,0,253,0,7,240,0,0,0,11,208,253,0,7,240,0,0,0,11,208,253,0,7,240,0,0,0,11,208,255,255,135,240,0,0,0,11,208,255,255,135,240,0,7,64,15,208,255,255,135,240,0,7,224,15,224,253,0,7,240,0,11,208,15,240,253,0,7,240,0,11,208,15,240,253,0,7,240,0,31,192,15,252,253,0,3,255,255,255,192,31,253,253,0,2,255,255,255,64,31,255,253,0,0,191,255,253,0,47,175,253,0,0,0,0,0,0,63,79,255,229,80,0,0,0,64,63,2,255,255,255,255,255,255,208,191,0,47,255,255,255,255,255,192,253,0,0,111,255,255,255,255,128,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8d85 超 + 133,141,34,34,50,36,1,253,0,3,244,0,0,0,0,0,0,0,3,244,0,63,255,255,255,64,0,3,244,0,63,255,255,255,64,0,3,244,0,63,255,255,255,64,31,255,255,254,0,63,64,63,64,31,255,255,254,0,63,0,63,0,31,255,255,254,0,127,0,63,0,0,3,244,0,0,190,0,63,0,0,3,244,0,0,252,0,63,0,0,3,244,0,2,248,0,127,0,0,3,244,0,11,244,0,254,0,63,255,255,255,111,224,255,253,0,63,255,255,255,255,128,127,252,0,63,255,255,255,254,0,42,144,0,0,1,248,0,20,0,0,0,0,0,1,248,0,10,170,170,169,0,10,129,248,0,15,255,255,254,0,11,209,248,0,15,255,255,254,0,15,193,248,0,15,192,0,190,0,15,193,255,255,15,192,0,190,0,15,193,255,255,15,192,0,190,0,15,193,255,255,15,192,0,190,0,15,209,248,0,15,192,0,190,0,15,241,248,0,15,192,0,190,0,15,241,248,0,15,234,170,254,0,15,253,248,0,15,255,255,254,0,31,255,248,0,15,255,255,254,0,47,255,248,0,0,0,0,0,0,47,111,252,0,0,0,0,0,0,63,15,255,229,80,0,0,1,64,127,2,255,255,255,255,255,255,208,190,0,47,255,255,255,255,255,192,188,0,0,111,255,255,255,255,128,8,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,34,33,41,36,1,253,11,255,255,244,0,0,0,0,0,15,255,255,244,127,255,255,255,192,15,255,255,244,127,255,255,255,192,15,192,3,244,127,255,255,255,192,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,255,255,244,127,255,255,254,0,15,255,255,244,127,255,255,254,0,15,255,255,244,127,255,255,254,0,0,3,240,0,127,0,0,190,0,0,3,240,0,127,0,0,190,0,0,3,240,0,127,0,0,190,0,15,195,240,0,127,0,0,190,0,15,195,240,0,127,0,0,190,0,15,195,255,252,127,0,0,190,0,15,195,255,252,127,0,0,190,0,15,195,255,252,127,255,255,254,0,15,195,240,0,127,255,255,254,0,15,195,240,0,127,255,255,254,0,15,195,240,0,127,0,0,0,0,15,195,240,0,127,0,0,0,0,15,195,240,4,127,0,0,0,0,15,195,246,253,127,0,0,0,0,15,199,255,253,127,0,0,0,0,31,255,255,253,127,0,0,0,0,191,255,254,64,127,255,255,255,224,191,254,64,0,127,255,255,255,224,126,64,0,0,127,255,255,255,224,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0, + // 0x8f6c 转 + 108,143,34,35,59,36,1,252,0,15,128,0,0,7,224,0,0,0,15,192,0,0,11,240,0,0,0,31,192,0,0,11,224,0,0,0,47,128,0,0,15,208,0,0,127,255,255,241,255,255,255,255,0,127,255,255,241,255,255,255,255,0,127,255,255,241,255,255,255,255,0,0,190,0,0,0,63,64,0,0,0,252,0,0,0,127,0,0,0,0,252,0,0,0,191,0,0,0,1,249,248,0,0,254,0,0,0,2,241,252,11,255,255,255,255,208,3,241,252,11,255,255,255,255,208,7,209,252,11,255,255,255,255,208,11,193,252,0,3,248,0,0,0,15,193,252,0,3,244,0,0,0,63,255,255,240,11,240,0,0,0,47,255,255,240,15,240,0,0,0,31,255,255,240,15,255,255,254,0,4,1,252,0,31,255,255,255,0,0,1,252,0,63,255,255,252,0,0,1,252,0,0,0,7,248,0,0,1,253,108,0,0,15,240,0,0,2,255,252,0,0,63,192,0,26,255,255,252,2,128,127,64,0,127,255,255,232,11,244,254,0,0,63,255,252,0,15,255,252,0,0,62,65,252,0,1,255,240,0,0,0,1,252,0,0,63,248,0,0,0,1,252,0,0,11,255,0,0,0,1,252,0,0,1,255,192,0,0,1,252,0,0,0,63,240,0,0,1,252,0,0,0,15,192,0,0,1,248,0,0,0,3,64,0,0,0,0,0,0,0,0,0,0, + // 0x8f6f 软 + 111,143,34,35,59,36,1,252,0,2,160,0,0,228,0,0,0,0,3,244,0,1,252,0,0,0,0,7,240,0,1,252,0,0,0,0,11,240,0,2,248,0,0,0,63,255,255,255,3,244,0,0,0,63,255,255,255,3,244,0,0,0,63,255,255,255,3,255,255,255,208,0,47,128,0,7,255,255,255,208,0,63,0,0,11,255,255,255,192,0,127,0,0,15,208,0,31,192,0,190,21,0,31,192,0,31,128,0,253,63,0,63,128,0,47,64,1,252,63,0,127,71,224,63,0,2,248,63,0,255,7,224,63,0,3,240,63,1,253,7,224,126,0,11,240,63,0,188,11,224,125,0,31,255,255,255,20,11,224,4,0,31,255,255,255,0,11,224,0,0,15,255,255,255,0,11,240,0,0,4,0,63,0,0,15,240,0,0,0,0,63,0,0,15,244,0,0,0,0,63,0,0,31,248,0,0,0,0,63,1,0,47,252,0,0,0,0,127,255,64,63,253,0,0,26,255,255,255,64,127,191,0,0,127,255,255,254,0,255,63,64,0,63,255,255,64,1,253,47,192,0,62,148,63,0,3,252,15,224,0,0,0,63,0,15,240,11,244,0,0,0,63,0,47,224,3,253,0,0,0,63,0,255,128,1,255,128,0,0,63,3,255,0,0,127,208,0,0,63,1,252,0,0,31,128,0,0,63,0,96,0,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x8f74 轴 + 116,143,33,35,59,36,1,252,0,14,128,0,0,11,224,0,0,0,31,192,0,0,11,224,0,0,0,31,192,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,63,255,255,240,0,11,224,0,0,63,255,255,240,0,11,224,0,0,63,255,255,240,0,11,224,0,0,0,190,0,0,0,11,224,0,0,0,252,0,1,255,255,255,255,64,0,252,0,1,255,255,255,255,64,1,248,252,1,255,255,255,255,64,2,244,252,1,248,11,224,47,64,3,240,252,1,248,11,224,47,64,3,224,252,1,248,11,224,47,64,11,208,252,1,248,11,224,47,64,15,192,252,1,248,11,224,47,64,47,255,255,241,248,11,224,47,64,47,255,255,241,248,11,224,47,64,31,255,255,241,255,255,255,255,64,4,0,252,1,255,255,255,255,64,0,0,252,1,255,255,255,255,64,0,0,252,1,248,11,224,47,64,0,0,253,161,248,11,224,47,64,0,1,255,245,248,11,224,47,64,26,255,255,245,248,11,224,47,64,127,255,255,225,248,11,224,47,64,63,255,252,1,248,11,224,47,64,62,64,252,1,248,11,224,47,64,0,0,252,1,248,11,224,47,64,0,0,252,1,255,255,255,255,64,0,0,252,1,255,255,255,255,64,0,0,252,1,255,255,255,255,64,0,0,252,1,248,0,0,47,64,0,0,252,1,248,0,0,47,64,0,0,0,0,0,0,0,0,0, + // 0x8f7d 载 + 125,143,33,35,59,36,2,252,0,0,189,0,1,252,0,0,0,0,0,253,0,1,252,30,0,0,0,0,253,0,1,252,127,128,0,15,255,255,255,225,252,47,224,0,15,255,255,255,225,252,11,244,0,10,170,255,170,145,252,3,252,0,0,0,253,0,1,252,0,224,0,0,0,253,0,1,252,0,0,0,170,170,255,170,170,254,170,170,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,11,144,0,0,252,0,0,0,0,15,224,0,0,252,0,0,0,0,31,192,0,0,253,1,228,0,106,191,234,170,168,253,3,244,0,191,255,255,255,252,189,3,240,0,191,255,255,255,252,190,7,224,0,0,252,0,0,0,190,15,208,0,3,248,31,192,0,127,31,192,0,7,240,31,192,0,63,63,128,0,31,255,255,255,240,63,127,0,0,31,255,255,255,240,63,254,0,0,15,255,255,255,240,47,252,0,0,4,0,31,192,0,31,248,0,0,0,0,31,192,0,31,240,0,0,0,0,31,192,0,15,224,12,0,0,0,31,255,252,47,224,15,64,26,175,255,255,252,127,240,15,128,191,255,255,255,165,255,244,31,64,127,255,255,192,3,254,252,47,0,37,64,31,192,15,244,255,127,0,0,0,31,192,63,224,191,254,0,0,0,31,192,127,128,63,253,0,0,0,31,192,29,0,7,244,0,0,0,0,0,0,0,0,0,0, + // 0x8f91 辑 + 145,143,34,34,50,36,1,253,0,14,128,0,0,0,0,0,0,0,31,192,0,255,255,255,252,0,0,47,128,0,255,255,255,252,0,0,63,64,0,254,85,86,252,0,127,255,255,240,252,0,0,252,0,127,255,255,240,252,0,0,252,0,127,255,255,240,254,85,86,252,0,0,254,0,0,255,255,255,252,0,0,252,0,0,255,255,255,252,0,0,252,0,0,0,0,0,0,0,1,249,248,0,0,0,0,0,0,2,245,248,10,170,170,170,170,128,3,241,248,15,255,255,255,255,192,7,225,248,15,255,255,255,255,192,11,209,248,0,189,0,1,252,0,15,193,248,0,189,0,1,252,0,63,255,255,224,190,85,86,252,0,47,255,255,224,191,255,255,252,0,31,255,255,224,191,255,255,252,0,4,1,248,0,189,0,1,252,0,0,1,248,0,189,0,1,252,0,0,1,248,0,189,0,1,252,0,0,1,248,16,191,255,255,252,0,0,6,255,240,191,255,255,252,0,43,255,255,244,190,85,86,252,0,127,255,255,224,189,0,1,252,0,63,255,252,0,189,0,1,254,208,62,65,248,0,190,106,255,255,208,0,1,248,47,255,255,255,255,208,0,1,248,31,255,255,255,252,0,0,1,248,31,234,84,1,252,0,0,1,248,0,0,0,1,252,0,0,1,248,0,0,0,1,252,0,0,1,248,0,0,0,1,252,0, + // 0x8f93 输 + 147,143,34,34,50,36,1,253,0,121,0,0,0,14,0,0,0,0,126,0,0,0,47,192,0,0,0,189,0,0,0,127,192,0,0,0,189,0,0,1,255,224,0,0,127,255,255,64,11,255,252,0,0,127,255,255,64,47,240,255,64,0,127,255,255,64,255,192,63,224,0,1,244,0,11,254,0,15,254,0,2,240,0,127,244,0,2,255,224,3,240,1,255,255,255,255,255,208,3,227,224,126,255,255,255,231,128,7,211,224,16,170,170,170,144,0,11,195,224,0,0,0,0,0,0,15,195,224,0,0,0,0,10,0,15,131,224,15,255,253,21,31,64,31,67,224,15,255,253,62,31,64,63,255,255,15,234,189,62,31,64,63,255,255,15,64,61,62,31,64,47,255,255,15,64,61,62,31,64,0,3,224,15,255,253,62,31,64,0,3,224,15,255,253,62,31,64,0,3,224,15,149,189,62,31,64,0,3,251,15,64,61,62,31,64,0,27,255,79,64,61,62,31,64,47,255,255,79,255,253,62,31,64,63,255,244,15,255,253,62,31,64,63,235,224,15,149,189,62,31,64,36,3,224,15,64,61,62,31,64,0,3,224,15,64,61,0,31,64,0,3,224,15,64,61,0,31,64,0,3,224,15,64,125,0,31,64,0,3,224,15,75,253,15,255,0,0,3,224,15,71,252,15,255,0,0,3,224,10,66,144,6,164,0, + // 0x8fb9 边 + 185,143,34,34,50,36,1,253,0,64,0,0,1,80,0,0,0,2,208,0,0,7,240,0,0,0,15,244,0,0,7,240,0,0,0,3,253,0,0,11,240,0,0,0,1,255,0,0,11,240,0,0,0,0,127,192,0,11,240,0,0,0,0,47,240,0,11,240,0,0,0,0,15,210,255,255,255,255,255,0,0,2,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,0,0,15,224,0,127,0,0,0,0,0,15,208,0,127,0,21,85,0,0,15,208,0,127,0,127,255,64,0,31,192,0,127,0,127,255,64,0,47,192,0,191,0,127,255,64,0,63,192,0,191,0,0,63,64,0,63,64,0,191,0,0,63,64,0,127,0,0,190,0,0,63,64,0,255,0,0,254,0,0,63,64,0,253,0,0,254,0,0,63,64,3,252,0,0,253,0,0,63,64,7,248,0,0,253,0,0,63,64,15,240,0,1,253,0,0,63,64,63,208,0,2,252,0,0,63,64,255,128,21,7,252,0,0,63,71,254,0,63,255,248,0,0,63,67,248,0,31,255,240,0,1,255,192,208,0,15,255,128,0,11,255,248,0,0,0,0,0,0,63,246,255,228,0,0,0,21,160,255,192,127,255,255,255,255,255,224,127,0,11,255,255,255,255,255,208,61,0,0,111,255,255,255,255,192,8,0,0,0,5,85,64,0,0, + // 0x8fc1 迁 + 193,143,34,34,50,36,1,253,0,64,0,0,0,0,0,64,0,1,244,0,0,0,0,111,240,0,7,254,0,0,1,175,255,248,0,1,255,192,107,255,255,255,228,0,0,63,242,255,255,255,228,0,0,0,11,240,255,255,252,0,0,0,0,2,192,148,0,252,0,0,0,0,0,0,0,0,252,0,0,0,7,0,0,0,0,252,0,0,0,31,224,0,0,0,252,0,0,0,31,253,0,0,0,252,0,0,0,3,255,64,0,0,252,0,0,0,0,127,192,0,0,252,0,0,0,0,31,139,255,255,255,255,255,192,0,2,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,0,0,0,252,0,0,0,63,255,192,0,0,252,0,0,0,63,255,192,0,0,252,0,0,0,63,255,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,31,192,0,0,252,0,0,0,0,47,192,0,0,252,0,0,0,0,191,240,0,0,252,0,0,0,3,255,253,0,0,252,0,0,0,31,253,255,144,0,0,0,0,0,191,240,127,255,234,170,170,255,208,63,128,15,255,255,255,255,255,192,45,0,1,191,255,255,255,255,192,4,0,0,0,85,85,85,85,0, + // 0x8fd0 运 + 208,143,34,34,50,36,1,253,0,64,0,0,0,0,0,0,0,2,244,0,0,0,0,0,0,0,7,254,0,63,255,255,255,252,0,1,255,192,63,255,255,255,252,0,0,47,240,63,255,255,255,252,0,0,7,224,0,0,0,0,0,0,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,64,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,31,253,7,255,255,255,255,255,224,2,255,135,255,255,255,255,255,224,0,127,135,255,255,255,255,255,224,0,14,0,0,63,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,64,8,0,0,0,0,0,0,191,0,191,0,0,63,255,64,0,254,0,127,64,0,63,255,64,1,252,0,47,192,0,63,255,64,2,252,0,15,240,0,0,63,64,3,244,0,7,248,0,0,63,64,7,240,0,2,252,0,0,63,64,15,230,175,255,254,0,0,63,67,255,255,255,255,255,0,0,63,67,255,255,255,255,255,128,0,63,67,255,254,165,0,31,192,0,63,193,80,0,0,0,15,128,0,255,224,0,0,0,0,4,0,7,255,248,0,0,0,0,0,0,47,250,255,144,0,0,0,0,0,191,224,191,255,234,170,170,255,208,63,64,31,255,255,255,255,255,192,45,0,1,191,255,255,255,255,192,0,0,0,1,86,170,165,85,0, + // 0x8fd1 近 + 209,143,34,34,50,36,1,253,0,0,0,0,0,0,1,128,0,3,64,0,0,0,1,191,240,0,31,208,0,4,5,191,255,252,0,31,248,0,15,255,255,255,208,0,7,254,0,15,255,255,164,0,0,0,255,128,15,254,80,0,0,0,0,63,208,15,192,0,0,0,0,0,15,192,15,192,0,0,0,0,0,6,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,255,255,255,255,192,0,0,0,31,255,255,255,255,192,0,0,0,31,255,255,255,255,192,0,0,0,31,192,1,252,0,0,63,255,128,31,192,1,252,0,0,63,255,128,47,128,1,252,0,0,63,255,128,63,128,1,252,0,0,0,47,128,63,64,1,252,0,0,0,47,128,127,0,1,252,0,0,0,47,128,191,0,1,252,0,0,0,47,128,253,0,1,252,0,0,0,47,130,252,0,1,252,0,0,0,47,131,248,0,1,252,0,0,0,47,143,240,0,1,252,0,0,0,47,143,208,0,1,252,0,0,0,63,195,128,0,1,252,0,0,1,255,240,0,0,1,252,0,0,11,255,254,0,0,0,0,0,0,127,248,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,64,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,34,33,41,36,1,253,2,0,0,0,0,0,0,0,0,31,208,0,63,255,255,255,255,0,31,244,0,63,255,255,255,255,0,7,253,0,63,255,255,255,255,0,0,255,64,63,0,0,0,0,0,0,63,192,63,0,0,0,0,0,0,15,64,63,0,0,0,0,0,0,4,0,63,0,0,0,0,0,0,0,0,127,255,255,255,248,0,0,0,0,127,255,255,255,252,0,0,0,0,127,255,255,255,248,0,0,0,0,127,127,0,3,244,0,0,0,0,127,63,0,11,240,0,63,255,64,127,47,128,15,224,0,63,255,64,190,15,192,31,192,0,63,255,64,190,15,240,63,128,0,0,63,64,253,7,244,255,0,0,0,63,64,252,2,254,254,0,0,0,63,65,252,0,255,252,0,0,0,63,66,252,0,127,240,0,0,0,63,67,244,0,127,240,0,0,0,63,71,240,2,255,254,0,0,0,63,79,240,15,255,255,192,0,0,63,95,209,255,244,191,253,0,0,63,111,203,255,192,31,255,192,0,127,199,67,254,0,2,255,128,2,255,240,1,224,0,0,47,0,11,255,253,0,0,0,0,0,0,127,245,255,229,64,0,0,21,80,191,192,127,255,255,255,255,255,208,63,0,11,255,255,255,255,255,192,44,0,0,111,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x8fd8 还 + 216,143,34,33,41,36,1,253,2,208,0,0,0,0,0,0,0,15,244,1,85,85,85,85,85,0,7,253,3,255,255,255,255,255,64,1,255,67,255,255,255,255,255,64,0,127,195,255,255,255,255,255,64,0,47,240,0,0,127,128,0,0,0,15,192,0,0,255,0,0,0,0,2,0,0,1,254,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,47,252,0,0,0,21,85,0,0,127,252,48,0,0,127,255,64,0,255,253,252,0,0,127,255,64,3,255,253,255,0,0,127,255,64,15,250,252,127,192,0,0,63,64,63,226,252,31,240,0,0,63,65,255,194,252,7,252,0,0,63,75,255,2,252,1,255,0,0,63,111,248,2,252,0,191,192,0,63,79,224,2,252,0,47,64,0,63,67,64,2,252,0,8,0,0,63,64,0,2,252,0,0,0,0,63,64,0,2,252,0,0,0,0,63,64,0,2,252,0,0,0,0,63,64,0,2,252,0,0,0,0,127,64,0,2,252,0,0,0,3,255,224,0,2,252,0,0,0,15,255,253,0,0,0,0,0,0,63,230,255,229,0,0,0,86,160,255,128,63,255,255,255,255,255,224,127,0,11,255,255,255,255,255,208,61,0,0,111,255,255,255,255,192,8,0,0,0,5,85,64,0,0, + // 0x8fdb 进 + 219,143,34,33,41,36,1,253,2,192,0,0,253,0,127,0,0,15,240,0,0,253,0,127,0,0,11,252,0,0,253,0,127,0,0,2,254,0,0,253,0,127,0,0,0,191,128,0,253,0,127,0,0,0,63,208,0,254,0,191,0,0,0,15,194,255,255,255,255,255,0,0,3,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,0,0,253,0,127,0,0,0,0,0,0,253,0,127,0,0,0,0,0,0,253,0,127,0,0,63,255,128,0,253,0,127,0,0,63,255,128,0,253,0,127,0,0,63,255,128,0,253,0,191,0,0,0,47,131,255,255,255,255,255,192,0,47,131,255,255,255,255,255,192,0,47,131,255,255,255,255,255,192,0,47,128,2,252,0,127,0,0,0,47,128,3,248,0,127,0,0,0,47,128,3,244,0,127,0,0,0,47,128,11,240,0,127,0,0,0,47,128,31,224,0,127,0,0,0,47,128,63,192,0,127,0,0,0,47,128,255,64,0,127,0,0,0,63,192,191,0,0,127,0,0,1,255,240,44,0,0,127,0,0,11,255,254,0,0,0,0,0,0,47,245,255,229,0,0,0,86,144,127,192,47,255,255,255,255,255,192,63,0,2,255,255,255,255,255,192,13,0,0,27,255,255,255,255,128,4,0,0,0,0,0,0,0,0, + // 0x8fde 连 + 222,143,34,34,50,36,1,253,0,64,0,0,41,0,0,0,0,3,208,0,0,63,192,0,0,0,15,240,0,0,63,128,0,0,0,3,252,0,0,127,0,0,0,0,1,255,3,255,255,255,255,255,0,0,127,131,255,255,255,255,255,0,0,63,195,255,255,255,255,255,0,0,15,192,3,248,0,0,0,0,0,6,0,7,240,21,0,0,0,0,0,0,15,224,63,128,0,0,0,0,0,31,192,63,128,0,0,0,0,0,63,128,63,128,0,0,127,255,64,191,64,63,128,0,0,127,255,65,255,255,255,255,252,0,127,255,64,255,255,255,255,252,0,0,63,64,191,255,255,255,252,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,75,255,255,255,255,255,128,0,63,75,255,255,255,255,255,128,0,63,75,255,255,255,255,255,128,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,127,64,0,0,63,128,0,0,3,255,224,0,0,63,128,0,0,15,255,253,0,0,63,128,0,0,63,226,255,229,0,0,0,86,160,255,192,63,255,255,255,255,255,224,127,0,11,255,255,255,255,255,208,45,0,0,111,255,255,255,255,192,8,0,0,0,5,85,64,0,0, + // 0x8ff7 迷 + 247,143,34,34,50,36,1,253,0,0,0,0,0,84,0,0,0,3,64,0,0,1,252,0,0,0,31,208,0,120,1,252,0,185,0,31,248,1,252,1,252,0,254,0,7,254,0,254,1,252,1,252,0,1,255,128,127,1,252,3,248,0,0,63,208,63,129,252,7,240,0,0,15,192,47,193,252,11,224,0,0,7,0,15,193,252,31,192,0,0,0,0,15,129,252,31,64,0,0,0,0,4,1,252,1,0,0,0,0,0,0,1,252,0,0,0,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,63,255,143,255,255,255,255,255,192,63,255,128,0,31,255,192,0,0,63,255,128,0,63,255,224,0,0,0,47,128,0,191,255,244,0,0,0,47,128,1,253,253,253,0,0,0,47,128,7,245,252,191,0,0,0,47,128,15,241,252,63,192,0,0,47,128,127,193,252,15,244,0,0,47,129,255,65,252,7,253,0,0,47,139,253,1,252,1,255,192,0,47,143,244,1,252,0,127,128,0,47,195,208,1,252,0,15,0,0,63,208,0,1,252,0,0,0,1,255,244,0,1,252,0,0,0,11,255,254,0,0,84,0,0,0,127,244,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,0,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,34,33,41,36,1,253,3,128,0,47,255,255,255,240,0,31,240,0,47,255,255,255,240,0,11,253,0,47,255,255,255,240,0,2,255,64,47,128,0,3,240,0,0,191,192,47,128,0,3,240,0,0,47,224,47,128,0,3,240,0,0,11,128,47,255,255,255,240,0,0,1,0,47,255,255,255,240,0,0,0,0,47,234,170,171,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,255,255,255,240,0,63,255,128,47,255,255,255,240,0,63,255,128,47,255,255,255,244,0,63,255,128,47,128,126,0,62,0,0,47,128,47,128,63,1,255,64,0,47,128,47,128,47,139,253,0,0,47,128,47,128,15,255,224,0,0,47,128,47,128,11,255,0,0,0,47,128,47,128,3,252,0,0,0,47,128,47,128,25,255,0,0,0,47,128,47,155,252,191,208,0,0,47,128,127,255,252,47,253,0,0,47,195,255,255,228,7,255,192,0,63,211,255,228,0,1,255,64,1,255,246,228,0,0,0,30,0,11,255,254,0,0,0,0,0,0,127,244,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,0,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x9009 选 + 9,144,33,35,59,36,2,252,0,0,0,0,1,248,0,0,0,8,0,0,25,2,252,0,0,0,63,0,0,47,130,252,0,0,0,191,192,0,63,66,252,0,0,0,47,240,0,127,2,252,0,0,0,11,252,0,255,255,255,255,248,0,2,255,1,255,255,255,255,248,0,0,191,3,255,255,255,255,248,0,0,56,11,240,2,252,0,0,0,0,0,31,224,2,252,0,0,0,0,0,7,192,2,252,0,0,0,0,0,0,64,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,31,255,255,255,255,255,0,255,253,31,255,255,255,255,255,0,255,253,31,255,255,255,255,255,0,255,253,0,1,252,15,208,0,0,0,253,0,2,252,15,208,0,0,0,253,0,3,248,15,208,0,0,0,253,0,3,244,15,208,0,0,0,253,0,11,240,15,208,0,0,0,253,0,15,224,15,208,29,0,0,253,0,47,208,15,208,31,64,0,253,0,191,192,15,224,47,64,0,253,3,255,0,11,224,63,64,0,253,63,252,0,11,255,255,0,0,253,47,240,0,7,255,254,0,0,255,79,64,0,1,255,248,0,2,255,240,0,0,0,0,0,0,31,255,253,0,0,0,0,0,0,127,224,255,229,0,0,21,106,64,255,128,47,255,255,255,255,255,0,190,0,6,255,255,255,255,255,0,56,0,0,26,255,255,255,234,0,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,34,34,50,36,1,253,0,0,0,0,0,252,0,0,0,2,0,0,0,0,252,0,0,0,15,208,0,0,0,252,0,0,0,47,244,0,0,0,252,0,0,0,7,254,7,255,255,255,255,255,192,1,255,135,255,255,255,255,255,192,0,63,215,255,255,255,255,255,128,0,15,128,0,0,252,0,0,0,0,1,0,0,0,252,0,0,0,0,0,0,255,255,255,255,253,0,0,0,0,255,255,255,255,253,0,0,0,0,254,170,254,170,253,0,0,0,0,252,0,252,0,253,0,0,0,0,252,0,252,0,253,0,63,255,128,252,0,252,0,253,0,63,255,128,252,0,252,0,253,0,63,255,128,255,255,255,255,253,0,0,47,128,255,255,255,255,253,0,0,47,128,170,175,255,234,169,0,0,47,128,0,47,255,192,0,0,0,47,128,0,127,255,244,0,0,0,47,128,2,253,254,253,0,0,0,47,128,11,244,252,191,128,0,0,47,128,127,208,252,47,244,0,0,47,130,255,64,252,11,255,64,0,47,207,253,0,252,1,255,128,0,63,211,240,0,252,0,63,0,1,255,245,64,0,252,0,4,0,11,255,254,0,0,168,0,0,0,127,244,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,0,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,34,34,50,36,1,253,0,0,169,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,191,255,255,64,0,0,190,0,0,191,255,255,208,47,255,255,255,244,191,255,255,192,47,255,255,255,244,190,0,63,192,47,255,255,255,244,190,0,63,64,0,16,0,20,0,190,0,191,0,1,248,0,63,64,190,0,254,0,0,252,0,63,0,190,1,252,0,0,189,0,126,0,190,2,248,0,0,126,0,189,0,190,3,244,0,0,127,0,252,0,190,7,240,0,0,36,0,100,0,190,15,208,0,127,255,255,255,252,190,31,192,0,127,255,255,255,252,190,15,240,0,127,255,255,255,252,190,3,248,0,0,0,0,0,0,190,0,253,0,0,0,0,0,0,190,0,191,0,0,0,0,0,0,190,0,63,64,3,255,255,255,192,190,0,47,128,3,255,255,255,192,190,0,31,192,3,255,255,255,192,190,0,31,192,3,240,0,15,192,190,0,31,192,3,240,0,15,192,190,0,31,192,3,240,0,15,192,190,0,127,192,3,240,0,15,192,190,63,255,128,3,240,0,15,192,190,31,255,0,3,240,0,15,192,190,31,248,0,3,255,255,255,192,190,5,64,0,3,255,255,255,192,190,0,0,0,3,255,255,255,192,190,0,0,0,3,240,0,15,192,190,0,0,0,3,240,0,15,192,190,0,0,0, + // 0x914d 配 + 77,145,33,33,41,36,2,253,255,255,255,255,0,0,0,0,0,255,255,255,255,31,255,255,253,0,255,255,255,255,31,255,255,253,0,0,61,61,0,31,255,255,253,0,0,61,61,0,0,0,0,253,0,0,61,61,0,0,0,0,253,0,0,61,61,0,0,0,0,253,0,63,255,255,253,0,0,0,253,0,63,255,255,253,0,0,0,253,0,63,255,255,253,0,0,0,253,0,61,44,56,125,0,0,0,253,0,61,44,56,125,0,0,0,253,0,61,44,56,125,15,255,255,253,0,61,44,56,125,15,255,255,253,0,61,44,56,125,15,255,255,253,0,61,60,56,125,15,192,0,253,0,61,56,56,125,15,192,0,253,0,61,180,63,253,15,192,0,104,0,63,240,31,253,15,192,0,0,0,61,128,0,125,15,192,0,0,0,61,0,0,125,15,192,0,0,0,61,0,0,125,15,192,0,0,0,63,255,255,253,15,192,0,0,0,63,255,255,253,15,192,0,24,0,62,85,85,189,15,192,0,31,64,61,0,0,125,15,192,0,31,128,61,0,0,125,15,192,0,47,128,61,0,0,125,15,192,0,47,64,63,255,255,253,15,208,0,127,0,63,255,255,253,15,255,255,255,0,63,170,170,253,11,255,255,253,0,61,0,0,125,2,255,255,248,0,61,0,0,20,0,0,0,0,0, + // 0x91ca 释 + 202,145,34,34,50,36,1,253,0,0,0,64,0,0,0,0,0,0,1,175,240,0,0,0,0,0,43,255,255,245,255,255,255,255,64,63,255,254,145,255,255,255,255,192,63,175,208,1,255,255,255,255,0,0,11,208,0,31,64,0,254,0,25,11,208,248,15,192,3,252,0,47,11,208,248,3,240,15,240,0,15,139,210,240,1,252,63,208,0,11,203,211,224,0,191,255,64,0,7,219,219,192,0,63,253,0,0,3,75,209,64,0,191,252,0,0,0,11,208,0,11,255,255,128,0,63,255,255,241,191,253,191,249,0,63,255,255,255,255,224,15,255,224,63,255,255,251,254,0,1,255,208,0,31,224,3,208,15,208,11,192,0,63,248,0,0,15,208,0,0,0,63,254,0,0,15,208,0,0,0,255,255,128,255,255,255,254,0,1,255,239,224,255,255,255,254,0,3,251,215,244,255,255,255,254,0,11,235,210,240,0,15,208,0,0,31,203,208,128,0,15,208,0,0,127,75,208,0,0,15,208,0,0,191,11,208,7,255,255,255,255,192,61,11,208,7,255,255,255,255,192,40,11,208,7,255,255,255,255,192,0,11,208,0,0,15,208,0,0,0,11,208,0,0,15,208,0,0,0,11,208,0,0,15,208,0,0,0,11,208,0,0,15,208,0,0,0,11,208,0,0,15,208,0,0,0,11,208,0,0,15,208,0,0, + // 0x91cd 重 + 205,145,32,33,8,36,2,254,0,0,0,0,0,5,172,0,0,0,5,90,191,255,254,0,3,255,255,255,255,255,255,0,2,255,255,255,255,169,64,0,1,170,85,95,208,0,0,0,0,0,0,15,208,0,0,0,170,170,170,175,250,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,253,85,95,229,85,127,64,0,252,0,15,208,0,63,64,0,252,0,15,224,0,63,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,252,0,15,208,0,63,64,0,252,0,15,208,0,63,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,85,85,95,229,85,85,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,7,255,255,255,255,255,255,240,7,255,255,255,255,255,255,240,2,170,170,175,250,170,170,160,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170, + // 0x91cf 量 + 207,145,33,32,32,36,2,254,0,127,255,255,255,255,253,0,0,0,191,255,255,255,255,254,0,0,0,190,0,0,0,0,254,0,0,0,190,0,0,0,0,254,0,0,0,191,255,255,255,255,254,0,0,0,191,255,255,255,255,254,0,0,0,190,0,0,0,0,254,0,0,0,191,255,255,255,255,254,0,0,0,191,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,252,0,11,224,0,63,64,0,0,252,0,11,224,0,63,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,252,0,11,224,0,63,64,0,0,252,0,11,224,0,63,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,0,0,11,224,0,0,0,0,1,85,85,95,229,85,85,64,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,0,0,0,11,224,0,0,0,0,170,170,170,175,250,170,170,170,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x9488 针 + 136,148,33,34,50,36,1,253,0,41,0,0,0,6,160,0,0,0,63,64,0,0,11,240,0,0,0,127,0,0,0,11,240,0,0,0,253,0,0,0,11,240,0,0,2,255,255,240,0,11,240,0,0,7,255,255,240,0,11,240,0,0,15,255,255,240,0,11,240,0,0,63,208,0,0,0,11,240,0,0,191,128,0,0,0,11,240,0,0,127,0,0,0,0,11,240,0,0,61,0,0,0,0,11,240,0,0,19,255,255,208,0,11,240,0,0,3,255,255,219,255,255,255,255,192,2,175,250,139,255,255,255,255,192,0,11,224,11,255,255,255,255,192,0,11,224,1,85,91,245,85,64,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,47,255,255,240,0,11,240,0,0,47,255,255,240,0,11,240,0,0,47,255,255,240,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,40,0,11,240,0,0,0,11,226,248,0,11,240,0,0,0,15,255,252,0,11,240,0,0,0,15,255,224,0,11,240,0,0,0,63,254,0,0,11,240,0,0,0,63,244,0,0,11,240,0,0,0,31,64,0,0,11,240,0,0,0,8,0,0,0,11,224,0,0, + // 0x94ae 钮 + 174,148,34,34,50,36,1,253,0,164,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,1,252,0,7,255,255,255,255,0,3,248,0,7,255,255,255,255,0,3,255,255,231,255,255,255,255,0,11,255,255,224,0,190,0,127,0,15,255,255,224,0,254,0,127,0,47,192,0,0,0,253,0,190,0,127,64,0,0,0,253,0,190,0,255,0,0,0,0,252,0,190,0,125,0,0,0,0,252,0,189,0,59,255,255,192,0,252,0,253,0,3,255,255,192,1,252,0,253,0,3,255,255,192,1,252,0,253,0,0,15,192,2,171,254,170,252,0,0,15,192,3,255,255,255,252,0,0,15,192,3,255,255,255,252,0,0,15,192,2,171,254,171,252,0,63,255,255,224,3,240,1,252,0,63,255,255,224,3,240,1,252,0,63,255,255,224,7,240,2,248,0,0,15,192,0,7,240,2,248,0,0,15,192,0,11,224,2,248,0,0,15,192,0,11,224,3,244,0,0,15,192,0,15,208,3,244,0,0,15,192,64,15,208,3,244,0,0,15,195,192,15,192,3,240,0,0,15,239,208,15,192,3,240,0,0,15,255,208,31,192,7,240,0,0,31,254,85,111,213,91,245,64,0,63,244,255,255,255,255,255,224,0,255,128,255,255,255,255,255,224,0,125,0,255,255,255,255,255,224,0,32,0,0,0,0,0,0,0, + // 0x9519 错 + 25,149,34,35,59,36,1,252,0,57,0,0,11,192,31,128,0,0,63,0,0,15,192,31,128,0,0,190,0,0,15,192,31,128,0,0,252,0,0,15,192,31,128,0,2,255,255,208,15,192,31,128,0,3,255,255,211,255,255,255,255,128,15,255,255,211,255,255,255,255,128,47,192,0,3,255,255,255,255,128,127,64,0,0,15,192,31,128,0,127,0,0,0,15,192,31,128,0,61,0,0,0,15,192,31,128,0,23,255,255,192,15,192,31,128,0,3,255,255,207,255,255,255,255,208,3,255,255,207,255,255,255,255,208,0,15,192,15,255,255,255,255,208,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,191,255,255,252,0,47,255,255,224,255,255,255,252,0,47,255,255,224,255,255,255,252,0,47,255,255,224,252,0,0,252,0,0,15,192,0,252,0,0,252,0,0,15,192,0,252,0,0,252,0,0,15,192,0,252,0,0,252,0,0,15,192,0,255,255,255,252,0,0,15,192,0,255,255,255,252,0,0,15,193,192,254,170,170,252,0,0,15,223,192,252,0,0,252,0,0,15,255,208,252,0,0,252,0,0,47,255,128,252,0,0,252,0,0,127,248,0,255,255,255,252,0,0,127,192,0,255,255,255,252,0,0,45,0,0,255,170,170,252,0,0,0,0,0,252,0,0,252,0,0,0,0,0,0,0,0,0,0, + // 0x955c 镜 + 92,149,34,35,59,36,1,252,0,36,0,0,0,31,128,0,0,0,127,0,0,0,15,192,0,0,0,190,0,2,170,175,250,170,0,0,253,0,3,255,255,255,255,64,2,255,255,195,255,255,255,255,64,7,255,255,192,6,128,2,64,0,15,255,255,192,15,192,11,224,0,47,192,0,0,11,208,15,192,0,127,128,0,0,7,208,31,128,0,127,0,0,15,255,255,255,255,192,62,0,0,15,255,255,255,255,192,27,255,255,79,255,255,255,255,192,3,255,255,64,0,0,0,0,0,3,255,255,64,0,0,0,0,0,0,31,192,1,255,255,255,254,0,0,31,192,1,255,255,255,254,0,0,31,192,1,248,0,0,126,0,0,31,192,1,248,0,0,126,0,63,255,255,209,255,255,255,254,0,63,255,255,209,255,255,255,254,0,63,255,255,209,248,0,0,126,0,0,31,192,1,248,0,0,126,0,0,31,192,1,255,255,255,254,0,0,31,192,1,255,255,255,254,0,0,31,192,0,7,240,127,0,0,0,31,192,128,7,224,126,0,0,0,31,199,208,11,224,126,0,0,0,31,255,224,15,208,126,1,0,0,47,255,192,47,192,126,3,208,0,63,254,0,127,64,126,3,224,0,255,240,7,255,0,127,3,224,0,191,64,191,252,0,63,255,208,0,60,0,127,224,0,63,255,192,0,16,0,46,0,0,5,85,0,0,0,0,0,0,0,0,0,0, + // 0x957f 长 + 127,149,33,34,50,36,2,253,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,120,0,0,0,7,240,0,0,1,255,64,0,0,7,240,0,0,11,253,0,0,0,7,240,0,0,63,244,0,0,0,7,240,0,1,255,208,0,0,0,7,240,0,11,255,0,0,0,0,7,240,0,191,248,0,0,0,0,7,240,11,255,208,0,0,0,0,7,240,127,254,0,0,0,0,0,7,240,47,244,0,0,0,0,0,7,240,11,64,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,85,91,245,86,253,85,85,85,0,0,7,240,0,253,0,0,0,0,0,7,240,0,191,0,0,0,0,0,7,240,0,63,64,0,0,0,0,7,240,0,63,192,0,0,0,0,7,240,0,31,240,0,0,0,0,7,240,0,11,252,0,0,0,0,7,240,0,3,254,0,0,0,0,7,240,0,0,255,192,0,0,0,7,240,0,0,127,244,0,0,0,7,240,6,244,31,254,0,0,0,7,250,255,244,7,255,228,0,0,11,255,255,248,0,255,255,64,0,47,255,255,144,0,47,255,0,0,31,255,144,0,0,2,252,0,0,15,208,0,0,0,0,24,0,0,4,0,0,0,0,0,0,0, + // 0x95ed 闭 + 237,149,30,35,24,36,3,252,1,0,0,0,0,0,0,0,47,64,0,0,0,0,0,0,63,208,31,255,255,255,255,240,15,240,31,255,255,255,255,240,7,252,31,255,255,255,255,240,1,254,0,0,0,0,7,240,0,184,0,0,0,0,3,240,0,16,0,0,63,64,3,240,84,0,0,0,63,64,3,240,253,0,0,0,63,64,3,240,253,0,0,0,63,64,3,240,253,0,0,0,63,64,3,240,253,15,255,255,255,255,195,240,253,15,255,255,255,255,195,240,253,15,255,255,255,255,195,240,253,0,0,7,255,64,3,240,253,0,0,15,255,64,3,240,253,0,0,63,255,64,3,240,253,0,0,191,191,64,3,240,253,0,2,254,63,64,3,240,253,0,11,252,63,64,3,240,253,0,63,240,63,64,3,240,253,0,255,192,63,64,3,240,253,11,255,0,63,64,3,240,253,127,248,0,63,64,3,240,253,127,224,0,63,64,3,240,253,31,0,0,63,64,3,240,253,4,0,0,127,64,3,240,253,0,0,255,255,0,3,240,253,0,0,255,255,0,3,240,253,0,0,127,228,0,7,240,253,0,0,0,0,7,255,240,253,0,0,0,0,3,255,208,253,0,0,0,0,3,255,64,0,0,0,0,0,0,0,0, + // 0x95f2 闲 + 242,149,30,34,16,36,3,253,1,0,0,0,0,0,0,0,11,128,0,0,0,0,0,0,47,208,15,255,255,255,255,240,11,244,15,255,255,255,255,240,3,252,15,255,255,255,255,240,0,255,0,0,0,0,3,240,0,127,128,0,0,0,3,240,0,47,128,0,0,0,3,240,84,13,0,26,64,0,3,240,252,0,0,47,64,0,3,240,252,0,0,47,64,0,3,240,252,0,0,47,64,0,3,240,252,0,0,47,64,0,3,240,252,31,255,255,255,255,195,240,252,31,255,255,255,255,195,240,252,31,255,255,255,255,131,240,252,0,0,255,240,0,3,240,252,0,3,255,252,0,3,240,252,0,7,255,255,0,3,240,252,0,15,239,191,192,3,240,252,0,63,111,79,240,3,240,252,0,254,47,67,252,3,240,252,3,252,47,65,254,3,240,252,31,244,47,64,127,67,240,252,63,208,47,64,47,3,240,252,31,64,47,64,8,3,240,252,8,0,47,64,0,3,240,252,0,0,47,64,0,3,240,252,0,0,47,64,0,3,240,252,0,0,47,64,0,7,240,252,0,0,5,0,127,255,240,252,0,0,0,0,63,255,224,252,0,0,0,0,47,255,64,168,0,0,0,0,0,0,0, + // 0x95f4 间 + 244,149,30,35,24,36,3,252,1,0,0,0,0,0,0,0,31,64,0,0,0,0,0,0,63,208,31,255,255,255,255,240,15,240,31,255,255,255,255,240,3,252,31,255,255,255,255,240,1,253,0,0,0,0,11,240,0,180,0,0,0,0,7,240,0,0,0,0,0,0,7,240,169,0,0,0,0,0,7,240,254,0,0,0,0,0,7,240,254,0,170,170,170,160,7,240,254,0,255,255,255,240,7,240,254,0,255,255,255,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,254,170,171,240,7,240,254,0,255,255,255,240,7,240,254,0,255,255,255,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,252,0,3,240,7,240,254,0,255,255,255,240,7,240,254,0,255,255,255,240,7,240,254,0,170,170,170,160,7,240,254,0,0,0,0,0,7,240,254,0,0,0,0,0,7,240,254,0,0,0,0,0,11,240,254,0,0,0,0,3,255,240,254,0,0,0,0,2,255,224,254,0,0,0,0,1,254,64,0,0,0,0,0,0,0,0, + // 0x9608 阈 + 8,150,30,35,24,36,3,252,3,192,0,0,0,0,0,0,15,224,15,255,255,255,255,240,7,248,15,255,255,255,255,240,2,253,15,255,255,255,255,240,0,255,64,0,0,0,11,240,0,63,192,0,0,0,7,240,0,31,128,1,240,144,7,240,84,9,0,1,242,244,7,240,253,0,0,1,244,189,7,240,253,0,0,1,244,56,7,240,253,26,170,170,254,170,71,240,253,63,255,255,255,255,199,240,253,63,255,255,255,255,199,240,253,0,0,0,248,0,7,240,253,0,0,0,248,21,7,240,253,15,255,244,248,63,7,240,253,15,255,244,252,62,7,240,253,15,64,244,188,124,7,240,253,15,64,244,188,188,7,240,253,15,64,244,124,248,7,240,253,15,64,244,126,240,7,240,253,15,255,244,63,224,7,240,253,15,255,244,63,192,7,240,253,0,0,0,47,129,135,240,253,0,0,20,63,66,231,240,253,1,175,252,191,195,215,240,253,63,255,254,255,231,199,240,253,63,254,75,243,255,199,240,253,41,0,47,193,255,71,240,253,0,0,31,0,126,7,240,253,0,0,4,0,0,11,240,253,0,0,0,0,63,255,224,253,0,0,0,0,47,255,192,253,0,0,0,0,31,254,0,0,0,0,0,0,0,0,0, + // 0x964d 降 + 77,150,32,35,24,36,3,252,0,0,0,0,14,64,0,0,0,0,0,0,63,128,0,0,255,255,208,0,127,0,0,0,255,255,244,0,255,170,170,0,255,255,240,3,255,255,255,192,252,7,240,11,255,255,255,64,252,11,208,47,240,0,191,0,252,15,192,191,248,0,253,0,252,15,195,254,253,3,252,0,252,47,71,244,127,79,240,0,252,63,1,208,47,255,192,0,252,62,0,0,11,255,64,0,252,125,0,0,11,255,64,0,252,190,0,0,191,255,244,0,252,63,0,11,255,159,255,144,252,15,194,255,253,1,255,254,252,15,215,255,208,47,175,252,252,7,226,249,0,47,129,180,252,3,240,64,0,47,128,0,252,3,240,255,255,255,255,240,252,3,240,255,255,255,255,240,252,3,240,255,255,255,255,240,252,11,240,11,192,47,128,0,252,255,224,11,192,47,128,0,252,255,192,11,192,47,128,0,252,190,0,11,192,47,128,0,252,0,15,255,255,255,255,252,252,0,15,255,255,255,255,252,252,0,11,255,255,255,255,252,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0, + // 0x9650 限 + 80,150,31,33,8,36,3,252,255,255,244,63,255,255,255,192,255,255,252,63,255,255,255,192,255,255,252,63,255,255,255,192,252,2,244,63,0,0,15,192,252,3,240,63,0,0,15,192,252,7,224,63,0,0,15,192,252,11,208,63,255,255,255,192,252,15,192,63,255,255,255,192,252,31,128,63,255,255,255,192,252,63,0,63,0,0,15,192,252,63,0,63,0,0,15,192,252,63,64,63,0,0,15,192,252,15,192,63,0,0,15,192,252,7,224,63,255,255,255,192,252,3,240,63,255,255,255,192,252,2,248,63,255,255,255,192,252,1,252,63,1,248,0,0,252,0,252,63,0,252,2,208,252,0,252,63,0,253,7,248,252,1,252,63,0,126,47,224,252,3,252,63,0,63,191,128,252,255,248,63,0,63,254,0,252,191,240,63,0,31,244,0,252,127,128,63,0,15,224,0,252,0,0,63,0,7,244,0,252,0,0,63,0,19,253,0,252,0,0,63,111,244,255,0,252,0,1,191,255,244,127,208,252,0,63,255,255,244,47,248,252,0,47,255,228,0,11,252,252,0,15,228,0,0,2,244,252,0,4,0,0,0,0,32,0,0,0,0,0,0,0,0, + // 0x9664 除 + 100,150,32,34,16,36,3,253,0,0,0,0,6,160,0,0,0,0,0,0,15,248,0,0,255,255,208,0,47,252,0,0,255,255,244,0,127,255,0,0,255,255,240,0,254,63,192,0,252,7,240,3,252,31,240,0,252,11,208,15,240,7,252,0,252,15,192,63,208,2,255,0,252,15,192,255,64,0,127,208,252,47,75,253,0,0,31,248,252,63,63,244,0,0,7,254,252,62,31,239,255,255,254,252,252,189,14,31,255,255,253,40,252,190,0,31,255,255,253,0,252,63,0,0,3,240,0,0,252,15,192,0,3,240,0,0,252,11,208,0,3,240,0,0,252,7,224,0,3,240,0,0,252,3,242,255,255,255,255,240,252,3,242,255,255,255,255,240,252,3,242,255,255,255,255,240,252,3,240,0,3,240,0,0,252,11,240,0,3,240,0,0,252,255,224,62,3,240,124,0,252,255,192,190,3,240,191,0,252,190,0,252,3,240,63,128,252,0,2,248,3,240,31,192,252,0,7,240,3,240,11,240,252,0,15,224,3,240,3,244,252,0,63,192,3,240,1,252,252,0,47,0,7,240,0,252,252,0,9,3,255,240,0,80,252,0,0,2,255,224,0,0,252,0,0,1,254,64,0,0, + // 0x9669 险 + 105,150,32,34,16,36,3,253,0,0,0,0,2,144,0,0,0,0,0,0,3,244,0,0,255,255,208,0,15,240,0,0,255,255,244,0,31,252,0,0,255,255,240,0,63,254,0,0,252,7,224,0,255,127,128,0,252,11,208,2,252,31,224,0,252,15,192,11,244,7,252,0,252,31,128,47,208,1,255,64,252,47,64,191,128,0,127,224,252,63,3,254,0,0,31,253,252,126,47,255,255,255,251,255,252,189,47,223,255,255,244,189,252,63,15,79,255,255,244,28,252,31,192,0,0,0,0,0,252,15,192,0,0,0,0,0,252,7,224,0,1,80,1,0,252,3,240,24,3,224,3,240,252,3,240,188,3,240,7,224,252,3,240,125,2,240,11,208,252,3,240,62,1,244,15,192,252,7,240,63,1,244,31,64,252,255,240,47,64,248,63,0,252,255,208,31,128,252,126,0,252,190,64,15,128,252,188,0,252,0,0,15,192,64,248,0,252,0,0,4,0,2,240,0,252,0,0,0,0,3,224,0,252,0,0,0,0,11,192,0,252,0,11,255,255,255,255,252,252,0,11,255,255,255,255,252,252,0,11,255,255,255,255,252,252,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0, + // 0x96f6 零 + 246,150,34,33,41,36,1,253,0,85,85,85,85,85,85,80,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,2,244,0,0,0,0,0,0,0,3,248,0,0,0,0,31,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,64,31,128,0,2,244,0,0,47,64,31,134,170,146,244,170,169,47,64,31,143,255,226,244,255,254,47,64,31,143,255,226,244,255,254,47,64,0,0,0,2,244,0,0,0,0,0,47,255,240,80,255,255,128,0,0,47,255,247,248,255,255,128,0,0,0,0,47,255,64,0,0,0,0,0,0,191,255,224,0,0,0,0,0,11,254,15,253,0,0,0,0,0,127,244,2,255,208,0,0,0,11,255,128,0,47,254,64,0,1,255,255,255,255,255,255,249,0,127,255,151,255,255,254,47,255,208,63,248,1,85,85,84,1,255,192,30,64,0,0,0,0,0,6,64,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,21,85,127,85,85,127,64,0,0,0,0,63,0,0,63,64,0,0,0,0,63,0,0,63,64,0,0,0,0,63,0,42,191,0,0,0,0,0,63,0,63,255,0,0,0,0,0,63,0,31,248,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x9700 需 + 0,151,32,33,8,36,2,253,2,170,170,170,170,170,170,128,3,255,255,255,255,255,255,192,3,255,255,255,255,255,255,192,0,0,0,11,208,0,0,0,0,0,0,11,208,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,85,85,95,229,85,85,253,126,0,0,11,208,0,0,189,126,63,255,139,211,255,248,189,126,63,255,139,211,255,248,189,126,0,0,11,208,0,0,189,0,0,0,11,208,0,0,0,0,191,255,139,211,255,254,0,0,191,255,139,211,255,254,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,106,170,170,175,250,170,170,169,0,0,0,15,192,0,0,0,0,0,0,31,192,0,0,0,3,255,255,255,255,255,255,224,3,255,255,255,255,255,255,224,3,254,171,250,175,250,175,224,3,244,3,240,7,224,7,224,3,244,3,240,7,224,7,224,3,244,3,240,7,224,7,224,3,244,3,240,7,224,7,224,3,244,3,240,7,224,7,224,3,244,3,240,7,225,175,224,3,244,3,240,7,225,255,208,3,240,2,160,6,144,255,64, + // 0x9752 青 + 82,151,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,6,170,170,175,250,170,170,144,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,85,85,95,245,85,85,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,106,170,170,170,170,170,170,169,0,0,0,0,0,0,0,0,0,26,170,170,170,170,168,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,149,85,85,85,252,0,0,63,64,0,0,0,252,0,0,63,149,85,85,85,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,1,252,0,0,63,64,0,6,171,252,0,0,63,64,0,7,255,252,0,0,63,64,0,3,255,224,0,0,0,0,0,0,0,0,0, + // 0x975e 非 + 94,151,34,35,59,36,1,252,0,0,3,240,1,248,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,15,255,255,240,2,255,255,255,192,15,255,255,240,2,255,255,255,192,15,255,255,240,2,255,255,255,192,0,0,7,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,15,255,255,240,2,255,255,255,0,15,255,255,240,2,255,255,255,0,15,255,255,240,2,255,255,255,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,7,240,2,252,0,0,0,0,0,7,246,130,252,0,0,0,0,5,175,255,194,252,0,0,0,107,255,255,255,194,255,255,255,208,127,255,255,249,2,255,255,255,208,63,255,191,192,2,255,255,255,208,57,64,127,64,2,252,0,0,0,0,0,255,0,2,252,0,0,0,0,2,253,0,2,252,0,0,0,0,11,252,0,2,252,0,0,0,0,47,240,0,2,252,0,0,0,1,255,192,0,2,252,0,0,0,11,255,0,0,2,252,0,0,0,11,252,0,0,2,252,0,0,0,2,208,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9760 靠 + 96,151,33,35,59,36,2,252,0,14,128,11,224,0,0,0,0,0,63,128,11,224,0,0,0,0,0,127,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,3,252,0,15,224,0,0,0,0,11,244,0,11,224,0,0,0,0,23,245,85,95,229,85,85,84,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,0,11,224,0,0,0,0,0,0,0,5,80,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,253,0,0,0,0,63,128,0,0,253,0,0,0,0,63,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,15,208,11,240,0,0,0,0,0,15,208,7,240,0,0,0,127,255,255,208,7,255,255,253,0,127,255,255,208,7,255,255,253,0,0,0,15,208,7,240,0,0,0,0,0,15,208,7,240,0,0,0,31,255,255,208,7,255,255,248,0,31,255,255,208,7,255,255,248,0,0,0,15,208,7,240,0,0,0,0,0,15,192,7,240,0,0,0,175,255,255,192,7,255,255,255,64,255,255,255,128,7,255,255,255,64,165,64,191,0,7,245,85,85,0,0,7,253,0,7,240,0,0,0,1,191,244,0,7,240,0,0,0,3,255,128,0,7,240,0,0,0,1,248,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,32,33,8,36,2,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,64,0,0,0,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,234,171,240,3,244,31,192,47,255,255,240,3,244,31,192,47,255,255,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,234,171,240,3,244,31,192,47,255,255,240,3,244,31,192,47,255,255,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,192,0,0,0,0,3,244,31,192,0,0,0,0,3,244,0,0,0,0,0,0,0,0, + // 0x9875 页 + 117,152,32,33,8,36,2,252,127,255,255,255,255,255,255,254,127,255,255,255,255,255,255,254,127,255,255,255,255,255,255,254,0,0,0,47,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,127,64,0,0,0,0,0,0,191,0,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,253,0,0,0,0,63,64,0,253,0,0,0,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,11,240,0,63,64,0,253,0,15,224,0,63,64,0,253,0,15,224,0,63,64,0,253,0,47,192,0,63,64,0,253,0,127,199,144,63,64,0,0,1,255,79,253,0,0,0,0,11,254,11,255,208,0,0,0,127,248,0,191,252,0,0,27,255,208,0,11,255,128,6,255,254,0,0,0,255,244,255,255,224,0,0,0,31,253,63,253,0,0,0,0,2,252,30,64,0,0,0,0,0,112,0,0,0,0,0,0,0,0, + // 0x9879 项 + 121,152,34,32,32,36,1,253,0,0,0,63,255,255,255,255,208,0,0,0,63,255,255,255,255,208,127,255,255,85,85,255,255,255,208,127,255,255,0,0,255,0,0,0,127,255,255,0,0,254,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,15,255,255,255,252,0,0,63,64,15,255,255,255,252,0,0,63,64,15,255,255,255,252,0,0,63,64,15,192,0,0,252,0,0,63,64,15,192,0,0,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,64,15,192,63,64,252,0,0,63,66,79,192,63,64,252,0,0,63,255,143,192,63,0,252,0,0,127,255,207,192,127,0,252,0,111,255,254,15,192,127,0,252,0,191,255,144,15,192,254,0,252,0,191,244,0,0,1,253,0,0,0,125,0,0,0,3,252,56,0,0,0,0,0,0,15,244,255,64,0,0,0,0,0,127,224,127,224,0,0,0,0,2,255,128,15,253,0,0,0,0,127,253,0,2,255,64,0,0,7,255,224,0,0,127,208,0,0,2,254,64,0,0,15,128,0,0,0,224,0,0,0,2,0, + // 0x9884 预 + 132,152,34,33,41,36,1,252,63,255,255,245,255,255,255,255,208,63,255,255,249,255,255,255,255,208,63,255,255,241,255,255,255,255,208,0,0,31,208,0,3,244,0,0,0,0,63,128,0,7,240,0,0,2,64,255,0,0,11,224,0,0,7,247,252,0,63,255,255,255,0,11,255,240,0,63,255,255,255,0,0,255,208,0,63,255,255,255,0,0,47,248,0,63,0,0,63,0,0,7,254,0,63,0,0,63,0,0,1,254,0,63,2,160,63,0,191,255,255,254,63,3,240,63,0,191,255,255,254,63,3,240,63,0,191,255,255,253,63,3,240,63,0,0,15,192,252,63,3,240,63,0,0,15,192,248,63,3,240,63,0,0,15,193,244,63,3,240,63,0,0,15,195,240,63,3,240,63,0,0,15,195,224,63,7,240,63,0,0,15,192,64,63,7,224,63,0,0,15,192,0,63,11,224,63,0,0,15,192,0,63,15,208,63,0,0,15,192,0,42,31,192,42,0,0,15,192,0,0,63,129,0,0,0,15,192,0,0,191,95,128,0,0,15,192,0,2,254,47,240,0,0,15,192,0,15,248,11,252,0,0,31,192,0,191,224,1,255,64,15,255,192,15,255,64,0,127,208,15,255,192,7,248,0,0,31,192,11,249,0,2,128,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x9891 频 + 145,152,34,35,59,36,1,252,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,189,0,31,255,255,255,192,3,208,189,0,31,255,255,255,192,3,224,191,255,31,255,255,255,192,3,224,191,255,64,0,252,0,0,3,224,191,255,64,1,252,0,0,3,224,189,0,0,2,244,0,0,3,224,189,0,0,3,240,0,0,3,224,189,0,11,255,255,255,0,3,224,189,0,11,255,255,255,0,191,255,255,255,203,234,170,191,0,191,255,255,255,203,192,0,47,0,191,255,255,255,203,192,248,47,0,0,1,248,0,11,192,248,47,0,0,1,248,0,11,192,248,47,0,1,145,248,0,11,192,248,47,0,3,241,248,15,139,192,248,47,0,3,225,248,31,139,192,248,47,0,11,209,248,47,75,192,244,47,0,15,193,248,63,11,193,244,47,0,31,129,248,126,11,193,244,47,0,63,65,248,253,11,193,244,47,0,127,1,249,252,11,194,240,47,0,44,1,255,244,11,195,240,47,0,0,0,175,240,11,195,240,47,0,0,0,47,192,0,7,208,0,0,0,0,191,64,0,15,223,64,0,0,3,254,0,0,47,175,224,0,0,31,248,0,0,191,11,252,0,1,255,208,0,7,253,1,255,0,47,255,0,1,191,244,0,63,192,47,244,0,1,255,128,0,15,208,14,64,0,0,184,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x989d 额 + 157,152,34,35,59,36,1,252,0,1,160,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,2,252,0,31,255,255,255,192,42,171,255,170,159,255,255,255,208,63,255,255,255,223,255,255,255,208,63,255,255,255,192,1,248,0,0,63,0,0,15,192,2,244,0,0,63,5,0,15,192,3,240,0,0,63,15,192,15,192,7,224,0,0,47,47,128,15,143,255,255,255,0,0,127,255,252,15,255,255,255,0,0,255,255,254,15,234,170,191,0,3,250,171,252,15,192,0,63,0,31,224,3,248,15,193,244,63,0,127,137,15,240,15,193,244,63,0,46,63,255,192,15,193,244,63,0,4,63,255,0,15,193,244,63,0,0,15,255,192,15,193,244,63,0,0,191,255,248,15,194,244,63,0,11,255,135,255,143,194,244,63,0,127,253,0,191,207,194,240,63,0,63,208,0,31,15,195,240,63,0,47,170,170,168,15,195,240,63,0,1,255,255,252,15,195,240,63,0,1,255,255,252,15,199,224,63,0,1,244,0,252,15,139,208,42,0,1,244,0,252,0,15,194,0,0,1,244,0,252,0,47,143,192,0,1,244,0,252,0,127,15,244,0,1,244,0,252,1,254,3,253,0,1,255,255,252,11,252,0,255,128,1,255,255,252,191,240,0,47,224,1,254,170,253,255,128,0,11,208,1,164,0,252,184,0,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x98ce 风 + 206,152,34,33,41,36,1,252,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,80,31,192,0,0,127,0,0,0,253,31,192,0,0,127,7,128,1,252,31,192,0,0,127,47,208,2,248,31,192,0,0,127,15,240,3,240,31,192,0,0,127,3,252,7,240,31,192,0,0,127,0,254,15,208,31,192,0,0,127,0,127,159,192,15,192,0,0,127,0,47,255,128,15,192,0,0,127,0,15,255,0,15,192,0,0,191,0,7,254,0,15,192,0,0,191,0,2,254,0,15,192,0,0,190,0,7,255,0,15,192,0,0,254,0,15,255,192,15,192,0,0,253,0,47,239,224,15,192,0,0,253,0,127,143,244,15,192,0,1,252,1,255,3,252,15,208,0,2,252,7,252,2,254,15,208,0,3,248,31,244,0,255,11,208,128,3,244,127,224,0,127,203,224,208,7,240,255,128,0,63,135,225,240,15,240,62,0,0,13,3,241,240,31,224,8,0,0,0,3,246,224,63,192,0,0,0,0,2,255,224,127,128,0,0,0,0,0,255,192,31,0,0,0,0,0,0,127,128,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0, + // 0x9971 饱 + 113,153,34,34,50,36,1,253,0,168,0,0,9,0,0,0,0,0,252,0,0,47,128,0,0,0,0,252,0,0,63,64,0,0,0,1,248,0,0,127,0,0,0,0,2,248,0,0,191,255,255,254,0,3,255,255,128,255,255,255,254,0,3,255,255,210,255,255,255,254,0,3,255,255,195,240,0,0,190,0,11,224,31,207,224,0,0,190,0,15,192,47,95,192,0,0,190,0,15,192,63,127,128,0,0,190,0,47,128,63,255,255,255,224,190,0,63,64,189,191,255,255,224,190,0,191,42,108,59,254,175,224,190,0,189,63,0,19,244,3,224,190,0,44,63,0,3,244,3,224,190,0,0,63,0,3,244,3,224,190,0,0,63,0,3,244,3,224,189,0,0,63,0,3,244,3,224,189,0,0,63,0,3,254,175,224,189,0,0,63,0,3,255,255,224,253,0,0,63,0,3,255,255,224,252,0,0,63,0,3,244,1,255,252,0,0,63,0,3,244,0,255,248,0,0,63,2,3,244,0,255,224,0,0,63,15,67,244,0,0,0,0,0,63,191,131,244,0,0,6,0,0,63,255,3,244,0,0,11,208,0,63,252,3,244,0,0,11,208,0,127,224,2,248,0,0,31,192,0,255,64,1,255,255,255,255,192,0,253,0,0,255,255,255,255,64,0,116,0,0,47,255,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x9a6c 马 + 108,154,31,33,8,36,2,252,3,255,255,255,255,255,244,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240,0,0,5,64,0,0,7,240,0,0,15,208,0,0,11,240,0,0,15,192,0,0,11,224,0,0,15,192,0,0,15,224,0,0,31,192,0,0,15,208,0,0,31,192,0,0,15,208,0,0,47,192,0,0,15,192,0,0,47,128,0,0,15,192,0,0,47,128,0,0,31,192,0,0,63,255,255,255,255,255,252,0,63,255,255,255,255,255,252,0,63,255,255,255,255,255,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,244,255,255,255,255,255,254,3,244,255,255,255,255,255,254,3,240,255,255,255,255,255,254,7,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,0,63,192,0,0,0,0,11,255,255,192,0,0,0,0,3,255,255,0,0,0,0,0,3,255,248,0,0,0,0,0,0,0,0,0, + // 0x9a71 驱 + 113,154,34,32,32,36,1,253,47,255,255,66,255,255,255,255,192,47,255,255,66,255,255,255,255,192,47,255,255,66,255,255,255,255,192,0,0,47,66,248,0,0,0,0,0,0,47,2,244,0,0,0,0,7,208,63,2,244,0,0,184,0,11,208,63,2,244,112,0,253,0,11,208,63,2,245,252,1,252,0,11,192,63,2,244,254,2,248,0,11,192,63,2,244,63,67,244,0,15,192,62,2,244,31,199,240,0,15,192,126,2,244,15,255,224,0,15,192,126,2,244,3,255,192,0,15,192,125,2,244,1,255,128,0,15,128,189,2,244,0,255,0,0,31,255,255,242,244,0,191,64,0,31,255,255,242,244,1,255,192,0,26,170,171,226,244,3,255,224,0,0,0,7,226,244,7,247,244,0,0,0,7,226,244,15,226,252,0,0,0,7,226,244,63,192,253,0,0,27,215,210,244,191,64,191,0,27,255,219,210,245,254,0,63,128,255,255,75,210,247,252,0,47,0,191,144,15,194,244,180,0,8,0,16,0,15,194,244,16,0,0,0,0,0,15,194,244,0,0,0,0,0,0,31,130,255,255,255,255,224,0,0,63,130,255,255,255,255,224,0,191,255,2,255,255,255,255,224,0,127,253,0,0,0,0,0,0,0,42,160,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,32,35,24,36,2,252,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,224,0,0,11,255,255,255,255,224,0,0,11,229,85,85,95,224,0,0,11,224,0,0,11,224,0,0,11,224,0,0,11,224,0,0,11,229,85,85,95,224,0,0,11,255,255,255,255,224,0,0,11,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,192,0,0,0,0,3,244,15,192,21,85,85,84,3,244,15,192,63,255,255,252,3,244,15,192,63,255,255,252,3,244,15,192,63,0,0,252,3,244,15,192,63,0,0,252,3,244,15,192,63,0,0,252,3,244,15,192,63,85,85,252,3,244,15,192,63,255,255,252,3,244,15,192,63,255,255,252,7,244,15,192,63,0,0,15,255,240,15,192,42,0,0,11,255,240,15,192,0,0,0,7,255,128,0,0,0,0,0,0,0,0, + // 0x9ec4 黄 + 196,158,32,35,24,36,2,252,0,0,127,0,0,253,0,0,0,0,127,0,0,253,0,0,0,0,127,0,0,253,0,0,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,0,0,127,0,0,253,0,0,0,0,127,0,0,253,0,0,0,0,127,0,0,253,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,85,85,95,245,85,85,0,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,252,0,11,224,0,63,128,0,252,0,11,224,0,63,128,0,253,85,95,245,85,127,128,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,252,0,11,224,0,63,128,0,252,0,11,224,0,63,128,0,252,0,11,224,0,63,128,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,85,89,85,85,165,85,0,0,0,62,0,0,253,0,0,0,7,255,192,2,255,228,0,1,191,254,0,0,111,255,128,111,255,224,0,0,1,255,253,63,253,0,0,0,0,27,252,15,128,0,0,0,0,0,176,0,0,0,0,0,0,0,0, + // 0x9ede 點 + 222,158,34,34,50,36,1,253,0,0,0,0,0,3,240,0,0,15,255,255,255,64,3,240,0,0,15,255,255,255,64,3,240,0,0,15,149,245,111,64,3,240,0,0,15,64,240,31,64,3,240,0,0,15,180,241,255,64,3,240,0,0,15,120,242,239,64,3,240,0,0,15,124,243,223,64,3,244,0,0,15,108,243,95,64,3,255,255,224,15,93,247,31,64,3,255,255,224,15,68,246,31,64,3,255,255,224,15,64,240,31,64,3,240,0,0,15,255,255,255,64,3,240,0,0,15,255,255,255,64,3,240,0,0,5,86,249,85,0,3,240,0,0,0,2,244,0,0,3,240,0,0,10,171,250,170,0,3,240,0,0,31,255,255,255,79,255,255,255,0,31,255,255,255,79,255,255,255,0,0,2,244,0,15,255,255,255,0,0,2,244,0,15,192,0,63,0,0,2,249,90,143,192,0,63,0,63,255,255,255,207,192,0,63,0,63,255,255,255,207,192,0,63,0,63,234,149,84,15,192,0,63,0,0,0,4,60,15,192,0,63,0,6,31,46,62,15,192,0,63,0,11,207,31,31,79,192,0,63,0,15,143,79,11,207,192,0,63,0,15,79,75,71,223,255,255,255,0,47,11,139,131,143,255,255,255,0,63,11,134,64,15,255,255,255,0,189,5,0,0,15,192,0,63,0,40,0,0,0,15,192,0,42,0, + // 0x9f50 齐 + 80,159,33,35,59,36,2,252,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,0,0,7,244,0,0,31,224,0,0,0,2,252,0,0,127,192,0,0,0,0,255,0,0,255,0,0,0,0,0,63,208,7,253,0,0,0,0,0,15,252,31,244,0,0,0,0,0,2,255,255,208,0,0,0,0,0,0,191,255,0,0,0,0,0,0,1,191,255,144,0,0,0,0,0,111,255,255,254,64,0,0,0,107,255,253,47,255,254,144,0,191,255,255,144,1,255,255,255,64,255,255,228,0,0,7,255,255,0,127,251,164,0,0,10,235,253,0,36,3,248,0,0,15,208,4,0,0,3,248,0,0,15,208,0,0,0,3,248,0,0,15,208,0,0,0,3,248,0,0,15,208,0,0,0,3,244,0,0,15,208,0,0,0,3,244,0,0,15,208,0,0,0,7,244,0,0,15,208,0,0,0,11,240,0,0,15,208,0,0,0,15,240,0,0,15,208,0,0,0,47,224,0,0,15,208,0,0,0,191,192,0,0,15,208,0,0,2,255,64,0,0,15,208,0,0,31,254,0,0,0,15,208,0,0,15,248,0,0,0,15,208,0,0,2,208,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,6,24,48,36,15,2,47,128,191,224,255,240,255,240,191,224,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,128,191,224,255,240,255,240,191,224,47,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Symbols_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Symbols_26.cpp new file mode 100644 index 000000000000..cd343edcdb70 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Symbols_26.cpp @@ -0,0 +1,38 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium_Symbols 36pt, capital 'A' height: 26px, width: 100% +extern const uint8_t NotoSans_Medium_Symbols_26[112] = { + 130,26,8,0,10,0,34,247, // unifont_t + // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 + 21,44,8,24,2,248,0,15,255,248,0,0,0,63,255,253,0,0,0,63,170,254,0,0,0,61,0,62,0,0,0,61,0,62,0,0,0,63,192,62,0,0,0,61,0,62,0,0,0,61,0,62,0,0,0,61,0,62,0,0,0,63,192,62,0,0,0,61,0,62,0,0,0,61,0,62,0,0,0,61,126,62,0,0,0,63,254,62,0,0,0,62,190,62,0,0,0,61,126,62,0,0,0,61,126,62,0,0,0,62,190,62,0,0,0,63,254,62,0,0,0,61,126,62,0,0,0,61,126,62,0,0,0,61,190,62,0,0,0,63,254,62,0,0,0,61,126,62,0,0,0,61,126,62,0,0,0,61,126,62,0,0,0,255,254,63,64,0,3,253,190,47,224,0,15,208,126,3,248,0,47,66,255,128,253,0,62,15,255,244,63,0,188,47,255,252,47,0,252,63,255,254,15,64,248,127,255,255,15,128,248,127,255,255,15,128,248,63,255,255,15,64,188,63,255,253,31,0,125,15,255,248,63,0,63,2,255,208,189,0,31,192,20,2,252,0,11,248,0,31,240,0,2,255,234,255,192,0,0,127,255,254,0,0,0,6,255,208,0,0, + // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° + 12,12,36,15,2,14,6,255,64,47,255,240,127,155,248,252,0,252,248,0,125,248,0,62,248,0,61,252,0,189,127,70,252,47,255,240,11,255,128,0,16,0, + // 0x0a - replacement for 0x2026 used in Greek language files … + 25,6,42,29,2,255,26,0,1,160,0,41,0,63,192,11,248,0,255,64,127,208,15,252,0,255,128,127,208,15,252,0,255,128,63,192,7,248,0,255,0,5,0,0,80,0,20,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Traditional_Chinese_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Traditional_Chinese_26.cpp new file mode 100644 index 000000000000..b2d1dd9e992d --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Traditional_Chinese_26.cpp @@ -0,0 +1,646 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Traditional Chinese 36pt, capital 'A' height: 26px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +extern const uint8_t NotoSans_Medium_Traditional_Chinese_26[17084] = { + 162,26,191,34,26,255,34,247, // unifont_t + // 0x22bf ⊿ + 191,34,28,29,203,36,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,11,0,0,0,0,0,0,31,0,0,0,0,0,0,127,0,0,0,0,0,1,255,0,0,0,0,0,7,255,0,0,0,0,0,31,255,0,0,0,0,0,127,255,0,0,0,0,1,255,63,0,0,0,0,3,252,63,0,0,0,0,15,240,63,0,0,0,0,63,192,63,0,0,0,0,255,0,63,0,0,0,3,252,0,63,0,0,0,15,240,0,63,0,0,0,63,192,0,63,0,0,0,255,64,0,63,0,0,3,253,0,0,63,0,0,15,244,0,0,63,0,0,63,208,0,0,63,0,0,255,64,0,0,63,0,2,253,0,0,0,63,0,11,244,0,0,0,63,0,47,224,0,0,0,63,0,191,128,0,0,0,63,2,254,0,0,0,0,63,11,255,255,255,255,255,255,47,255,255,255,255,255,255,191,255,255,255,255,255,255, + // 0x4e00 一 + 0,78,34,4,36,36,1,12,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,42,170,170,170,170,170,170,170,144, + // 0x4e09 三 + 9,78,32,29,232,36,2,255,1,85,85,85,85,85,85,64,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,7,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,84,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,21,85,85,85,85,85,85,84, + // 0x4e0a 上 + 10,78,32,32,0,36,2,255,0,0,0,21,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,213,85,85,64,0,0,0,63,255,255,255,224,0,0,0,63,255,255,255,224,0,0,0,63,255,255,255,224,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,85,85,85,127,213,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x4e0b 下 + 11,78,32,32,0,36,2,253,85,85,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,253,0,0,0,0,0,0,47,255,208,0,0,0,0,0,47,255,252,0,0,0,0,0,47,223,255,128,0,0,0,0,47,194,255,244,0,0,0,0,47,192,127,255,0,0,0,0,47,192,11,255,208,0,0,0,47,192,0,255,240,0,0,0,47,192,0,47,192,0,0,0,47,192,0,7,64,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x4e0d 不 + 13,78,33,32,32,36,2,253,21,85,85,85,85,85,85,84,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,0,0,0,2,255,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,3,255,242,224,0,0,0,0,0,15,255,251,252,0,0,0,0,0,63,255,247,255,64,0,0,0,0,255,207,240,255,224,0,0,0,7,255,79,240,47,252,0,0,0,31,253,15,240,7,255,64,0,0,191,240,15,240,1,255,208,0,7,255,192,15,240,0,63,248,0,47,254,0,15,240,0,15,254,0,255,248,0,15,240,0,2,255,64,191,208,0,15,240,0,0,253,0,62,0,0,15,240,0,0,52,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0, + // 0x4e26 並 + 38,78,32,33,8,36,2,254,0,1,128,0,0,3,144,0,0,15,208,0,0,7,252,0,0,11,240,0,0,11,244,0,0,3,248,0,0,15,224,0,0,2,253,0,0,47,192,0,0,0,254,0,0,127,64,0,0,0,189,0,0,255,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,21,85,91,245,95,229,85,84,0,0,11,240,15,208,0,0,0,0,11,240,15,208,0,0,0,0,11,240,15,208,9,64,7,240,11,240,15,208,15,240,3,240,11,240,15,208,15,208,2,248,11,240,15,208,31,192,1,252,11,240,15,208,63,192,0,253,11,240,15,208,63,64,0,190,11,240,15,208,127,0,0,127,11,240,15,208,191,0,0,63,11,240,15,208,253,0,0,63,75,240,15,209,252,0,0,47,139,240,15,210,248,0,0,47,203,240,15,211,244,0,0,25,11,240,15,209,160,0,0,0,11,240,15,208,0,0,0,0,11,240,15,208,0,0,0,0,11,240,15,208,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85, + // 0x4e2d 中 + 45,78,30,34,16,36,3,253,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,21,85,85,127,149,85,85,64,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,191,85,85,127,149,85,95,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,255,255,255,255,255,255,208,191,0,0,63,128,0,15,208,191,0,0,63,128,0,15,208,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0, + // 0x4e3b 主 + 59,78,32,33,8,36,2,254,0,0,0,36,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,63,244,0,0,0,0,0,0,11,253,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,189,0,0,0,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,5,85,85,95,245,85,85,80,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,2,255,255,255,255,255,255,128,2,255,255,255,255,255,255,128,2,255,255,255,255,255,255,128,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,21,85,85,95,245,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x4e4b 之 + 75,78,34,34,50,36,1,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,252,0,1,85,85,85,85,85,95,244,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,1,0,0,11,252,0,0,0,0,11,224,0,47,240,0,0,0,0,15,224,0,191,192,0,0,0,0,31,208,2,255,0,0,0,0,0,63,192,15,252,0,0,0,0,0,127,240,127,240,0,0,0,0,0,255,249,255,192,0,0,0,0,1,255,255,254,0,0,0,0,0,3,252,255,244,0,0,0,0,0,11,244,63,248,0,0,0,0,0,15,240,15,255,229,0,0,0,0,63,208,2,255,255,255,255,255,208,191,192,0,47,255,255,255,255,192,47,64,0,1,175,255,255,255,128,6,0,0,0,0,1,85,85,0, + // 0x4ea4 交 + 164,78,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,21,85,85,95,229,85,85,84,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,0,0,0,0,0,4,0,0,0,0,121,0,0,47,0,0,0,1,255,64,0,255,208,0,0,7,253,0,0,63,248,0,0,31,248,0,0,11,255,0,0,191,224,0,0,1,255,192,3,255,128,0,0,0,127,240,31,254,5,0,0,100,15,252,191,244,191,0,0,255,3,255,63,192,63,64,1,254,0,252,14,0,47,192,3,252,0,32,0,0,15,224,7,248,0,0,0,0,11,244,15,240,0,0,0,0,3,252,63,208,0,0,0,0,1,255,191,128,0,0,0,0,0,191,255,0,0,0,0,0,0,63,252,0,0,0,0,0,0,127,253,0,0,0,0,0,2,255,255,128,0,0,0,0,47,255,255,248,0,0,0,2,255,248,47,255,128,0,0,191,255,192,7,255,254,0,111,255,253,0,0,191,255,254,255,255,208,0,0,11,255,255,127,248,0,0,0,0,111,253,62,64,0,0,0,0,1,184,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,5,85,85,85,85,84,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,1,252,0,0,63,64,0,0,1,252,0,0,63,64,0,0,1,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,21,85,85,85,85,84,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,169,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,125,0,0,0,0,0,0,189,125,0,47,192,11,224,0,189,125,0,63,128,15,224,0,189,125,0,63,128,15,224,0,189,0,0,63,64,15,224,0,0,0,0,127,0,15,224,0,0,0,0,255,0,15,224,0,0,0,1,254,0,15,224,0,52,0,7,252,0,15,224,0,63,0,47,244,0,15,240,0,63,6,255,224,0,15,240,0,191,255,255,64,0,11,255,255,254,191,248,0,0,7,255,255,252,62,64,0,0,1,191,255,224,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,34,34,50,36,1,253,0,0,0,7,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,191,255,192,0,0,0,0,0,1,255,31,240,0,0,0,0,0,7,253,11,252,0,0,0,0,0,31,244,2,255,64,0,0,0,0,127,224,0,191,208,0,0,0,2,255,64,0,47,248,0,0,0,11,253,0,0,11,255,0,0,0,63,244,0,0,1,255,208,0,1,255,255,255,255,255,255,248,0,15,255,31,255,255,255,143,255,128,127,248,31,255,255,255,130,255,224,63,208,0,0,0,0,0,127,192,14,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,15,208,0,0,0,0,63,0,0,31,208,0,0,0,0,63,0,63,255,192,0,0,0,0,63,0,63,255,192,0,0,0,0,63,0,47,254,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x4ef6 件 + 246,78,34,34,50,36,1,253,0,0,144,0,0,21,0,0,0,0,0,253,0,0,191,0,0,0,0,2,252,10,64,191,0,0,0,0,3,248,15,208,191,0,0,0,0,7,240,15,192,191,0,0,0,0,15,240,31,192,191,0,0,0,0,31,208,47,128,191,0,0,0,0,63,192,63,149,191,85,84,0,0,127,64,63,255,255,255,254,0,0,255,0,191,255,255,255,254,0,2,255,0,255,255,255,255,254,0,7,255,1,252,0,191,0,0,0,15,255,3,248,0,191,0,0,0,63,255,7,244,0,191,0,0,0,191,255,11,240,0,191,0,0,0,127,127,0,128,0,191,0,0,0,44,63,0,0,0,191,0,0,0,4,63,0,0,0,191,0,0,0,0,63,11,255,255,255,255,255,208,0,63,11,255,255,255,255,255,208,0,63,11,255,255,255,255,255,208,0,63,1,85,85,191,85,85,64,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,191,0,0,0,0,63,0,0,0,190,0,0,0, + // 0x4efd 份 + 253,78,34,35,59,36,1,252,0,0,144,0,0,0,0,0,0,0,1,252,0,63,255,252,0,0,0,3,252,0,63,255,253,0,0,0,3,244,0,63,255,254,0,0,0,11,240,6,64,0,127,0,0,0,15,208,15,224,0,63,64,0,0,47,192,15,208,0,63,128,0,0,63,128,47,192,0,47,192,0,0,255,0,63,64,0,15,224,0,1,255,0,127,0,0,11,240,0,3,255,0,254,0,0,7,252,0,11,255,2,252,0,0,2,253,0,47,255,3,244,0,0,0,255,64,127,255,15,240,0,0,0,191,208,255,255,63,192,0,0,0,63,224,254,127,63,191,255,255,255,239,192,124,127,14,63,255,255,255,226,0,32,127,0,63,255,255,255,208,0,0,127,0,0,47,128,15,208,0,0,127,0,0,63,64,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,127,0,15,208,0,0,127,0,0,190,0,15,208,0,0,127,0,0,253,0,15,192,0,0,127,0,1,252,0,15,192,0,0,127,0,3,248,0,15,192,0,0,127,0,7,244,0,31,192,0,0,127,0,15,224,0,31,192,0,0,127,0,63,192,0,47,192,0,0,127,0,255,64,0,127,128,0,0,127,7,254,0,63,255,64,0,0,127,7,244,0,63,255,0,0,0,127,1,208,0,47,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f11 休 + 17,79,34,34,50,36,1,253,0,0,36,0,0,84,0,0,0,0,0,127,64,0,252,0,0,0,0,0,255,0,0,252,0,0,0,0,0,254,0,0,252,0,0,0,0,2,252,0,0,252,0,0,0,0,7,248,0,0,252,0,0,0,0,15,240,0,0,252,0,0,0,0,31,224,0,0,252,0,0,0,0,63,192,0,0,252,0,0,0,0,255,139,255,255,255,255,255,192,2,255,139,255,255,255,255,255,192,7,255,139,255,255,255,255,255,192,31,255,129,85,95,255,213,85,64,127,255,128,0,15,255,224,0,0,255,239,128,0,47,255,240,0,0,191,47,128,0,63,255,244,0,0,61,47,128,0,127,254,252,0,0,20,47,128,0,254,253,253,0,0,0,47,128,2,252,252,127,0,0,0,47,128,3,248,252,63,128,0,0,47,128,11,240,252,47,192,0,0,47,128,31,208,252,15,240,0,0,47,128,63,192,252,7,248,0,0,47,128,255,64,252,3,253,0,0,47,130,254,0,252,0,255,0,0,47,139,252,0,252,0,191,192,0,47,255,240,0,252,0,63,240,0,47,159,208,0,252,0,15,192,0,47,139,64,0,252,0,3,64,0,47,129,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,47,128,0,0,252,0,0,0,0,31,128,0,0,252,0,0,0, + // 0x4f4d 位 + 77,79,34,34,50,36,1,253,0,0,100,0,0,168,0,0,0,0,0,254,0,0,253,0,0,0,0,1,253,0,0,253,0,0,0,0,3,252,0,0,253,0,0,0,0,7,244,0,0,253,0,0,0,0,15,240,0,0,253,0,0,0,0,31,208,0,0,253,0,0,0,0,63,195,255,255,255,255,255,192,0,191,67,255,255,255,255,255,192,1,255,67,255,255,255,255,255,192,3,255,64,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,64,5,128,0,11,144,0,191,255,64,15,192,0,15,240,0,255,127,64,15,208,0,15,224,0,125,63,64,11,224,0,15,208,0,56,63,64,7,240,0,31,192,0,0,63,64,3,240,0,47,192,0,0,63,64,3,244,0,63,128,0,0,63,64,3,248,0,63,64,0,0,63,64,2,248,0,127,0,0,0,63,64,1,252,0,127,0,0,0,63,64,1,252,0,254,0,0,0,63,64,0,252,0,253,0,0,0,63,64,0,253,1,252,0,0,0,63,64,0,253,2,252,0,0,0,63,64,0,254,3,244,0,0,0,63,64,0,80,3,240,0,0,0,63,64,0,0,7,240,0,0,0,63,75,255,255,255,255,255,224,0,63,75,255,255,255,255,255,224,0,63,75,255,255,255,255,255,224,0,63,64,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,34,34,50,36,1,253,0,0,144,0,0,0,0,0,0,0,1,252,0,0,0,0,96,0,0,2,252,0,0,0,111,248,0,0,3,244,0,5,191,255,254,0,0,11,240,251,255,255,255,228,0,0,15,224,255,255,255,228,0,0,0,47,192,255,254,95,192,0,0,0,63,128,254,0,15,192,0,0,0,191,0,253,0,15,208,0,0,1,255,0,253,0,15,208,0,0,3,255,0,253,0,15,208,0,0,11,255,0,253,0,15,208,0,0,31,255,0,253,0,15,208,0,0,127,255,0,255,255,255,255,255,208,255,255,0,255,255,255,255,255,208,254,127,0,255,255,255,255,255,208,124,127,0,253,0,7,240,0,0,32,127,0,253,0,7,240,0,0,0,127,0,253,0,3,240,0,0,0,127,0,253,0,3,244,0,0,0,127,0,253,0,3,248,0,0,0,127,0,253,0,2,252,0,0,0,127,0,253,0,1,252,0,0,0,127,0,253,1,172,253,0,0,0,127,0,255,255,252,254,0,0,0,127,15,255,255,252,191,2,208,0,127,15,255,254,144,63,66,240,0,127,11,249,0,0,63,194,240,0,127,0,0,0,0,31,227,240,0,127,0,0,0,0,15,255,224,0,127,3,255,255,255,227,255,208,0,127,3,255,255,255,225,255,128,0,127,3,255,255,255,224,21,0,0,106,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,34,34,50,36,1,253,0,0,100,0,4,0,0,0,0,0,0,191,0,47,128,0,0,0,0,0,253,0,63,64,0,0,0,0,2,252,0,127,0,0,0,0,0,3,248,0,254,0,0,0,0,0,11,240,1,253,0,0,0,0,0,15,224,3,255,255,255,255,224,0,47,192,7,255,255,255,255,224,0,127,128,15,255,255,255,255,224,0,255,64,31,210,252,0,0,0,2,255,64,63,193,252,0,0,0,7,255,64,191,1,252,0,0,0,15,255,65,254,1,252,0,0,0,63,255,71,252,1,252,0,0,0,191,255,75,244,1,255,255,255,128,63,63,66,208,1,255,255,255,128,29,63,64,64,1,255,255,255,128,4,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,255,255,255,192,0,63,64,0,1,255,255,255,192,0,63,64,0,1,255,255,255,192,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0, + // 0x4f9b 供 + 155,79,34,34,50,36,1,253,0,0,144,1,164,0,42,0,0,0,0,253,1,252,0,63,0,0,0,2,252,1,252,0,63,0,0,0,3,248,1,252,0,63,0,0,0,7,240,1,252,0,63,0,0,0,15,224,1,252,0,63,0,0,0,31,192,1,252,0,63,0,0,0,63,128,2,252,0,63,64,0,0,191,3,255,255,255,255,255,192,1,255,3,255,255,255,255,255,192,3,255,3,255,255,255,255,255,192,11,255,0,1,252,0,63,0,0,47,255,0,1,252,0,63,0,0,127,255,0,1,252,0,63,0,0,255,191,0,1,252,0,63,0,0,126,127,0,1,252,0,63,0,0,56,127,0,1,252,0,63,0,0,16,127,0,1,252,0,63,0,0,0,127,0,1,252,0,63,0,0,0,127,11,255,255,255,255,255,224,0,127,11,255,255,255,255,255,224,0,127,11,255,255,255,255,255,224,0,127,1,85,85,85,85,85,64,0,127,0,0,0,0,0,0,0,0,127,0,0,160,0,9,0,0,0,127,0,2,253,0,127,0,0,0,127,0,3,248,0,63,192,0,0,127,0,15,240,0,31,240,0,0,127,0,63,208,0,7,248,0,0,127,0,191,128,0,2,253,0,0,127,2,255,0,0,0,255,0,0,127,15,252,0,0,0,63,192,0,127,3,240,0,0,0,31,128,0,127,0,128,0,0,0,8,0, + // 0x4fdd 保 + 221,79,34,35,59,36,1,252,0,0,80,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,253,63,255,255,255,253,0,0,2,252,63,255,255,255,253,0,0,3,244,63,255,255,255,253,0,0,11,240,63,0,0,0,253,0,0,15,208,63,0,0,0,253,0,0,47,192,63,0,0,0,253,0,0,127,128,63,0,0,0,253,0,0,255,64,63,0,0,0,253,0,2,255,64,63,0,0,0,253,0,7,255,64,63,255,255,255,253,0,31,255,64,63,255,255,255,253,0,63,255,64,63,255,255,255,253,0,255,191,64,0,0,254,0,0,0,127,63,64,0,0,254,0,0,0,60,63,64,0,0,254,0,0,0,16,63,64,0,0,254,0,0,0,0,63,75,255,255,255,255,255,208,0,63,75,255,255,255,255,255,208,0,63,75,255,255,255,255,255,208,0,63,64,0,15,255,224,0,0,0,63,64,0,47,255,244,0,0,0,63,64,0,127,255,252,0,0,0,63,64,1,254,254,191,0,0,0,63,64,7,252,254,63,192,0,0,63,64,31,240,254,15,240,0,0,63,64,127,192,254,7,252,0,0,63,66,255,64,254,2,255,64,0,63,95,253,0,254,0,191,224,0,63,79,240,0,254,0,47,224,0,63,71,128,0,254,0,7,128,0,63,64,0,0,254,0,0,0,0,63,64,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4fe1 信 + 225,79,34,34,50,36,1,253,0,0,184,0,0,0,0,0,0,0,0,254,10,170,170,170,160,0,0,1,252,15,255,255,255,244,0,0,3,248,15,255,255,255,244,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,199,255,255,255,255,255,224,0,191,71,255,255,255,255,255,224,1,255,71,255,255,255,255,255,208,3,255,64,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,47,255,64,47,255,255,255,252,0,191,255,64,47,255,255,255,252,0,255,127,64,26,170,170,170,168,0,125,63,64,0,0,0,0,0,0,56,63,64,0,0,0,0,0,0,0,63,64,47,255,255,255,252,0,0,63,64,47,255,255,255,252,0,0,63,64,26,170,170,170,168,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,42,170,170,170,168,0,0,63,64,63,255,255,255,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,0,0,0,253,0,0,63,64,63,170,170,170,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,255,255,255,253,0,0,63,64,63,0,0,0,253,0,0,42,0,63,0,0,0,168,0, + // 0x500b 個 + 11,80,33,35,59,36,1,252,0,2,64,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,11,242,255,255,255,255,255,64,0,15,210,255,255,255,255,255,64,0,31,194,255,255,255,255,255,64,0,63,130,244,0,0,0,63,64,0,127,2,244,0,188,0,63,64,0,191,2,244,0,188,0,63,64,1,254,2,244,0,188,0,63,64,3,254,2,244,0,188,0,63,64,7,254,2,245,255,255,255,63,64,15,254,2,245,255,255,255,63,64,63,254,2,244,85,254,85,63,64,191,254,2,244,0,188,0,63,64,255,254,2,244,0,188,0,63,64,253,190,2,244,0,188,0,63,64,124,190,2,244,21,189,84,63,64,48,190,2,244,63,255,252,63,64,0,190,2,244,63,255,252,63,64,0,190,2,244,61,0,188,63,64,0,190,2,244,61,0,188,63,64,0,190,2,244,61,0,188,63,64,0,190,2,244,61,0,188,63,64,0,190,2,244,62,85,252,63,64,0,190,2,244,63,255,252,63,64,0,190,2,244,63,255,252,63,64,0,190,2,244,0,0,0,63,64,0,190,2,244,0,0,0,63,64,0,190,2,244,0,0,0,63,64,0,190,2,255,255,255,255,255,64,0,190,2,255,255,255,255,255,64,0,190,2,255,255,255,255,255,64,0,190,2,244,0,0,0,63,64,0,190,2,244,0,0,0,42,64,0,0,0,0,0,0,0,0,0, + // 0x503c 值 + 60,80,34,34,50,36,1,253,0,0,144,0,0,170,0,0,0,0,1,252,0,0,254,0,0,0,0,2,252,0,0,253,0,0,0,0,3,244,0,0,253,0,0,0,0,7,243,255,255,255,255,255,64,0,15,227,255,255,255,255,255,64,0,47,195,255,255,255,255,255,64,0,63,128,0,2,244,0,0,0,0,191,0,0,3,240,0,0,0,1,254,0,42,171,250,170,160,0,3,254,0,63,255,255,255,244,0,11,254,0,63,255,255,255,244,0,31,254,0,62,0,0,2,244,0,63,254,0,62,0,0,2,244,0,191,254,0,62,0,0,2,244,0,127,126,0,63,255,255,255,244,0,44,126,0,63,255,255,255,244,0,20,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,255,255,255,244,0,0,126,0,63,85,85,87,244,0,0,126,0,62,0,0,2,244,0,0,126,0,62,0,0,2,244,0,0,126,31,255,255,255,255,255,208,0,126,47,255,255,255,255,255,208,0,126,47,255,255,255,255,255,208,0,126,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,34,34,50,36,1,253,0,2,64,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,231,255,255,255,255,255,208,0,15,215,255,255,255,255,255,208,0,31,199,255,255,255,255,255,208,0,63,128,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,191,0,255,255,255,255,255,0,0,253,0,255,255,255,255,255,0,3,253,0,254,170,170,170,191,0,7,253,0,252,0,0,0,127,0,15,253,0,252,0,0,0,127,0,47,253,0,252,0,0,0,127,0,127,253,0,255,255,255,255,255,0,255,253,0,255,255,255,255,255,0,254,189,0,254,170,170,170,170,0,124,189,0,252,0,0,0,0,0,48,189,0,252,0,0,0,0,0,0,189,1,255,255,255,255,255,128,0,189,1,255,255,255,255,255,128,0,189,2,255,235,250,254,175,128,0,189,2,255,194,240,124,31,128,0,189,3,255,194,240,124,31,128,0,189,3,255,194,240,124,31,128,0,189,7,255,235,250,254,175,128,0,189,11,239,255,255,255,255,128,0,189,15,223,255,255,255,255,128,0,189,31,207,194,240,124,31,128,0,189,63,143,194,240,124,31,128,0,189,127,15,194,240,124,31,128,0,189,254,15,194,240,124,31,128,0,189,60,15,194,240,125,255,128,0,189,4,15,194,240,124,255,64,0,189,0,15,129,160,104,253,0, + // 0x505c 停 + 92,80,34,34,50,36,1,253,0,0,144,0,0,253,0,0,0,0,1,252,0,0,253,0,0,0,0,3,252,0,0,253,0,0,0,0,3,251,255,255,255,255,255,208,0,11,247,255,255,255,255,255,208,0,15,215,255,255,255,255,255,208,0,63,192,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,63,255,255,255,248,0,2,255,0,63,255,255,255,248,0,7,255,0,63,85,85,86,248,0,15,255,0,63,64,0,2,248,0,63,255,0,63,64,0,2,248,0,255,255,0,63,255,255,255,248,0,255,127,0,63,255,255,255,248,0,188,127,0,21,85,85,85,80,0,52,127,0,0,0,0,0,0,0,16,127,10,170,170,170,170,170,144,0,127,15,255,255,255,255,255,224,0,127,15,255,255,255,255,255,224,0,127,15,192,0,0,0,7,224,0,127,15,192,0,0,0,7,224,0,127,15,198,170,170,170,151,224,0,127,15,203,255,255,255,215,224,0,127,0,11,255,255,255,208,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,3,255,253,0,0,0,0,127,0,1,255,252,0,0,0,0,126,0,0,255,224,0,0,0, + // 0x5075 偵 + 117,80,33,35,59,36,1,252,0,0,100,0,0,252,0,0,0,0,0,254,0,0,252,0,0,0,0,1,253,0,0,252,0,0,0,0,3,252,0,0,255,255,255,192,0,7,244,0,0,255,255,255,192,0,15,240,0,0,255,255,255,128,0,31,208,0,0,252,0,0,0,0,63,192,0,0,252,0,0,0,0,191,64,106,170,254,170,168,0,1,255,64,127,255,255,255,252,0,3,255,64,127,255,255,255,252,0,11,255,64,127,0,0,0,252,0,47,255,64,127,0,0,0,252,0,127,255,64,127,0,0,0,252,0,255,127,64,127,255,255,255,252,0,190,63,64,127,255,255,255,252,0,60,63,64,127,85,85,86,252,0,16,63,64,127,0,0,0,252,0,0,63,64,127,0,0,0,252,0,0,63,64,127,255,255,255,252,0,0,63,64,127,255,255,255,252,0,0,63,64,127,85,85,86,252,0,0,63,64,127,0,0,0,252,0,0,63,64,127,0,0,0,252,0,0,63,64,127,255,255,255,252,0,0,63,64,127,255,255,255,252,0,0,63,64,42,170,170,170,168,0,0,63,64,0,96,0,9,0,0,0,63,64,2,255,0,191,128,0,0,63,64,15,253,0,127,244,0,0,63,64,191,240,0,15,254,0,0,63,75,255,128,0,2,255,192,0,63,71,253,0,0,0,127,192,0,47,65,224,0,0,0,13,0,0,0,0,0,0,0,0,0,0, + // 0x5099 備 + 153,80,34,35,59,36,1,252,0,2,128,0,248,0,63,0,0,0,7,240,0,252,0,63,0,0,0,11,224,0,252,0,63,0,0,0,15,219,255,255,255,255,255,208,0,31,203,255,255,255,255,255,208,0,63,75,255,255,255,255,255,208,0,127,0,0,252,0,63,0,0,0,254,0,0,252,0,63,0,0,1,253,0,0,248,0,63,0,0,3,253,0,0,0,0,0,0,0,7,253,3,255,255,255,255,255,224,15,253,7,255,255,255,255,255,224,47,253,7,255,255,255,255,255,224,127,253,7,240,0,0,0,0,0,255,253,7,240,0,0,0,0,0,253,189,7,240,170,170,170,170,64,120,189,7,241,255,255,255,255,128,48,189,7,241,255,255,255,255,128,0,189,7,241,244,7,208,15,128,0,189,7,225,244,7,208,15,128,0,189,7,225,248,7,208,31,128,0,189,7,225,255,255,255,255,128,0,189,7,225,255,255,255,255,128,0,189,11,209,244,7,208,15,128,0,189,11,209,244,7,208,15,128,0,189,15,193,248,7,208,31,128,0,189,15,193,255,255,255,255,128,0,189,31,193,255,255,255,255,128,0,189,47,129,244,7,208,15,128,0,189,63,65,244,7,208,15,128,0,189,127,1,244,7,208,15,128,0,189,254,1,244,7,210,175,128,0,189,124,1,244,7,211,255,64,0,189,24,1,244,7,211,253,0,0,0,0,0,0,0,0,0,0, + // 0x50b3 傳 + 179,80,34,34,50,36,1,253,0,0,224,0,0,189,0,0,0,0,1,252,0,0,253,0,0,0,0,3,254,170,170,254,170,170,128,0,3,255,255,255,255,255,255,192,0,11,247,255,255,255,255,255,192,0,15,208,0,0,253,0,0,0,0,63,192,0,0,253,0,0,0,0,127,64,255,255,255,255,255,0,0,255,0,255,255,255,255,255,0,2,255,0,252,0,253,0,127,0,3,255,0,252,0,253,0,127,0,15,255,0,255,255,255,255,255,0,47,255,0,255,255,255,255,255,0,191,255,0,252,0,253,0,127,0,255,191,0,252,0,253,0,127,0,189,127,0,255,255,255,255,255,0,56,127,0,255,255,255,255,255,0,16,127,0,0,0,253,7,244,0,0,127,0,0,0,253,2,253,0,0,127,11,255,255,255,255,255,64,0,127,7,255,255,255,255,255,208,0,127,2,170,85,85,47,135,192,0,127,0,0,0,0,47,129,0,0,127,10,170,170,170,191,234,144,0,127,31,255,255,255,255,255,224,0,127,31,255,255,255,255,255,224,0,127,0,11,128,0,47,128,0,0,127,0,31,224,0,47,128,0,0,127,0,11,248,0,47,128,0,0,127,0,2,253,0,47,128,0,0,127,0,0,191,0,47,128,0,0,127,0,0,56,127,255,128,0,0,127,0,0,0,63,255,64,0,0,126,0,0,0,47,249,0,0, + // 0x50be 傾 + 190,80,34,35,59,36,1,252,0,5,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,192,0,191,255,255,255,208,0,47,128,0,191,255,255,255,208,0,63,95,128,191,255,255,255,208,0,127,31,128,0,3,248,0,0,0,190,31,128,0,3,240,0,0,0,253,31,128,10,171,250,170,0,2,252,31,128,15,255,255,255,64,3,252,31,130,79,255,255,255,64,11,252,31,139,239,192,0,47,64,15,252,31,175,223,192,0,47,64,63,252,31,255,79,192,0,47,64,127,252,31,253,15,255,255,255,64,255,252,31,240,15,255,255,255,64,252,252,31,192,15,213,85,127,64,116,252,31,128,15,192,0,47,64,48,252,31,128,15,192,0,47,64,0,252,31,128,15,213,85,127,64,0,252,31,128,15,255,255,255,64,0,252,31,129,79,255,255,255,64,0,252,31,130,255,192,0,47,64,0,252,31,130,255,192,0,47,64,0,252,31,130,255,192,0,47,64,0,252,31,131,255,255,255,255,64,0,252,31,255,239,255,255,255,64,0,252,15,255,218,170,170,170,0,0,252,7,255,64,96,0,128,0,0,252,0,0,2,253,7,240,0,0,252,0,0,15,252,7,253,0,0,252,0,0,191,240,0,255,64,0,252,0,7,255,128,0,63,224,0,252,0,7,252,0,0,15,208,0,252,0,1,208,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x5132 儲 + 50,81,34,34,50,36,1,253,0,10,64,0,0,7,224,0,0,0,15,218,170,160,7,224,15,128,0,15,207,255,240,7,224,15,192,0,47,143,255,240,7,224,47,128,0,63,0,0,0,175,250,127,0,0,127,0,0,0,255,255,191,0,0,253,42,170,169,255,255,253,0,1,252,63,255,253,7,224,252,0,3,252,63,255,253,7,226,244,0,7,252,0,0,0,7,227,240,0,15,252,0,0,0,7,239,208,0,47,252,10,170,163,255,255,255,224,63,252,15,255,247,255,255,255,224,255,252,15,255,246,170,255,186,144,253,252,0,0,0,2,252,176,0,120,252,0,0,0,11,241,252,0,48,252,10,170,160,31,208,63,0,0,252,15,255,244,191,128,28,0,0,252,15,255,246,255,255,255,64,0,252,0,0,15,255,255,255,64,0,252,0,0,7,255,255,255,64,0,252,10,170,170,143,192,47,64,0,252,31,255,252,15,192,47,64,0,252,31,255,252,15,192,47,64,0,252,31,64,252,15,255,255,64,0,252,31,64,252,15,255,255,64,0,252,31,64,252,15,213,127,64,0,252,31,64,252,15,192,47,64,0,252,31,64,252,15,192,47,64,0,252,31,255,252,15,192,47,64,0,252,31,255,252,15,255,255,64,0,252,31,234,168,15,255,255,64,0,252,31,64,0,15,234,191,64,0,252,10,0,0,15,192,47,0, + // 0x5145 充 + 69,81,33,35,59,36,2,252,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,15,240,0,20,0,0,0,0,0,31,208,0,124,0,0,0,0,0,63,192,1,255,64,0,0,0,0,63,64,0,127,208,0,0,0,0,191,0,0,31,244,0,0,0,0,253,0,0,7,253,0,0,0,2,254,170,255,255,255,64,0,31,255,255,255,255,255,255,208,0,31,255,255,255,255,255,255,240,0,31,255,255,234,149,80,7,252,0,9,80,0,0,0,0,2,248,0,0,0,31,192,3,240,0,208,0,0,0,47,192,3,240,0,0,0,0,0,63,192,3,240,0,0,0,0,0,63,128,3,240,0,0,0,0,0,63,128,3,240,0,0,0,0,0,127,64,3,240,0,0,0,0,0,191,0,3,240,0,16,0,0,0,255,0,3,240,0,46,0,0,2,253,0,3,240,0,47,64,0,7,252,0,3,240,0,47,64,0,31,244,0,3,240,0,47,64,0,191,224,0,3,240,0,63,0,27,255,128,0,3,248,0,127,0,255,253,0,0,3,255,255,255,0,191,224,0,0,1,255,255,253,0,62,0,0,0,0,127,255,244,0,0,0,0,0,0,0,0,0,0, + // 0x5148 先 + 72,81,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,11,144,11,224,0,0,0,0,15,224,11,224,0,0,0,0,15,208,11,224,0,0,0,0,31,192,11,224,0,0,0,0,63,192,11,240,0,0,0,0,63,255,255,255,255,255,192,0,191,255,255,255,255,255,192,0,255,255,255,255,255,255,192,1,252,0,11,224,0,0,0,3,248,0,11,224,0,0,0,11,240,0,11,224,0,0,0,15,224,0,11,224,0,0,0,3,192,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,0,0,11,240,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,63,128,3,240,0,0,0,0,63,64,3,240,0,0,0,0,63,64,3,240,0,0,0,0,127,0,3,240,0,0,0,0,191,0,3,240,0,0,0,0,254,0,3,240,0,0,0,2,252,0,3,240,0,52,0,7,252,0,3,240,0,63,0,15,240,0,3,240,0,63,0,127,224,0,3,240,0,63,2,255,192,0,3,244,0,191,111,254,0,0,3,255,255,254,255,248,0,0,2,255,255,252,63,192,0,0,0,191,255,244,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,34,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,1,0,0,0,109,0,3,248,0,7,224,0,0,255,0,3,248,0,15,240,0,0,127,64,3,248,0,15,224,0,0,63,192,3,248,0,47,192,0,0,31,208,3,248,0,63,128,0,0,15,240,3,248,0,127,0,0,0,7,244,3,248,0,254,0,0,0,3,248,3,248,2,252,0,0,0,2,252,3,248,3,248,0,0,0,1,208,3,248,0,96,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,15,240,0,252,0,0,0,0,0,15,224,0,252,0,0,0,0,0,15,208,0,252,0,0,0,0,0,15,208,0,252,0,0,0,0,0,31,192,0,252,0,0,0,0,0,47,192,0,252,0,0,0,0,0,63,192,0,252,0,0,0,0,0,127,64,0,252,0,0,0,0,0,255,0,0,252,0,10,0,0,2,254,0,0,252,0,11,208,0,7,252,0,0,252,0,11,208,0,31,244,0,0,252,0,15,208,0,191,224,0,0,252,0,15,192,27,255,128,0,0,253,0,31,192,127,254,0,0,0,255,255,255,128,47,240,0,0,0,191,255,255,64,14,0,0,0,0,31,255,253,0,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,34,32,32,36,1,253,0,2,255,255,252,0,0,0,0,0,2,255,255,252,0,0,0,0,0,2,255,255,252,0,0,0,0,0,1,85,85,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,5,255,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,63,223,192,0,0,0,0,0,0,127,79,224,0,0,0,0,0,0,255,11,240,0,0,0,0,0,1,254,7,248,0,0,0,0,0,3,253,3,252,0,0,0,0,0,7,252,2,254,0,0,0,0,0,15,244,0,255,0,0,0,0,0,31,240,0,191,192,0,0,0,0,63,192,0,63,224,0,0,0,0,255,128,0,31,244,0,0,0,2,255,0,0,11,252,0,0,0,11,253,0,0,3,255,0,0,0,47,244,0,0,0,255,208,0,0,191,224,0,0,0,127,244,0,3,255,128,0,0,0,31,254,0,47,254,0,0,0,0,7,255,208,127,248,0,0,0,0,0,255,192,15,208,0,0,0,0,0,47,0,2,0,0,0,0,0,0,5,0, + // 0x5168 全 + 104,81,34,33,41,36,1,254,0,0,0,7,252,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,127,191,192,0,0,0,0,0,1,255,15,240,0,0,0,0,0,7,252,7,252,0,0,0,0,0,15,240,1,255,0,0,0,0,0,63,208,0,127,192,0,0,0,1,255,64,0,31,244,0,0,0,7,252,0,0,3,254,0,0,0,47,240,0,0,0,255,192,0,0,255,192,0,0,0,47,244,0,11,254,0,0,0,0,7,255,0,63,255,255,255,255,255,255,255,208,127,235,255,255,255,255,254,191,192,31,71,255,255,255,255,254,31,64,8,0,0,3,248,0,0,1,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64, + // 0x5171 共 + 113,81,32,34,16,36,2,253,0,0,168,0,0,42,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,1,253,0,0,191,64,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,85,85,254,85,85,191,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,120,0,0,0,0,255,128,3,255,0,0,0,3,255,0,0,255,208,0,0,15,252,0,0,47,248,0,0,127,240,0,0,11,255,0,2,255,192,0,0,1,255,192,31,254,0,0,0,0,127,240,127,244,0,0,0,0,15,253,47,208,0,0,0,0,3,248,10,0,0,0,0,0,0,144, + // 0x5177 具 + 119,81,32,33,8,36,2,253,0,26,170,170,170,170,168,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,149,85,85,86,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,149,85,85,86,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,128,0,0,1,252,0,0,47,255,255,255,255,252,0,0,47,255,255,255,255,252,0,0,26,170,170,170,170,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,4,0,0,0,0,0,0,0,63,0,0,184,0,0,0,2,255,192,3,255,208,0,0,127,255,64,1,255,254,0,11,255,248,0,0,31,255,228,255,255,64,0,0,0,191,254,63,228,0,0,0,0,11,252,13,0,0,0,0,0,0,160, + // 0x5197 冗 + 151,81,33,32,32,36,2,253,21,85,85,85,85,85,85,84,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,63,64,0,0,0,0,1,252,0,0,0,255,255,255,255,0,0,0,0,0,255,255,255,255,0,0,0,0,0,255,255,255,255,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,1,252,0,0,191,0,0,0,0,2,252,0,0,191,0,0,0,0,3,252,0,0,191,0,40,0,0,11,244,0,0,191,0,47,64,0,15,240,0,0,191,0,47,64,0,63,208,0,0,191,0,63,64,1,255,192,0,0,191,0,63,64,11,255,0,0,0,191,0,127,0,191,252,0,0,0,191,255,255,0,255,224,0,0,0,63,255,254,0,127,64,0,0,0,31,255,248,0,36,0,0,0,0,0,85,64,0, + // 0x51b7 冷 + 183,81,34,34,50,36,1,253,0,0,0,0,7,244,0,0,0,0,0,0,0,15,252,0,0,0,7,0,0,0,47,255,0,0,0,31,208,0,0,63,255,128,0,0,63,244,0,0,255,47,208,0,0,15,254,0,3,253,15,244,0,0,2,255,128,11,248,3,253,0,0,0,191,192,47,240,1,255,64,0,0,47,64,191,192,0,127,224,0,0,9,2,255,0,0,31,248,0,0,0,11,252,0,0,7,255,64,0,0,63,255,255,255,253,255,224,0,1,255,203,255,255,252,63,208,0,1,255,11,255,255,252,11,128,0,0,184,0,0,0,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,255,255,255,255,252,0,0,15,211,255,255,255,255,252,0,0,31,227,255,255,255,255,252,0,0,63,192,0,63,128,1,252,0,0,191,64,0,63,128,1,252,0,0,255,0,0,63,128,1,252,0,3,252,0,0,63,128,1,252,0,11,248,0,0,63,128,1,252,0,31,240,0,0,63,128,1,252,0,63,208,0,0,63,130,255,252,0,127,128,0,0,63,129,255,248,0,31,0,0,0,63,128,255,224,0,5,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,47,64,0,0,0, + // 0x51c6 准 + 198,81,34,34,50,36,1,253,0,0,0,0,228,0,100,0,0,0,0,0,2,252,0,191,0,0,2,0,0,3,248,0,254,0,0,15,208,0,7,240,0,252,0,0,31,248,0,15,224,1,252,0,0,7,255,0,31,208,3,244,0,0,0,255,192,63,192,3,240,0,0,0,47,224,127,255,255,255,255,128,0,11,192,255,255,255,255,255,128,0,2,2,255,255,255,255,255,128,0,0,7,255,64,15,208,0,0,0,0,15,255,64,15,192,0,0,0,0,63,255,64,15,192,0,0,0,0,255,255,64,15,192,0,0,0,0,127,63,255,255,255,255,0,0,0,28,63,255,255,255,255,0,0,0,0,63,255,255,255,255,0,0,0,0,63,64,15,192,0,0,0,1,0,63,64,15,192,0,0,0,11,64,63,64,15,192,0,0,0,15,192,63,64,15,192,0,0,0,47,192,63,64,15,192,0,0,0,127,128,63,255,255,255,255,0,0,255,0,63,255,255,255,255,0,2,253,0,63,255,255,255,255,0,3,252,0,63,64,15,192,0,0,15,240,0,63,64,15,192,0,0,47,224,0,63,64,15,192,0,0,127,192,0,63,64,15,192,0,0,63,0,0,63,255,255,255,255,224,10,0,0,63,255,255,255,255,224,0,0,0,63,255,255,255,255,224,0,0,0,63,64,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x51fa 出 + 250,81,28,35,245,36,4,252,0,0,0,169,0,0,0,0,0,0,253,0,0,0,0,0,0,253,0,0,0,26,64,0,253,0,1,164,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,128,0,253,0,3,248,47,255,255,255,255,255,248,47,255,255,255,255,255,248,47,255,255,255,255,255,248,0,0,0,254,0,0,0,0,0,0,253,0,0,0,84,0,0,253,0,0,21,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,253,0,0,253,0,0,127,254,85,85,254,85,85,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,0,0,0,0,0,127,253,0,0,0,0,0,127,0,0,0,0,0,0,0, + // 0x5206 分 + 6,82,34,34,50,36,1,252,0,0,15,144,0,47,0,0,0,0,0,31,224,0,191,64,0,0,0,0,63,192,0,63,192,0,0,0,0,127,192,0,31,224,0,0,0,0,255,64,0,15,244,0,0,0,2,254,0,0,7,252,0,0,0,7,252,0,0,2,255,0,0,0,15,244,0,0,0,255,128,0,0,63,240,0,0,0,63,224,0,0,255,192,0,0,0,47,244,0,3,255,64,0,0,0,11,253,0,15,253,0,0,0,0,3,255,128,127,253,85,85,85,85,85,255,224,255,223,255,255,255,255,255,127,208,63,79,255,255,255,255,255,15,64,13,15,255,255,255,255,255,1,0,0,0,0,127,0,0,127,0,0,0,0,0,191,0,0,127,0,0,0,0,0,255,0,0,127,0,0,0,0,0,254,0,0,191,0,0,0,0,0,253,0,0,191,0,0,0,0,2,252,0,0,191,0,0,0,0,3,252,0,0,191,0,0,0,0,7,248,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,63,224,0,0,254,0,0,0,0,191,192,0,0,253,0,0,0,3,255,64,0,1,253,0,0,0,31,253,0,0,2,252,0,0,1,255,244,0,21,23,252,0,0,15,255,208,0,63,255,248,0,0,7,254,0,0,63,255,240,0,0,2,224,0,0,47,255,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x5217 列 + 23,82,32,34,16,36,1,252,0,0,0,0,0,0,0,127,47,255,255,255,252,0,0,127,47,255,255,255,252,0,0,127,47,255,255,255,252,169,0,127,0,3,244,0,0,253,0,127,0,7,240,0,0,253,0,127,0,11,240,0,0,253,0,127,0,15,224,0,0,253,0,127,0,15,208,0,0,253,0,127,0,47,255,255,224,253,0,127,0,63,255,255,240,253,0,127,0,127,255,255,224,253,0,127,0,254,0,15,208,253,0,127,1,252,0,15,192,253,0,127,3,248,0,31,192,253,0,127,11,248,0,47,128,253,0,127,31,255,64,63,64,253,0,127,63,255,224,127,0,253,0,127,255,31,253,190,0,253,0,127,61,3,255,253,0,253,0,127,4,0,191,252,0,253,0,127,0,0,31,248,0,253,0,127,0,0,11,240,0,253,0,127,0,0,31,224,0,84,0,127,0,0,63,192,0,0,0,127,0,0,255,64,0,0,0,127,0,2,254,0,0,0,0,127,0,11,252,0,0,0,0,127,0,63,240,0,0,0,0,127,1,255,192,0,0,1,85,191,11,255,0,0,0,3,255,255,3,252,0,0,0,2,255,253,0,208,0,0,0,1,255,224,0,0,0,0,0,0,0,0, + // 0x521d 初 + 29,82,33,34,50,36,1,253,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,15,255,255,255,255,192,0,15,192,15,255,255,255,255,192,0,15,192,15,255,255,255,255,192,0,15,208,0,2,252,0,47,192,63,255,255,208,1,252,0,47,128,63,255,255,240,2,252,0,47,128,63,255,255,208,2,252,0,47,128,0,0,31,192,2,252,0,63,128,0,0,63,64,2,248,0,63,128,0,0,191,0,2,248,0,63,128,0,0,253,16,3,248,0,63,128,0,3,248,120,3,248,0,63,128,0,11,240,253,3,244,0,63,128,0,31,242,244,3,244,0,63,64,0,63,255,224,7,240,0,63,64,0,255,255,128,7,240,0,63,64,3,255,255,128,11,224,0,63,64,15,255,239,224,15,224,0,63,64,127,239,199,248,15,208,0,63,64,191,143,194,244,47,192,0,63,0,62,15,192,224,63,128,0,127,0,40,15,192,0,127,64,0,127,0,0,15,192,0,255,0,0,127,0,0,15,192,1,253,0,0,191,0,0,15,192,7,252,0,0,254,0,0,15,192,15,244,0,0,254,0,0,15,192,63,224,0,2,253,0,0,15,193,255,192,15,255,252,0,0,15,193,255,0,15,255,248,0,0,15,192,124,0,11,255,224,0,0,15,192,16,0,1,84,0,0, + // 0x5230 到 + 48,82,32,33,8,36,1,253,0,0,0,0,0,0,0,63,63,255,255,255,252,0,0,63,63,255,255,255,252,0,0,63,63,255,255,255,252,126,0,63,0,15,240,0,0,126,0,63,0,15,208,0,0,126,0,63,0,47,192,60,0,126,0,63,0,63,192,254,0,126,0,63,0,63,64,63,64,126,0,63,0,127,0,47,192,126,0,63,0,254,0,15,240,126,0,63,63,255,255,255,244,126,0,63,63,255,255,255,252,126,0,63,63,255,255,255,253,126,0,63,5,85,0,0,126,126,0,63,0,0,190,0,32,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,15,255,255,255,240,126,0,63,15,255,255,255,240,126,0,63,15,255,255,255,240,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,126,0,63,0,0,190,0,0,0,0,63,0,0,190,0,0,0,0,63,0,0,190,0,88,0,0,63,0,0,191,255,252,0,0,63,26,255,255,255,252,0,0,63,127,255,255,255,248,1,85,191,127,255,250,80,0,3,255,255,62,148,0,0,0,1,255,253,0,0,0,0,0,0,255,228, + // 0x5236 制 + 54,82,33,34,50,36,1,253,0,0,47,0,0,0,0,21,0,1,248,63,64,0,0,0,63,64,2,248,63,64,0,0,0,63,64,3,244,63,64,0,3,224,63,64,3,240,63,64,0,3,240,63,64,7,255,255,255,252,3,240,63,64,15,255,255,255,252,3,240,63,64,31,255,255,255,252,3,240,63,64,47,192,63,64,0,3,240,63,64,63,64,63,64,0,3,240,63,64,127,0,63,64,0,3,240,63,64,10,0,63,64,0,3,240,63,64,127,255,255,255,255,131,240,63,64,127,255,255,255,255,131,240,63,64,127,255,255,255,255,131,240,63,64,0,0,63,64,0,3,240,63,64,0,0,63,64,0,3,240,63,64,0,0,63,64,0,3,240,63,64,15,255,255,255,254,3,240,63,64,15,255,255,255,254,3,240,63,64,15,255,255,255,254,3,240,63,64,15,192,63,64,190,3,240,63,64,15,192,63,64,190,3,240,63,64,15,192,63,64,190,2,160,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,64,190,0,0,63,64,15,192,63,95,253,0,0,63,64,15,192,63,79,252,0,0,63,64,15,192,63,79,228,0,85,127,64,0,0,63,64,0,0,255,255,0,0,0,63,64,0,0,191,254,0,0,0,63,64,0,0,63,228,0, + // 0x5237 刷 + 55,82,32,34,16,36,1,253,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,63,7,255,255,255,254,0,0,63,7,255,255,255,254,5,64,63,7,255,255,255,254,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,224,0,0,190,15,192,63,7,255,255,255,254,15,192,63,7,255,255,255,254,15,192,63,7,255,255,255,254,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,224,3,240,0,15,192,63,7,239,255,255,255,15,192,63,7,239,255,255,255,15,192,63,7,239,255,255,255,15,192,63,7,239,67,240,63,15,192,63,11,223,67,240,63,15,192,63,11,223,67,240,63,15,192,63,11,223,67,240,63,15,192,63,15,207,67,240,63,15,192,63,15,207,67,240,63,10,128,63,15,207,67,240,63,0,0,63,31,143,67,240,63,0,0,63,31,143,67,247,254,0,0,63,63,79,67,243,253,0,0,63,63,15,67,241,160,0,0,63,190,0,3,240,0,0,85,191,189,0,3,240,0,0,255,255,28,0,3,240,0,0,191,254,0,0,3,240,0,0,127,228, + // 0x5275 創 + 117,82,32,35,24,36,1,252,0,0,26,64,0,0,0,0,0,0,127,224,0,0,0,63,0,0,255,252,0,0,0,63,0,3,254,255,64,0,0,63,0,11,244,127,208,42,0,63,0,47,224,31,244,63,0,63,0,191,128,3,253,63,0,63,3,255,255,255,255,63,0,63,31,250,255,255,60,63,0,63,191,209,85,85,16,63,0,63,63,64,0,0,0,63,0,63,8,255,255,255,244,63,0,63,0,255,255,255,244,63,0,63,0,253,85,87,244,63,0,63,0,252,0,2,244,63,0,63,0,252,0,2,244,63,0,63,0,255,255,255,244,63,0,63,0,255,255,255,244,63,0,63,0,252,0,2,244,63,0,63,0,253,85,87,244,63,0,63,0,255,255,255,244,63,0,63,1,255,255,255,244,63,0,63,2,244,0,0,0,63,0,63,2,244,0,0,0,63,0,63,3,255,255,255,252,63,0,63,3,255,255,255,252,0,0,63,7,255,213,85,252,0,0,63,11,239,128,0,252,0,0,63,15,223,128,0,252,0,0,63,47,143,128,0,252,0,0,63,127,15,255,255,252,1,85,191,125,15,255,255,252,3,255,255,12,15,234,170,252,1,255,253,0,15,128,0,168,0,255,228,0,0,0,0,0,0,0,0, + // 0x529b 力 + 155,82,31,35,24,36,2,252,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,21,85,85,255,85,85,87,244,0,0,0,254,0,0,3,244,0,0,0,254,0,0,3,244,0,0,0,253,0,0,3,244,0,0,1,252,0,0,3,240,0,0,2,252,0,0,7,240,0,0,3,252,0,0,7,240,0,0,3,248,0,0,7,240,0,0,11,244,0,0,11,240,0,0,15,240,0,0,11,240,0,0,31,224,0,0,11,240,0,0,63,192,0,0,15,224,0,0,191,192,0,0,15,224,0,0,255,0,0,0,15,208,0,3,254,0,0,0,15,208,0,11,252,0,0,0,31,192,0,47,244,0,0,0,47,192,0,191,208,0,0,0,63,192,3,255,128,0,0,0,63,128,31,254,0,0,21,85,255,64,191,244,0,0,15,255,255,0,127,208,0,0,15,255,253,0,30,0,0,0,11,255,224,0,0,0,0,0,0,0,0,0, + // 0x52a0 加 + 160,82,32,34,16,36,1,253,0,5,64,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,2,255,255,255,21,95,213,85,2,255,255,255,63,255,255,255,194,255,255,255,63,255,255,255,194,248,0,191,63,255,255,255,194,248,0,191,0,31,192,31,194,248,0,191,0,31,192,31,130,248,0,191,0,47,128,31,130,248,0,191,0,47,128,47,130,248,0,191,0,47,128,47,130,248,0,191,0,47,128,47,130,248,0,191,0,63,64,47,130,248,0,191,0,63,64,47,130,248,0,191,0,63,0,47,130,248,0,191,0,63,0,47,130,248,0,191,0,127,0,47,130,248,0,191,0,190,0,63,66,248,0,191,0,190,0,63,66,248,0,191,0,253,0,63,66,248,0,191,1,252,0,63,66,248,0,191,2,252,0,63,66,248,0,191,3,244,0,63,2,248,0,191,7,240,0,63,2,248,0,191,15,240,0,127,2,255,255,255,31,208,0,255,2,255,255,255,63,193,255,254,2,255,255,255,191,64,255,252,2,248,0,191,46,0,255,244,2,248,0,191,8,0,20,0,1,84,0,0, + // 0x52d5 動 + 213,82,33,35,59,36,1,252,0,0,0,6,64,5,64,0,0,0,86,175,255,192,15,208,0,0,63,255,255,255,224,15,208,0,0,47,255,254,148,0,15,208,0,0,5,64,252,0,0,15,208,0,0,0,0,252,0,0,15,208,0,0,21,85,254,85,80,15,208,0,0,127,255,255,255,244,15,208,0,0,127,255,255,255,249,95,208,0,0,0,0,252,0,15,255,255,255,128,0,0,252,0,15,255,255,255,128,31,255,255,255,251,255,255,255,128,31,255,255,255,240,15,192,47,128,31,64,252,3,240,15,192,47,128,31,64,252,3,240,15,192,47,128,31,255,255,255,240,31,192,47,128,31,255,255,255,240,31,192,47,128,31,64,252,3,240,31,128,47,128,31,64,252,3,240,47,128,47,64,31,64,253,3,240,63,64,63,64,31,255,255,255,240,63,0,63,64,31,255,255,255,240,63,0,63,64,0,0,252,0,0,191,0,63,64,0,0,252,0,0,254,0,63,64,47,255,255,255,240,253,0,63,0,47,255,255,255,242,252,0,63,0,5,85,254,85,83,248,0,63,0,0,0,252,0,11,240,0,127,0,0,0,252,22,175,224,0,127,0,0,86,255,255,255,192,0,190,0,127,255,255,255,255,128,0,254,0,127,255,254,171,254,3,255,253,0,58,148,0,2,252,1,255,252,0,0,0,0,0,160,0,255,224,0,0,0,0,0,0,0,0,0,0, + // 0x5316 化 + 22,83,34,33,41,36,1,253,0,0,47,128,190,0,0,0,0,0,0,63,192,190,0,0,0,0,0,0,191,64,190,0,0,0,0,0,0,255,0,190,0,0,0,0,0,2,253,0,190,0,0,0,0,0,3,252,0,190,0,0,0,0,0,15,240,0,190,0,0,48,0,0,31,224,0,190,0,0,252,0,0,63,208,0,190,0,7,255,0,0,255,208,0,190,0,47,253,0,3,255,208,0,190,1,255,240,0,11,255,208,0,190,11,255,64,0,47,255,208,0,190,127,248,0,0,191,239,208,0,191,255,208,0,0,255,143,208,0,191,253,0,0,0,127,15,208,0,191,224,0,0,0,60,15,208,0,191,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,0,0,0,15,208,0,190,0,0,7,128,0,15,208,0,190,0,0,11,224,0,15,208,0,190,0,0,11,224,0,15,208,0,190,0,0,11,208,0,15,208,0,191,0,0,15,208,0,15,208,0,127,64,0,47,192,0,15,208,0,63,255,255,255,192,0,15,208,0,63,255,255,255,64,0,15,208,0,11,255,255,253,0,0,10,128,0,0,0,0,0,0, + // 0x534a 半 + 74,83,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,120,0,15,224,0,62,0,2,252,0,15,224,0,127,192,0,254,0,15,224,0,191,0,0,191,64,15,224,0,254,0,0,63,192,15,224,2,252,0,0,47,208,15,224,3,248,0,0,15,240,15,224,11,240,0,0,11,240,15,224,31,208,0,0,7,144,15,224,7,192,0,0,0,0,15,224,0,0,0,1,85,85,95,229,85,85,80,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,85,85,85,95,245,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x5354 協 + 84,83,33,35,59,36,1,252,0,127,0,0,0,189,0,0,0,0,127,0,0,0,253,0,0,0,0,127,0,0,0,252,0,0,0,0,127,0,0,0,252,0,0,0,0,127,0,47,255,255,255,254,0,0,127,0,47,255,255,255,254,0,0,127,0,26,171,254,170,254,0,0,127,0,0,3,240,0,189,0,0,127,0,0,11,224,0,189,0,0,127,0,0,31,192,0,252,0,191,255,255,0,63,128,0,252,0,191,255,255,1,255,0,2,252,0,191,255,255,27,252,3,255,248,0,0,127,0,255,224,1,255,240,0,0,127,0,127,64,0,170,64,0,0,127,0,36,0,0,0,0,0,0,127,0,47,0,0,63,0,0,0,127,0,47,0,0,63,0,0,0,127,0,47,0,0,63,0,0,0,127,10,191,170,138,191,170,128,0,127,15,255,255,207,255,255,192,0,127,15,255,255,207,255,255,192,0,127,0,63,15,192,126,15,192,0,127,0,62,15,192,189,15,192,0,127,0,125,15,192,188,15,192,0,127,0,189,15,192,252,15,192,0,127,0,252,15,128,248,15,192,0,127,0,248,15,130,244,15,128,0,127,2,244,15,131,240,15,128,0,127,3,240,31,139,224,15,128,0,127,11,208,31,95,192,31,64,0,127,47,198,191,127,134,191,64,0,127,47,3,255,62,7,255,0,0,127,9,3,248,8,3,252,0,0,0,0,0,0,0,0,0,0, + // 0x5361 卡 + 97,83,32,34,16,36,2,253,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,255,255,255,0,0,0,0,47,255,255,255,0,0,0,0,47,255,255,255,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,111,213,85,85,85,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,238,0,0,0,0,0,0,47,255,248,0,0,0,0,0,47,255,255,208,0,0,0,0,47,203,255,254,0,0,0,0,47,192,111,255,208,0,0,0,47,192,1,255,192,0,0,0,47,192,0,31,64,0,0,0,47,192,0,1,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x5370 印 + 112,83,30,34,16,36,3,253,0,0,6,0,0,0,0,0,0,0,127,192,0,0,0,0,0,7,255,224,85,85,85,80,17,191,255,145,255,255,255,240,127,255,248,1,255,255,255,240,127,254,64,1,255,255,255,240,127,144,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,64,0,1,252,0,3,240,127,255,255,209,252,0,3,240,127,255,255,209,252,0,3,240,127,255,255,209,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,0,0,1,252,0,3,240,127,255,255,225,252,0,7,240,127,255,255,225,252,15,255,240,127,255,255,225,252,11,255,240,127,64,0,1,252,7,255,192,127,0,0,1,252,2,148,0,127,0,0,1,252,0,0,0,21,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0, + // 0x5378 卸 + 120,83,32,34,16,36,1,253,0,62,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,127,0,0,2,255,255,255,0,254,0,0,2,255,255,255,0,255,255,255,226,255,255,255,2,255,255,255,226,252,0,63,7,255,255,255,226,248,0,63,15,224,126,0,2,248,0,63,47,192,126,0,2,248,0,63,63,128,126,0,2,248,0,63,15,0,126,0,2,248,0,63,0,0,126,0,2,248,0,63,63,255,255,255,242,248,0,63,63,255,255,255,242,248,0,63,63,255,255,255,242,248,0,63,0,0,126,0,2,248,0,63,0,0,126,0,2,248,0,63,1,80,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,127,255,194,248,0,63,3,224,127,255,194,248,0,63,3,224,127,255,194,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,0,63,3,224,126,0,2,248,63,255,3,224,126,6,178,248,47,255,3,224,191,255,246,248,31,253,27,255,255,255,246,248,5,64,191,255,255,254,82,248,0,0,191,255,233,0,2,248,0,0,126,144,0,0,2,248,0,0,0,0,0,0,2,248,0,0,0,0,0,0,2,248,0,0, + // 0x537b 卻 + 123,83,32,34,16,36,1,253,0,0,21,0,0,0,0,0,0,0,255,128,0,0,0,0,0,2,255,240,1,255,255,255,0,7,255,252,1,255,255,255,0,31,242,255,1,255,255,255,0,127,192,191,209,252,0,63,1,255,0,31,241,252,0,63,11,252,0,11,245,252,0,63,63,240,0,2,225,252,0,63,15,128,106,0,129,252,0,63,5,0,255,192,1,252,0,63,0,2,255,240,1,252,0,63,0,7,255,252,1,252,0,63,0,15,242,255,1,252,0,63,0,63,192,191,193,252,0,63,0,255,64,47,241,252,0,63,3,253,0,11,249,252,0,63,15,244,0,3,245,252,0,63,127,208,0,0,225,252,0,63,191,255,255,255,129,252,0,63,45,255,255,255,65,252,0,63,0,255,255,255,65,252,0,63,0,252,0,47,65,252,0,63,0,252,0,47,65,252,0,63,0,252,0,47,65,252,63,255,0,252,0,47,65,252,47,255,0,252,0,47,65,252,31,252,0,252,0,47,65,252,5,64,0,255,255,255,65,252,0,0,0,255,255,255,65,252,0,0,0,255,255,255,65,252,0,0,0,252,0,47,65,252,0,0,0,252,0,47,65,252,0,0,0,84,0,0,1,248,0,0, + // 0x539f 原 + 159,83,33,32,32,36,1,253,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,252,0,0,31,208,0,0,0,1,252,0,0,47,192,0,0,0,1,252,0,0,63,192,0,0,0,1,252,31,255,255,255,255,240,0,1,252,31,255,255,255,255,240,0,1,252,31,234,170,170,171,240,0,1,252,31,192,0,0,7,240,0,1,252,31,192,0,0,7,240,0,1,252,31,213,85,85,91,240,0,1,252,31,255,255,255,255,240,0,1,252,31,255,255,255,255,240,0,2,252,31,192,0,0,7,240,0,2,248,31,192,0,0,7,240,0,2,248,31,192,0,0,7,240,0,2,248,31,255,255,255,255,240,0,3,244,31,255,255,255,255,240,0,3,244,10,170,175,234,170,160,0,3,244,0,0,15,208,0,0,0,3,240,0,144,15,208,28,0,0,7,240,2,252,15,208,191,0,0,11,240,7,248,15,208,63,208,0,15,224,15,240,15,208,15,244,0,15,208,63,192,15,208,3,252,0,31,192,255,64,15,208,0,255,0,47,199,253,0,15,208,0,127,192,63,79,244,0,15,208,0,31,192,191,2,208,31,255,208,0,10,0,126,0,0,15,255,192,0,0,0,5,0,0,11,254,0,0,0,0, + // 0x53cd 反 + 205,83,32,33,8,36,2,252,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,254,85,85,85,85,85,80,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,254,0,0,0,0,4,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,0,0,253,47,192,0,0,255,0,0,252,15,224,0,1,253,0,0,252,11,240,0,3,252,0,0,252,7,248,0,7,248,0,1,252,3,252,0,15,240,0,1,252,1,254,0,47,224,0,2,252,0,191,128,127,192,0,2,248,0,63,209,255,64,0,3,244,0,31,247,254,0,0,3,244,0,11,255,248,0,0,7,240,0,2,255,240,0,0,11,240,0,2,255,224,0,0,15,208,0,31,255,253,0,0,31,192,0,255,255,255,208,0,63,192,31,255,193,255,254,64,127,70,255,253,0,47,255,249,255,11,255,224,0,7,255,253,125,3,254,0,0,0,47,248,8,1,144,0,0,0,1,176,0,0,0,0,0,0,0,0, + // 0x53d6 取 + 214,83,34,32,32,36,1,253,63,255,255,255,244,0,0,0,0,63,255,255,255,244,0,0,0,0,63,255,255,255,244,0,0,0,0,2,248,0,127,47,255,255,255,64,2,248,0,63,31,255,255,255,64,2,248,0,63,31,255,255,255,64,2,248,0,63,5,149,85,127,0,2,248,0,63,15,208,0,127,0,2,255,255,255,15,224,0,127,0,2,255,255,255,11,240,0,190,0,2,255,255,255,7,240,0,253,0,2,248,0,63,3,244,0,252,0,2,248,0,63,3,248,1,252,0,2,248,0,63,1,252,3,248,0,2,248,0,63,0,253,3,244,0,2,255,255,255,0,255,11,240,0,2,255,255,255,0,127,15,224,0,2,255,255,255,0,63,175,208,0,2,248,0,63,0,31,255,192,0,2,248,0,63,0,15,255,64,0,2,248,0,63,0,11,255,0,0,2,248,0,63,0,3,253,0,0,2,248,26,255,0,7,253,0,0,7,255,255,255,0,15,255,64,0,255,255,255,255,0,63,255,192,0,191,255,254,191,0,255,175,240,0,127,229,0,63,3,255,15,252,0,16,0,0,63,31,252,3,255,64,0,0,0,63,191,240,0,255,224,0,0,0,63,127,128,0,63,208,0,0,0,63,45,0,0,11,128,0,0,0,63,0,0,0,1,0, + // 0x53f0 台 + 240,83,32,34,16,36,2,253,0,0,3,208,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,208,0,9,0,0,0,0,63,192,0,63,64,0,0,0,191,64,0,191,208,0,0,0,254,0,0,31,244,0,0,3,252,0,0,7,254,0,0,7,244,0,0,1,255,64,0,15,245,170,175,255,255,208,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,252,127,255,255,250,170,85,66,255,21,64,0,0,0,0,0,255,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,0,0,0,0,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,191,0,0,0,1,254,0,0,127,0,0,0,0,253,0, + // 0x5408 合 + 8,84,34,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,127,255,192,0,0,0,0,0,1,255,31,240,0,0,0,0,0,7,253,11,252,0,0,0,0,0,31,248,2,255,64,0,0,0,0,127,224,0,191,208,0,0,0,1,255,128,0,47,248,0,0,0,11,254,0,0,7,255,0,0,0,63,248,0,0,1,255,208,0,1,255,208,0,0,0,127,253,0,15,255,255,255,255,255,255,255,128,127,248,255,255,255,255,241,255,224,63,192,255,255,255,255,240,47,192,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,208,0,0,0,127,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,63,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,15,208,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0, + // 0x5426 否 + 38,84,33,32,32,36,1,253,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,0,0,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,248,4,0,0,0,0,0,2,255,248,63,128,0,0,0,0,31,255,248,255,248,0,0,0,1,255,247,248,47,255,64,0,0,31,255,131,248,2,255,240,0,1,255,253,3,248,0,47,254,0,111,255,224,3,248,0,7,255,192,63,254,0,3,248,0,0,191,192,31,224,0,3,248,0,0,31,0,10,0,0,3,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,47,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,192,0,0,47,128,0,0,0,26,128,0, + // 0x544a 告 + 74,84,32,35,24,36,2,252,0,6,64,3,248,0,0,0,0,15,240,3,248,0,0,0,0,15,208,3,248,0,0,0,0,47,192,3,248,0,0,0,0,63,128,3,248,0,0,0,0,191,255,255,255,255,255,208,1,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,11,244,0,3,248,0,0,0,31,240,0,3,248,0,0,0,63,192,0,3,248,0,0,0,31,64,0,3,248,0,0,0,1,0,0,3,248,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,0,0,0,0,191,0,0,127,0,0,0,0,191,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,34,35,59,36,1,252,0,0,0,11,252,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,127,255,128,0,0,0,0,0,1,255,111,224,0,0,0,0,0,7,253,11,252,0,0,0,0,0,47,248,2,255,0,0,0,0,0,255,208,0,191,208,0,0,0,7,255,64,0,31,248,0,0,0,47,252,0,0,3,255,64,0,2,255,255,255,255,255,255,240,0,31,255,223,255,255,255,111,255,64,255,253,15,255,255,255,71,255,240,127,224,0,0,0,0,0,191,208,46,0,0,0,0,0,0,11,128,0,0,0,0,0,0,0,0,0,0,255,255,252,15,255,255,248,0,0,255,255,252,15,255,255,248,0,0,255,255,252,15,255,255,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,252,0,252,15,192,2,248,0,0,255,255,252,15,192,2,248,0,0,255,255,252,15,192,2,248,0,0,255,255,252,15,195,255,244,0,0,252,0,0,15,194,255,240,0,0,252,0,0,15,193,255,144,0,0,252,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,32,34,16,36,1,253,0,0,0,4,0,0,0,0,0,0,1,252,0,0,0,0,0,1,191,255,0,0,0,0,6,255,255,255,64,0,0,0,47,255,255,144,15,255,255,254,15,255,252,0,15,255,255,254,4,1,252,0,15,255,255,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,63,255,255,255,143,192,0,254,63,255,255,255,143,192,0,254,63,255,255,255,143,192,0,254,0,7,252,0,15,192,0,254,0,15,254,0,15,192,0,254,0,15,255,64,15,192,0,254,0,47,255,208,15,192,0,254,0,63,255,240,15,192,0,254,0,191,254,252,15,192,0,254,0,253,252,255,15,192,0,254,3,245,252,63,143,192,0,254,7,241,252,47,15,192,0,254,15,209,252,13,15,192,0,254,63,193,252,0,15,192,0,254,191,65,252,0,15,192,0,254,190,1,252,0,15,255,255,254,60,1,252,0,15,255,255,254,16,1,252,0,15,255,255,254,0,1,252,0,15,208,0,254,0,1,252,0,15,192,0,254,0,1,252,0,15,192,0,254,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0, + // 0x555f 啟 + 95,85,34,35,59,36,1,252,0,0,100,0,0,3,160,0,0,0,1,252,0,0,7,240,0,0,0,0,252,0,0,11,224,0,0,0,0,190,0,0,11,208,0,0,0,0,127,0,0,15,192,0,0,3,255,255,255,192,15,192,0,0,3,255,255,255,192,31,192,0,0,3,255,255,255,192,47,255,255,208,3,240,0,15,192,63,255,255,208,3,240,0,15,192,127,255,255,208,3,240,0,15,192,191,0,190,0,3,240,0,15,192,255,0,189,0,3,240,0,15,194,255,0,253,0,3,255,255,255,195,255,64,252,0,3,255,255,255,203,255,64,252,0,3,255,255,255,223,239,129,252,0,3,240,0,0,7,207,194,248,0,3,240,0,0,1,75,211,244,0,7,240,0,0,0,7,227,240,0,7,250,170,170,144,3,247,240,0,7,239,255,255,224,3,255,208,0,7,239,255,255,224,1,255,192,0,11,223,192,7,224,0,255,192,0,15,223,192,7,224,0,191,64,0,15,207,192,7,224,0,191,0,0,15,207,192,7,224,1,255,128,0,31,143,192,7,224,3,255,208,0,47,143,192,7,224,11,255,240,0,63,79,234,175,224,31,231,248,0,127,15,255,255,224,127,194,254,0,190,15,255,255,226,255,0,255,128,44,15,192,7,235,253,0,63,224,4,15,192,7,227,240,0,15,192,0,5,64,0,1,192,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x55ae 單 + 174,85,32,32,0,36,2,253,7,255,255,252,47,255,255,224,7,255,255,252,47,255,255,224,7,224,1,252,47,64,11,224,7,224,1,252,47,64,11,224,7,224,1,252,47,64,11,224,7,255,255,252,47,255,255,224,7,255,255,252,47,255,255,224,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,64,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,1,252,0,15,224,0,63,128,1,252,0,15,224,0,63,128,1,253,85,95,245,85,127,128,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,1,252,0,15,224,0,63,128,1,252,0,15,224,0,63,128,1,252,0,15,224,0,63,128,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,0,170,170,175,250,170,170,64,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,10,144,0,0,0, + // 0x5634 嘴 + 52,86,33,35,59,36,2,252,0,0,0,2,240,15,192,0,0,0,0,0,3,240,15,192,0,0,0,0,1,131,240,15,192,112,0,127,255,195,211,240,15,194,252,0,127,255,195,211,255,223,239,244,0,127,255,195,211,255,223,255,64,0,124,11,195,211,245,79,244,0,0,124,11,195,211,240,15,192,0,0,124,11,195,211,240,15,192,15,64,124,11,195,211,246,159,192,15,64,124,11,195,255,255,223,229,111,64,124,11,239,255,255,219,255,255,0,124,11,239,255,252,2,255,252,0,124,11,218,67,248,1,0,0,0,124,11,192,11,255,255,192,0,0,124,11,192,31,255,255,208,0,0,124,11,192,127,64,47,128,0,0,124,11,193,255,0,127,64,0,0,124,11,203,255,255,255,255,248,0,124,11,255,255,255,255,255,248,0,127,255,207,190,0,248,2,248,0,127,255,192,126,0,248,2,248,0,127,255,192,127,255,255,255,248,0,124,0,0,127,255,255,255,248,0,124,0,0,190,0,248,2,248,0,124,0,0,189,0,248,2,248,0,40,0,0,254,1,252,2,248,0,0,0,0,255,255,255,255,248,0,0,0,2,255,255,255,255,248,0,0,0,3,248,0,0,2,248,0,0,0,15,240,0,0,2,248,0,0,0,63,208,0,1,87,244,0,0,0,191,64,0,3,255,240,0,0,0,29,0,0,1,255,144,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,34,34,50,36,1,252,1,170,170,168,2,170,170,168,0,2,255,255,252,3,255,255,248,0,2,255,255,252,3,255,255,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,244,0,252,3,240,1,248,0,2,254,170,252,3,250,171,248,0,2,255,255,252,3,255,255,248,0,2,255,255,255,147,255,255,248,0,0,0,0,15,240,0,0,0,0,0,0,0,63,192,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,63,240,0,255,64,0,0,0,1,255,192,0,63,224,0,0,0,11,255,0,0,31,253,0,0,0,191,252,0,0,3,255,208,0,27,255,224,0,0,0,255,253,0,255,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,208,47,255,255,253,11,255,255,255,128,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,252,0,189,11,208,3,240,0,0,255,255,253,11,255,255,240,0,0,255,255,253,11,255,255,240,0,0,255,255,253,11,255,255,240,0,0,252,0,189,11,208,3,240,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,33,35,59,36,2,252,0,0,0,0,0,252,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,85,85,253,85,84,0,0,0,0,255,255,255,255,252,0,127,255,240,255,255,255,255,252,0,127,255,240,0,0,252,0,0,0,127,255,240,7,208,252,47,0,0,125,3,240,7,208,168,47,0,0,125,3,241,91,229,85,127,85,0,125,3,251,255,255,255,255,255,128,125,3,251,255,255,255,255,255,128,125,3,240,7,208,0,47,0,0,125,3,240,7,208,0,47,0,0,125,3,240,0,0,0,0,0,0,125,3,240,127,255,255,255,240,0,125,3,240,127,255,255,255,240,0,125,3,240,126,0,0,3,240,0,125,3,240,126,0,0,3,240,0,125,3,240,127,255,255,255,240,0,125,3,240,127,255,255,255,240,0,125,3,240,126,0,0,3,240,0,127,255,240,126,0,0,3,240,0,127,255,240,127,255,255,255,240,0,127,255,240,127,255,255,255,240,0,125,0,0,126,0,0,3,240,0,125,0,0,126,0,0,3,240,0,61,0,0,127,255,255,255,240,0,0,0,0,127,255,255,255,240,0,0,0,0,2,228,0,248,0,0,0,0,0,31,252,2,255,64,0,0,0,6,255,224,0,127,244,0,0,0,127,255,0,0,11,254,0,0,0,63,228,0,0,0,255,64,0,0,14,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,30,33,8,36,3,253,85,85,85,85,85,85,85,80,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,252,0,7,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,255,255,255,240,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,254,0,0,0,0,0,11,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240, + // 0x56e0 因 + 224,86,30,32,0,36,3,253,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,7,240,253,0,0,26,64,0,7,240,253,0,0,47,64,0,7,240,253,0,0,63,64,0,7,240,253,0,0,63,64,0,7,240,253,0,0,63,0,0,7,240,253,0,0,63,0,0,7,240,253,63,255,255,255,255,199,240,253,63,255,255,255,255,199,240,253,63,255,255,255,255,199,240,253,0,0,127,192,0,7,240,253,0,0,191,208,0,7,240,253,0,0,255,240,0,7,240,253,0,1,255,240,0,7,240,253,0,3,249,252,0,7,240,253,0,7,240,253,0,7,240,253,0,31,240,191,64,7,240,253,0,127,192,63,208,7,240,253,1,255,64,15,248,7,240,253,31,253,0,7,255,135,240,253,63,240,0,0,255,135,240,253,31,128,0,0,47,7,240,253,4,0,0,0,0,7,240,253,0,0,0,0,0,7,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,7,240, + // 0x56fa 固 + 250,86,30,32,0,36,3,253,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,253,0,0,0,0,0,11,240,253,0,0,21,64,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,26,170,191,234,170,139,240,253,47,255,255,255,255,139,240,253,47,255,255,255,255,139,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,0,0,47,128,0,11,240,253,1,170,191,234,164,11,240,253,2,255,255,255,252,11,240,253,2,255,255,255,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,244,0,1,252,11,240,253,2,254,170,170,252,11,240,253,2,255,255,255,252,11,240,253,2,255,255,255,252,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,253,0,0,0,0,0,11,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,254,0,0,0,0,0,11,240,253,0,0,0,0,0,7,240, + // 0x5716 圖 + 22,87,30,34,16,36,3,252,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,252,0,0,0,0,0,3,240,252,0,0,0,0,0,3,240,252,0,255,255,255,240,3,240,252,0,255,255,255,240,3,240,252,0,248,0,3,240,3,240,252,0,248,0,3,240,3,240,252,0,255,255,255,240,3,240,252,0,255,255,255,240,3,240,252,0,0,47,64,0,3,240,252,127,255,255,255,255,211,240,252,127,255,255,255,255,211,240,252,0,0,0,0,0,3,240,252,7,255,255,255,252,3,240,252,7,255,255,255,253,3,240,252,7,208,0,0,125,3,240,252,7,209,170,164,125,3,240,252,7,211,255,248,125,3,240,252,7,211,192,120,125,3,240,252,7,211,192,120,125,3,240,252,7,211,255,248,125,3,240,252,7,209,170,164,125,3,240,252,7,208,0,0,125,3,240,252,7,255,255,255,253,3,240,252,7,255,255,255,253,3,240,252,0,0,0,0,0,3,240,252,0,0,0,0,0,3,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,252,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0, + // 0x5728 在 + 40,87,33,34,50,36,1,253,0,0,0,100,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,47,192,0,0,0,0,0,0,0,127,128,0,20,0,0,0,0,0,255,0,0,190,0,0,0,0,2,253,0,0,190,0,0,0,0,7,252,0,0,190,0,0,0,0,15,240,0,0,190,0,0,0,0,63,208,0,0,190,0,0,0,0,191,192,0,0,190,0,0,0,2,255,192,127,255,255,255,253,0,15,255,192,127,255,255,255,253,0,63,255,192,127,255,255,255,253,0,127,223,192,0,0,254,0,0,0,63,31,192,0,0,190,0,0,0,24,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,190,0,0,0,0,31,192,0,0,254,0,0,0,0,31,195,255,255,255,255,255,128,0,31,195,255,255,255,255,255,128,0,31,195,255,255,255,255,255,128,0,31,192,0,0,0,0,0,0, + // 0x578b 型 + 139,87,32,33,8,36,2,254,0,0,0,0,0,0,3,240,31,255,255,255,224,0,3,240,31,255,255,255,224,190,3,240,31,255,255,255,224,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,0,63,1,252,0,190,3,240,191,255,255,255,248,190,3,240,191,255,255,255,248,190,3,240,191,255,255,255,248,190,3,240,0,190,1,252,0,190,3,240,0,253,1,252,0,190,3,240,1,252,1,252,0,20,3,240,3,248,1,252,0,0,3,240,15,240,1,252,0,0,3,240,127,208,1,252,0,11,255,240,191,128,1,252,0,3,255,240,62,0,0,175,240,3,255,128,4,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x57f7 執 + 247,87,34,35,59,36,1,252,0,3,240,0,0,126,0,0,0,0,3,240,0,0,126,0,0,0,0,3,240,0,0,126,0,0,0,0,3,240,0,0,126,0,0,0,15,255,255,252,0,126,0,0,0,15,255,255,252,0,126,0,0,0,15,255,255,252,0,126,0,0,0,0,3,240,0,0,127,0,0,0,0,3,240,0,255,255,255,244,0,127,255,255,255,255,255,255,244,0,127,255,255,255,128,127,255,244,0,127,255,255,255,128,126,3,244,0,2,224,1,244,0,126,3,244,0,3,240,2,244,0,126,3,244,0,2,244,3,240,0,190,3,244,0,0,248,3,240,32,190,3,244,0,0,252,7,208,189,190,3,244,0,0,252,7,192,255,253,3,244,0,63,255,255,255,127,253,3,244,0,63,255,255,255,11,253,3,244,0,63,255,255,255,2,255,131,244,0,0,3,240,0,2,255,226,244,0,0,3,240,0,3,255,250,244,0,0,3,240,0,3,246,254,244,0,47,255,255,254,11,240,182,244,0,47,255,255,254,15,224,18,244,128,31,255,255,253,47,192,1,248,240,0,3,240,0,127,128,1,248,240,0,3,240,0,255,0,0,252,240,0,3,240,3,253,0,0,252,240,0,3,240,15,248,0,0,191,240,0,3,240,63,240,0,0,127,224,0,3,240,31,192,0,0,63,192,0,3,240,6,0,0,0,11,128,0,0,0,0,0,0,0,0,0, + // 0x584a 塊 + 74,88,34,35,59,36,1,252,0,42,0,0,0,250,0,0,0,0,63,0,0,0,254,0,0,0,0,63,0,0,1,252,0,0,0,0,63,0,0,3,252,0,0,0,0,63,0,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,0,126,0,190,0,127,0,63,255,254,126,0,190,0,127,0,63,255,254,126,0,190,0,127,0,63,255,254,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,0,127,170,255,170,191,0,0,63,0,126,0,190,0,127,0,0,63,0,126,0,190,0,127,0,0,63,0,126,0,190,0,127,0,0,63,0,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,1,0,252,63,65,0,0,0,63,111,1,252,63,75,192,0,0,63,255,65,252,63,75,128,0,1,255,255,2,252,63,79,95,0,111,255,228,2,248,63,79,15,0,191,254,0,3,244,63,95,31,128,63,208,0,3,240,63,191,255,192,57,0,0,11,240,63,191,255,208,0,0,0,15,224,63,105,2,64,0,0,0,63,192,63,64,2,0,0,0,0,255,128,63,64,3,208,0,0,7,255,0,47,64,7,224,0,0,191,252,0,47,255,255,208,0,0,127,224,0,31,255,255,192,0,0,47,64,0,6,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x586b 填 + 107,88,34,35,59,36,1,252,0,21,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,1,255,255,255,255,255,192,0,63,1,255,255,255,255,255,192,0,63,1,255,255,255,255,255,192,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,11,255,255,255,244,0,63,255,254,11,255,255,255,244,0,63,255,254,11,208,0,3,244,0,63,255,254,11,208,0,3,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,255,255,255,244,0,0,63,0,11,208,0,3,244,0,0,63,0,11,208,0,3,244,0,0,63,11,11,255,255,255,244,0,0,63,255,11,255,255,255,244,0,0,63,255,64,0,0,0,0,0,2,255,254,0,0,0,0,0,0,111,255,235,255,255,255,255,255,208,191,254,11,255,255,255,255,255,224,63,208,11,255,255,255,255,255,224,61,0,0,0,16,0,8,0,0,0,0,0,1,255,0,127,64,0,0,0,0,11,253,0,127,224,0,0,0,1,191,240,0,11,253,0,0,0,15,255,128,0,1,255,128,0,0,11,248,0,0,0,63,208,0,0,2,144,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x588a 墊 + 138,88,34,33,41,36,1,254,0,2,244,0,0,47,0,0,0,0,3,244,0,0,63,0,0,0,5,87,245,84,0,63,0,0,0,15,255,255,253,0,63,0,0,0,15,255,255,253,47,255,255,240,0,0,3,244,0,63,255,255,240,0,21,87,244,0,63,255,255,240,0,127,255,255,255,213,127,3,240,0,127,255,255,255,192,63,3,240,0,2,240,2,240,0,63,3,240,0,1,244,3,224,45,62,3,240,0,0,248,7,192,127,254,3,240,0,63,255,255,255,223,253,3,240,0,63,255,255,255,194,255,67,240,0,21,87,249,85,65,255,227,240,0,0,3,244,0,3,255,250,240,64,5,87,249,84,7,242,242,240,208,15,255,255,254,15,208,146,244,240,15,255,255,254,63,192,1,244,240,0,3,244,0,255,0,0,253,224,0,3,244,2,253,0,0,255,208,0,3,244,1,244,0,0,127,192,0,0,0,2,248,0,0,31,64,0,0,0,2,248,0,0,0,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,208,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192, + // 0x5916 外 + 22,89,34,34,50,36,1,253,0,0,164,0,0,3,244,0,0,0,0,254,0,0,3,244,0,0,0,0,253,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,3,248,0,0,3,244,0,0,0,3,248,0,0,3,244,0,0,0,11,255,255,248,3,244,0,0,0,15,255,255,252,3,244,0,0,0,31,255,255,252,3,244,0,0,0,63,192,3,255,3,244,0,0,0,127,64,3,255,195,244,0,0,0,255,0,7,255,211,244,0,0,2,252,0,11,251,243,244,0,0,7,252,0,15,227,255,244,0,0,15,254,0,15,208,255,244,0,0,63,255,208,31,192,127,244,0,0,255,175,248,63,128,47,244,0,0,47,7,255,127,64,15,248,0,0,8,0,255,255,0,3,255,0,0,0,0,47,254,0,3,255,208,0,0,0,11,252,0,3,255,248,0,0,0,3,248,0,3,255,255,64,0,0,15,240,0,3,246,255,240,0,0,47,208,0,3,244,127,224,0,0,63,192,0,3,244,11,128,0,0,255,64,0,3,244,1,0,0,3,254,0,0,3,244,0,0,0,15,248,0,0,3,244,0,0,0,63,240,0,0,3,244,0,0,1,255,192,0,0,3,244,0,0,15,255,0,0,0,3,244,0,0,47,248,0,0,0,3,244,0,0,11,208,0,0,0,3,244,0,0,2,0,0,0,0,3,244,0,0, + // 0x591a 多 + 26,89,32,35,24,36,2,252,0,0,0,46,64,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,0,0,0,0,0,0,11,255,255,255,224,0,0,0,127,255,255,255,244,0,0,2,255,255,255,255,224,0,0,47,253,0,0,63,192,0,6,255,252,0,0,255,64,0,63,255,255,128,3,253,0,0,31,244,127,244,15,248,0,0,11,64,11,254,127,224,0,0,0,0,1,255,255,64,0,0,0,0,0,127,253,64,0,0,0,0,2,255,231,252,0,0,0,0,127,255,79,244,0,0,0,27,255,244,127,224,0,0,26,255,255,66,255,255,255,248,127,255,224,15,255,255,255,253,47,249,0,191,255,255,255,252,25,0,11,255,128,0,11,244,0,0,191,253,0,0,31,240,0,31,255,255,64,0,63,192,0,127,253,191,240,0,255,64,0,31,144,31,253,3,254,0,0,8,0,2,255,159,248,0,0,0,0,0,127,255,224,0,0,0,0,0,31,255,64,0,0,0,0,0,191,252,0,0,0,0,0,27,255,224,0,0,0,0,22,255,254,0,0,0,0,91,255,255,224,0,0,0,2,255,255,249,0,0,0,0,0,255,254,64,0,0,0,0,0,186,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5920 夠 + 32,89,33,34,50,36,1,253,0,3,224,0,0,164,0,0,0,0,7,240,0,0,252,0,0,0,0,15,192,0,1,248,0,0,0,0,63,234,168,3,244,0,0,0,0,191,255,254,7,240,0,0,0,2,255,255,252,11,255,255,255,128,7,244,1,252,15,255,255,255,128,47,208,3,244,47,255,255,255,128,127,132,11,240,127,0,0,31,128,30,62,31,208,254,0,0,47,64,4,127,255,130,252,0,0,47,64,0,31,255,7,248,0,0,47,64,0,7,252,11,251,255,252,47,64,0,47,240,1,219,255,252,47,64,1,255,255,0,11,234,252,47,64,31,254,254,0,11,192,124,47,64,47,245,252,0,11,192,124,47,64,15,131,255,255,75,192,124,47,64,4,15,255,255,203,192,124,47,64,0,63,255,255,139,192,124,63,64,1,255,0,63,11,192,124,63,0,11,248,0,191,11,192,124,63,0,63,225,0,253,11,234,252,63,0,47,79,195,252,11,255,252,63,0,8,15,251,240,11,255,252,63,0,0,2,255,208,11,192,0,63,0,0,0,255,128,11,192,0,63,0,0,3,254,0,6,128,0,127,0,0,31,248,0,0,0,0,190,0,1,255,224,0,0,0,0,253,0,47,255,64,0,0,3,255,252,0,63,248,0,0,0,1,255,248,0,47,128,0,0,0,0,255,224,0,8,0,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,85,85,85,111,229,85,85,85,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,63,252,0,0,0,0,0,0,127,253,0,0,0,0,0,0,191,254,0,0,0,0,0,0,255,191,0,0,0,0,0,1,254,127,64,0,0,0,0,2,252,63,192,0,0,0,0,3,252,31,224,0,0,0,0,11,244,15,240,0,0,0,0,31,240,11,252,0,0,0,0,63,208,3,253,0,0,0,0,191,192,0,255,64,0,0,2,255,0,0,191,208,0,0,11,253,0,0,63,244,0,0,47,248,0,0,15,253,0,0,255,224,0,0,3,255,128,7,255,128,0,0,0,255,240,127,254,0,0,0,0,63,254,255,244,0,0,0,0,15,254,63,128,0,0,0,0,1,252,8,0,0,0,0,0,0,32, + // 0x5929 天 + 41,89,33,33,41,36,2,252,85,85,85,85,85,85,85,85,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,21,85,85,127,249,85,85,84,0,0,0,0,63,252,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,255,191,0,0,0,0,0,0,1,254,63,192,0,0,0,0,0,3,252,47,224,0,0,0,0,0,15,248,15,244,0,0,0,0,0,63,240,7,252,0,0,0,0,0,255,208,2,255,64,0,0,0,7,255,64,0,255,208,0,0,0,47,253,0,0,63,253,0,0,2,255,244,0,0,15,255,208,0,127,255,128,0,0,2,255,254,64,255,253,0,0,0,0,127,255,0,127,208,0,0,0,0,7,253,0,57,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x5931 失 + 49,89,33,35,59,36,2,252,0,4,0,15,224,0,0,0,0,0,15,208,15,224,0,0,0,0,0,47,192,15,224,0,0,0,0,0,63,192,15,224,0,0,0,0,0,63,128,15,224,0,0,0,0,0,191,0,15,224,0,0,0,0,0,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,11,249,85,95,229,85,85,64,0,15,240,0,15,224,0,0,0,0,47,208,0,15,224,0,0,0,0,127,192,0,15,224,0,0,0,0,127,64,0,15,208,0,0,0,0,10,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,85,85,85,111,229,85,85,85,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,127,252,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,1,254,127,64,0,0,0,0,0,3,252,63,192,0,0,0,0,0,11,248,31,240,0,0,0,0,0,47,240,15,252,0,0,0,0,0,191,208,3,254,0,0,0,0,3,255,128,0,255,208,0,0,0,47,254,0,0,63,248,0,0,2,255,244,0,0,31,255,144,0,111,255,192,0,0,2,255,254,64,255,253,0,0,0,0,127,255,64,127,208,0,0,0,0,7,254,0,41,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x59cb 始 + 203,89,34,34,50,36,1,253,0,30,128,0,0,57,0,0,0,0,31,192,0,0,127,64,0,0,0,47,128,0,0,191,0,0,0,0,63,64,0,0,254,0,0,0,0,63,0,0,0,253,0,0,0,0,63,0,0,2,252,0,0,0,0,127,0,0,3,248,1,128,0,0,190,0,0,3,244,15,208,0,127,255,255,240,7,240,11,240,0,127,255,255,240,11,224,3,248,0,127,255,255,240,15,192,1,253,0,1,248,3,240,31,192,0,191,0,2,244,7,241,127,235,255,255,128,3,240,7,235,255,255,255,255,192,3,240,11,235,255,255,255,255,224,7,240,15,215,250,165,64,11,240,11,224,15,192,0,0,0,3,128,15,208,31,192,0,0,0,0,0,15,192,47,128,0,0,0,0,0,31,192,63,64,127,255,255,255,0,47,244,63,0,127,255,255,255,0,63,255,191,0,127,255,255,255,0,63,255,254,0,127,0,0,127,0,6,47,252,0,127,0,0,127,0,0,7,255,0,127,0,0,127,0,0,11,255,192,127,0,0,127,0,0,15,255,240,127,0,0,127,0,0,63,203,252,127,0,0,127,0,0,255,66,244,127,0,0,127,0,3,254,0,160,127,255,255,255,0,31,252,0,0,127,255,255,255,0,47,224,0,0,127,255,255,255,0,15,128,0,0,127,0,0,127,0,5,0,0,0,126,0,0,42,0, + // 0x5a92 媒 + 146,90,34,34,50,36,1,253,0,62,0,0,252,0,7,240,0,0,63,0,0,252,0,7,240,0,0,127,0,0,252,0,7,240,0,0,126,0,0,252,0,7,240,0,0,190,0,127,255,255,255,255,208,0,253,0,127,255,255,255,255,208,0,252,0,127,255,255,255,255,192,0,252,0,0,252,0,7,240,0,191,255,255,192,252,0,7,240,0,191,255,255,192,254,85,91,240,0,191,255,255,192,255,255,255,240,0,3,244,31,128,255,255,255,240,0,3,240,31,128,252,0,7,240,0,7,240,47,64,252,0,7,240,0,7,224,63,64,252,0,7,240,0,11,208,63,0,255,255,255,240,0,15,192,63,0,255,255,255,240,0,15,192,127,0,170,191,234,160,0,31,192,190,0,0,47,128,0,0,31,128,253,0,0,47,128,0,0,47,224,253,0,0,47,128,0,0,63,253,252,127,255,255,255,255,208,63,255,248,127,255,255,255,255,208,10,127,244,127,255,255,255,255,208,0,31,244,0,3,255,248,0,0,0,15,253,0,15,255,254,0,0,0,47,255,0,63,255,191,128,0,0,63,255,192,255,47,143,224,0,0,255,31,135,252,47,135,252,0,3,253,7,47,244,47,130,255,64,15,248,2,255,208,47,128,191,224,63,224,0,255,0,47,128,31,192,31,64,0,56,0,47,128,7,0,9,0,0,0,0,47,128,0,0, + // 0x5b50 子 + 80,91,33,33,41,36,2,252,0,85,85,85,85,85,84,0,0,2,255,255,255,255,255,255,64,0,2,255,255,255,255,255,255,192,0,2,255,255,255,255,255,255,64,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,2,255,128,0,0,0,0,0,0,31,253,0,0,0,0,0,0,6,255,240,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,85,85,85,95,245,85,85,85,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,1,85,95,224,0,0,0,0,0,1,255,255,224,0,0,0,0,0,0,255,255,192,0,0,0,0,0,0,191,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,34,34,50,36,1,253,0,0,0,185,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,253,11,255,255,255,240,0,0,7,252,11,255,255,255,252,0,0,15,240,11,255,255,255,240,0,0,47,224,0,0,0,63,192,0,0,191,192,0,0,1,255,0,0,2,255,192,0,0,7,252,0,0,11,255,192,0,0,63,224,0,0,63,255,192,0,0,63,128,0,0,191,255,192,0,0,63,64,0,0,63,95,194,255,255,255,255,255,208,44,31,194,255,255,255,255,255,208,0,31,194,255,255,255,255,255,208,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,63,64,0,0,0,31,192,0,0,127,64,0,0,0,31,192,1,255,255,0,0,0,0,31,192,0,255,255,0,0,0,0,31,192,0,255,248,0,0,0, + // 0x5b89 安 + 137,91,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,64,0,0,0,0,1,252,63,64,0,16,0,0,1,252,63,64,0,191,0,0,1,252,63,64,0,254,0,0,1,252,63,64,2,252,0,0,1,252,0,0,3,248,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,255,64,0,31,224,0,0,0,254,0,0,47,192,0,0,3,252,0,0,63,192,0,0,7,248,0,0,127,64,0,0,15,240,0,0,255,0,0,0,31,244,0,2,253,0,0,0,63,255,144,7,252,0,0,0,127,255,254,95,240,0,0,0,191,47,255,255,208,0,0,0,5,1,191,255,208,0,0,0,0,0,31,255,253,0,0,0,0,1,255,255,255,208,0,0,0,127,255,130,255,253,0,5,191,255,248,0,47,255,208,47,255,255,128,0,2,255,240,15,255,228,0,0,0,47,192,7,164,0,0,0,0,7,0,0,0,0,0,0,0,0,0, + // 0x5b8c 完 + 140,91,32,34,16,36,2,253,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,64,0,0,0,0,1,252,63,75,255,255,255,255,209,252,0,11,255,255,255,255,208,0,0,11,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,63,128,15,224,0,0,0,0,63,64,11,224,0,0,0,0,127,0,11,224,0,0,0,0,191,0,11,224,0,0,0,0,255,0,11,224,0,0,0,1,253,0,11,224,0,16,0,3,252,0,11,224,0,62,0,15,248,0,11,224,0,63,0,127,240,0,11,224,0,63,6,255,192,0,11,240,0,127,191,255,0,0,11,255,255,254,255,248,0,0,3,255,255,253,127,128,0,0,1,255,255,244,36,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,33,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,192,0,0,0,0,0,127,0,15,195,255,255,255,255,252,127,0,5,67,255,255,255,255,252,21,0,0,3,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,7,224,3,248,0,0,0,0,0,7,240,3,248,0,0,0,0,0,11,240,3,248,0,0,0,0,0,15,224,3,255,255,255,192,0,0,15,208,3,255,255,255,192,0,0,31,224,3,255,255,255,192,0,0,47,240,3,248,0,0,0,0,0,63,244,3,248,0,0,0,0,0,127,252,3,248,0,0,0,0,0,255,255,3,248,0,0,0,0,1,253,63,211,248,0,0,0,0,3,252,31,251,248,0,0,0,0,11,244,7,255,253,0,0,0,0,47,240,1,255,255,255,255,255,192,127,192,0,47,255,255,255,255,128,47,64,0,1,191,255,255,255,64,9,0,0,0,0,5,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,34,34,50,36,1,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,192,0,80,0,0,0,127,0,15,192,0,255,0,0,0,127,0,15,192,3,253,0,0,0,127,0,15,192,15,254,170,170,128,127,0,0,0,63,255,255,255,244,0,0,0,0,255,255,255,255,240,0,0,0,7,255,64,0,47,208,0,0,0,127,255,208,0,191,128,0,0,3,255,223,248,2,255,0,0,0,3,254,3,255,31,248,0,0,0,0,244,0,191,255,224,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,191,255,244,0,0,0,0,0,27,255,255,255,208,0,0,0,2,255,254,11,255,255,164,0,1,191,255,224,0,191,255,255,208,127,255,253,0,0,6,255,255,128,63,255,255,255,255,255,255,255,0,31,147,255,255,255,255,252,5,0,0,3,255,255,255,255,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,244,0,0,1,252,0,0, + // 0x5bb9 容 + 185,91,33,35,59,36,2,252,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,63,64,0,0,0,0,1,252,0,63,0,20,0,0,80,1,252,0,63,0,63,128,1,248,1,252,0,63,0,255,0,3,255,65,252,0,0,7,253,0,0,191,224,0,0,0,31,244,5,80,31,252,0,0,0,191,208,31,244,3,255,64,0,7,255,64,63,252,0,191,208,0,15,253,0,255,255,0,47,240,0,7,240,3,254,191,192,11,192,0,2,128,15,252,63,240,2,0,0,0,0,63,240,15,253,0,0,0,0,0,255,192,3,255,64,0,0,0,7,255,0,0,191,240,0,0,0,47,252,0,0,47,253,0,0,1,255,240,0,0,7,255,208,0,11,255,255,255,255,255,255,253,0,191,255,255,255,255,255,255,255,64,191,239,255,255,255,255,242,255,0,62,15,208,0,0,7,240,44,0,16,15,208,0,0,7,240,0,0,0,15,208,0,0,7,240,0,0,0,15,208,0,0,7,240,0,0,0,15,208,0,0,7,240,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,208,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c0d 對 + 13,92,34,35,59,36,1,252,0,10,66,144,0,0,2,160,0,9,15,131,224,164,0,7,240,0,63,15,131,224,252,0,7,240,0,47,79,131,226,248,0,7,240,0,15,207,131,227,240,0,7,240,0,11,223,131,231,224,0,7,240,0,7,223,131,239,192,0,7,240,0,2,15,131,226,64,0,7,240,0,127,255,255,255,252,0,7,240,0,127,255,255,255,252,0,7,240,0,127,255,255,255,255,255,255,255,224,0,244,0,62,7,255,255,255,224,0,252,0,63,7,255,255,255,224,0,253,0,190,0,0,7,240,0,0,126,0,252,0,0,7,240,0,0,61,0,248,0,0,7,240,0,15,255,255,255,224,252,7,240,0,15,255,255,255,224,253,7,240,0,15,255,255,255,224,190,7,240,0,0,0,189,0,0,63,7,240,0,0,0,189,0,0,47,135,240,0,0,0,189,0,0,31,199,240,0,7,255,255,255,192,15,199,240,0,7,255,255,255,192,15,215,240,0,2,170,255,170,128,5,7,240,0,0,0,189,0,0,0,7,240,0,0,0,189,0,0,0,7,240,0,0,0,189,5,164,0,7,240,0,0,5,255,255,248,0,7,240,0,47,255,255,255,248,0,7,240,0,63,255,255,254,144,0,11,240,0,63,254,148,0,0,31,255,224,0,20,0,0,0,0,15,255,208,0,0,0,0,0,0,11,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x5c0f 小 + 15,92,34,35,59,36,1,252,0,0,0,1,84,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,14,64,2,252,0,46,0,0,0,31,224,2,252,0,255,0,0,0,47,208,2,252,0,127,128,0,0,63,192,2,252,0,63,192,0,0,63,192,2,252,0,31,224,0,0,127,128,2,252,0,15,240,0,0,191,0,2,252,0,7,248,0,0,255,0,2,252,0,3,252,0,1,254,0,2,252,0,2,254,0,2,253,0,2,252,0,0,255,0,3,252,0,2,252,0,0,255,64,11,244,0,2,252,0,0,127,128,15,240,0,2,252,0,0,63,192,47,224,0,2,252,0,0,47,208,127,192,0,2,252,0,0,31,224,127,64,0,2,252,0,0,15,240,6,0,0,2,252,0,0,15,208,0,0,0,2,252,0,0,4,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,21,87,252,0,0,0,0,0,0,63,255,248,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,31,254,128,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c31 就 + 49,92,34,35,59,36,1,252,0,0,252,0,0,7,224,0,0,0,0,252,0,0,7,224,80,0,0,0,252,0,0,7,227,240,0,0,0,252,0,0,7,226,252,0,0,0,252,0,0,7,224,254,0,63,255,255,255,240,7,224,127,64,63,255,255,255,240,7,224,47,192,63,255,255,255,240,7,224,15,128,0,0,0,0,0,7,224,4,0,0,0,0,0,0,11,240,0,0,3,255,255,255,79,255,255,255,208,7,255,255,255,79,255,255,255,208,7,255,255,255,79,255,255,255,208,7,240,0,47,64,11,224,0,0,7,240,0,47,64,15,228,0,0,7,240,0,47,64,15,254,0,0,7,240,0,47,64,15,254,0,0,7,255,255,255,64,15,254,0,0,7,255,255,255,64,31,254,0,0,7,255,255,255,64,47,254,0,0,0,0,253,0,0,63,254,0,0,0,0,253,4,0,63,190,0,0,3,240,253,63,0,127,126,0,0,7,240,253,63,0,191,126,0,0,11,224,253,47,128,254,126,0,0,15,208,253,15,194,252,126,1,0,15,192,253,15,211,248,126,2,208,47,128,253,7,235,244,126,2,240,63,64,253,2,95,240,126,2,240,191,0,253,0,63,192,126,3,224,44,0,252,0,255,128,127,71,224,0,127,252,3,255,0,63,255,208,0,63,252,2,252,0,63,255,192,0,63,224,0,112,0,15,255,64,0,0,0,0,0,0,0,0,0, + // 0x5de5 工 + 229,93,32,28,224,36,2,255,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,5,85,85,95,245,85,85,80,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85, + // 0x5dee 差 + 238,93,33,34,50,36,1,253,0,0,20,0,0,3,144,0,0,0,1,252,0,0,7,248,0,0,0,0,255,0,0,15,240,0,0,0,0,127,64,0,31,208,0,0,0,0,63,192,0,63,192,0,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,253,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,3,254,255,255,255,255,224,0,0,3,250,255,255,255,255,240,0,0,11,242,255,255,255,255,240,0,0,15,240,0,15,224,0,0,0,0,47,208,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,255,64,0,15,224,0,0,0,2,254,0,0,15,224,0,0,0,7,252,0,0,15,224,0,0,0,47,244,255,255,255,255,255,255,0,127,224,255,255,255,255,255,255,0,31,128,255,255,255,255,255,255,0,6,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,31,31,248,36,3,254,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,21,85,85,85,85,87,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,3,248,0,15,229,85,85,85,87,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,224,0,0,0,3,248,0,15,224,0,0,0,2,248,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,208,15,224,0,0,0,0,1,252,15,224,0,0,0,0,1,252,15,224,0,0,0,0,2,252,15,224,0,0,0,0,3,252,15,240,0,0,0,0,7,248,11,254,85,85,85,85,111,240,3,255,255,255,255,255,255,224,1,255,255,255,255,255,255,192,0,43,255,255,255,255,249,0, + // 0x5e73 平 + 115,94,32,32,0,36,2,253,5,85,85,85,85,85,85,80,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,4,0,15,224,0,80,0,0,126,0,15,224,0,255,0,0,127,0,15,224,0,254,0,0,63,128,15,224,2,252,0,0,47,192,15,224,3,248,0,0,15,208,15,224,7,244,0,0,11,240,15,224,15,224,0,0,7,240,15,224,31,192,0,0,3,224,15,224,47,128,0,0,1,0,15,224,1,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,95,245,85,85,85,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x5e8a 床 + 138,94,34,34,50,36,1,253,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,0,0,0,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,0,0,11,240,0,0,0,2,248,191,255,255,255,255,255,192,2,248,191,255,255,255,255,255,192,2,248,191,255,255,255,255,255,192,2,248,0,0,127,253,0,0,0,3,248,0,0,191,255,0,0,0,3,244,0,1,255,255,128,0,0,3,244,0,3,255,255,208,0,0,3,244,0,11,251,251,240,0,0,3,240,0,47,219,243,252,0,0,7,240,0,127,203,241,255,0,0,7,240,1,255,11,240,191,192,0,11,224,7,253,11,240,47,240,0,15,208,31,244,11,240,15,253,0,15,208,191,224,11,240,3,255,128,31,195,255,128,11,240,0,255,224,63,194,253,0,11,240,0,47,128,63,64,180,0,11,240,0,7,0,191,0,0,0,11,240,0,0,0,62,0,0,0,11,240,0,0,0,8,0,0,0,11,224,0,0,0, + // 0x5ea6 度 + 166,94,33,35,59,36,1,252,0,0,0,0,190,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,0,0,0,0,0,0,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,249,170,255,234,171,255,170,64,2,249,255,255,255,255,255,255,128,2,249,255,255,255,255,255,255,128,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,248,0,63,0,0,252,0,0,2,244,0,63,170,170,252,0,0,2,244,0,63,255,255,252,0,0,3,244,0,63,255,255,252,0,0,3,244,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,255,255,255,255,255,224,0,3,240,255,255,255,255,255,240,0,3,240,170,191,170,170,191,224,0,7,240,0,255,0,0,127,192,0,11,224,0,63,192,1,255,0,0,15,208,0,31,244,11,252,0,0,15,192,0,7,255,127,240,0,0,31,192,0,0,255,255,128,0,0,63,128,0,6,255,255,144,0,0,63,64,22,255,255,255,255,148,0,191,3,255,255,248,31,255,255,192,126,2,255,254,0,0,191,255,128,8,1,249,0,0,0,1,111,0,0,0,0,0,0,0,0,0,0, + // 0x5ee2 廢 + 226,94,34,35,59,36,1,252,0,0,0,0,190,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,240,0,0,0,84,0,0,0,3,240,191,255,244,189,15,128,0,3,240,191,255,244,63,127,64,0,3,240,21,91,240,31,252,0,0,3,240,48,15,208,15,224,46,0,3,240,254,63,128,7,244,255,0,3,240,127,255,0,1,255,248,0,3,240,15,252,0,0,127,208,0,3,240,31,244,0,85,127,248,0,3,241,255,255,194,255,255,255,208,3,255,255,255,194,255,254,191,192,3,247,224,7,194,240,62,11,64,3,241,0,7,194,240,62,13,0,7,240,21,91,195,224,62,30,0,7,224,127,255,223,208,63,254,0,7,224,191,255,239,192,31,252,0,7,224,248,0,11,0,0,0,0,11,208,244,0,5,0,0,64,0,15,209,255,255,207,255,255,240,0,15,195,255,255,207,255,255,240,0,15,194,229,95,193,240,11,208,0,31,128,0,15,193,248,31,192,0,47,64,0,15,128,190,127,0,0,63,64,0,31,64,47,252,0,0,127,0,0,47,64,47,254,0,0,190,0,21,127,7,255,255,249,64,125,0,63,254,63,248,31,255,64,12,0,63,248,30,64,0,191,0,0,0,0,0,0,0,0,0,0, + // 0x5efa 建 + 250,94,34,35,59,36,1,252,0,0,0,0,0,168,0,0,0,0,0,0,0,0,252,0,0,0,127,255,224,0,0,252,0,0,0,127,255,240,63,255,255,255,252,0,127,255,208,63,255,255,255,252,0,0,31,192,42,170,254,171,252,0,0,63,128,0,0,252,1,252,0,0,63,6,170,170,254,171,254,144,0,191,11,255,255,255,255,255,208,0,253,11,255,255,255,255,255,208,1,252,0,0,0,252,1,252,0,3,248,0,0,0,252,1,252,0,7,240,0,42,170,254,171,252,0,15,255,253,127,255,255,255,252,0,31,255,252,127,255,255,255,252,0,63,255,252,0,0,252,0,0,0,47,0,252,0,0,252,0,0,0,0,1,252,106,170,254,170,168,0,1,2,248,191,255,255,255,252,0,31,66,244,191,255,255,255,252,0,15,195,240,0,0,252,0,0,0,11,215,240,0,0,252,0,0,0,7,251,226,170,170,254,170,170,64,3,255,211,255,255,255,255,255,128,1,255,195,255,255,255,255,255,128,0,191,128,0,0,252,0,0,0,0,127,208,0,0,252,0,0,0,0,255,248,0,0,252,0,0,0,2,255,255,144,0,168,0,0,0,7,252,255,255,149,0,0,0,0,31,240,47,255,255,255,255,255,208,127,208,1,255,255,255,255,255,192,47,64,0,5,191,255,255,255,128,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f15 引 + 21,95,29,35,24,36,2,252,0,0,0,0,0,0,5,0,0,0,0,0,0,0,63,128,31,255,255,255,0,0,63,128,31,255,255,255,0,0,63,128,31,255,255,255,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,0,0,0,63,0,0,63,128,7,255,255,255,0,0,63,128,11,255,255,255,0,0,63,128,11,255,255,255,0,0,63,128,15,208,0,0,0,0,63,128,15,208,0,0,0,0,63,128,15,192,0,0,0,0,63,128,31,192,0,0,0,0,63,128,47,192,0,0,0,0,63,128,47,255,255,255,64,0,63,128,63,255,255,255,64,0,63,128,63,255,255,255,0,0,63,128,127,0,0,127,0,0,63,128,26,0,0,127,0,0,63,128,0,0,0,127,0,0,63,128,0,0,0,191,0,0,63,128,0,0,0,190,0,0,63,128,0,0,0,254,0,0,63,128,0,0,0,253,0,0,63,128,0,0,1,253,0,0,63,128,0,0,2,252,0,0,63,128,0,149,91,252,0,0,63,128,0,191,255,244,0,0,63,128,0,127,255,240,0,0,63,128,0,63,254,64,0,0,63,128,0,0,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,34,34,50,36,1,253,0,1,128,0,0,106,0,0,0,0,3,248,0,0,127,0,0,0,0,11,244,0,0,127,0,0,0,0,47,224,0,0,127,0,0,0,0,127,192,0,0,191,0,0,0,2,255,0,63,255,255,255,255,0,11,252,0,63,255,255,255,255,0,63,240,0,63,255,255,255,255,0,63,192,0,0,0,127,0,0,0,30,0,252,0,0,127,0,0,0,4,2,252,0,0,127,0,0,0,0,7,244,0,0,191,0,0,0,0,15,243,255,255,255,255,255,224,0,63,195,255,255,255,255,255,224,0,255,131,255,255,255,255,255,224,3,255,128,0,0,0,47,192,0,31,255,128,0,0,0,47,192,0,191,255,128,0,0,0,47,192,0,127,95,131,255,255,255,255,255,208,61,31,131,255,255,255,255,255,208,16,31,131,255,255,255,255,255,208,0,31,128,0,0,0,47,192,0,0,31,128,2,192,0,47,192,0,0,31,128,15,224,0,47,192,0,0,31,128,11,244,0,47,192,0,0,31,128,3,252,0,47,192,0,0,31,128,1,254,0,47,192,0,0,31,128,0,191,0,47,192,0,0,31,128,0,63,64,47,192,0,0,31,128,0,44,0,47,192,0,0,31,128,0,0,0,47,128,0,0,31,128,0,0,127,255,128,0,0,31,128,0,0,63,255,64,0,0,31,128,0,0,63,248,0,0, + // 0x5f8c 後 + 140,95,34,35,59,36,1,252,0,2,128,0,3,64,0,0,0,0,11,244,0,15,240,0,0,0,0,31,224,0,47,208,0,0,0,0,127,192,0,127,128,45,0,0,1,255,0,96,254,0,127,192,0,7,252,1,255,248,1,255,0,0,31,240,2,255,240,3,252,0,0,191,192,0,127,224,15,240,0,0,63,0,248,31,252,63,192,0,0,24,3,252,3,255,255,2,128,0,0,7,240,0,255,252,15,208,0,0,31,224,0,63,240,11,244,0,0,63,192,0,63,128,2,252,0,0,255,64,0,255,170,170,255,0,3,255,79,255,255,255,255,255,128,15,255,79,255,255,255,255,255,192,63,255,79,255,255,228,0,15,224,255,255,64,0,47,192,0,7,192,127,63,64,0,127,64,0,1,0,60,63,64,1,255,255,255,224,0,0,63,64,7,255,255,255,240,0,0,63,64,47,250,170,175,224,0,0,63,64,255,244,0,63,192,0,0,63,75,255,252,0,191,64,0,0,63,79,244,191,2,254,0,0,0,63,67,192,63,219,248,0,0,0,63,64,0,15,255,224,0,0,0,63,64,0,3,255,192,0,0,0,63,64,0,47,255,244,0,0,0,63,64,2,255,255,255,64,0,0,63,65,191,255,66,255,254,64,0,63,79,255,244,0,63,255,224,0,63,75,254,64,0,6,255,192,0,63,67,144,0,0,0,27,64,0,0,0,0,0,0,0,0,0, + // 0x5f91 徑 + 145,95,34,34,50,36,1,253,0,2,128,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,31,224,255,255,255,255,255,192,0,63,192,255,255,255,255,255,192,0,255,0,255,255,255,255,255,192,3,252,0,0,0,0,0,0,0,31,240,0,3,144,25,0,164,0,127,192,0,11,224,63,64,252,0,63,0,244,15,192,127,2,248,0,24,3,252,47,128,252,7,240,0,0,7,240,63,2,248,15,208,0,0,15,224,253,7,240,47,128,0,0,63,193,252,15,208,127,0,0,0,255,64,252,11,224,63,64,0,2,255,64,127,3,244,15,192,0,11,255,64,63,64,252,7,240,0,63,255,64,15,192,191,2,252,0,255,255,64,11,224,63,64,254,0,191,63,64,3,244,31,192,127,0,60,63,64,2,144,10,64,41,0,16,63,64,0,0,0,0,0,0,0,63,64,191,255,255,255,254,0,0,63,64,255,255,255,255,255,0,0,63,64,255,255,255,255,255,0,0,63,64,0,0,190,0,0,0,0,63,64,0,0,190,0,0,0,0,63,64,0,0,190,0,0,0,0,63,64,0,0,190,0,0,0,0,63,64,0,0,190,0,0,0,0,63,64,0,0,190,0,0,0,0,63,79,255,255,255,255,255,224,0,63,79,255,255,255,255,255,224,0,63,79,255,255,255,255,255,224,0,47,64,0,0,0,0,0,0, + // 0x5f9e 從 + 158,95,34,35,59,36,1,252,0,3,128,0,185,0,15,128,0,0,11,244,0,253,0,31,192,0,0,31,224,0,252,0,31,128,0,0,127,192,1,252,0,47,128,0,1,255,0,2,248,0,63,64,0,7,252,0,3,244,0,127,0,0,47,240,0,7,248,0,191,0,0,191,192,0,15,255,0,255,192,0,62,1,248,31,255,194,255,240,0,24,3,248,63,143,227,251,252,0,0,11,240,191,3,207,241,255,0,0,31,209,254,0,111,208,127,192,0,63,199,252,0,191,128,31,224,0,255,71,240,0,127,0,11,192,3,255,65,208,0,62,0,2,0,15,255,64,0,0,63,0,0,0,63,255,64,0,0,63,0,0,0,255,191,64,15,192,63,0,0,0,127,63,64,15,192,63,0,0,0,56,63,64,31,192,63,0,0,0,0,63,64,31,192,63,255,254,0,0,63,64,31,128,63,255,254,0,0,63,64,47,128,63,255,254,0,0,63,64,63,192,63,0,0,0,0,63,64,63,208,63,0,0,0,0,63,64,127,224,63,0,0,0,0,63,64,191,240,63,0,0,0,0,63,64,255,252,63,0,0,0,0,63,66,252,254,63,0,0,0,0,63,67,248,127,255,0,0,0,0,63,79,240,47,255,64,0,0,0,63,111,224,11,255,255,255,208,0,63,111,192,1,255,255,255,192,0,63,71,0,0,6,255,255,128,0,21,0,0,0,0,0,0,0, + // 0x5fa9 復 + 169,95,34,35,59,36,1,252,0,3,144,2,228,0,0,0,0,0,11,240,3,248,0,0,0,0,0,47,208,7,244,0,0,0,0,0,127,128,15,250,170,170,170,128,1,255,0,31,255,255,255,255,192,11,252,0,63,255,255,255,255,192,47,240,0,191,64,0,0,0,0,191,192,0,255,0,0,0,0,0,63,0,247,254,0,0,0,0,0,28,3,255,255,255,255,255,252,0,0,7,251,251,255,255,255,252,0,0,15,224,139,208,0,1,252,0,0,63,192,11,208,0,1,252,0,0,255,64,11,255,255,255,252,0,3,255,64,11,255,255,255,252,0,15,255,64,11,208,0,1,252,0,63,255,64,11,208,0,1,252,0,255,191,64,11,255,255,255,252,0,126,63,64,11,255,255,255,252,0,56,63,64,0,31,208,0,0,0,0,63,64,0,63,128,0,0,0,0,63,64,0,255,85,85,64,0,0,63,64,2,255,255,255,248,0,0,63,64,15,255,255,255,244,0,0,63,64,63,252,0,15,224,0,0,63,66,255,255,0,63,192,0,0,63,71,252,47,209,255,0,0,0,63,64,224,15,251,252,0,0,0,63,64,0,3,255,240,0,0,0,63,64,0,47,255,249,0,0,0,63,64,91,255,255,255,249,0,0,63,75,255,255,129,191,255,224,0,63,67,255,228,0,11,255,192,0,63,66,228,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x5fae 微 + 174,95,34,34,50,36,1,253,0,29,0,15,64,0,184,0,0,0,63,192,15,64,0,252,0,0,0,191,0,15,64,0,252,0,0,1,254,31,15,67,193,252,0,0,7,248,31,15,67,193,248,0,0,15,240,31,15,67,194,244,0,0,63,192,31,15,67,195,244,0,0,191,0,31,15,67,195,255,255,208,61,15,239,15,67,199,255,255,224,16,31,239,15,67,203,255,255,224,0,63,159,255,255,223,208,63,0,0,127,31,255,255,239,208,63,0,0,254,31,255,255,255,224,62,0,3,253,0,0,0,127,224,126,0,11,253,0,0,0,255,240,125,0,31,253,0,0,0,253,240,188,0,63,253,63,255,255,244,240,252,0,255,253,63,255,255,224,244,252,0,189,253,63,255,255,208,249,248,0,56,253,2,240,125,0,190,244,0,16,253,2,240,125,0,127,240,0,0,253,3,240,125,0,63,240,0,0,253,3,240,125,0,63,224,0,0,253,3,240,125,0,47,192,0,0,253,3,224,125,0,31,192,0,0,253,7,224,126,184,63,208,0,0,253,11,208,191,248,191,240,0,0,253,15,194,255,245,255,244,0,0,253,31,129,254,3,249,252,0,0,253,63,64,144,15,240,255,0,0,253,255,0,0,127,192,63,208,0,253,60,0,0,255,0,31,240,0,253,20,0,0,188,0,7,192,0,189,0,0,0,32,0,1,64, + // 0x5fc3 心 + 195,95,34,34,50,36,1,253,0,0,0,144,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,1,255,254,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,31,0,0,1,228,15,208,0,0,127,128,0,1,252,15,208,0,0,47,208,0,2,252,15,208,0,0,15,240,0,2,248,15,208,0,0,7,248,0,3,248,15,208,0,0,3,252,0,3,244,15,208,0,0,1,254,0,7,240,15,208,0,0,0,255,0,11,240,15,208,0,0,0,127,128,15,224,15,208,0,0,0,63,192,31,208,15,208,0,0,0,47,208,47,192,15,208,0,0,208,15,224,127,128,15,208,0,0,252,15,240,255,0,15,208,0,0,252,11,208,126,0,15,208,0,1,252,1,0,4,0,15,208,0,1,252,0,0,0,0,15,208,0,2,248,0,0,0,0,15,240,0,7,244,0,0,0,0,15,255,255,255,240,0,0,0,0,7,255,255,255,224,0,0,0,0,1,191,255,255,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x6027 性 + 39,96,33,35,59,36,1,252,0,63,64,0,0,47,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,3,244,63,64,0,0,0,63,64,3,240,63,64,0,0,0,63,64,7,240,63,64,0,0,0,63,64,11,240,63,64,0,0,0,63,88,11,224,63,64,0,0,10,63,252,15,224,63,128,0,0,31,63,190,31,255,255,255,255,0,47,63,127,47,255,255,255,255,0,47,63,95,127,255,255,255,255,0,63,63,79,255,64,63,64,0,0,62,63,79,255,0,63,64,0,0,61,63,64,254,0,63,64,0,0,125,63,66,252,0,63,64,0,0,188,63,64,120,0,63,64,0,0,188,63,64,0,0,63,64,0,0,0,63,64,0,0,63,128,0,0,0,63,64,15,255,255,255,253,0,0,63,64,15,255,255,255,253,0,0,63,64,15,255,255,255,253,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,128,0,0,0,63,67,255,255,255,255,255,192,0,63,67,255,255,255,255,255,192,0,63,67,255,255,255,255,255,192,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,34,35,59,36,1,252,0,63,0,31,64,0,0,0,0,0,63,0,31,64,0,0,0,0,0,63,0,31,64,0,0,0,0,0,63,0,47,64,0,0,0,0,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,103,255,255,255,255,255,208,10,63,248,31,64,0,0,0,0,31,63,188,31,64,3,240,0,0,31,63,61,31,64,3,240,0,0,31,63,46,31,64,3,240,0,0,46,63,31,47,64,3,240,0,0,46,63,15,47,73,3,240,11,128,61,63,14,47,79,131,240,15,192,60,63,0,47,79,67,240,31,128,188,63,0,47,79,3,240,47,0,248,63,0,47,95,3,240,63,0,16,63,0,47,47,3,240,125,0,0,63,0,63,62,3,240,188,0,0,63,0,63,61,3,244,248,0,0,63,0,63,124,7,244,96,0,0,63,0,63,4,11,248,0,0,0,63,0,126,0,15,252,0,0,0,63,0,190,0,31,189,0,0,0,63,0,253,0,63,63,0,0,0,63,0,252,0,127,47,64,0,0,63,1,252,0,253,15,192,0,0,63,2,248,2,252,15,224,0,0,63,3,240,11,240,7,248,0,0,63,11,240,47,224,2,254,0,0,63,15,209,255,128,0,255,192,0,63,47,195,254,0,0,63,224,0,63,15,66,248,0,0,15,192,0,63,2,0,208,0,0,2,64,0,0,0,0,0,0,0,0,0, + // 0x606f 息 + 111,96,33,34,50,36,2,253,0,0,0,15,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,31,192,0,0,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,170,170,170,170,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,149,85,85,85,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,149,85,85,85,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,170,170,170,170,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,0,0,9,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,224,0,8,0,0,3,224,127,11,248,0,190,0,0,3,240,127,2,254,0,191,128,0,11,240,127,0,255,0,63,224,0,15,208,127,0,56,0,15,244,0,47,192,127,0,0,30,3,252,0,127,128,127,0,0,31,128,255,0,255,0,127,0,0,63,128,191,64,253,0,63,255,255,255,64,63,64,36,0,47,255,255,255,0,24,0,0,0,11,255,255,248,0,0,0, + // 0x61b6 憶 + 182,97,34,34,50,36,1,253,0,63,0,0,0,63,0,0,0,0,63,0,0,0,63,0,0,0,0,63,0,21,85,191,149,85,0,0,63,0,127,255,255,255,255,0,0,63,0,127,255,255,255,255,0,0,63,0,0,252,0,15,192,0,0,63,96,0,189,0,31,128,0,10,63,248,0,126,0,47,64,0,31,63,188,0,63,0,63,0,0,31,63,62,255,255,255,255,255,208,31,63,47,255,255,255,255,255,208,46,63,31,170,170,170,170,170,144,46,63,15,0,0,0,0,0,0,61,63,9,15,255,255,255,253,0,60,63,0,15,255,255,255,253,0,124,63,0,15,192,0,0,189,0,248,63,0,15,192,0,0,189,0,16,63,0,15,255,255,255,253,0,0,63,0,15,255,255,255,253,0,0,63,0,15,192,0,0,189,0,0,63,0,15,192,0,0,189,0,0,63,0,15,255,255,255,253,0,0,63,0,15,255,255,255,253,0,0,63,0,0,1,248,0,0,0,0,63,0,0,1,255,0,0,0,0,63,0,36,42,127,193,224,0,0,63,0,126,63,11,211,244,0,0,63,0,189,63,2,65,253,0,0,63,0,252,63,0,4,191,0,0,63,1,252,63,0,11,191,128,0,63,3,244,47,64,15,207,192,0,63,15,240,47,255,255,139,224,0,63,7,192,31,255,255,3,64,0,63,0,0,2,170,168,0,0, + // 0x61c9 應 + 201,97,34,35,59,36,1,252,0,0,0,0,190,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,240,2,224,15,128,184,0,0,3,240,3,240,47,128,252,0,0,3,240,11,224,63,2,248,0,0,3,240,31,192,255,255,255,255,0,3,240,63,65,255,255,255,255,0,3,240,255,67,252,3,240,0,0,3,243,255,79,252,3,240,0,0,3,255,255,127,255,255,255,252,0,3,255,255,111,255,255,255,252,0,3,251,95,68,188,3,240,0,0,3,241,31,64,191,255,255,252,0,3,240,31,64,191,255,255,252,0,3,240,31,64,188,3,240,0,0,7,240,31,64,188,3,240,0,0,7,224,31,64,191,255,255,255,128,7,224,31,64,191,255,255,255,128,7,224,31,64,56,0,0,0,0,11,208,0,0,255,64,0,0,0,15,208,0,0,127,240,0,0,0,15,192,36,10,135,253,7,192,0,15,192,63,15,192,252,15,240,0,31,128,190,15,192,32,3,248,0,47,128,252,15,192,0,81,253,0,63,66,252,15,192,0,188,191,0,127,7,244,15,192,0,252,63,192,190,15,224,15,255,255,252,15,208,124,3,128,11,255,255,244,11,64,8,0,0,1,170,170,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,34,35,59,36,1,252,0,0,0,0,15,224,96,0,0,0,0,0,0,15,225,254,0,0,0,0,0,0,15,225,255,192,0,0,0,0,0,15,224,47,244,0,0,0,0,0,15,224,7,252,0,0,0,0,0,15,224,0,240,0,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,253,85,85,91,245,85,85,64,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,2,252,0,0,3,240,1,228,0,2,252,0,0,3,244,3,252,0,2,255,255,255,3,244,3,244,0,2,255,255,255,3,248,11,240,0,2,255,255,255,2,248,15,224,0,2,252,0,127,2,252,31,192,0,2,252,0,127,1,252,63,192,0,2,252,0,127,0,253,127,64,0,2,252,0,127,0,254,255,0,0,2,252,0,127,0,255,253,0,0,3,248,0,190,0,191,248,0,0,3,248,0,190,0,127,240,0,0,3,244,0,190,0,63,208,5,0,7,244,0,253,0,191,192,11,128,11,241,255,253,1,255,208,11,208,11,240,255,252,11,255,240,11,208,15,224,191,224,63,255,248,15,192,47,208,0,2,255,211,254,31,192,63,192,0,31,255,1,255,255,128,127,64,0,15,248,0,127,255,0,47,0,0,3,208,0,15,253,0,9,0,0,1,0,0,0,80,0,0,0,0,0,0,0,0,0,0, + // 0x6236 戶 + 54,98,30,34,16,36,1,253,0,0,0,0,0,0,176,0,0,0,0,0,0,111,252,0,0,0,0,1,175,255,255,0,0,20,22,255,255,255,228,0,0,47,255,255,255,228,0,0,0,47,255,254,144,0,0,0,0,47,233,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,255,255,255,255,255,208,0,47,255,255,255,255,255,208,0,47,255,255,255,255,255,208,0,47,192,0,0,0,15,208,0,47,192,0,0,0,15,208,0,47,128,0,0,0,15,208,0,47,128,0,0,0,15,208,0,47,128,0,0,0,15,208,0,63,128,0,0,0,15,208,0,63,255,255,255,255,255,208,0,63,255,255,255,255,255,208,0,63,255,255,255,255,255,208,0,127,0,0,0,0,15,208,0,191,0,0,0,0,15,208,0,254,0,0,0,0,0,0,0,253,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,31,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,34,34,50,36,1,253,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,189,0,47,255,255,255,192,0,31,255,128,47,255,255,255,196,7,255,255,64,47,255,255,255,207,255,255,224,0,0,0,0,0,15,255,249,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,255,255,255,15,208,0,0,0,11,224,0,127,15,224,0,0,0,11,224,0,127,15,255,255,255,224,11,224,0,127,15,255,255,255,224,11,224,0,127,15,255,255,255,224,11,224,0,127,15,208,7,240,0,11,255,255,255,15,208,7,240,0,11,255,255,255,15,192,7,240,0,11,255,255,255,15,192,7,240,0,11,224,0,0,31,192,7,240,0,11,224,0,0,47,192,7,240,0,11,208,0,0,47,128,7,240,0,15,208,0,0,63,64,7,240,0,15,208,0,0,127,0,7,240,0,15,192,0,0,191,0,7,240,0,31,192,0,0,253,0,7,240,0,31,192,0,2,252,0,7,240,0,47,128,0,3,248,0,7,240,0,63,64,0,11,240,0,7,240,0,191,0,0,47,224,0,7,240,0,254,0,0,63,192,0,7,240,0,124,0,0,15,64,0,7,240,0,8,0,0,1,0,0,7,240,0, + // 0x6247 扇 + 71,98,32,32,0,36,1,253,31,255,255,255,255,255,255,255,31,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,255,170,170,170,170,171,240,0,253,0,0,0,0,3,240,0,253,0,0,0,0,3,240,0,255,170,170,170,170,171,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,253,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,253,255,255,241,255,255,252,0,253,255,255,241,255,255,252,0,252,170,171,240,170,170,252,1,252,24,3,240,44,1,252,1,252,127,3,240,191,1,252,2,252,47,131,240,47,193,252,2,248,15,211,240,15,209,252,3,244,7,131,240,3,65,252,7,240,0,3,240,0,21,252,11,240,1,243,240,2,253,252,15,224,111,247,240,111,253,252,31,215,255,211,243,255,209,252,47,195,253,3,242,253,1,252,127,67,144,3,241,128,1,252,255,0,1,171,240,0,171,248,45,0,0,255,224,0,191,244,4,0,0,255,128,0,63,208, + // 0x624b 手 + 75,98,32,35,24,36,2,252,0,0,0,0,0,0,104,0,0,0,0,0,22,191,254,0,0,5,90,191,255,255,255,64,11,255,255,255,255,255,228,0,7,255,255,255,254,80,0,0,3,255,169,95,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,95,245,85,85,85,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,1,64,31,224,0,0,0,0,3,255,255,224,0,0,0,0,2,255,255,192,0,0,0,0,0,255,249,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,34,34,50,36,1,253,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,15,255,255,255,255,224,0,15,192,15,255,255,255,255,224,0,15,192,15,255,255,255,255,224,0,15,192,5,85,85,254,85,64,63,255,255,240,0,0,253,0,0,63,255,255,240,0,0,253,0,0,63,255,255,240,0,0,253,0,0,0,31,208,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,214,240,0,0,253,0,0,0,31,255,240,0,0,253,0,0,6,255,255,240,0,0,253,0,0,127,255,254,64,0,0,253,0,0,63,255,208,0,0,0,253,0,0,63,175,192,0,0,0,253,0,0,20,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,0,253,0,0,0,15,192,0,0,1,253,0,0,0,31,192,0,47,255,253,0,0,15,255,192,0,31,255,252,0,0,15,255,128,0,15,255,240,0,0,7,249,0,0,6,165,0,0,0, + // 0x6279 批 + 121,98,34,34,50,36,1,253,0,63,0,42,0,2,160,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,127,255,253,63,64,7,240,0,0,127,255,253,63,64,7,240,4,0,127,255,253,63,64,7,240,31,0,0,127,0,63,64,7,240,127,128,0,63,0,63,64,7,241,255,128,0,63,0,63,255,215,247,254,0,0,63,0,63,255,215,255,244,0,0,63,0,63,255,215,255,192,0,0,63,0,63,64,7,253,0,0,0,63,188,63,64,7,240,0,0,0,127,253,63,64,7,240,0,0,27,255,253,63,64,7,240,0,0,255,255,208,63,64,7,240,0,0,191,255,0,63,64,7,240,0,0,126,127,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,0,0,0,63,0,63,64,7,240,7,128,0,63,0,63,64,7,240,7,224,0,63,0,63,86,151,240,7,224,0,63,0,63,255,231,240,11,208,0,127,11,255,255,227,240,15,208,63,254,15,255,255,147,255,255,192,31,253,15,254,144,3,255,255,128,15,228,6,64,0,0,191,254,0, + // 0x6296 抖 + 150,98,34,35,59,36,1,252,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,16,0,47,128,0,0,47,128,0,126,0,47,128,0,0,47,128,0,255,208,47,128,0,0,47,128,0,47,248,47,128,0,0,47,128,0,7,254,47,128,0,63,255,255,192,0,253,47,128,0,63,255,255,192,0,36,47,128,0,63,255,255,192,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,1,64,0,47,128,0,0,47,128,3,244,0,47,128,0,0,47,128,11,254,0,47,128,0,0,47,128,2,255,208,47,128,0,0,47,128,64,127,244,47,128,0,0,47,223,192,11,240,47,128,0,0,47,255,192,1,192,47,128,0,27,255,255,192,0,0,47,128,0,191,255,249,0,0,0,47,128,0,127,255,192,0,0,0,47,239,208,63,175,128,0,0,6,191,255,208,16,47,128,0,107,255,255,255,224,0,47,128,63,255,255,255,249,64,0,47,128,63,255,255,191,128,0,0,47,128,47,250,64,47,128,0,0,47,128,21,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,0,47,128,0,0,0,47,128,0,47,255,128,0,0,0,47,128,0,15,255,0,0,0,0,47,128,0,15,248,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,33,35,59,36,1,252,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,0,47,64,0,0,47,64,0,0,127,255,255,0,0,47,64,0,0,127,255,255,47,255,255,255,255,192,127,255,255,47,255,255,255,255,192,0,47,128,47,255,255,255,255,192,0,47,64,47,128,63,128,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,159,111,64,47,64,47,192,0,63,255,111,64,47,64,47,192,27,255,255,175,255,255,255,255,192,255,255,248,47,255,255,255,255,192,191,255,128,47,255,255,255,255,192,126,127,64,47,128,47,128,47,192,16,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,64,47,64,47,192,0,47,64,47,255,255,255,255,192,0,47,64,47,255,255,255,255,192,0,63,64,47,255,255,255,255,192,47,255,64,47,128,0,0,47,192,31,255,0,47,64,0,0,47,192,15,248,0,47,64,0,0,26,128,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,34,35,59,36,1,252,0,47,64,0,31,192,16,0,0,0,47,64,0,31,192,125,0,0,0,47,64,0,31,192,255,192,0,0,47,64,0,31,192,47,244,0,0,47,64,0,31,192,7,254,0,0,47,64,0,31,192,0,254,0,0,47,64,0,31,192,0,44,0,127,255,255,0,31,192,0,0,0,127,255,255,127,255,255,255,255,192,127,255,255,127,255,255,255,255,192,106,191,234,127,255,255,255,255,192,0,47,64,0,47,128,0,0,0,0,47,64,0,47,128,0,0,0,0,47,64,0,63,192,0,64,0,0,47,64,0,63,208,2,248,0,0,47,64,0,63,224,3,244,0,0,47,135,64,63,240,3,240,0,0,47,255,64,127,240,7,240,0,6,255,255,128,191,248,11,224,0,191,255,253,0,254,252,15,208,0,191,255,128,0,252,189,31,192,0,127,191,64,1,252,127,47,192,0,32,47,64,2,248,63,127,64,0,0,47,64,3,244,31,255,0,0,0,47,64,7,240,15,254,0,0,0,47,64,15,224,7,252,0,0,0,47,64,31,208,7,252,0,0,0,47,64,63,192,15,255,64,0,0,47,64,191,64,63,255,208,0,0,47,65,254,0,255,95,244,0,0,63,67,252,7,254,7,255,64,47,255,79,244,47,248,1,255,224,31,255,11,208,47,208,0,47,192,15,248,2,128,7,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,34,35,59,36,1,252,0,47,64,0,0,63,0,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,47,64,63,255,255,255,255,192,0,47,64,63,255,255,255,255,192,127,255,255,127,255,255,255,255,192,127,255,255,127,0,0,0,15,192,127,255,255,127,1,252,0,15,192,0,47,128,63,2,252,0,15,192,0,47,64,63,3,248,0,15,192,0,47,64,0,3,240,0,0,0,0,47,64,0,7,240,0,0,0,0,47,64,0,15,224,0,0,0,0,47,64,127,255,255,255,255,224,0,47,70,191,255,255,255,255,224,0,47,255,255,255,255,255,255,224,1,191,255,128,63,64,7,240,0,191,255,254,0,127,0,15,240,0,191,255,128,0,254,0,15,224,0,127,191,64,0,252,0,31,208,0,36,47,64,2,252,0,47,192,0,0,47,64,3,255,64,63,64,0,0,47,64,7,255,248,255,0,0,0,47,64,11,255,255,253,0,0,0,47,64,0,65,255,252,0,0,0,47,64,0,0,63,255,64,0,0,47,64,0,1,255,255,240,0,0,47,64,0,31,255,47,253,0,0,63,64,6,255,248,7,255,128,47,255,65,255,255,128,0,191,208,31,255,0,255,244,0,0,31,128,15,248,0,121,0,0,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,34,35,59,36,1,252,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,191,255,255,192,0,63,0,0,0,191,255,255,192,0,63,0,0,0,191,255,255,192,0,63,0,0,0,190,0,0,0,127,255,255,0,0,190,0,0,0,127,255,255,0,0,190,0,0,0,127,255,255,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,63,0,63,170,170,170,253,0,0,63,0,63,0,0,0,253,0,0,63,0,63,0,0,0,253,0,0,63,0,63,255,255,255,253,0,0,63,1,63,255,255,255,253,0,0,63,190,63,85,85,85,253,0,0,127,255,63,0,0,0,253,0,47,255,255,63,0,0,0,253,0,127,255,208,63,170,170,170,253,0,63,255,0,63,255,255,255,253,0,57,127,0,63,255,255,255,253,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,3,255,255,255,255,255,208,0,63,0,0,0,190,0,0,0,0,63,0,0,0,190,0,0,0,0,127,0,0,0,190,0,0,0,63,255,0,0,0,190,0,0,0,63,254,0,0,0,190,0,0,0,47,228,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,34,34,50,36,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,0,191,255,255,255,255,192,0,63,0,189,0,0,0,15,192,0,63,0,189,15,193,248,15,192,127,255,253,189,15,193,248,15,192,127,255,253,189,31,129,248,10,128,127,255,253,0,47,129,248,0,0,0,127,0,0,63,65,248,3,64,0,63,0,0,191,1,248,3,224,0,63,0,2,253,1,252,7,208,0,63,0,31,248,1,255,255,192,0,63,0,255,224,0,255,255,128,0,63,0,127,64,127,26,169,0,0,63,188,16,0,127,0,0,0,0,191,253,0,0,127,0,0,0,111,255,253,0,0,127,0,0,0,191,255,144,255,255,255,255,255,192,127,255,0,255,255,255,255,255,192,120,63,0,255,255,255,255,255,192,0,63,0,0,11,255,244,0,0,0,63,0,0,31,255,252,0,0,0,63,0,0,63,255,255,0,0,0,63,0,0,255,127,63,128,0,0,63,0,3,252,127,31,224,0,0,63,0,15,244,127,7,248,0,0,63,0,127,208,127,2,255,0,0,63,7,255,64,127,0,191,224,0,127,11,253,0,127,0,47,208,63,254,3,224,0,127,0,7,128,31,253,0,64,0,127,0,0,0,15,228,0,0,0,127,0,0,0, + // 0x63a5 接 + 165,99,34,35,59,36,1,252,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,0,0,127,0,0,0,0,47,64,191,255,255,255,255,64,0,47,64,191,255,255,255,255,64,0,47,64,127,255,255,255,255,64,0,47,128,0,252,0,15,192,0,127,255,254,0,253,0,31,192,0,127,255,254,0,126,0,63,64,0,127,255,254,0,127,0,63,0,0,0,47,64,0,63,0,126,0,0,0,47,66,255,255,255,255,255,208,0,47,67,255,255,255,255,255,208,0,47,67,255,255,255,255,255,208,0,47,64,0,7,244,0,0,0,0,47,174,0,11,240,0,0,0,0,63,255,0,15,208,0,0,0,27,255,255,255,255,255,255,255,208,255,255,230,255,255,255,255,255,208,191,255,66,255,255,255,255,255,208,126,47,64,0,253,0,31,192,0,0,47,64,1,252,0,47,192,0,0,47,64,3,248,0,63,64,0,0,47,64,7,244,0,127,0,0,0,47,64,15,255,128,254,0,0,0,47,64,31,255,255,252,0,0,0,47,64,6,159,255,248,0,0,0,47,64,0,0,255,254,0,0,0,47,64,0,7,255,255,224,0,0,63,64,5,191,253,191,253,0,47,255,71,255,255,224,11,255,64,15,255,3,255,249,0,0,191,0,15,248,2,249,0,0,0,28,0,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,34,34,50,36,1,253,0,62,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,127,1,248,31,193,248,15,192,127,255,253,248,31,129,248,15,192,127,255,253,248,31,129,248,15,192,127,255,253,248,47,65,248,0,0,0,63,0,0,63,1,248,1,0,0,63,0,0,127,1,248,7,192,0,63,0,1,253,1,248,11,192,0,63,0,11,252,1,255,175,192,0,63,25,191,240,0,255,255,128,0,63,253,191,128,0,127,254,0,0,191,254,56,0,0,0,0,0,47,255,248,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,191,255,0,63,255,255,255,254,0,125,127,0,63,255,255,255,254,0,0,63,0,63,255,255,255,254,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,127,3,255,255,255,255,255,224,63,254,3,255,255,255,255,255,224,31,253,3,255,255,255,255,255,224,15,228,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,34,35,59,36,1,252,0,126,0,0,0,0,0,0,0,0,126,0,15,255,255,255,252,0,0,126,0,15,255,255,255,252,0,0,126,0,15,213,85,86,252,0,0,126,0,15,192,0,0,252,0,0,126,0,15,192,0,0,252,0,0,126,0,15,255,255,255,252,0,127,255,254,15,255,255,255,252,0,127,255,254,15,213,85,85,252,0,127,255,254,15,192,0,0,252,0,0,127,0,15,192,0,0,252,0,0,126,0,15,255,255,255,252,0,0,126,0,15,255,255,255,252,0,0,126,0,5,85,85,85,84,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,126,24,255,255,255,255,255,192,0,127,253,255,255,255,255,255,192,6,255,254,170,170,255,170,170,128,191,255,248,0,0,127,0,0,0,191,255,0,11,128,127,0,0,0,126,190,0,15,192,127,0,0,0,0,126,0,15,192,127,170,168,0,0,126,0,31,192,127,255,252,0,0,126,0,47,192,127,255,252,0,0,126,0,63,192,127,0,0,0,0,126,0,63,224,127,0,0,0,0,126,0,191,244,127,0,0,0,0,126,0,253,252,127,0,0,0,0,126,2,252,63,191,0,0,0,0,126,7,244,31,255,255,255,224,63,254,15,240,2,255,255,255,208,47,252,47,192,0,27,255,255,192,31,228,7,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,33,34,50,36,1,253,0,62,0,0,0,0,0,0,0,0,63,0,0,0,0,22,248,0,0,63,0,1,90,191,255,253,0,0,63,0,127,255,255,255,254,0,0,63,0,63,255,255,233,64,0,0,63,0,42,85,127,0,0,0,0,63,0,0,0,63,0,0,0,127,255,253,0,0,63,0,0,0,127,255,254,255,255,255,255,255,192,127,255,254,255,255,255,255,255,192,0,127,1,255,255,255,255,255,192,0,63,0,0,0,63,0,0,0,0,63,0,0,0,63,0,0,0,0,63,0,0,4,63,0,0,0,0,63,0,0,62,63,0,0,0,0,63,0,182,255,255,63,255,64,0,63,124,191,254,191,63,255,64,0,127,253,191,208,63,47,255,64,111,255,253,190,0,63,0,47,64,191,255,144,189,0,63,0,47,64,127,191,0,189,0,63,0,47,64,32,63,0,191,253,63,47,255,64,0,63,0,191,253,63,47,255,64,0,63,0,191,253,63,47,255,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,189,0,63,0,47,64,0,63,0,191,255,255,255,255,64,0,127,0,191,255,255,255,255,64,63,254,0,191,255,255,255,255,64,31,253,0,189,0,0,0,47,64,15,228,0,125,0,0,0,47,64, + // 0x63db 換 + 219,99,34,35,59,36,1,252,0,62,0,0,58,0,0,0,0,0,63,0,0,127,0,0,0,0,0,63,0,0,254,0,0,0,0,0,63,0,1,255,255,244,0,0,0,63,0,3,255,255,252,0,0,0,63,0,15,250,171,248,0,0,0,63,0,47,208,3,240,0,0,127,255,254,255,128,11,224,0,0,127,255,255,255,0,15,192,0,0,127,255,255,255,255,255,255,255,0,0,127,0,191,255,255,255,255,0,0,63,0,63,175,235,250,191,0,0,63,0,63,7,195,224,63,0,0,63,0,63,11,195,224,63,0,0,63,0,63,15,67,224,63,0,0,63,4,63,63,3,255,255,0,0,63,189,63,253,1,255,255,0,1,191,253,63,176,0,0,63,0,111,255,253,63,0,0,0,63,0,191,255,144,63,0,126,0,63,0,127,255,0,42,0,189,0,42,0,120,63,0,0,0,189,0,0,0,0,63,3,255,255,255,255,255,192,0,63,3,255,255,255,255,255,192,0,63,2,255,255,255,255,255,192,0,63,0,0,3,255,192,0,0,0,63,0,0,7,255,224,0,0,0,63,0,0,15,231,244,0,0,0,63,0,0,63,194,254,0,0,0,63,0,2,255,64,255,208,0,0,127,0,47,252,0,63,253,0,63,254,11,255,224,0,11,255,208,31,253,11,255,0,0,1,255,128,15,228,3,208,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x64c7 擇 + 199,100,34,35,59,36,1,252,0,63,0,0,0,0,0,0,0,0,63,0,21,85,85,85,85,0,0,63,0,63,255,255,255,255,64,0,63,0,63,255,255,255,255,64,0,63,0,62,11,192,248,31,64,0,63,0,62,11,192,248,31,64,0,63,0,62,11,192,248,31,64,127,255,253,63,255,255,255,255,64,127,255,253,63,255,255,255,255,64,127,255,253,21,85,127,85,85,0,0,127,0,0,0,63,0,0,0,0,63,0,21,85,191,85,85,0,0,63,0,47,255,255,255,255,0,0,63,0,47,255,255,255,255,0,0,63,0,0,0,63,0,0,0,0,63,4,0,0,63,0,0,0,0,63,254,255,255,255,255,255,224,1,191,255,255,255,255,255,255,224,127,255,254,170,254,170,175,250,144,191,255,128,0,252,0,15,192,0,127,255,0,0,190,0,47,128,0,121,63,0,0,63,0,63,0,0,0,63,0,255,255,255,255,255,192,0,63,0,255,255,255,255,255,192,0,63,0,170,170,191,170,170,128,0,63,0,0,0,63,0,0,0,0,63,0,0,0,63,0,0,0,0,63,0,63,255,255,255,255,0,0,63,0,63,255,255,255,255,0,0,63,0,42,170,191,170,170,0,0,127,0,0,0,63,0,0,0,63,254,0,0,0,63,0,0,0,31,253,0,0,0,63,0,0,0,15,228,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x64ca 擊 + 202,100,32,34,16,36,2,253,0,7,192,0,0,0,0,0,0,7,208,0,11,255,255,0,191,255,255,255,11,255,255,0,191,255,255,254,11,213,127,4,5,91,229,84,15,192,63,15,47,255,255,252,31,128,63,95,46,7,208,188,127,64,63,255,47,255,255,252,254,0,15,252,47,91,213,188,56,0,0,0,47,91,229,188,127,255,255,240,47,255,255,252,127,255,255,224,0,7,208,0,11,208,15,192,255,255,255,255,7,240,47,128,255,255,255,254,2,253,254,0,31,7,208,244,0,191,248,0,31,7,208,248,27,255,249,0,31,255,255,248,255,255,255,233,31,255,255,248,127,64,47,255,0,0,0,0,21,107,209,189,1,255,255,255,255,255,244,0,0,255,255,255,254,149,0,0,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,11,224,0,0,0,21,85,85,95,229,85,85,84,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,0,21,95,224,0,0,0,0,0,47,255,208,0,0,0,0,0,15,254,64,0,0,0, + // 0x64cb 擋 + 203,100,33,34,50,36,1,253,0,63,0,1,0,127,0,80,0,0,63,0,31,128,127,0,253,0,0,63,0,15,208,127,1,252,0,0,63,0,7,240,127,3,244,0,0,63,0,3,240,127,7,224,0,0,63,0,2,224,127,7,192,0,0,63,0,255,255,255,255,255,192,127,255,253,255,255,255,255,255,192,127,255,253,254,170,170,170,175,192,127,255,253,252,0,0,0,15,192,0,127,0,253,85,85,85,95,192,0,63,0,254,255,255,255,255,192,0,63,0,2,255,255,255,240,0,0,63,0,2,249,85,91,240,0,0,63,0,2,244,0,7,240,0,0,63,4,2,244,0,7,240,0,0,63,253,2,255,255,255,240,0,1,255,253,2,255,255,255,240,0,191,255,253,0,85,85,85,80,0,191,255,64,0,0,0,0,0,0,127,255,0,63,255,255,255,255,0,36,63,0,63,255,255,255,255,0,0,63,0,63,149,191,85,191,0,0,63,0,63,0,62,0,127,0,0,63,0,63,0,62,0,127,0,0,63,0,63,255,255,255,255,0,0,63,0,63,255,255,255,255,0,0,63,0,63,149,191,85,191,0,0,63,0,63,0,62,0,127,0,0,63,0,63,0,62,0,127,0,0,127,0,63,255,255,255,255,0,63,254,0,63,255,255,255,255,0,31,253,0,63,170,170,170,191,0,15,228,0,47,0,0,0,127,0, + // 0x64e0 擠 + 224,100,34,35,59,36,1,252,0,126,0,0,0,127,0,0,0,0,126,0,0,0,127,0,0,0,0,126,0,0,0,127,0,0,0,0,126,3,255,255,255,255,255,192,0,126,3,255,255,255,255,255,192,0,126,2,170,175,170,254,170,128,0,126,0,0,15,0,248,0,0,127,255,252,0,11,128,240,9,0,127,255,252,0,7,194,240,191,64,127,255,254,255,255,227,255,255,64,0,126,2,255,254,190,111,252,0,0,126,0,61,61,61,46,45,0,0,126,0,60,61,61,45,31,0,0,126,0,188,61,61,45,15,0,0,126,0,248,60,61,46,171,192,0,126,107,243,252,61,191,243,224,0,127,255,195,244,61,126,65,192,6,255,253,5,64,40,0,84,0,191,255,224,15,192,0,1,252,0,191,255,0,15,192,0,1,252,0,127,190,0,15,255,255,255,252,0,32,126,0,15,255,255,255,252,0,0,126,0,15,234,170,170,252,0,0,126,0,15,192,0,1,252,0,0,126,0,31,192,0,1,252,0,0,126,0,31,234,170,171,252,0,0,126,0,47,255,255,255,252,0,0,126,0,63,255,255,255,252,0,0,126,0,63,0,0,1,252,0,0,126,0,191,0,0,1,252,0,0,126,1,253,0,0,1,252,0,63,254,3,252,0,0,1,252,0,47,252,11,240,0,0,1,252,0,31,228,1,208,0,0,1,252,0,0,0,0,0,0,0,0,0,0, + // 0x6536 收 + 54,101,34,35,59,36,1,252,0,0,15,192,3,144,0,0,0,0,0,31,192,3,244,0,0,0,0,0,31,192,7,240,0,0,0,0,0,31,192,11,240,0,0,0,2,144,31,192,15,224,0,0,0,7,240,31,192,31,208,0,0,0,7,240,31,192,47,192,0,0,0,7,240,31,192,63,255,255,255,224,7,240,31,192,127,255,255,255,224,7,240,31,192,255,255,255,255,224,7,240,31,193,255,0,0,253,0,7,240,31,195,255,64,1,252,0,7,240,31,199,255,128,2,252,0,7,240,31,207,255,192,3,248,0,7,240,31,239,239,192,3,244,0,7,240,31,255,203,224,7,240,0,7,240,31,223,7,240,11,240,0,7,240,31,198,3,244,15,208,0,7,240,31,192,2,252,47,192,0,7,240,31,192,1,252,63,128,0,7,240,31,192,0,254,191,0,0,7,241,191,192,0,127,254,0,0,7,255,255,192,0,63,252,0,0,127,255,255,192,0,47,248,0,0,127,255,175,192,0,31,240,0,0,63,228,31,192,0,127,252,0,0,41,0,31,192,1,255,254,0,0,0,0,31,192,7,254,255,128,0,0,0,31,192,47,248,63,240,0,0,0,31,193,255,224,15,253,0,0,0,31,203,255,128,7,255,128,0,0,31,239,253,0,0,255,224,0,0,31,207,224,0,0,47,192,0,0,31,199,0,0,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x653e 放 + 62,101,34,35,59,36,1,252,0,3,240,0,0,185,0,0,0,0,3,240,0,0,254,0,0,0,0,3,240,0,0,254,0,0,0,0,3,240,0,0,253,0,0,0,0,3,240,0,1,252,0,0,0,0,7,244,0,2,252,0,0,0,127,255,255,255,67,248,0,0,0,127,255,255,255,67,255,255,255,224,127,255,255,255,71,255,255,255,224,0,126,0,0,15,255,255,255,224,0,126,0,0,31,224,2,252,0,0,126,0,0,47,240,2,248,0,0,126,0,0,63,240,3,244,0,0,127,255,252,191,244,3,240,0,0,127,255,253,255,248,7,240,0,0,127,255,255,254,252,11,224,0,0,126,0,253,248,252,15,208,0,0,126,0,252,112,190,31,192,0,0,126,0,252,0,127,47,192,0,0,190,0,252,0,63,127,64,0,0,190,1,252,0,63,255,0,0,0,253,1,252,0,31,254,0,0,0,253,1,252,0,15,253,0,0,0,252,1,252,0,11,252,0,0,1,252,1,252,0,11,252,0,0,2,252,1,248,0,31,253,0,0,3,248,2,248,0,127,255,64,0,7,240,2,248,1,255,191,192,0,15,240,2,248,7,253,47,240,0,31,208,3,244,47,244,15,253,0,63,192,7,245,255,208,3,255,128,255,67,255,251,255,64,0,255,208,126,2,255,227,252,0,0,47,128,8,1,255,64,208,0,0,6,0,0,0,0,0,0,0,0,0,0, + // 0x6557 敗 + 87,101,34,35,59,36,1,252,0,0,0,0,0,249,0,0,0,10,170,170,168,0,253,0,0,0,11,255,255,252,1,252,0,0,0,11,255,255,252,2,252,0,0,0,11,208,0,252,3,248,0,0,0,11,208,0,252,3,244,0,0,0,11,208,0,252,7,244,0,0,0,11,208,0,252,11,255,255,255,224,11,250,170,252,15,255,255,255,224,11,255,255,252,31,255,255,255,224,11,255,255,252,63,192,2,248,0,11,208,0,252,127,208,3,248,0,11,208,0,252,255,224,3,244,0,11,208,0,254,255,240,7,240,0,11,208,0,255,255,240,11,240,0,11,255,255,255,247,244,15,224,0,11,255,255,255,242,252,15,208,0,11,250,170,253,193,252,31,192,0,11,208,0,252,0,254,63,192,0,11,208,0,252,0,191,63,128,0,11,208,0,252,0,127,191,0,0,11,208,0,252,0,63,255,0,0,11,255,255,252,0,31,253,0,0,11,255,255,252,0,15,252,0,0,6,170,170,168,0,15,248,0,0,0,100,1,64,0,47,252,0,0,0,254,15,208,0,127,255,0,0,1,252,11,240,1,255,255,192,0,3,248,3,248,11,253,63,240,0,11,240,1,253,63,244,15,253,0,31,224,0,191,255,208,3,255,208,63,192,0,59,255,64,0,255,224,127,0,0,1,248,0,0,47,128,13,0,0,0,208,0,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x6574 整 + 116,101,33,33,41,36,2,254,0,3,240,0,0,120,0,0,0,0,3,240,0,0,254,0,0,0,255,255,255,255,128,252,0,0,0,255,255,255,255,130,252,0,0,0,85,87,245,85,3,255,255,255,0,0,3,240,0,11,255,255,255,0,63,255,255,255,31,250,175,250,0,63,255,255,255,63,224,11,208,0,63,3,240,63,255,240,15,192,0,62,3,240,63,253,252,47,128,0,63,3,240,63,56,190,63,0,0,63,255,255,255,0,63,254,0,0,63,255,255,255,0,31,252,0,0,0,63,254,0,0,15,248,0,0,0,255,255,208,0,127,254,0,0,7,251,251,253,2,255,255,208,0,63,211,240,254,127,252,47,254,0,255,67,240,45,255,224,7,255,64,120,3,240,0,126,0,0,190,0,0,1,80,0,16,0,0,8,0,10,170,170,170,170,170,170,160,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,0,11,224,0,0,0,0,0,26,64,11,224,0,0,0,0,0,47,128,11,250,170,168,0,0,0,47,128,11,255,255,253,0,0,0,47,128,11,255,255,253,0,0,0,47,128,11,224,0,0,0,0,0,47,128,11,224,0,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x6578 數 + 120,101,34,35,59,36,1,252,0,0,125,0,0,11,144,0,0,0,0,125,0,0,15,224,0,0,3,255,255,255,224,15,208,0,0,3,255,255,255,224,15,192,0,0,3,224,190,11,224,15,192,0,0,3,224,125,7,224,31,192,0,0,191,255,255,255,255,47,128,0,0,191,255,255,255,255,63,255,255,224,27,224,190,7,229,63,255,255,224,3,224,125,7,224,127,255,255,224,3,255,255,255,224,190,0,189,0,3,255,255,255,224,255,0,253,0,0,0,190,0,1,255,0,252,0,0,0,190,0,3,255,64,252,0,15,255,255,255,251,255,65,252,0,15,255,255,255,255,255,130,248,0,15,192,125,2,255,223,195,244,0,15,192,125,2,251,207,195,240,0,15,255,255,255,245,75,215,240,0,15,255,255,255,244,7,251,224,0,0,3,244,0,0,3,255,208,0,0,7,224,0,0,2,255,192,0,106,175,255,255,255,1,255,128,0,127,255,255,255,255,0,255,0,0,127,255,170,191,149,0,255,0,0,0,189,0,63,0,2,255,64,0,0,254,64,190,0,7,255,192,0,2,255,245,252,0,15,255,224,0,3,255,255,244,0,63,219,244,0,0,0,255,248,0,255,131,253,0,0,11,255,255,71,254,1,255,64,27,255,253,191,239,248,0,127,208,15,255,144,15,139,208,0,31,128,11,164,0,1,3,64,0,3,0,0,0,0,0,0,0,0,0,0, + // 0x6599 料 + 153,101,34,34,50,36,1,253,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,24,11,208,164,1,0,15,208,0,62,11,208,252,15,128,15,208,0,47,11,208,252,31,244,15,208,0,31,11,209,244,7,253,15,208,0,15,75,210,240,0,255,79,208,0,15,139,211,240,0,47,15,208,0,11,203,211,208,0,9,15,208,0,11,203,215,192,0,0,15,208,0,7,139,219,128,0,0,15,208,0,0,11,208,0,0,0,15,208,0,127,255,255,252,120,0,15,208,0,127,255,255,252,255,64,15,208,0,127,255,255,252,191,224,15,208,0,0,63,224,0,31,252,15,208,0,0,63,240,0,2,248,15,208,0,0,191,252,0,0,176,15,208,0,0,255,255,0,0,0,15,208,0,1,255,255,128,0,0,15,208,64,3,251,239,208,0,0,15,255,208,3,235,215,240,0,22,255,255,224,15,203,211,248,107,255,255,255,224,31,203,209,243,255,255,255,228,0,63,75,208,131,255,254,95,208,0,191,11,208,2,249,0,15,208,0,189,11,208,0,0,0,15,208,0,60,11,208,0,0,0,15,208,0,36,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0,0,11,208,0,0,0,15,208,0, + // 0x659c 斜 + 156,101,34,34,50,36,1,253,0,2,253,0,0,0,3,240,0,0,3,255,64,0,0,3,240,0,0,7,255,208,0,0,3,240,0,0,15,255,244,0,180,3,240,0,0,47,203,253,2,253,3,240,0,0,127,130,255,64,255,67,240,0,0,255,0,191,192,63,211,240,0,3,252,0,47,240,15,247,240,0,11,244,0,15,192,3,247,240,0,47,224,0,3,64,0,195,240,0,191,255,255,254,0,0,3,240,0,255,255,255,254,0,0,3,240,0,61,255,255,254,2,192,3,240,0,0,0,253,0,15,244,3,240,0,0,0,253,0,3,254,3,240,0,0,0,253,0,0,191,195,240,0,63,255,255,255,224,47,227,240,0,63,255,255,255,224,11,131,240,0,63,255,255,255,224,1,3,240,0,0,0,253,0,0,0,3,240,64,0,0,253,0,0,0,3,255,208,3,224,253,46,0,1,191,255,224,3,240,253,63,5,191,255,255,224,7,224,253,47,95,255,255,248,0,11,208,253,31,207,255,231,240,0,15,192,253,15,207,164,3,240,0,47,128,253,11,224,0,3,240,0,63,64,253,3,240,0,3,240,0,191,0,253,3,224,0,3,240,0,125,0,253,1,0,0,3,240,0,8,0,253,0,0,0,3,240,0,0,191,252,0,0,0,3,240,0,0,63,252,0,0,0,3,240,0,0,63,224,0,0,0,3,240,0, + // 0x65b0 新 + 176,101,34,35,59,36,1,252,0,1,168,0,0,0,0,4,0,0,1,252,0,0,0,0,189,0,0,1,252,0,0,0,31,255,128,0,1,252,0,6,91,255,255,64,47,255,255,255,199,255,255,224,0,47,255,255,255,199,255,228,0,0,47,255,255,255,199,244,0,0,0,1,240,0,252,7,240,0,0,0,1,244,1,252,7,240,0,0,0,0,252,2,244,7,240,0,0,0,0,252,3,240,7,240,0,0,0,0,184,2,224,7,240,0,0,0,63,255,255,255,215,255,255,255,224,63,255,255,255,215,255,255,255,224,63,255,255,255,215,255,255,255,224,0,1,252,0,7,240,11,240,0,0,1,252,0,7,240,7,224,0,0,1,252,0,7,240,7,224,0,63,255,255,255,199,224,7,224,0,63,255,255,255,203,224,7,224,0,63,255,255,255,203,224,7,224,0,0,7,252,0,15,208,7,224,0,0,15,255,0,15,208,7,224,0,0,47,255,192,15,192,7,224,0,0,127,255,244,31,192,7,224,0,1,254,254,254,47,128,7,224,0,7,249,252,191,63,64,7,224,0,31,241,252,60,127,0,7,224,0,127,193,252,4,254,0,7,224,0,127,1,252,1,253,0,7,224,0,44,1,252,3,252,0,7,224,0,0,1,252,15,240,0,7,224,0,0,1,252,3,224,0,7,224,0,0,1,248,0,128,0,6,160,0,0,0,0,0,0,0,0,0,0, + // 0x65b7 斷 + 183,101,32,34,16,36,3,253,0,20,0,80,0,0,1,64,164,60,0,240,0,0,31,224,248,120,2,208,0,2,255,248,249,241,11,202,9,191,255,208,251,227,223,95,15,255,248,0,250,235,75,188,15,253,0,0,248,255,3,248,15,192,0,0,248,61,1,241,15,192,0,0,248,122,129,219,15,192,0,0,248,242,195,219,143,192,0,0,255,255,255,255,207,192,0,0,251,234,254,81,207,192,0,0,248,0,64,0,15,255,255,254,255,255,255,255,143,255,255,254,255,255,255,255,143,255,255,254,253,126,85,249,79,192,63,64,248,60,1,240,15,192,63,0,248,180,2,208,15,192,63,0,251,242,79,142,15,192,63,0,251,215,223,31,15,192,63,0,249,255,7,189,15,192,63,0,248,190,3,248,15,192,63,0,248,60,0,240,31,128,63,0,248,122,194,235,31,128,63,0,248,242,211,199,111,64,63,0,255,255,255,255,239,64,63,0,251,233,254,150,255,0,63,0,248,0,0,0,127,0,63,0,255,255,255,255,254,0,63,0,255,255,255,255,252,0,63,0,254,170,170,171,252,0,63,0,248,0,0,3,244,0,63,0,248,0,0,1,240,0,63,0,80,0,0,0,80,0,63,0, + // 0x65bc 於 + 188,101,34,35,59,36,1,252,0,7,240,0,0,15,240,0,0,0,7,240,0,0,31,240,0,0,0,7,240,0,0,47,248,0,0,0,7,240,0,0,63,252,0,0,0,7,240,0,0,127,253,0,0,0,7,240,0,0,253,127,0,0,127,255,255,255,1,252,63,128,0,127,255,255,255,3,248,47,192,0,127,255,255,255,11,240,15,224,0,0,190,0,0,31,224,7,244,0,0,190,0,0,63,192,3,252,0,0,190,0,0,255,64,0,255,0,0,190,0,2,254,0,0,191,208,0,190,0,7,252,0,0,63,224,0,255,255,251,240,4,0,15,192,0,255,255,245,192,62,0,3,128,0,255,255,244,0,191,208,0,0,0,253,2,244,0,47,244,0,0,0,252,3,244,0,7,254,0,0,0,252,3,244,0,0,255,64,0,0,252,3,244,0,0,63,0,0,1,252,3,244,0,0,12,0,0,1,252,3,244,0,0,0,0,0,2,248,3,240,0,0,0,0,0,3,244,3,240,11,128,0,0,0,3,240,3,240,31,248,0,0,0,7,240,3,240,31,255,128,0,0,11,224,3,240,2,255,244,0,0,15,208,3,240,0,47,254,0,0,47,192,7,240,0,7,255,208,0,63,128,15,224,0,0,191,248,0,191,11,255,224,0,0,15,252,0,62,7,255,192,0,0,2,240,0,12,3,254,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0, + // 0x6607 昇 + 7,102,32,33,8,36,2,253,1,170,170,170,170,170,170,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,252,0,0,0,0,63,64,1,252,0,0,0,0,63,64,1,252,0,0,0,0,63,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,254,170,170,170,170,191,64,1,252,0,0,0,0,63,64,1,252,0,0,0,0,63,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,170,170,170,170,170,170,64,0,0,0,27,64,5,64,0,0,0,91,255,208,47,192,0,6,255,255,255,224,47,192,0,15,255,255,228,0,47,192,0,11,250,127,64,0,47,192,0,0,0,63,64,0,47,192,0,0,0,63,64,0,47,192,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,191,0,0,47,192,0,0,0,254,0,0,47,192,0,0,3,253,0,0,47,192,0,0,11,248,0,0,47,192,0,0,127,240,0,0,47,192,0,7,255,208,0,0,47,192,0,47,255,0,0,0,47,192,0,15,244,0,0,0,47,192,0,3,64,0,0,0,47,192,0, + // 0x660e 明 + 14,102,31,33,8,36,3,252,255,255,255,3,255,255,255,244,255,255,255,3,255,255,255,244,255,255,255,3,255,255,255,244,252,0,127,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,3,255,255,255,244,252,0,63,3,255,255,255,244,255,255,255,3,255,255,255,244,255,255,255,3,240,0,3,244,255,255,255,3,240,0,3,244,252,0,63,3,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,240,0,3,244,252,0,63,7,255,255,255,244,252,0,63,11,255,255,255,244,255,255,255,15,255,255,255,244,255,255,255,15,208,0,3,244,255,255,255,15,192,0,3,244,252,0,0,47,192,0,3,244,252,0,0,63,128,0,3,244,252,0,0,127,0,0,3,244,84,0,0,255,0,0,3,244,0,0,2,253,0,0,3,244,0,0,7,252,0,0,3,244,0,0,15,240,0,0,7,244,0,0,127,224,0,31,255,240,0,0,127,128,0,15,255,240,0,0,14,0,0,11,254,64,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,34,33,41,36,1,253,0,21,85,85,85,85,85,64,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,85,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,149,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,0,1,252,0,0,0,0,0,3,144,1,252,0,0,0,0,0,7,244,1,252,0,0,0,0,0,11,240,1,252,0,0,0,0,0,15,240,1,255,255,255,244,0,0,15,224,1,255,255,255,244,0,0,47,240,1,255,255,255,244,0,0,63,252,1,252,0,0,0,0,0,191,255,1,252,0,0,0,0,1,254,127,209,252,0,0,0,0,7,252,31,255,252,0,0,0,0,31,240,7,255,255,255,255,255,208,127,208,0,127,255,255,255,255,192,47,64,0,1,191,255,255,255,128,9,0,0,0,0,0,0,0,0, + // 0x6642 時 + 66,102,33,34,50,36,2,253,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,127,255,253,0,0,191,0,0,0,127,255,253,0,0,191,0,0,0,127,255,253,47,255,255,255,252,0,127,0,253,47,255,255,255,252,0,127,0,253,47,255,255,255,252,0,127,0,253,0,0,191,0,0,0,127,0,253,0,0,191,0,0,0,127,0,253,0,0,191,0,0,0,127,0,253,0,0,191,0,0,0,127,0,253,255,255,255,255,255,128,127,0,253,255,255,255,255,255,128,127,255,253,255,255,255,255,255,128,127,255,253,0,0,0,63,64,0,127,255,253,0,0,0,63,64,0,127,0,253,0,0,0,63,64,0,127,0,253,0,0,0,63,64,0,127,0,253,255,255,255,255,255,0,127,0,253,255,255,255,255,255,64,127,0,253,255,255,255,255,255,64,127,0,253,0,0,0,63,64,0,127,0,253,0,192,0,63,64,0,127,0,253,11,240,0,63,64,0,127,255,253,11,248,0,63,64,0,127,255,253,2,253,0,63,64,0,127,255,253,0,255,0,63,64,0,127,0,0,0,63,128,63,64,0,127,0,0,0,47,128,63,64,0,127,0,0,0,13,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,255,255,64,0,0,0,0,0,0,191,255,0,0,0,0,0,0,0,63,248,0,0, + // 0x66ab 暫 + 171,102,32,34,16,36,2,253,0,3,240,0,0,0,1,128,0,3,240,0,0,1,111,240,191,255,255,255,95,191,255,248,191,255,255,255,95,255,254,64,0,3,240,0,31,249,0,0,26,171,250,169,31,128,0,0,63,255,255,254,31,128,0,0,62,3,240,62,31,128,0,0,62,3,240,62,31,255,255,255,63,255,255,254,31,255,255,255,63,171,250,190,31,234,191,170,62,3,240,62,47,64,63,0,63,255,255,254,63,0,63,0,26,171,250,169,63,0,63,0,0,3,240,0,190,0,63,0,255,255,255,255,253,0,63,0,255,255,255,255,248,0,63,0,0,3,240,11,240,0,63,0,0,3,240,2,208,0,63,0,0,1,64,0,64,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,170,170,170,170,252,0,0,63,0,0,0,0,252,0,0,63,0,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,85,85,85,85,252,0,0,63,0,0,0,0,252,0,0,63,0,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,170,170,170,170,252,0,0,63,0,0,0,0,252,0, + // 0x66f4 更 + 244,102,33,33,41,36,2,252,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,254,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,254,170,175,250,170,175,208,0,1,252,0,7,240,0,15,208,0,1,252,0,7,240,0,15,208,0,1,254,170,175,250,170,175,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,252,0,7,240,0,15,208,0,1,252,0,7,240,0,15,208,0,1,252,0,11,240,0,15,208,0,1,254,170,175,250,170,175,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,6,0,15,208,0,0,0,0,0,127,64,47,192,0,0,0,0,0,63,208,63,128,0,0,0,0,0,15,244,255,64,0,0,0,0,0,7,255,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,11,255,255,249,0,0,0,0,6,255,255,255,255,255,169,85,0,255,255,244,27,255,255,255,255,64,127,254,0,0,107,255,255,255,0,47,144,0,0,0,21,175,254,0,0,0,0,0,0,0,0,0,0, + // 0x6700 最 + 0,103,32,33,8,36,2,253,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,190,85,85,85,85,254,0,0,190,0,0,0,0,190,0,0,190,0,0,0,0,190,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,190,0,0,0,0,190,0,0,190,0,0,0,0,190,0,0,191,255,255,255,255,254,0,0,191,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,171,254,171,255,170,170,170,170,3,240,0,252,0,0,0,0,3,240,0,252,0,0,0,0,3,255,255,252,255,255,255,244,3,255,255,252,255,255,255,244,3,249,85,252,107,234,175,240,3,240,0,252,31,192,15,208,3,249,85,252,15,208,47,192,3,255,255,252,7,240,127,128,3,255,255,252,2,252,255,0,3,240,0,252,0,255,252,0,3,240,0,252,0,127,244,0,3,250,191,252,0,127,240,0,255,255,255,252,7,255,254,0,255,255,255,252,127,253,255,228,254,148,0,255,255,224,47,255,0,0,0,252,254,0,7,254,0,0,0,252,96,0,0,44, + // 0x6709 有 + 9,103,33,35,59,36,1,252,0,0,0,100,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,31,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,255,255,255,255,255,128,0,0,7,255,255,255,255,255,128,0,0,15,255,255,255,255,255,128,0,0,63,253,0,0,0,47,128,0,0,255,253,0,0,0,47,128,0,3,255,253,0,0,0,47,128,0,31,252,255,255,255,255,255,128,0,127,240,255,255,255,255,255,128,0,63,128,255,255,255,255,255,128,0,14,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,255,255,255,255,255,128,0,0,0,255,255,255,255,255,128,0,0,0,255,255,255,255,255,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,47,128,0,0,0,253,0,0,0,63,128,0,0,0,253,0,0,255,255,64,0,0,0,253,0,0,191,255,0,0,0,0,253,0,0,127,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x677f 板 + 127,103,34,35,59,36,1,252,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,2,255,255,255,255,192,0,15,192,2,255,255,255,255,192,0,15,192,2,255,255,255,255,192,0,15,192,2,248,0,0,0,0,0,15,192,2,244,0,0,0,0,0,15,192,2,244,0,0,0,0,63,255,255,226,244,0,0,0,0,63,255,255,226,244,0,0,0,0,63,255,255,226,244,0,0,0,0,0,31,192,2,248,0,0,0,0,0,47,192,2,255,255,255,255,64,0,63,192,3,255,255,255,255,64,0,127,224,3,255,255,255,255,0,0,191,244,3,255,208,0,127,0,0,255,252,3,255,224,0,190,0,1,255,255,3,247,240,0,253,0,2,255,239,131,242,244,1,252,0,3,223,207,211,241,252,2,248,0,11,207,199,243,240,253,3,244,0,15,143,194,199,240,191,11,240,0,63,79,192,71,224,63,95,208,0,127,15,192,11,224,47,255,192,0,253,15,192,15,208,15,255,64,0,60,15,192,31,192,7,254,0,0,36,15,192,47,192,3,253,0,0,0,15,192,63,128,15,255,64,0,0,15,192,127,0,127,255,208,0,0,15,192,191,1,255,159,248,0,0,15,193,253,31,253,7,255,128,0,15,195,252,63,244,1,255,224,0,15,193,244,31,128,0,63,128,0,15,192,32,9,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x67f1 柱 + 241,103,34,35,59,36,1,252,0,11,224,0,0,176,0,0,0,0,11,224,0,3,253,0,0,0,0,11,224,0,2,255,128,0,0,0,11,224,0,0,127,240,0,0,0,11,224,0,0,15,252,0,0,0,11,224,0,0,2,253,0,0,0,11,224,0,0,0,244,0,0,0,11,224,3,255,255,255,255,192,63,255,255,247,255,255,255,255,192,63,255,255,247,255,255,255,255,192,63,255,255,244,0,11,240,0,0,0,15,224,0,0,11,240,0,0,0,31,224,0,0,11,240,0,0,0,47,224,0,0,11,240,0,0,0,63,244,0,0,11,240,0,0,0,127,252,0,0,11,240,0,0,0,255,255,0,0,11,240,0,0,0,255,255,192,0,11,240,0,0,2,251,239,224,255,255,255,255,128,3,235,227,244,255,255,255,255,128,11,219,226,244,255,255,255,255,128,15,203,224,224,0,11,240,0,0,47,139,224,64,0,11,240,0,0,127,11,224,0,0,11,240,0,0,190,11,224,0,0,11,240,0,0,60,11,224,0,0,11,240,0,0,36,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,0,0,11,240,0,0,0,11,224,63,255,255,255,255,224,0,11,224,63,255,255,255,255,224,0,11,224,63,255,255,255,255,224,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,34,35,59,36,1,252,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,15,192,31,255,255,255,255,192,0,15,192,31,255,255,255,255,192,0,15,192,31,255,255,255,255,192,63,255,255,218,170,170,170,170,128,63,255,255,192,4,0,1,0,0,63,255,255,192,47,64,15,192,0,0,47,192,0,63,128,15,240,0,0,63,192,0,191,0,7,248,0,0,63,192,1,253,0,1,253,0,0,127,240,3,248,0,0,191,0,0,191,244,15,240,0,0,63,192,0,255,252,63,235,0,15,159,208,1,255,255,47,127,64,31,203,192,3,255,223,73,31,192,63,129,0,7,239,207,192,15,192,63,64,0,11,207,199,208,11,240,191,0,0,15,143,195,128,3,244,253,0,0,63,79,193,0,2,255,252,0,0,127,15,192,0,0,255,244,0,0,189,15,192,0,0,127,224,0,0,60,15,192,0,0,63,224,0,0,36,15,192,0,0,255,248,0,0,0,15,192,0,7,255,255,0,0,0,15,192,0,31,245,255,192,0,0,15,192,1,255,208,63,248,0,0,15,192,27,255,0,15,255,128,0,15,192,191,248,0,3,255,208,0,15,192,63,208,0,0,127,128,0,15,192,45,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x683c 格 + 60,104,34,35,59,36,1,252,0,15,192,0,1,224,0,0,0,0,15,192,0,3,248,0,0,0,0,15,192,0,7,244,0,0,0,0,15,192,0,15,240,0,0,0,0,15,192,0,31,255,255,244,0,0,15,192,0,63,255,255,252,0,0,15,192,0,191,255,255,244,0,0,15,192,1,255,0,7,240,0,63,255,255,231,255,64,15,224,0,63,255,255,239,255,192,47,192,0,63,255,255,255,223,224,127,64,0,0,31,192,191,71,248,254,0,0,0,47,208,29,2,255,252,0,0,0,63,244,0,0,191,240,0,0,0,127,252,0,0,127,240,0,0,0,191,255,0,2,255,253,0,0,0,255,239,192,15,255,255,128,0,1,255,207,208,191,240,127,248,0,3,239,195,203,255,128,31,255,208,7,223,194,255,253,0,2,255,224,15,207,192,255,255,255,255,255,128,31,143,192,126,255,255,255,253,0,63,15,192,17,255,255,255,252,0,191,15,192,1,248,0,1,252,0,189,15,192,1,248,0,1,252,0,60,15,192,1,248,0,1,252,0,36,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,248,0,1,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,255,255,255,252,0,0,15,192,1,248,0,1,252,0,0,0,0,0,0,0,0,0,0, + // 0x689d 條 + 157,104,34,35,59,36,1,252,0,2,64,0,2,144,0,0,0,0,7,240,0,3,240,0,0,0,0,11,224,0,11,240,0,0,0,0,15,208,0,15,208,0,0,0,0,31,197,64,63,255,255,255,192,0,63,143,192,191,255,255,255,192,0,127,15,193,255,170,171,254,128,0,191,15,195,255,0,11,240,0,0,253,15,207,255,128,15,208,0,3,253,15,255,223,224,63,192,0,7,253,15,207,71,248,255,0,0,15,253,15,193,1,255,252,0,0,47,253,15,192,0,127,244,0,0,127,253,15,192,1,255,253,0,0,255,253,15,192,31,255,255,208,0,254,189,15,203,255,244,127,255,144,124,189,15,223,255,64,7,255,208,48,189,15,203,228,15,192,111,128,0,189,15,193,0,15,192,1,0,0,189,15,192,0,15,192,0,0,0,189,15,207,255,255,255,255,192,0,189,15,207,255,255,255,255,192,0,189,15,207,255,255,255,255,192,0,189,15,192,0,191,248,0,0,0,189,15,192,1,255,253,0,0,0,189,15,192,7,255,255,0,0,0,189,15,192,31,239,239,192,0,0,189,15,128,127,143,203,240,0,0,189,0,2,255,15,195,253,0,0,189,0,31,252,15,192,255,128,0,189,0,191,224,15,192,63,240,0,189,0,63,64,15,192,15,192,0,189,0,8,0,15,192,2,0,0,189,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x68c4 棄 + 196,104,32,34,16,36,2,253,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,0,0,0,11,224,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,106,170,191,234,170,255,170,170,0,0,127,64,0,255,128,0,0,0,254,0,0,31,248,0,31,255,255,255,255,255,255,128,31,255,255,255,255,255,255,244,31,255,255,170,170,85,87,244,0,0,0,6,144,0,0,144,0,47,128,11,208,2,248,0,0,47,128,11,208,2,248,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,106,191,234,175,250,171,254,169,0,47,128,11,208,2,248,0,0,47,128,11,208,2,248,0,0,47,255,255,255,255,248,0,0,47,255,255,255,255,248,0,0,5,85,95,245,85,84,0,0,0,0,15,224,0,0,0,170,170,170,175,250,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,11,255,255,224,0,0,0,0,127,223,231,253,0,0,0,7,255,15,225,255,208,0,0,191,248,15,224,47,254,64,111,255,128,15,224,2,255,249,255,248,0,15,224,0,47,255,127,128,0,15,224,0,2,253,20,0,0,11,224,0,0,4, + // 0x69fd 槽 + 253,105,34,35,59,36,1,252,0,47,64,0,11,208,252,0,0,0,47,64,0,11,208,252,0,0,0,47,64,0,11,208,252,0,0,0,47,64,255,255,255,255,255,224,0,47,64,255,255,255,255,255,224,0,47,64,170,175,250,254,170,144,0,47,64,0,11,208,252,0,0,0,47,128,5,91,229,253,85,0,63,255,255,47,255,255,255,255,64,63,255,255,47,255,255,255,255,64,63,255,255,47,3,208,248,31,64,0,63,64,47,3,208,248,31,64,0,63,64,47,255,255,255,255,64,0,127,128,47,255,255,255,255,64,0,191,192,47,7,208,248,31,64,0,255,240,47,3,208,248,31,64,1,255,244,47,3,208,248,31,64,2,255,252,47,255,255,255,255,64,3,255,190,47,255,255,255,255,64,7,239,111,69,85,85,85,85,0,15,239,79,0,0,0,0,0,0,31,111,73,7,255,255,255,252,0,63,47,64,7,255,255,255,252,0,126,47,64,7,250,170,170,252,0,188,47,64,7,240,0,0,252,0,56,47,64,7,245,85,85,252,0,32,47,64,7,255,255,255,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,240,0,0,252,0,0,47,64,7,240,0,0,252,0,0,47,64,7,250,170,170,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,255,255,255,252,0,0,47,64,7,240,0,0,252,0,0,0,0,0,0,0,0,0,0, + // 0x6a59 橙 + 89,106,34,34,50,36,1,253,0,31,192,0,0,0,80,0,0,0,31,192,26,170,130,240,32,0,0,31,192,47,255,241,244,244,0,0,31,192,47,255,224,255,252,0,0,31,192,0,15,192,255,224,0,0,31,192,4,15,192,191,66,0,0,31,192,62,47,128,63,11,192,0,31,192,127,255,0,47,175,192,63,255,255,159,254,0,31,254,0,63,255,255,131,253,0,15,244,0,63,255,255,131,255,255,255,252,0,0,47,192,15,239,255,254,255,0,0,63,192,47,202,170,168,191,208,0,63,192,255,0,0,0,47,240,0,191,226,253,0,0,0,11,192,0,255,244,179,255,255,255,249,64,0,255,252,3,255,255,255,248,0,2,255,255,3,245,85,87,248,0,3,255,223,131,240,0,2,248,0,7,239,207,195,240,0,2,248,0,15,223,199,67,240,0,2,248,0,15,159,194,3,250,170,171,248,0,63,31,192,3,255,255,255,248,0,127,31,192,3,255,255,255,248,0,189,31,192,0,8,0,14,64,0,60,31,192,0,189,0,31,192,0,36,31,192,0,127,0,47,128,0,0,31,192,0,63,0,63,0,0,0,31,192,0,47,64,126,0,0,0,31,192,0,30,0,124,0,0,0,31,192,255,255,255,255,255,224,0,31,192,255,255,255,255,255,224,0,31,192,255,255,255,255,255,208,0,31,192,0,0,0,0,0,0, + // 0x6a5f 機 + 95,106,34,34,50,36,1,253,0,63,0,1,0,189,1,0,0,0,63,0,7,208,189,3,224,0,0,63,0,15,192,189,11,192,0,0,63,0,15,128,189,15,128,0,0,63,0,47,8,189,31,8,0,0,63,0,253,47,189,254,31,64,0,63,3,252,62,127,252,63,0,0,63,0,253,188,126,254,188,0,63,255,254,63,244,125,63,248,0,63,255,254,15,240,126,15,240,0,63,255,254,11,208,126,7,210,0,0,127,0,15,173,62,15,143,64,0,127,0,47,31,62,63,11,192,0,191,128,125,31,63,255,255,208,0,255,210,255,255,127,255,255,224,1,255,242,255,255,191,87,65,224,2,255,249,149,7,127,11,208,64,3,255,188,0,0,47,7,244,0,3,255,62,0,0,47,64,252,0,11,255,47,255,255,255,255,255,208,15,191,14,255,255,255,255,255,208,31,63,1,175,234,175,234,170,128,63,63,0,15,192,15,192,228,0,125,63,0,31,192,11,193,252,0,188,63,0,31,244,7,211,244,0,56,63,0,47,254,3,251,240,0,32,63,0,63,191,195,255,192,0,0,63,0,127,31,194,255,0,0,0,63,0,254,3,2,253,1,208,0,63,1,252,0,31,254,2,240,0,63,7,248,1,191,255,131,224,0,63,15,240,31,254,31,255,208,0,63,11,192,15,240,11,255,192,0,63,2,0,6,0,1,190,0, + // 0x6aa2 檢 + 162,106,34,35,59,36,1,252,0,31,128,0,0,63,64,0,0,0,31,128,0,0,255,192,0,0,0,31,128,0,2,255,240,0,0,0,31,128,0,7,251,252,0,0,0,31,128,0,31,241,255,0,0,0,31,128,0,127,192,191,192,0,0,31,128,1,255,64,47,240,0,0,31,192,7,253,0,11,253,0,63,255,255,175,244,0,2,255,128,63,255,255,255,255,255,255,255,240,63,255,255,255,63,255,255,95,192,0,63,128,56,42,170,170,67,128,0,63,128,16,0,0,0,0,0,0,127,192,5,85,80,85,85,0,0,191,224,31,255,241,255,255,64,0,255,244,31,255,241,255,255,64,0,255,252,31,2,241,240,31,64,2,255,254,31,2,241,240,31,64,3,255,175,95,2,241,240,31,64,7,239,143,223,2,241,240,31,64,11,223,139,95,255,241,255,255,64,15,159,130,31,255,241,255,255,64,47,31,128,5,85,80,85,85,0,127,31,128,0,121,0,15,128,0,189,31,128,0,253,0,15,192,0,60,31,128,0,252,0,31,128,0,32,31,128,2,252,0,63,64,0,0,31,128,3,254,0,63,192,0,0,31,128,11,255,128,255,244,0,0,31,128,31,239,226,255,254,0,0,31,128,127,135,235,244,255,128,0,31,130,255,1,191,224,47,224,0,31,129,252,0,31,128,11,208,0,31,128,160,0,9,0,2,64,0,0,0,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,32,32,0,36,2,255,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,0,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,255,255,255,244,0,127,0,1,255,255,255,244,0,127,0,1,255,255,255,244,0,127,0,1,253,85,85,80,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,0,127,0,1,252,0,0,0,85,191,85,86,253,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6b63 正 + 99,107,32,31,248,36,2,254,5,85,85,85,85,85,85,84,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,106,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,255,255,255,208,0,127,0,3,255,255,255,208,0,127,0,3,255,255,255,208,0,127,0,3,252,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,0,127,0,3,248,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x6b65 步 + 101,107,32,34,16,36,2,253,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,21,0,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,255,255,255,64,0,63,128,11,255,255,255,64,0,63,128,11,255,255,255,64,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,0,63,128,11,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,11,224,0,0,0,0,7,144,11,224,0,0,0,0,15,244,11,224,0,57,0,0,63,224,11,224,0,191,64,0,255,128,11,224,0,255,0,3,255,0,11,224,2,253,0,31,252,0,11,224,3,252,0,191,224,0,11,224,15,244,0,127,128,15,255,224,47,240,0,13,0,11,255,208,191,192,0,0,0,7,254,66,255,64,0,0,0,0,0,15,253,0,0,0,0,0,0,191,244,0,0,0,0,0,7,255,208,0,0,0,0,1,191,255,0,0,0,0,1,111,255,244,0,0,0,2,191,255,255,64,0,0,0,3,255,255,228,0,0,0,0,1,255,249,0,0,0,0,0,0,233,0,0,0,0,0,0, + // 0x6b78 歸 + 120,107,34,34,50,36,1,253,0,15,128,0,0,0,0,0,0,0,31,192,0,63,255,255,248,0,0,47,64,0,63,255,255,248,0,15,255,255,240,21,85,86,248,0,15,255,255,240,0,0,1,248,0,15,213,87,241,85,85,86,249,64,15,192,3,247,255,255,255,255,224,15,192,3,247,255,255,255,255,224,15,255,255,240,0,0,1,248,0,15,255,255,240,0,0,1,248,0,15,213,85,80,63,255,255,248,0,15,192,0,0,63,255,255,248,0,15,255,255,240,21,85,85,80,0,15,255,255,241,170,170,170,170,64,15,213,87,242,255,255,255,255,192,15,192,3,242,255,255,255,255,192,15,192,3,242,240,11,208,15,192,15,255,255,242,240,11,208,15,192,15,255,255,242,240,11,208,15,192,5,91,229,80,0,11,208,0,0,0,3,224,0,191,255,255,254,0,15,67,224,0,191,255,255,254,0,15,131,250,160,191,175,250,254,0,15,131,255,240,189,11,208,126,0,15,131,255,240,189,11,208,126,0,15,131,224,0,189,11,208,126,0,15,131,224,0,189,11,208,126,0,15,131,224,4,189,11,208,126,0,15,135,255,252,189,11,213,190,0,31,255,255,252,189,11,215,253,0,191,255,255,228,189,11,211,248,0,127,254,144,0,0,11,208,0,0,41,0,0,0,0,11,208,0,0,0,0,0,0,0,11,208,0,0, + // 0x6bbc 殼 + 188,107,33,35,59,36,2,252,0,11,208,0,0,0,0,0,0,0,11,224,0,7,255,255,128,0,0,11,224,0,11,255,255,128,0,255,255,255,255,11,255,255,128,0,255,255,255,255,11,208,31,128,0,85,95,245,85,11,208,31,128,0,0,11,224,0,11,208,31,128,0,21,95,229,84,11,208,31,128,0,63,255,255,252,11,208,31,135,64,63,255,255,252,15,192,31,135,192,0,0,0,0,31,192,31,135,192,0,0,0,0,63,128,31,239,192,255,255,255,254,191,0,15,255,128,255,255,255,255,254,0,7,254,0,253,85,85,126,188,0,0,0,0,248,0,0,62,16,0,0,0,0,251,255,255,190,63,255,255,248,0,3,255,255,128,63,255,255,252,0,1,85,85,64,63,255,255,248,0,0,0,0,0,6,192,3,240,0,2,170,170,128,15,208,11,240,0,3,255,255,192,7,240,15,208,0,3,255,255,192,3,244,47,192,0,3,240,15,192,1,252,127,64,0,7,240,15,192,0,254,255,0,0,7,224,15,192,0,127,252,0,0,7,224,15,193,0,47,244,0,0,11,208,15,255,64,127,248,0,0,15,192,111,255,66,255,255,0,0,47,192,191,249,31,254,255,208,0,127,64,63,130,255,240,63,254,0,255,0,16,15,255,128,11,255,64,60,0,0,7,248,0,1,254,0,0,0,0,3,128,0,0,28,0,0,0,0,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,34,34,50,36,1,253,0,42,64,0,6,160,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,40,0,0,63,128,0,7,240,1,254,0,0,63,128,0,7,240,11,255,64,0,63,255,255,7,240,191,253,0,0,63,255,255,7,251,255,224,0,0,63,255,255,7,255,254,0,0,0,63,149,85,7,255,208,0,0,0,63,128,0,7,253,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,7,128,0,63,128,0,7,240,0,7,240,0,63,128,6,199,240,0,7,224,0,63,150,255,199,240,0,11,224,0,63,255,255,215,240,0,15,208,43,255,255,255,135,244,0,31,208,127,255,255,144,3,255,255,255,192,63,255,144,0,2,255,255,255,128,46,64,0,0,0,191,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x6c92 沒 + 146,108,33,34,50,36,1,253,0,144,0,0,190,0,0,0,0,3,253,0,0,254,0,0,0,0,7,255,128,0,253,0,0,0,0,0,191,244,0,255,255,255,253,0,0,15,244,1,255,255,255,253,0,0,2,224,2,255,255,255,253,0,0,0,64,3,248,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,11,240,0,1,252,0,0,0,0,15,224,0,1,252,0,8,0,0,47,192,0,2,252,0,47,128,0,63,128,0,3,248,0,127,244,0,255,0,0,7,244,0,47,255,3,254,0,31,255,240,0,2,255,139,252,0,15,255,224,0,0,47,2,240,0,11,255,128,0,0,4,0,64,0,0,0,0,0,0,0,0,255,255,255,255,248,0,0,0,0,255,255,255,255,252,0,0,0,0,255,255,255,255,252,0,0,2,208,2,240,0,7,244,0,0,3,244,3,248,0,15,240,0,0,11,240,1,253,0,63,208,0,0,15,224,0,255,64,191,128,0,0,47,192,0,63,210,255,0,0,0,63,128,0,31,255,252,0,0,0,191,0,0,7,255,240,0,0,0,254,0,0,3,255,224,0,0,3,252,0,0,111,255,253,0,0,7,248,0,7,255,255,255,208,0,15,240,6,255,255,129,255,255,128,15,224,15,255,248,0,47,255,192,2,192,7,254,64,0,1,255,64,0,0,2,144,0,0,0,10,0, + // 0x6d88 消 + 136,109,32,35,24,36,2,252,1,0,0,0,2,252,0,0,15,208,0,96,2,252,0,164,47,248,3,244,2,252,0,254,11,255,66,252,2,252,2,252,0,255,192,254,2,252,3,248,0,47,64,191,2,252,11,240,0,6,0,63,130,252,15,208,0,0,0,47,194,252,47,192,0,0,0,13,2,252,6,0,0,0,0,0,2,252,0,0,120,0,1,255,255,255,255,244,255,128,1,255,255,255,255,244,255,240,1,255,255,255,255,244,31,253,1,252,0,0,3,244,3,253,1,252,0,0,3,244,0,184,1,252,0,0,3,244,0,32,1,252,0,0,3,244,0,0,1,255,255,255,255,244,0,0,1,255,255,255,255,244,0,0,1,255,255,255,255,244,0,14,1,252,0,0,3,244,0,31,193,252,0,0,3,244,0,63,129,252,0,0,3,244,0,127,1,255,255,255,255,244,0,255,1,255,255,255,255,244,1,253,1,255,255,255,255,244,3,252,1,252,0,0,3,244,7,244,1,252,0,0,3,244,15,240,1,252,0,0,3,244,31,224,1,252,0,0,3,244,63,192,1,252,0,0,3,244,127,128,1,252,0,11,255,240,31,0,1,252,0,7,255,240,1,0,1,252,0,3,255,128,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,34,34,50,36,1,253,0,0,0,0,0,253,0,0,0,2,224,0,0,0,253,0,0,0,7,254,0,9,64,253,0,160,0,2,255,208,31,128,253,0,254,0,0,127,244,63,64,252,2,252,0,0,11,240,63,0,252,3,244,0,0,1,192,254,1,252,11,240,0,0,0,1,252,2,248,31,192,0,0,0,2,248,3,253,47,64,0,0,0,0,16,7,255,129,0,0,8,0,0,0,15,255,248,0,0,47,128,0,0,63,219,255,64,0,127,244,0,2,255,64,255,240,0,31,255,0,111,254,0,31,254,0,1,255,67,255,244,0,2,255,64,0,46,2,255,128,253,0,126,0,0,4,0,228,0,252,0,8,0,0,0,0,0,0,252,0,0,0,0,0,0,47,64,252,0,190,0,0,3,0,63,65,252,0,255,0,0,11,192,127,1,252,2,253,0,0,15,224,190,2,254,3,248,0,0,47,192,252,3,255,11,240,0,0,63,131,252,3,255,95,208,0,0,191,7,240,11,255,223,128,0,0,254,0,96,15,239,224,0,0,2,253,0,0,63,199,248,0,0,7,252,0,1,255,131,254,0,0,15,240,0,27,254,0,255,208,0,31,224,2,255,248,0,63,254,64,31,192,47,255,208,0,11,255,208,3,128,15,253,0,0,1,255,128,0,0,7,144,0,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6e05 清 + 5,110,34,34,50,36,1,253,0,64,0,0,0,253,0,0,0,3,248,0,0,0,253,0,0,0,11,255,66,255,255,255,255,255,64,1,255,226,255,255,255,255,255,64,0,47,241,85,85,254,85,85,0,0,7,208,0,0,253,0,0,0,0,0,128,21,85,254,85,84,0,0,0,0,191,255,255,255,253,0,0,0,0,191,255,255,255,253,0,0,0,0,0,0,253,0,0,0,13,0,0,0,0,253,0,0,0,63,208,11,255,255,255,255,255,224,127,253,11,255,255,255,255,255,224,11,255,133,85,85,85,85,85,64,1,255,0,0,0,0,0,0,0,0,46,0,26,170,170,170,164,0,0,4,0,47,255,255,255,252,0,0,0,0,47,255,255,255,252,0,0,0,0,47,128,0,1,252,0,0,1,0,47,128,0,1,252,0,0,3,208,47,255,255,255,252,0,0,7,240,47,255,255,255,252,0,0,15,240,47,128,0,1,252,0,0,31,208,47,128,0,1,252,0,0,63,192,47,128,0,1,252,0,0,127,64,47,255,255,255,252,0,0,255,0,47,255,255,255,252,0,1,254,0,47,149,85,86,252,0,3,252,0,47,128,0,1,252,0,7,244,0,47,128,0,1,252,0,15,240,0,47,128,0,1,252,0,31,208,0,47,128,2,255,248,0,3,192,0,47,128,1,255,244,0,0,0,0,47,128,0,255,144,0, + // 0x6e2c 測 + 44,110,32,35,24,36,1,252,0,0,0,0,0,0,0,47,3,224,0,0,0,0,0,63,15,253,15,255,255,192,0,63,7,255,143,255,255,192,0,63,0,127,207,255,255,194,240,63,0,15,79,192,15,195,240,63,0,1,15,192,15,195,240,63,0,0,15,192,15,195,240,63,0,0,15,255,255,195,240,63,0,0,15,255,255,195,240,63,8,0,15,255,255,195,240,63,47,128,15,192,15,195,240,63,127,248,15,192,15,195,240,63,31,255,15,192,15,195,240,63,1,253,15,192,15,195,240,63,0,56,15,234,175,195,240,63,0,0,15,255,255,195,240,63,0,0,15,255,255,195,240,63,0,0,15,192,15,195,240,63,0,0,15,192,15,195,240,63,0,24,15,192,15,195,240,63,0,47,15,192,15,195,240,63,0,63,79,255,255,195,240,63,0,127,15,255,255,195,240,63,0,254,15,255,255,194,240,63,0,253,0,0,4,0,0,63,2,252,3,244,63,0,0,63,3,248,7,240,63,128,0,63,7,240,15,208,31,192,0,63,15,224,47,192,15,240,0,63,31,208,127,64,3,248,0,63,63,193,254,0,1,244,255,255,11,66,252,0,0,128,127,254,0,0,112,0,0,0,63,228,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,34,34,50,36,1,253,0,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,11,255,3,255,255,255,255,255,192,2,255,211,255,255,255,255,255,192,0,63,227,255,255,255,255,255,192,0,11,195,244,0,15,240,0,0,0,1,3,244,0,15,224,0,0,0,0,3,244,0,15,192,0,0,0,0,3,244,85,111,213,85,0,0,0,3,244,255,255,255,255,0,13,0,3,244,255,255,255,255,0,63,208,3,244,252,0,0,63,0,127,248,3,244,252,0,0,63,0,11,255,3,244,253,85,85,127,0,1,254,3,244,255,255,255,255,0,0,44,3,240,255,255,255,255,0,0,0,3,240,252,0,0,63,0,0,0,3,240,252,0,0,63,0,0,0,3,240,252,0,0,63,0,0,0,7,240,255,255,255,255,0,0,13,7,240,255,255,255,255,0,0,31,139,224,85,95,229,85,0,0,63,139,224,0,15,208,0,0,0,127,15,208,36,15,208,116,0,0,191,15,192,191,15,210,252,0,0,253,31,192,253,15,208,254,0,2,252,47,129,252,15,208,127,64,3,248,63,67,244,15,208,63,192,7,240,127,11,240,15,208,31,208,15,240,254,31,208,15,208,15,224,31,209,253,47,128,15,208,7,208,63,195,252,2,11,255,192,0,0,11,65,244,0,7,255,192,0,0,0,0,16,0,3,249,0,0,0, + // 0x6e96 準 + 150,110,33,34,50,36,1,253,0,96,0,7,144,11,144,0,0,0,254,0,15,240,15,224,0,0,2,255,224,31,208,31,192,0,0,0,47,240,63,192,63,128,0,0,0,3,208,255,255,255,255,254,0,0,0,66,255,255,255,255,254,0,9,0,7,255,170,255,170,169,0,63,208,31,254,0,127,0,0,0,127,253,127,254,0,127,0,0,0,7,253,255,255,255,255,255,244,0,0,120,62,191,255,255,255,244,0,0,0,4,191,85,191,85,80,0,0,0,128,190,0,127,0,0,0,0,2,224,190,85,191,85,80,0,0,11,240,191,255,255,255,248,0,0,47,208,191,255,255,255,248,0,0,127,128,190,0,127,0,0,0,1,254,0,190,0,127,0,0,0,11,252,0,191,170,255,170,170,64,31,240,0,191,255,255,255,255,128,11,192,0,191,255,255,255,255,128,3,64,0,2,244,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x6eab 溫 + 171,110,34,34,50,36,1,253,0,128,0,0,0,0,0,0,0,3,248,0,42,170,170,170,160,0,7,255,128,127,255,255,255,240,0,1,255,240,127,255,255,255,240,0,0,31,224,126,0,80,7,240,0,0,3,192,126,0,244,7,240,0,0,0,0,126,0,240,7,240,0,0,0,0,126,2,240,7,240,0,0,0,0,126,3,252,7,240,0,0,0,0,126,15,255,71,240,0,14,0,0,126,63,11,215,240,0,63,224,0,126,189,3,247,240,0,127,253,0,126,32,0,135,240,0,11,255,0,127,170,170,171,240,0,0,254,0,127,255,255,255,240,0,0,28,0,127,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,252,0,0,6,2,255,255,255,255,252,0,0,15,194,255,255,255,255,252,0,0,31,210,244,62,7,192,252,0,0,47,194,244,62,7,192,252,0,0,63,66,244,62,7,192,252,0,0,191,2,244,62,7,192,252,0,0,254,2,244,62,7,192,252,0,2,252,2,244,62,7,192,252,0,3,248,2,244,62,7,192,252,0,11,240,2,244,62,7,192,252,0,31,224,191,255,255,255,255,255,224,47,192,191,255,255,255,255,255,224,7,128,191,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6fc0 激 + 192,111,34,35,59,36,1,252,1,0,0,15,144,1,228,0,0,3,224,0,31,192,1,252,0,0,15,253,0,47,192,2,248,0,0,3,255,133,127,149,66,244,0,0,0,127,223,255,255,195,244,0,0,0,15,15,255,255,195,240,0,0,0,1,15,64,15,195,240,0,0,0,0,15,64,15,199,255,255,224,0,0,15,149,95,203,255,255,224,0,0,15,255,255,207,255,255,224,13,0,15,255,255,223,192,63,0,63,208,15,64,15,239,192,126,0,127,248,15,64,15,255,208,126,0,15,254,15,149,95,255,208,189,0,1,253,15,255,255,255,224,189,0,0,56,15,255,255,255,240,252,0,0,0,0,31,192,186,240,252,0,0,0,0,31,192,33,244,252,0,0,0,106,191,234,160,249,248,0,0,0,191,255,255,240,254,244,0,0,24,191,255,255,240,191,240,0,0,47,0,252,0,0,127,240,0,0,63,64,252,0,0,63,208,0,0,127,0,254,170,128,47,192,0,0,254,0,255,255,128,47,192,0,0,252,1,255,255,128,63,192,0,2,252,2,244,31,128,191,240,0,3,248,3,240,31,129,255,244,0,7,240,7,240,31,131,253,252,0,15,240,15,208,47,79,240,255,0,31,208,63,192,63,127,208,63,192,63,192,255,15,255,255,128,31,224,11,130,253,15,254,189,0,7,192,0,0,112,6,148,36,0,1,0,0,0,0,0,0,0,0,0,0, + // 0x7121 無 + 33,113,33,34,50,36,2,253,0,7,144,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,11,255,255,255,255,255,255,248,0,31,255,2,240,31,64,252,0,0,191,255,2,240,31,64,252,0,0,255,127,2,240,31,64,252,0,0,61,63,2,240,31,64,252,0,0,4,63,2,240,31,64,252,0,0,0,63,2,240,31,64,252,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,63,2,240,31,64,252,0,0,0,63,2,240,31,64,252,0,0,0,63,2,240,31,64,252,0,0,0,63,2,240,31,64,252,0,0,0,63,2,240,31,64,252,0,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,6,0,0,2,252,6,208,27,192,63,128,0,3,248,11,224,15,192,47,208,0,7,240,7,240,15,224,15,240,0,15,240,7,240,11,240,7,252,0,47,208,3,240,3,240,2,253,0,127,128,3,240,3,244,0,255,0,255,0,3,240,2,248,0,191,64,29,0,1,64,1,64,0,52,0, + // 0x71b1 熱 + 177,113,33,34,50,36,2,253,0,6,144,0,0,252,0,0,0,0,7,224,0,0,252,0,0,0,5,91,229,80,0,252,0,0,0,31,255,255,248,0,252,0,0,0,31,255,255,248,0,252,0,0,0,0,7,224,0,127,255,255,192,0,0,7,224,0,127,255,255,192,0,191,255,255,255,127,255,255,192,0,191,255,255,255,0,252,15,192,0,85,253,127,85,0,252,15,192,0,0,244,62,4,0,252,15,192,0,3,240,62,15,57,248,15,192,0,31,224,47,255,191,248,15,192,0,255,128,31,253,191,244,15,192,0,125,7,224,0,31,253,15,192,0,0,7,224,0,3,255,79,192,0,21,91,245,84,3,255,239,192,0,63,255,255,252,11,239,223,195,128,63,255,255,252,15,211,207,195,192,0,7,224,0,31,192,15,195,192,0,7,224,0,63,64,15,195,192,0,7,250,190,191,0,15,199,192,175,255,255,255,253,0,15,255,128,255,255,255,251,248,0,11,255,64,255,233,80,0,240,0,1,169,0,0,0,0,0,64,0,0,0,0,0,144,0,0,1,0,11,0,0,2,252,11,208,31,192,63,192,0,3,248,11,224,15,208,31,224,0,11,240,11,240,15,224,11,244,0,31,224,7,240,7,240,3,252,0,63,192,7,240,3,244,1,254,0,255,0,7,240,3,244,0,191,0,29,0,1,0,0,0,0,32,0, + // 0x71c8 燈 + 200,113,34,34,50,36,1,253,0,10,64,0,0,11,128,64,0,0,31,128,26,170,79,193,224,0,0,31,128,47,255,231,215,244,0,0,31,128,47,255,211,255,192,0,0,31,128,0,15,194,255,0,0,0,31,129,8,15,192,252,15,64,0,31,139,255,111,64,190,63,192,9,31,143,239,255,0,63,254,0,15,31,159,75,253,0,31,244,0,15,31,191,3,248,0,15,240,0,31,31,253,11,255,255,255,252,0,31,31,252,47,255,255,254,255,64,31,31,144,191,90,170,168,127,240,47,31,135,253,0,0,0,31,224,62,31,135,244,0,0,0,2,192,124,47,130,135,255,255,255,244,0,120,47,64,7,255,255,255,244,0,0,47,64,7,250,170,171,244,0,0,47,64,7,224,0,3,244,0,0,63,64,7,224,0,3,244,0,0,63,0,7,224,0,3,244,0,0,63,128,7,250,170,171,244,0,0,63,208,7,255,255,255,244,0,0,127,240,7,255,255,255,244,0,0,255,252,0,20,0,25,0,0,0,252,254,0,252,0,47,192,0,2,252,127,64,126,0,63,64,0,3,244,47,192,63,0,127,0,0,11,240,15,64,47,64,189,0,0,15,224,5,0,30,0,188,0,0,63,192,1,255,255,255,255,255,192,127,64,2,255,255,255,255,255,192,46,0,2,255,255,255,255,255,192,8,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,35,24,36,1,252,0,0,0,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,47,213,85,95,245,85,84,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,255,255,255,255,255,253,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,213,85,85,85,80,0,0,63,255,255,255,255,244,0,0,63,255,255,255,255,244,0,0,127,255,255,255,255,244,0,0,127,0,0,0,7,244,0,0,191,0,0,0,7,244,0,0,255,0,0,0,7,244,0,0,254,0,0,0,7,244,0,2,252,0,0,0,7,244,0,3,252,0,0,0,7,244,0,11,248,0,0,0,7,244,0,15,240,0,0,0,7,244,0,63,224,0,0,0,7,244,0,127,192,0,0,0,7,244,0,31,0,0,0,0,7,244,0,9,0,0,0,0,7,244,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,34,34,50,36,1,253,0,3,240,0,14,64,0,0,0,0,3,240,0,31,128,0,0,0,11,131,240,0,47,64,0,0,0,15,195,240,0,63,0,0,0,0,15,195,240,0,63,0,0,0,0,15,195,240,0,190,0,0,0,0,15,131,240,0,255,255,255,255,208,31,255,255,209,255,255,255,255,192,31,255,255,211,255,255,255,255,192,47,255,255,215,240,126,15,207,192,63,7,240,15,224,188,31,143,192,62,3,240,31,192,252,47,79,192,125,3,240,63,129,248,63,15,192,252,3,240,255,2,244,63,15,192,44,3,240,125,3,240,126,31,192,0,3,240,4,11,208,189,31,192,0,3,240,96,15,192,252,31,128,0,3,255,240,47,129,248,31,128,0,47,255,240,127,3,244,47,128,27,255,255,144,253,3,240,47,128,127,255,244,2,252,11,224,47,64,63,251,240,11,244,15,192,63,64,62,3,240,47,224,47,192,63,64,0,3,240,63,192,63,64,63,0,0,3,240,15,0,191,0,63,0,0,3,240,0,1,253,0,127,0,0,3,240,0,3,248,0,127,0,0,3,240,0,15,240,0,190,0,0,3,240,0,47,208,0,253,0,0,3,240,0,191,128,2,252,0,0,3,240,3,255,3,255,252,0,0,3,240,1,252,2,255,244,0,0,3,240,0,32,1,255,208,0,0,3,240,0,0,0,0,0,0, + // 0x7387 率 + 135,115,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,63,64,0,0,0,2,0,0,190,0,0,3,208,31,208,1,252,7,64,15,244,31,248,31,240,15,208,63,208,2,255,127,208,63,65,255,0,0,127,95,240,190,3,248,0,0,28,3,254,248,0,80,0,0,0,0,191,241,64,0,0,0,0,64,47,207,193,128,0,0,27,192,127,7,247,248,0,1,255,209,252,3,255,255,64,111,255,255,255,255,252,191,240,255,228,191,255,255,254,15,253,126,0,127,255,165,127,2,254,32,0,0,15,224,30,0,116,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x7528 用 + 40,117,31,32,0,36,1,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,252,0,191,0,1,252,0,1,252,0,191,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,190,0,1,252,0,1,252,0,191,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,255,255,255,255,255,255,252,0,252,0,1,252,0,1,252,1,252,0,1,252,0,1,252,2,252,0,1,252,0,1,252,3,248,0,1,252,0,1,252,3,244,0,1,252,0,1,252,11,240,0,1,252,0,1,252,15,224,0,1,252,0,1,252,47,192,0,1,252,0,2,252,127,192,0,1,252,31,255,252,127,0,0,1,252,15,255,244,13,0,0,1,248,11,255,144,0,0,0,0,0,0,0,0, + // 0x754c 界 + 76,117,32,34,16,36,2,252,1,170,170,170,170,170,170,64,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,1,252,0,11,224,0,63,128,1,252,0,11,224,0,63,128,1,252,0,11,224,0,63,128,1,254,170,175,250,170,191,128,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,1,252,0,11,224,0,63,128,1,252,0,11,224,0,63,128,1,252,0,11,224,0,63,128,1,254,170,175,250,170,191,128,1,255,255,255,255,255,255,128,1,255,255,255,255,255,255,128,0,0,31,240,11,248,0,0,0,0,191,192,2,254,0,0,0,2,255,0,0,255,192,0,0,31,252,0,0,63,248,0,1,255,240,0,0,11,255,128,31,255,191,64,0,255,255,249,255,253,63,64,0,254,47,255,127,208,63,64,0,254,7,253,45,0,63,64,0,254,0,40,0,0,127,0,0,254,0,0,0,0,191,0,0,254,0,0,0,0,255,0,0,254,0,0,0,3,253,0,0,254,0,0,0,15,252,0,0,254,0,0,0,191,240,0,0,254,0,0,7,255,192,0,0,254,0,0,2,254,0,0,0,254,0,0,0,244,0,0,0,254,0,0,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,26,34,238,36,5,253,0,0,11,228,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,31,224,0,0,0,0,0,63,192,0,0,0,85,85,127,213,85,85,80,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,254,85,85,85,85,91,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,255,255,255,255,255,255,240,254,85,85,85,85,91,240,253,0,0,0,0,7,240,253,0,0,0,0,7,240, + // 0x7684 的 + 132,118,31,34,16,36,3,253,0,46,64,0,14,64,0,0,0,63,128,0,15,208,0,0,0,63,64,0,31,192,0,0,0,127,0,0,47,128,0,0,0,190,0,0,63,64,0,0,0,253,0,0,127,0,0,0,255,255,255,192,191,255,255,244,255,255,255,192,255,255,255,244,255,255,255,194,255,255,255,244,252,0,15,195,248,0,2,244,252,0,15,203,240,0,3,244,252,0,15,207,224,0,3,244,252,0,15,255,192,0,3,244,252,0,15,239,128,0,3,240,252,0,15,199,5,0,3,240,252,0,15,192,63,0,3,240,255,255,255,192,63,192,3,240,255,255,255,192,15,224,3,240,255,255,255,192,11,244,3,240,252,0,15,192,3,252,3,240,252,0,15,192,0,254,3,240,252,0,15,192,0,191,7,240,252,0,15,192,0,63,71,240,252,0,15,192,0,24,7,224,252,0,15,192,0,0,11,224,252,0,15,192,0,0,11,224,252,0,15,192,0,0,15,208,255,255,255,192,0,0,15,208,255,255,255,192,0,0,31,192,255,255,255,192,0,0,63,192,252,0,0,0,7,255,255,128,252,0,0,0,3,255,255,0,252,0,0,0,2,255,248,0,0,0,0,0,0,0,0,0, + // 0x76e3 監 + 227,118,33,33,41,36,2,254,0,0,0,0,0,164,0,0,0,42,170,170,170,0,252,0,0,0,63,255,255,255,1,252,0,0,0,63,255,255,255,2,244,0,0,0,63,1,244,0,3,240,0,0,0,63,1,244,0,7,255,255,254,0,63,255,255,253,11,255,255,255,0,63,255,255,253,15,255,255,255,0,63,0,0,189,47,64,0,0,0,63,0,0,125,127,0,0,0,0,63,0,0,125,254,0,0,0,0,63,0,0,126,252,0,0,0,0,63,255,255,253,56,0,0,0,0,63,255,255,253,0,0,0,0,0,63,1,244,0,0,0,0,0,0,63,1,244,0,3,255,255,252,0,63,171,254,170,67,255,255,252,0,63,255,255,255,67,255,255,252,0,63,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,64,0,1,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,64,0,1,252,3,240,15,192,63,64,0,1,252,3,240,15,192,63,64,0,1,252,3,240,15,192,63,64,0,1,252,3,240,15,192,63,64,0,1,252,3,240,15,192,63,64,0,1,252,3,240,15,192,63,64,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x76f4 直 + 244,118,32,34,16,36,2,253,0,0,0,3,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,208,0,0,0,0,0,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,63,85,85,85,191,0,15,208,63,0,0,0,127,0,15,208,63,0,0,0,127,0,15,208,63,255,255,255,255,0,15,208,63,255,255,255,255,0,15,208,21,85,85,85,85,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0, + // 0x7720 眠 + 32,119,33,32,32,36,2,253,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,126,0,252,15,192,0,0,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,127,255,252,15,255,255,255,253,0,126,0,252,15,192,15,192,0,0,126,0,252,15,192,15,192,0,0,126,0,252,15,192,15,208,0,0,126,0,252,15,192,15,208,0,0,126,0,252,15,192,11,208,0,0,127,255,252,15,255,255,255,255,64,127,255,252,15,255,255,255,255,64,127,255,252,15,255,255,255,255,64,126,0,252,15,208,7,240,0,0,126,0,252,15,192,3,240,0,0,126,0,252,15,192,3,240,0,0,126,0,252,15,192,3,244,0,0,127,0,252,15,192,2,248,0,0,127,255,252,15,192,1,252,0,0,127,255,252,15,192,0,252,7,64,127,255,252,15,192,0,253,7,192,126,0,0,15,192,105,190,11,192,126,0,0,15,255,254,63,11,192,126,0,2,255,255,254,47,223,192,0,0,3,255,255,228,15,255,128,0,0,3,255,164,0,7,255,0,0,0,1,144,0,0,1,252,0, + // 0x780d 砍 + 13,120,34,35,59,36,1,252,0,0,0,0,31,128,0,0,0,0,0,0,0,47,192,0,0,0,63,255,255,252,63,128,0,0,0,63,255,255,252,63,128,0,0,0,63,255,255,252,63,64,0,0,0,0,63,0,0,127,0,0,0,0,0,127,0,0,191,0,0,0,0,0,126,0,0,255,255,255,255,208,0,189,0,0,255,255,255,255,208,0,253,0,1,255,255,255,255,192,0,252,0,2,252,47,128,47,192,0,252,0,3,248,47,128,63,128,1,248,0,7,240,47,128,63,64,3,255,255,223,240,47,128,63,0,3,255,255,255,208,47,128,190,0,7,255,255,255,192,47,128,253,0,15,244,11,215,64,47,128,252,0,15,244,11,208,0,63,128,4,0,47,244,11,208,0,63,192,0,0,63,244,11,208,0,63,192,0,0,255,244,11,208,0,127,208,0,0,191,244,11,208,0,255,224,0,0,62,244,11,208,0,251,240,0,0,22,244,11,208,2,246,248,0,0,2,244,11,208,3,240,252,0,0,2,244,11,208,11,224,190,0,0,2,255,255,208,31,192,63,64,0,2,255,255,208,63,128,47,192,0,2,255,255,209,255,0,15,240,0,2,244,0,7,253,0,7,253,0,2,244,0,47,244,0,2,255,128,2,244,0,255,208,0,0,191,224,0,0,0,63,64,0,0,31,192,0,0,0,24,0,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x78ba 確 + 186,120,34,35,59,36,1,252,0,0,0,0,0,14,64,0,0,0,0,0,0,0,31,192,0,0,63,255,255,224,0,47,128,0,0,63,255,255,224,0,63,64,0,0,63,255,255,255,255,255,255,255,208,0,127,0,31,255,255,255,255,208,0,126,0,31,255,255,255,255,208,0,190,0,31,66,252,0,11,208,0,253,0,31,71,244,30,75,208,0,252,0,31,79,240,47,75,208,0,252,0,5,47,208,63,1,64,1,252,0,0,63,192,190,0,0,2,248,0,0,255,255,255,255,64,3,255,255,195,255,255,255,255,64,3,255,255,207,255,255,255,255,64,7,255,255,255,253,1,248,0,0,15,240,15,255,253,1,248,0,0,15,240,15,206,253,1,248,0,0,47,240,15,192,255,255,255,255,0,63,240,15,192,255,255,255,255,0,191,240,15,192,254,170,254,169,0,255,240,15,192,253,1,248,0,0,190,240,15,192,253,1,248,0,0,58,240,15,192,254,170,254,169,0,18,240,15,192,255,255,255,255,0,2,240,15,192,255,255,255,255,0,2,240,15,192,253,1,248,0,0,2,255,255,192,253,1,248,0,0,2,255,255,192,253,1,248,0,0,2,255,255,192,253,1,248,0,0,2,240,0,0,255,255,255,255,224,2,240,0,0,255,255,255,255,224,1,160,0,0,255,255,255,255,208,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x79fb 移 + 251,121,34,34,50,36,1,253,0,0,1,0,0,46,64,0,0,0,0,111,128,0,63,64,0,0,0,111,255,208,0,255,0,0,0,47,255,255,144,3,255,255,248,0,63,255,244,0,15,255,255,254,0,46,159,224,0,63,255,255,252,0,0,11,224,1,255,64,3,248,0,0,11,224,31,255,128,11,240,0,0,11,224,63,255,240,47,208,0,0,11,224,15,67,253,191,128,0,63,255,255,240,0,255,254,0,0,63,255,255,240,0,63,252,0,0,63,255,255,240,0,191,224,0,0,0,31,224,0,11,255,128,0,0,0,47,224,1,191,255,248,0,0,0,63,240,15,255,219,240,0,0,0,127,252,11,254,31,224,0,0,0,255,255,3,144,63,255,255,64,1,255,255,192,0,255,255,255,208,3,251,235,240,7,255,255,255,192,7,235,227,240,31,240,0,63,128,15,203,225,208,255,208,0,191,0,47,139,224,75,255,244,1,254,0,127,11,224,15,251,254,3,252,0,190,11,224,3,192,255,207,244,0,60,11,224,0,0,47,255,208,0,36,11,224,0,0,7,255,128,0,0,11,224,0,0,11,254,0,0,0,11,224,0,0,191,244,0,0,0,11,224,0,27,255,192,0,0,0,11,224,6,255,254,0,0,0,0,11,224,63,255,224,0,0,0,0,11,224,31,253,0,0,0,0,0,11,224,14,64,0,0,0,0, + // 0x7a4d 積 + 77,122,34,35,59,36,1,252,0,0,0,0,0,47,128,0,0,0,0,111,64,0,47,192,0,0,1,111,255,207,255,255,255,255,128,63,255,255,143,255,255,255,255,128,63,255,224,0,0,47,192,0,0,26,95,208,0,0,47,192,0,0,0,15,208,3,255,255,255,254,0,0,15,208,3,255,255,255,254,0,0,15,208,0,0,47,192,0,0,0,15,208,0,0,47,192,0,0,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,192,0,0,0,0,0,0,31,208,2,255,255,255,253,0,0,47,208,2,255,255,255,253,0,0,63,240,2,244,0,0,189,0,0,127,252,2,244,0,0,189,0,0,255,254,2,244,0,0,189,0,1,255,255,66,255,255,255,253,0,2,255,239,210,255,255,255,253,0,7,239,219,226,244,0,0,189,0,15,207,211,194,244,0,0,189,0,31,143,209,66,255,255,255,253,0,63,15,208,2,255,255,255,253,0,254,15,208,2,244,0,0,189,0,188,15,208,2,244,0,0,189,0,56,15,208,2,255,255,255,253,0,16,15,208,2,255,255,255,253,0,0,15,208,0,11,64,10,0,0,0,15,208,0,127,224,63,208,0,0,15,208,7,255,128,15,252,0,0,15,208,191,253,0,2,255,128,0,15,208,255,208,0,0,127,208,0,15,208,57,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x7aef 端 + 239,122,34,34,50,36,1,253,0,26,0,0,0,47,64,0,0,0,63,0,0,0,47,128,0,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,0,63,0,15,192,47,128,63,0,63,255,255,15,192,47,128,63,0,63,255,255,15,255,255,255,255,0,63,255,255,15,255,255,255,255,0,0,0,0,15,255,255,255,255,0,6,0,120,0,0,0,0,0,0,31,0,190,0,0,0,0,0,0,15,64,189,127,255,255,255,255,208,15,128,252,127,255,255,255,255,208,15,128,252,127,255,255,255,255,208,11,192,252,0,0,63,64,0,0,11,192,248,0,0,127,0,0,0,11,193,244,0,0,191,0,0,0,7,209,244,31,255,255,255,255,128,7,210,240,31,255,255,255,255,128,7,211,240,31,255,255,255,255,128,7,211,224,31,131,224,188,31,128,0,3,230,159,131,224,188,31,128,0,7,255,223,131,224,188,31,128,27,255,255,239,131,224,188,31,128,191,255,254,95,131,224,188,31,128,127,254,64,31,131,224,188,31,128,62,64,0,31,131,224,188,31,128,0,0,0,31,131,224,188,31,128,0,0,0,31,131,224,188,31,128,0,0,0,31,131,224,189,191,128,0,0,0,31,131,224,188,255,64,0,0,0,26,64,0,0,254,0, + // 0x7b49 等 + 73,123,34,34,50,36,1,253,0,46,64,0,1,228,0,0,0,0,63,128,0,3,248,0,0,0,0,191,0,0,7,244,0,0,0,0,255,255,255,143,255,255,255,192,2,255,255,255,175,255,255,255,192,7,255,255,255,255,255,255,255,192,15,241,252,0,255,3,248,0,0,63,192,253,3,253,1,252,0,0,127,64,190,2,248,0,254,0,0,30,0,100,3,248,0,116,0,0,0,0,0,3,248,0,0,0,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,127,255,255,255,255,255,224,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,184,0,0,11,240,0,0,0,2,254,0,0,11,240,0,0,0,0,255,192,0,11,240,0,0,0,0,63,240,0,11,240,0,0,0,0,11,252,0,11,240,0,0,0,0,2,252,0,11,240,0,0,0,0,0,224,63,255,224,0,0,0,0,0,0,47,255,208,0,0,0,0,0,0,15,254,0,0,0, + // 0x7ba1 管 + 161,123,34,35,59,36,1,252,0,46,0,0,2,228,0,0,0,0,63,64,0,3,248,0,0,0,0,191,0,0,7,240,0,0,0,0,255,255,255,79,255,255,255,208,3,255,255,255,191,255,255,255,208,11,255,254,171,255,239,254,170,144,47,225,252,3,254,2,252,0,0,127,192,253,3,248,0,254,0,0,31,0,125,2,244,0,126,0,0,0,0,0,2,244,0,0,0,0,10,170,170,171,254,170,170,170,0,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,64,15,194,255,255,255,255,252,63,64,15,194,255,255,255,255,252,63,64,5,66,249,85,85,86,252,21,0,0,2,244,0,0,1,252,0,0,0,2,244,0,0,1,252,0,0,0,2,255,255,255,255,252,0,0,0,2,255,255,255,255,252,0,0,0,2,249,85,85,85,84,0,0,0,2,244,0,0,0,0,0,0,0,2,244,0,0,0,0,0,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,250,170,170,170,175,208,0,0,2,244,0,0,0,15,208,0,0,2,244,0,0,0,15,208,0,0,2,250,170,170,170,175,208,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,244,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0, + // 0x7bb1 箱 + 177,123,33,35,59,36,1,252,0,47,64,0,1,248,0,0,0,0,63,128,0,3,248,0,0,0,0,127,0,0,7,244,0,0,0,0,255,255,255,75,255,255,255,192,1,255,255,255,159,255,255,255,192,3,255,255,255,191,255,255,255,192,11,241,252,0,191,71,240,0,0,15,224,253,1,255,2,252,0,0,63,192,190,3,252,0,253,0,0,127,64,127,2,248,0,191,0,0,31,0,124,0,112,0,56,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,47,255,255,255,63,0,0,127,0,47,255,255,255,63,0,0,127,0,47,255,255,255,63,0,0,127,0,0,11,248,0,63,255,255,255,0,0,15,252,0,63,255,255,255,0,0,47,255,0,63,170,170,255,0,0,63,255,208,63,0,0,127,0,0,191,255,244,63,0,0,127,0,1,255,250,253,63,0,0,127,0,3,246,248,255,63,255,255,255,0,15,242,248,60,63,255,255,255,0,47,194,248,20,63,170,170,255,0,191,130,248,0,63,0,0,127,0,63,2,248,0,63,0,0,127,0,12,2,248,0,63,234,170,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,255,255,255,0,0,2,248,0,63,0,0,127,0,0,2,248,0,42,0,0,21,0,0,0,0,0,0,0,0,0,0, + // 0x7cfb 系 + 251,124,33,34,50,36,2,253,0,0,0,0,0,0,4,0,0,0,0,0,0,0,90,255,0,0,0,5,90,171,255,255,255,192,0,47,255,255,255,255,255,255,208,0,31,255,255,255,255,250,80,0,0,15,255,235,254,64,0,0,0,0,0,0,11,252,0,16,0,0,0,0,0,31,240,0,126,0,0,0,0,0,127,192,1,255,64,0,0,0,160,255,0,7,254,0,0,0,2,255,253,0,31,248,0,0,0,2,255,244,0,127,224,0,0,0,0,127,244,1,255,64,0,0,0,0,11,253,7,253,0,0,0,0,0,1,255,159,244,2,64,0,0,0,0,63,255,192,31,224,0,0,0,0,15,255,0,15,248,0,0,0,0,31,248,0,3,254,0,0,0,0,191,224,0,0,255,192,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,248,0,191,255,255,255,255,255,255,254,0,85,84,0,15,245,0,0,255,64,0,0,0,15,224,0,0,125,0,0,2,64,15,224,7,0,16,0,0,11,244,15,224,47,208,0,0,0,47,240,15,224,47,248,0,0,0,191,192,15,224,7,255,0,0,3,255,0,15,224,0,255,208,0,31,252,0,15,224,0,47,244,0,191,240,0,15,224,0,11,254,0,255,192,0,15,224,0,2,254,0,46,0,0,15,224,0,0,180,0,0,0,0,15,224,0,0,0,0, + // 0x7d05 紅 + 5,125,34,35,59,36,1,252,0,6,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,1,1,255,255,255,255,192,0,253,7,225,255,255,255,255,192,46,248,15,241,255,255,255,255,192,127,240,31,208,0,11,240,0,0,63,224,63,128,0,11,240,0,0,15,244,255,0,0,11,240,0,0,2,254,252,0,0,11,240,0,0,0,255,244,0,0,11,240,0,0,0,63,225,240,0,11,240,0,0,0,47,194,248,0,11,240,0,0,0,191,0,252,0,11,240,0,0,1,253,0,191,0,11,240,0,0,191,255,255,255,64,11,240,0,0,191,255,255,255,192,11,240,0,0,127,255,255,239,208,11,240,0,0,0,3,244,7,208,11,240,0,0,0,3,244,2,0,11,240,0,0,1,3,244,20,0,11,240,0,0,11,227,245,252,0,11,240,0,0,15,211,244,253,0,11,240,0,0,15,195,244,190,0,11,240,0,0,15,195,244,63,0,11,240,0,0,31,131,244,63,64,11,240,0,0,63,67,244,31,128,11,240,0,0,63,3,244,15,192,11,240,0,0,191,3,244,14,0,11,240,0,0,109,3,244,11,255,255,255,255,224,4,3,244,11,255,255,255,255,224,0,3,244,11,255,255,255,255,224,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7d22 索 + 34,125,32,34,16,36,2,253,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,0,1,254,0,0,0,253,127,0,7,252,0,64,0,253,127,0,31,240,1,248,0,253,127,30,127,192,11,253,0,253,0,127,254,0,63,240,0,0,0,47,252,1,255,128,0,0,0,3,255,71,253,9,0,0,0,0,127,255,240,63,192,0,0,0,15,255,128,47,244,0,0,0,31,252,0,7,254,0,106,170,255,250,170,170,255,192,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,253,21,80,64,15,224,0,0,248,0,2,228,15,224,10,0,16,0,15,252,15,224,63,224,0,0,127,224,15,224,31,253,0,7,255,128,15,224,2,255,192,127,253,0,15,224,0,63,244,255,224,0,15,224,0,7,254,63,64,0,15,224,0,0,248,4,0,0,15,224,0,0,0, + // 0x7d2b 紫 + 43,125,33,35,59,36,1,252,0,0,126,0,11,224,0,0,0,0,0,126,0,11,224,0,0,0,1,80,126,0,11,224,1,180,0,3,240,127,170,139,224,111,254,0,3,240,127,255,203,251,255,249,0,3,240,127,255,203,255,255,64,0,3,240,126,0,11,255,144,0,0,3,240,126,0,11,240,0,0,0,3,240,126,0,11,224,0,10,64,3,240,126,1,75,224,0,15,192,3,240,191,255,203,240,0,31,192,27,255,255,255,199,255,255,255,192,127,255,255,254,67,255,255,255,64,127,254,148,47,128,191,255,253,0,37,0,0,191,128,0,0,0,0,0,0,2,253,0,126,0,0,0,0,11,79,244,1,255,64,0,0,0,47,255,192,11,252,0,0,0,0,47,255,64,127,224,16,0,0,0,2,255,246,255,66,248,0,0,0,0,47,255,248,2,255,0,0,0,0,7,255,208,0,127,208,0,0,0,2,255,170,171,255,244,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,248,0,0,63,192,0,0,80,3,248,0,64,14,0,0,1,253,3,248,7,244,0,0,0,11,252,3,248,11,255,0,0,0,127,240,3,248,1,255,224,0,7,255,128,3,248,0,47,252,0,63,253,0,3,248,0,3,255,64,15,224,0,3,248,0,0,191,0,2,0,0,3,248,0,0,20,0,0,0,0,0,0,0,0,0,0, + // 0x7d30 細 + 48,125,33,34,50,36,1,253,0,13,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,126,0,2,255,255,255,255,64,0,252,8,2,255,255,255,255,64,1,248,31,130,255,255,255,255,64,43,240,63,130,244,15,192,47,64,63,208,127,2,244,15,192,47,64,127,192,253,2,244,15,192,47,64,31,226,248,2,244,15,192,47,64,7,251,240,2,244,15,192,47,64,2,255,192,2,244,15,192,47,64,0,255,79,66,244,15,192,47,64,0,126,15,194,244,15,192,47,64,0,252,11,210,244,15,192,47,64,2,249,175,242,244,15,192,47,64,191,255,255,246,255,255,255,255,64,191,255,255,254,255,255,255,255,64,127,239,208,255,255,255,255,255,64,0,15,192,123,244,15,192,47,64,0,15,192,2,244,15,192,47,64,9,15,193,130,244,15,192,47,64,15,207,207,194,244,15,192,47,64,15,143,199,210,244,15,192,47,64,31,79,195,242,244,15,192,47,64,47,79,194,242,244,15,192,47,64,63,15,193,250,244,15,192,47,64,63,15,192,250,244,15,192,47,64,189,15,192,146,255,255,255,255,64,188,15,192,2,255,255,255,255,64,4,15,192,2,255,255,255,255,64,0,15,192,2,244,0,0,47,64,0,15,192,2,244,0,0,47,64,0,11,192,0,80,0,0,0,0, + // 0x7d42 終 + 66,125,34,35,59,36,1,252,0,8,0,0,1,164,0,0,0,0,47,128,0,3,248,0,0,0,0,63,64,0,7,244,0,0,0,0,127,0,0,15,240,0,0,0,0,253,0,0,31,255,255,248,0,1,248,46,0,63,255,255,253,0,23,240,63,64,191,255,255,248,0,63,224,190,2,255,0,3,240,0,127,192,252,7,255,128,15,224,0,31,210,244,31,255,208,47,192,0,7,251,224,191,199,240,127,128,0,2,255,192,63,2,253,254,0,0,0,255,89,8,0,255,252,0,0,0,126,63,0,0,63,240,0,0,0,252,31,64,0,191,244,0,0,2,244,15,192,3,255,254,0,0,107,255,255,192,31,253,255,192,0,191,255,255,225,255,224,63,248,0,191,255,255,255,255,64,11,255,144,16,15,193,255,248,16,1,255,224,0,15,192,71,128,189,0,31,128,9,79,203,64,1,255,208,2,0,15,207,207,128,0,127,248,0,0,31,143,203,192,0,7,255,0,0,31,79,199,208,0,0,190,0,0,47,15,195,224,0,0,8,0,0,63,15,194,240,57,0,0,0,0,63,15,193,240,255,224,0,0,0,125,15,192,65,255,255,64,0,0,252,15,192,0,7,255,248,0,0,44,15,192,0,0,47,255,128,0,0,15,192,0,0,1,255,248,0,0,15,192,0,0,0,31,244,0,0,15,192,0,0,0,1,224,0,0,0,0,0,0,0,0,0,0, + // 0x7d71 統 + 113,125,34,35,59,36,1,252,0,8,0,0,0,47,128,0,0,0,47,128,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,127,0,0,0,63,128,0,0,0,253,0,0,0,63,128,0,0,1,252,46,47,255,255,255,255,192,7,240,63,111,255,255,255,255,192,63,224,190,47,255,255,255,255,192,127,192,252,0,7,244,0,0,0,47,210,244,0,11,240,7,64,0,11,251,240,0,15,224,31,192,0,2,255,192,0,31,192,11,240,0,0,255,72,0,63,128,3,248,0,0,126,63,0,63,85,171,253,0,0,252,31,95,255,255,255,255,0,2,244,15,223,255,255,255,255,128,107,255,255,223,255,234,84,31,192,191,255,255,224,0,0,0,15,192,191,255,255,240,10,128,105,5,0,16,15,193,240,15,192,190,0,0,0,15,192,64,31,192,190,0,0,9,79,199,0,31,192,190,0,0,15,207,207,128,31,192,190,0,0,31,143,207,192,47,128,190,0,0,31,79,199,208,63,64,190,0,0,47,15,195,224,63,64,190,0,0,63,15,195,240,127,0,190,1,0,63,15,194,240,190,0,190,3,208,125,15,192,65,253,0,190,3,240,252,15,192,3,252,0,190,3,240,44,15,192,31,240,0,126,3,224,0,15,192,191,208,0,127,255,208,0,15,192,255,64,0,63,255,192,0,15,192,56,0,0,31,255,64,0,0,0,0,0,0,0,0,0, + // 0x7d72 絲 + 114,125,34,34,50,36,1,253,0,10,64,0,0,7,64,0,0,0,15,224,0,0,15,224,0,0,0,31,192,0,0,31,192,0,0,0,63,64,0,0,63,128,0,0,0,191,2,0,0,127,1,64,0,0,252,11,224,0,253,3,244,0,46,248,15,224,42,248,15,240,0,63,240,63,192,127,240,31,208,0,127,208,127,0,127,208,63,128,0,31,240,253,0,15,240,191,0,0,3,254,252,0,3,253,253,0,0,0,255,240,0,0,255,248,0,0,0,127,209,192,0,63,241,240,0,0,63,135,240,0,63,195,248,0,0,190,3,244,0,191,1,252,0,1,252,1,252,1,253,0,191,0,191,255,255,253,127,255,255,255,64,191,255,255,255,127,255,255,255,192,127,255,255,255,127,255,255,255,208,0,3,240,47,80,3,240,11,208,0,3,240,8,0,3,240,3,0,6,147,240,96,0,3,240,16,0,11,227,242,244,11,211,242,244,0,15,211,241,252,15,211,242,252,0,15,195,240,252,31,195,240,253,0,15,195,240,126,47,131,240,191,0,31,131,240,63,63,67,240,63,64,63,67,240,62,127,3,240,47,192,63,3,240,0,254,3,240,15,192,190,3,240,2,252,3,240,15,224,28,3,240,0,184,3,240,7,128,0,3,240,0,0,3,240,0,0,0,3,240,0,0,3,240,0,0,0,3,240,0,0,3,240,0,0, + // 0x7da0 綠 + 160,125,34,34,50,36,1,253,0,25,0,0,14,128,0,0,0,0,47,128,0,31,192,0,0,0,0,63,0,0,47,128,0,0,0,0,126,0,0,63,255,255,244,0,0,252,4,0,63,255,255,244,0,1,248,47,64,127,170,171,240,0,27,240,63,0,190,0,3,240,0,63,224,190,0,253,0,7,240,0,127,193,252,0,255,255,255,224,0,31,211,244,1,255,255,255,208,0,11,251,224,2,254,170,175,192,0,2,255,192,1,96,0,15,192,0,0,255,92,0,0,0,31,192,0,0,190,62,31,255,255,255,255,192,1,252,47,95,255,255,255,255,192,3,240,31,223,255,255,255,255,192,255,255,255,192,0,15,192,0,0,191,255,255,224,0,15,208,4,0,191,255,235,241,208,15,224,31,64,0,15,130,251,244,15,240,127,192,0,15,129,66,253,15,241,254,0,10,79,134,0,191,15,255,248,0,15,143,159,64,63,79,255,224,0,31,79,143,192,12,15,255,64,0,47,15,139,192,1,79,255,64,0,47,15,135,208,11,207,223,192,0,63,15,131,224,127,223,207,240,0,62,15,131,226,255,79,195,252,0,189,15,129,31,252,15,193,255,64,252,15,128,127,224,15,192,191,224,40,15,128,63,64,15,192,47,192,0,15,128,28,11,255,192,7,64,0,15,128,0,7,255,64,0,0,0,15,128,0,3,249,0,0,0, + // 0x7db2 網 + 178,125,33,35,59,36,1,252,0,8,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,63,64,15,255,255,255,255,128,0,127,0,15,255,255,255,255,128,0,252,0,15,255,255,255,255,128,1,248,46,15,192,0,0,31,128,27,240,63,15,198,64,46,31,128,63,224,190,15,203,192,63,31,128,127,193,252,15,195,208,61,31,128,47,211,240,15,195,224,188,31,128,11,251,224,15,194,240,244,31,128,3,255,192,15,202,234,186,31,128,0,255,109,15,207,255,255,95,128,0,190,63,15,207,255,255,95,128,1,252,47,79,192,31,64,31,128,3,240,31,207,192,31,64,31,128,255,255,255,239,192,31,64,31,128,191,255,255,255,202,175,234,95,128,191,255,235,255,207,255,255,95,128,0,15,130,255,207,255,255,95,128,0,15,129,159,195,240,0,31,128,10,79,135,15,195,240,0,31,128,15,143,143,79,195,240,0,31,128,31,79,143,207,195,240,0,31,128,47,79,139,223,195,240,0,31,128,47,15,135,239,195,240,0,31,128,63,15,131,255,194,255,255,31,128,62,15,131,255,193,255,255,31,128,125,15,129,95,192,106,170,31,128,252,15,128,15,192,0,0,31,128,40,15,128,15,192,0,0,31,128,0,15,128,15,192,0,47,255,64,0,15,128,15,192,0,15,255,0,0,15,128,15,192,0,15,248,0,0,0,0,0,0,0,0,0,0, + // 0x7dd2 緒 + 210,125,34,34,50,36,1,253,0,29,0,0,1,248,0,0,0,0,47,128,0,1,248,0,14,64,0,63,0,0,1,248,0,47,128,0,126,0,0,1,248,0,63,0,0,252,24,11,255,255,253,190,0,1,248,63,79,255,255,254,253,0,47,240,127,15,255,255,255,252,0,127,208,253,0,1,248,7,240,0,127,193,252,0,1,248,15,224,0,31,211,240,0,1,248,47,192,0,11,251,224,0,1,248,127,64,0,3,255,192,63,255,255,255,255,208,0,255,93,63,255,255,255,255,208,0,190,63,63,255,255,255,255,208,1,252,47,64,0,127,192,0,0,3,240,31,192,1,255,0,0,0,255,255,255,208,11,252,0,0,0,191,255,255,224,63,255,255,253,0,191,255,235,242,255,255,255,253,0,0,15,130,255,255,255,255,253,0,0,15,128,255,254,0,0,253,0,10,79,135,63,190,0,0,253,0,15,143,143,68,126,0,0,253,0,31,79,143,192,127,170,170,253,0,47,15,139,192,127,255,255,253,0,47,15,135,208,127,255,255,253,0,63,15,131,224,126,0,0,253,0,62,15,131,208,126,0,0,253,0,189,15,128,0,126,0,0,253,0,188,15,128,0,127,255,255,253,0,4,15,128,0,127,255,255,253,0,0,15,128,0,127,255,255,253,0,0,15,128,0,126,0,0,253,0,0,15,128,0,41,0,0,168,0, + // 0x7dda 線 + 218,125,34,34,50,36,1,253,0,25,0,0,0,14,64,0,0,0,47,128,0,0,47,208,0,0,0,63,0,0,0,63,192,0,0,0,126,0,0,0,63,64,0,0,0,252,4,3,255,255,255,255,0,1,248,47,67,255,255,255,255,0,27,240,63,3,250,170,170,191,0,63,224,190,3,240,0,0,63,0,127,193,252,3,240,0,0,63,0,31,211,244,3,255,255,255,255,0,11,251,224,3,255,255,255,255,0,2,255,192,3,245,85,85,191,0,0,255,92,3,240,0,0,63,0,0,190,62,3,240,0,0,63,0,1,252,47,67,250,170,170,191,0,3,240,31,195,255,255,255,255,0,255,255,255,195,255,255,255,255,0,191,255,255,224,0,15,192,0,0,191,255,235,240,0,15,208,4,0,0,15,130,240,0,15,224,31,64,0,15,129,95,255,159,240,127,192,9,15,134,31,255,223,245,255,0,15,143,143,95,255,207,255,252,0,31,79,143,192,31,143,255,224,0,47,15,139,192,63,79,255,128,0,47,15,135,208,127,15,239,192,0,63,15,131,224,253,15,207,240,0,62,15,131,227,252,15,199,248,0,189,15,128,15,240,15,194,255,64,252,15,128,127,208,15,192,191,224,40,15,128,191,64,15,192,47,208,0,15,128,61,11,255,192,7,128,0,15,128,0,7,255,128,0,0,0,15,128,0,3,249,0,0,0, + // 0x7de8 編 + 232,125,33,34,50,36,1,253,0,25,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,63,0,63,255,255,255,255,192,0,126,0,63,255,255,255,255,192,0,252,20,63,255,255,255,255,192,1,248,63,0,0,0,0,0,0,27,240,127,0,0,0,0,0,0,63,224,253,6,170,170,170,170,0,127,193,248,11,255,255,255,255,0,31,211,240,11,255,255,255,255,0,7,251,224,11,208,0,0,63,0,2,255,192,11,208,0,0,63,0,0,255,92,11,208,0,0,63,0,0,190,125,11,250,170,170,191,0,0,252,63,11,255,255,255,255,0,3,240,31,75,255,255,255,255,0,255,255,255,203,208,0,0,0,0,191,255,255,203,208,0,0,0,0,191,191,239,219,255,255,255,255,192,0,31,67,239,255,255,255,255,192,0,31,66,79,254,190,191,175,192,14,95,90,15,252,61,30,15,192,31,95,111,15,252,61,30,15,192,31,95,95,79,252,61,30,15,192,47,31,79,159,253,126,111,95,192,47,31,75,239,191,255,255,255,192,63,31,75,255,127,255,255,255,192,62,31,71,255,124,61,30,15,192,188,31,64,190,124,61,30,15,192,252,31,64,252,124,61,30,15,192,20,31,66,248,124,61,30,15,192,0,31,67,240,124,61,30,175,128,0,31,64,160,124,61,30,127,128,0,31,64,0,104,20,4,62,0, + // 0x7e2e 縮 + 46,126,33,35,59,36,1,252,0,30,0,0,0,63,128,0,0,0,47,64,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,189,0,47,255,255,255,255,128,0,252,45,63,255,255,255,255,192,1,244,63,63,255,255,255,255,192,47,240,126,63,0,0,0,15,192,127,208,252,63,0,0,0,15,192,127,193,248,63,0,0,0,15,192,31,211,240,63,126,0,0,5,64,11,251,208,0,127,170,170,170,128,2,255,192,0,190,255,255,255,192,0,255,109,0,253,255,255,255,192,0,190,62,1,248,0,127,0,0,0,252,47,3,240,0,190,0,0,3,240,15,135,240,0,252,0,0,255,255,255,203,240,106,254,170,64,191,255,255,223,240,191,255,255,64,191,191,251,255,240,191,255,255,64,0,31,67,255,240,188,0,31,64,0,31,64,255,240,188,0,31,64,9,31,73,59,240,188,0,31,64,15,159,111,19,240,188,0,31,64,31,95,95,3,240,191,255,255,64,47,31,79,131,240,191,255,255,64,47,31,79,131,240,190,170,191,64,63,31,75,195,240,188,0,31,64,62,31,71,195,240,188,0,31,64,125,31,65,3,240,188,0,31,64,252,31,64,3,240,188,0,31,64,40,31,64,3,240,191,255,255,64,0,31,64,3,240,191,255,255,64,0,31,64,3,240,190,170,191,64,0,31,64,3,240,188,0,31,64,0,0,0,0,0,0,0,0,0, + // 0x7e3d 總 + 61,126,34,34,50,36,1,253,0,25,0,0,0,15,144,0,0,0,47,128,0,0,47,192,0,0,0,63,0,0,0,63,128,0,0,0,126,0,6,170,191,170,170,0,0,252,20,15,255,255,255,255,0,1,248,63,15,255,255,255,255,0,27,240,127,15,192,14,0,47,0,63,224,253,15,192,31,0,47,0,127,193,248,15,192,63,255,111,0,31,211,240,15,207,191,255,47,0,7,251,224,15,207,248,47,47,0,2,255,192,15,199,255,125,47,0,0,255,92,15,223,159,248,47,0,0,190,125,15,206,7,252,47,0,0,252,63,15,192,31,255,111,0,3,240,31,79,192,191,15,47,0,255,255,255,207,195,248,0,47,0,191,255,255,207,234,234,170,191,0,191,191,239,223,255,255,255,255,0,0,31,67,239,255,255,255,255,0,0,31,66,64,0,248,0,0,0,9,31,69,0,2,255,64,0,0,15,159,111,0,0,127,208,0,0,31,95,95,0,0,11,244,0,0,47,31,79,65,11,210,240,180,0,47,31,79,135,219,208,64,252,0,63,31,75,203,203,208,0,190,0,62,31,71,207,203,208,0,63,64,125,31,65,15,139,208,4,31,192,252,31,64,47,75,208,15,143,208,40,31,64,127,11,208,15,135,224,0,31,64,189,7,255,255,67,224,0,31,64,24,3,255,255,1,0,0,31,64,0,0,170,168,0,0, + // 0x7e7c 繼 + 124,126,34,34,50,36,1,253,0,52,0,188,1,0,1,0,0,0,190,0,252,7,192,3,192,0,0,252,0,252,15,64,11,128,0,0,248,0,252,31,40,15,13,0,2,244,80,252,252,61,253,47,0,3,240,252,252,252,184,188,124,0,63,209,248,252,63,240,47,244,0,127,195,240,252,15,208,11,228,0,63,135,224,252,11,124,11,173,0,15,223,192,252,30,45,31,15,0,7,255,64,253,255,255,255,255,128,2,255,0,253,255,255,255,255,192,0,254,240,253,229,7,249,65,192,0,249,244,252,0,1,0,0,0,3,240,248,255,255,255,255,255,192,7,208,188,255,255,255,255,255,192,255,255,254,254,171,170,171,170,128,255,255,255,252,7,192,3,208,0,191,191,191,252,11,128,7,192,0,0,63,31,252,15,8,15,73,0,0,63,4,252,189,62,191,31,0,29,63,40,252,252,124,252,61,0,47,63,124,252,125,244,62,184,0,47,63,61,252,31,224,15,240,0,63,63,62,252,11,212,7,236,0,62,63,47,252,15,124,11,174,0,62,63,31,252,46,30,31,15,64,125,63,15,253,255,255,255,255,192,188,63,4,253,233,67,249,65,208,252,63,0,252,0,1,0,0,64,56,63,0,255,255,255,255,255,208,0,63,0,255,255,255,255,255,208,0,63,0,254,170,170,170,170,128,0,62,0,188,0,0,0,0,0, + // 0x7e8c 續 + 140,126,34,35,59,36,1,252,0,25,0,0,0,63,128,0,0,0,63,128,0,0,63,128,0,0,0,63,0,63,255,255,255,255,192,0,189,0,63,255,255,255,255,192,0,252,20,0,0,63,128,0,0,1,244,63,0,0,63,128,0,0,27,240,190,7,255,255,255,255,0,63,208,252,7,255,255,255,255,0,127,194,248,0,0,0,0,0,0,31,211,240,15,255,255,255,255,64,11,255,208,15,255,255,255,255,64,3,255,128,15,66,240,244,31,64,0,255,124,15,175,192,255,255,64,0,189,125,15,125,0,21,111,64,0,248,63,15,64,0,0,31,64,2,240,47,79,255,255,255,255,64,107,255,255,143,255,255,255,255,64,191,255,255,192,0,0,0,0,0,127,255,235,211,255,255,255,253,0,16,31,67,131,255,255,255,253,0,0,31,64,3,240,0,0,189,0,5,31,90,3,255,255,255,253,0,15,159,111,3,250,170,170,253,0,31,95,95,67,240,0,0,189,0,47,31,79,131,255,255,255,253,0,47,31,75,195,250,170,170,253,0,63,31,75,195,240,0,0,189,0,62,31,70,3,250,170,170,253,0,125,31,64,3,255,255,255,253,0,252,31,64,0,31,64,47,64,0,40,31,64,2,255,192,127,244,0,0,31,64,191,254,0,11,255,64,0,31,65,255,208,0,0,191,208,0,31,64,56,0,0,0,14,0,0,0,0,0,0,0,0,0,0, + // 0x7ea2 红 + 162,126,34,33,41,36,1,254,0,2,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,240,5,85,85,85,85,0,0,31,208,15,255,255,255,255,128,0,63,192,15,255,255,255,255,128,0,127,64,15,255,255,255,255,128,0,255,0,0,0,31,208,0,0,2,252,3,64,0,31,208,0,0,3,248,11,224,0,31,208,0,0,11,240,31,240,0,31,208,0,0,31,208,63,192,0,31,208,0,0,191,255,255,64,0,31,208,0,0,191,255,254,0,0,31,208,0,0,63,255,252,0,0,31,208,0,0,41,11,244,0,0,31,208,0,0,0,31,208,0,0,31,208,0,0,0,127,128,0,0,31,208,0,0,1,254,0,0,0,31,208,0,0,7,252,22,144,0,31,208,0,0,31,255,255,208,0,31,208,0,0,127,255,255,224,0,31,208,0,0,63,255,233,0,0,31,208,0,0,46,144,0,0,0,31,208,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,31,208,0,0,0,0,27,192,0,31,208,0,0,0,107,255,192,0,31,208,0,0,127,255,255,239,255,255,255,255,208,127,255,249,95,255,255,255,255,208,127,249,0,31,255,255,255,255,208,57,0,0,5,85,85,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x7f6e 置 + 110,127,33,34,50,36,2,252,5,85,85,85,85,85,85,80,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,15,208,11,208,11,224,7,240,0,15,208,11,208,11,224,7,240,0,15,229,95,229,91,229,91,240,0,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,106,170,170,175,234,170,170,169,0,0,0,0,15,192,0,0,0,0,0,0,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,63,0,0,0,31,128,0,11,240,63,0,0,0,31,128,0,11,240,63,255,255,255,255,128,0,11,240,63,255,255,255,255,128,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,255,255,255,255,255,255,255,64,11,255,255,255,255,255,255,255,64,11,250,170,170,170,170,170,170,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,33,34,50,36,1,252,1,85,85,85,85,85,85,84,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,3,244,2,244,2,248,0,252,0,3,244,2,244,2,248,0,252,0,3,244,2,244,2,248,0,252,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,95,229,85,85,84,0,0,0,0,11,224,0,0,80,0,0,42,170,175,250,170,130,248,0,0,63,255,255,255,255,219,252,0,0,63,255,255,255,255,255,224,0,0,0,0,11,224,1,255,128,0,0,0,0,11,224,15,253,0,0,42,170,170,175,250,191,254,170,128,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,31,255,192,0,0,0,0,0,6,255,253,0,0,0,0,0,0,191,255,249,85,85,80,0,0,111,255,255,255,255,255,240,0,47,255,255,255,255,255,255,240,0,127,255,254,0,0,0,7,240,0,47,228,126,0,0,0,11,240,0,9,0,127,255,255,255,255,240,0,0,0,127,255,255,255,255,240,0,0,0,126,0,0,0,7,240,0,0,0,126,0,0,0,7,240,0,0,0,127,85,85,85,91,240,0,0,0,127,255,255,255,255,240,0,0,0,127,255,255,255,255,240,0,0,0,126,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0, + // 0x8070 聰 + 112,128,34,35,59,36,1,252,0,0,0,0,0,15,144,0,0,0,0,0,0,0,15,208,0,0,63,255,255,252,0,47,192,0,0,63,255,255,253,170,191,234,170,0,63,255,255,255,255,255,255,255,0,3,240,15,195,255,255,255,255,0,3,240,15,195,240,11,64,47,0,3,240,15,195,240,15,0,47,0,3,240,15,195,240,47,255,47,0,3,255,255,195,243,254,175,47,0,3,255,255,195,243,252,46,47,0,3,255,255,195,247,255,188,47,0,3,240,15,195,243,75,244,47,0,3,240,15,195,240,3,252,47,0,3,240,15,195,240,31,191,47,0,3,240,15,195,240,253,8,47,0,3,240,15,195,240,240,0,47,0,3,255,255,195,255,255,255,255,0,3,255,255,195,255,255,255,255,0,3,255,255,193,170,191,170,170,0,3,240,15,192,0,191,128,0,0,3,240,15,192,0,63,240,0,0,3,240,15,192,0,7,252,0,0,3,240,15,192,3,240,252,16,0,3,240,111,192,247,240,48,252,0,27,255,255,194,247,240,0,253,0,191,255,255,195,243,240,0,127,0,127,255,175,195,243,240,0,63,64,62,64,15,199,227,240,7,95,192,0,0,15,207,195,240,7,207,192,0,0,15,239,131,240,11,203,224,0,0,15,239,2,255,255,199,224,0,0,15,193,1,255,255,66,0,0,0,15,192,0,42,169,0,0,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,26,35,245,36,5,252,0,0,3,232,0,0,0,0,0,7,248,0,0,0,0,0,11,240,0,0,0,0,0,15,240,0,0,0,0,0,15,208,0,0,0,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,64,0,0,0,15,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,0,0,0,0,11,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,0,0,0,0,11,240,127,0,0,0,0,11,224,0,0,0,0,0,0,0, + // 0x85cd 藍 + 205,133,32,33,8,36,2,254,0,0,190,0,0,190,0,0,0,0,190,0,0,254,0,0,191,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,190,0,0,254,0,0,0,0,190,0,0,189,0,0,0,0,0,0,0,248,0,0,15,255,255,255,129,252,0,0,15,255,255,255,131,248,0,0,15,64,252,0,7,254,170,169,15,255,255,254,15,255,255,253,15,255,255,254,47,255,255,253,15,64,0,62,127,64,0,0,15,64,0,63,255,0,0,0,15,255,255,254,124,0,0,0,15,255,255,254,4,0,0,0,15,64,252,0,2,170,170,164,15,64,252,0,3,255,255,248,15,255,255,255,195,255,255,248,15,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,64,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,252,3,240,11,192,47,128,0,252,3,240,11,192,47,128,0,252,3,240,11,192,47,128,0,252,3,240,11,192,47,128,0,252,3,240,11,192,47,128,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x884c 行 + 76,136,34,35,59,36,1,252,0,0,228,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,11,248,3,255,255,255,255,64,0,47,240,3,255,255,255,255,64,0,191,192,3,255,255,255,255,64,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,63,128,46,64,0,0,0,0,0,29,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,11,248,47,255,255,255,255,208,0,31,240,47,255,255,255,255,208,0,127,192,47,255,255,255,255,208,1,255,192,0,0,0,127,64,0,7,255,192,0,0,0,127,0,0,47,255,192,0,0,0,127,0,0,191,255,192,0,0,0,127,0,0,127,143,192,0,0,0,127,0,0,46,15,192,0,0,0,127,0,0,8,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,0,0,127,0,0,0,15,192,0,1,85,191,0,0,0,15,192,0,3,255,255,0,0,0,15,192,0,3,255,254,0,0,0,15,192,0,2,255,228,0,0,0,0,0,0,0,0,0,0,0, + // 0x8868 表 + 104,136,34,34,50,36,1,253,0,0,0,2,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,7,255,255,255,255,255,255,253,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,170,170,171,254,170,170,160,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,128,0,0,0,191,239,128,0,0,0,0,0,7,255,15,192,0,116,0,0,0,47,248,15,208,2,254,0,0,2,255,208,7,240,15,253,0,0,47,255,64,3,244,127,240,0,7,255,255,0,2,254,255,64,0,191,255,191,0,0,255,248,0,0,63,244,63,0,0,191,208,0,0,30,64,63,0,0,63,208,0,0,0,0,63,0,0,31,240,0,0,0,0,63,0,27,139,253,0,0,0,0,63,91,255,194,255,128,0,0,0,127,255,255,192,191,248,0,0,111,255,255,249,0,31,255,128,0,255,255,249,0,0,7,255,208,0,191,249,0,0,0,0,127,64,0,57,0,0,0,0,0,6,0, + // 0x88ab 被 + 171,136,34,34,50,36,1,253,0,47,64,0,0,11,208,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,0,0,11,224,0,0,0,47,128,3,255,255,255,255,208,63,255,255,67,255,255,255,255,192,63,255,255,195,255,255,255,255,192,63,255,255,131,240,11,224,47,128,0,0,63,3,240,11,224,63,64,0,0,190,3,240,11,224,63,0,0,1,252,3,240,11,224,126,0,0,3,244,131,240,11,224,0,0,0,15,225,247,255,255,255,254,0,0,47,211,231,255,255,255,255,0,0,191,255,199,255,255,255,254,0,2,255,255,7,255,192,0,253,0,11,255,254,7,239,208,1,252,0,47,255,191,75,231,240,3,248,0,255,239,143,203,227,244,3,244,0,127,47,139,203,210,252,15,240,0,60,47,131,79,208,253,31,208,0,16,47,128,15,192,191,63,192,0,0,47,128,31,192,63,255,64,0,0,47,128,47,128,31,254,0,0,0,47,128,63,64,15,252,0,0,0,47,128,63,0,47,254,0,0,0,47,128,191,0,255,255,208,0,0,47,128,254,7,255,127,248,0,0,47,129,252,127,252,15,255,128,0,47,131,248,255,224,2,255,208,0,47,130,240,127,64,0,127,128,0,47,128,80,36,0,0,7,0, + // 0x88c5 装 + 197,136,34,35,59,36,1,252,0,0,190,0,0,47,128,0,0,0,0,190,0,0,47,128,0,0,7,64,190,0,0,47,128,0,0,31,224,190,0,0,47,128,0,0,11,248,190,0,0,47,128,0,0,1,253,190,63,255,255,255,255,192,0,120,190,63,255,255,255,255,192,0,16,190,63,255,255,255,255,192,0,0,190,0,0,47,128,0,0,0,0,190,0,0,47,128,0,0,0,31,190,0,0,47,128,0,0,1,255,190,0,0,47,128,0,0,47,255,190,0,0,47,128,0,0,127,244,190,15,255,255,255,255,0,63,64,190,15,255,255,255,255,0,20,0,190,11,255,255,255,255,0,0,0,190,0,0,0,0,0,0,0,0,20,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,42,170,170,171,254,170,170,170,128,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,2,255,63,64,0,80,0,0,0,47,248,31,192,2,248,0,0,6,255,208,11,224,31,248,0,1,191,255,0,3,249,255,192,0,127,255,255,0,1,255,253,0,0,47,248,127,0,0,191,224,0,0,9,0,63,0,0,47,244,0,0,0,0,63,90,254,11,255,64,0,0,26,255,255,254,1,255,249,0,0,127,255,255,253,0,47,255,208,0,63,255,148,0,0,2,255,128,0,41,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x88dd 裝 + 221,136,34,35,59,36,1,252,2,144,15,192,0,15,192,0,0,7,224,15,192,0,15,192,0,0,7,224,15,192,0,15,192,0,0,7,224,15,192,0,15,192,0,0,7,250,175,192,0,15,192,0,0,7,255,255,203,255,255,255,255,128,7,255,255,203,255,255,255,255,128,3,208,15,203,255,255,255,255,128,0,0,15,192,0,15,192,0,0,42,170,175,192,0,15,192,0,0,63,255,255,192,0,15,192,0,0,63,255,255,192,0,15,192,0,0,2,244,15,192,0,15,192,0,0,3,244,15,194,255,255,255,255,0,7,240,15,195,255,255,255,255,0,15,224,15,195,255,255,255,255,0,127,192,15,192,0,0,0,0,0,63,0,15,194,252,0,0,0,0,24,0,0,2,252,0,0,0,0,42,170,170,171,254,170,170,170,128,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,2,255,63,64,0,80,0,0,0,111,248,31,192,2,248,0,0,27,255,192,11,224,31,248,0,6,255,255,0,3,249,255,208,0,127,255,255,0,1,255,253,0,0,47,228,127,0,0,191,224,0,0,4,0,127,0,5,47,248,0,0,0,0,127,111,255,11,255,64,0,0,107,255,255,255,1,255,249,0,0,191,255,255,233,0,47,255,208,0,127,250,80,0,0,2,255,128,0,20,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0, + // 0x8907 複 + 7,137,34,34,50,36,1,253,0,63,0,0,62,0,0,0,0,0,63,0,0,127,0,0,0,0,0,63,0,0,254,0,0,0,0,0,63,0,1,255,255,255,255,192,0,63,0,3,255,255,255,255,192,0,63,0,11,255,255,255,255,192,0,63,0,15,208,0,0,0,0,63,255,254,63,192,0,0,0,0,63,255,255,255,128,0,0,0,0,63,255,254,126,255,255,255,252,0,0,0,188,21,255,255,255,252,0,0,0,252,1,248,0,0,252,0,0,2,248,1,248,0,0,252,0,0,3,240,1,255,255,255,252,0,0,11,226,129,255,255,255,252,0,0,31,195,225,248,0,0,252,0,0,63,203,193,248,0,0,252,0,0,191,255,1,255,255,255,252,0,2,255,253,1,255,255,255,252,0,7,255,254,0,3,252,0,0,0,31,255,127,64,11,240,0,0,0,127,255,31,128,47,255,255,244,0,191,63,11,0,255,255,255,252,0,60,63,0,7,255,170,175,244,0,16,63,0,47,255,64,15,224,0,0,63,0,255,239,208,63,192,0,0,63,0,62,11,249,255,0,0,0,63,0,0,2,255,252,0,0,0,63,0,0,1,255,244,0,0,0,63,0,0,47,255,255,64,0,0,63,0,27,255,255,255,254,64,0,63,0,255,255,128,127,255,224,0,63,0,191,248,0,6,255,192,0,63,0,57,0,0,0,27,0, + // 0x89d2 角 + 210,137,31,35,24,36,1,252,0,0,11,160,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,255,255,248,0,0,0,0,127,255,255,255,0,0,0,0,255,255,255,254,0,0,0,3,253,0,2,252,0,0,0,15,244,0,7,244,0,0,0,63,224,0,15,224,0,0,0,255,255,255,255,255,255,244,7,255,255,255,255,255,255,244,47,255,255,255,255,255,255,244,15,239,192,0,189,0,3,244,3,79,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,192,0,189,0,3,244,0,15,255,255,255,255,255,244,0,15,255,255,255,255,255,244,0,15,255,255,255,255,255,244,0,15,192,0,189,0,3,244,0,31,192,0,189,0,3,244,0,31,192,0,189,0,3,244,0,47,192,0,189,0,3,244,0,47,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,191,0,0,0,0,3,244,0,253,0,0,0,0,3,244,2,252,0,0,0,0,3,244,7,248,0,0,0,0,3,244,31,240,0,0,0,0,7,244,127,192,0,0,0,255,255,244,63,64,0,0,0,127,255,240,13,0,0,0,0,63,254,64,0,0,0,0,0,0,0,0, + // 0x8a08 計 + 8,138,34,34,50,36,1,253,0,0,0,0,0,3,240,0,0,6,170,170,144,0,7,240,0,0,11,255,255,208,0,7,240,0,0,11,255,255,208,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,191,255,255,252,0,7,240,0,0,191,255,255,252,0,7,240,0,0,106,170,170,168,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,15,255,255,208,0,7,240,0,0,15,255,255,209,85,87,245,85,80,10,170,170,151,255,255,255,255,240,0,0,0,7,255,255,255,255,240,0,0,0,7,255,255,255,255,240,15,255,255,208,0,7,240,0,0,15,255,255,208,0,7,240,0,0,10,170,170,144,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,15,255,255,208,0,7,240,0,0,15,255,255,208,0,7,240,0,0,15,234,175,208,0,7,240,0,0,15,192,11,208,0,7,240,0,0,15,192,11,208,0,7,240,0,0,15,192,11,208,0,7,240,0,0,15,192,11,208,0,7,240,0,0,15,192,11,208,0,7,240,0,0,15,234,175,208,0,7,240,0,0,15,255,255,208,0,7,240,0,0,15,255,255,208,0,7,240,0,0,15,192,0,0,0,7,240,0,0,10,128,0,0,0,7,240,0,0, + // 0x8a0a 訊 + 10,138,35,34,50,36,1,252,6,170,170,64,0,0,0,0,0,15,255,255,139,255,255,255,240,0,15,255,255,139,255,255,255,240,0,0,0,0,11,255,255,255,240,0,0,0,0,0,11,208,7,240,0,191,255,255,240,11,208,7,240,0,191,255,255,240,11,208,7,240,0,106,170,170,160,11,208,7,240,0,0,0,0,0,11,208,7,240,0,0,0,0,0,11,208,7,240,0,15,255,255,128,11,208,7,240,0,15,255,255,128,11,208,7,240,0,10,170,170,64,11,208,7,240,0,0,0,0,15,255,255,231,240,0,0,0,0,15,255,255,231,240,0,15,255,255,143,255,255,231,240,0,15,255,255,128,15,208,7,240,0,10,170,170,64,15,192,7,240,0,0,0,0,0,15,192,7,240,0,0,0,0,0,31,192,7,240,0,15,255,255,128,31,192,3,240,0,15,255,255,128,47,128,3,240,0,15,234,191,128,63,64,3,240,0,15,192,15,128,127,0,3,240,0,15,192,15,128,191,0,3,244,64,15,192,15,128,254,0,2,244,160,15,192,15,130,252,0,2,248,180,15,192,15,131,248,0,1,252,244,15,234,191,143,240,0,0,252,240,15,255,255,175,224,0,0,255,240,15,255,255,255,192,0,0,127,224,15,192,0,47,0,0,0,63,208,10,128,0,9,0,0,0,11,128,0,0,0,0,0,0,0,0,0, + // 0x8a18 記 + 24,138,34,33,41,36,1,253,6,170,170,144,0,0,0,0,0,11,255,255,224,191,255,255,254,0,11,255,255,224,191,255,255,254,0,0,0,0,0,191,255,255,254,0,0,0,0,0,0,0,0,190,0,191,255,255,252,0,0,0,190,0,191,255,255,252,0,0,0,190,0,106,170,170,168,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,15,255,255,208,0,0,0,190,0,15,255,255,208,0,0,0,190,0,10,170,170,144,0,0,0,190,0,0,0,0,0,127,255,255,254,0,0,0,0,0,127,255,255,254,0,15,255,255,208,127,255,255,254,0,15,255,255,208,127,0,0,190,0,10,170,170,144,127,0,0,190,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,15,255,255,208,127,0,0,0,0,15,255,255,208,127,0,0,0,0,15,234,175,208,127,0,0,0,0,15,192,11,208,127,0,0,4,0,15,192,11,208,127,0,0,11,144,15,192,11,208,127,0,0,11,224,15,192,11,208,127,0,0,11,208,15,192,11,208,127,0,0,15,208,15,234,175,208,127,64,0,47,192,15,255,255,208,63,255,255,255,192,15,255,255,208,47,255,255,255,64,15,192,0,0,11,255,255,253,0,10,128,0,0,0,0,0,0,0, + // 0x8a2d 設 + 45,138,34,33,41,36,1,253,6,170,170,128,127,255,255,0,0,11,255,255,192,127,255,255,0,0,11,255,255,192,127,255,255,0,0,0,0,0,0,127,0,63,0,0,0,0,0,0,127,0,63,0,0,191,255,255,240,127,0,63,0,0,191,255,255,240,126,0,63,3,0,106,170,170,160,190,0,63,3,224,0,0,0,0,253,0,63,67,224,0,0,0,2,252,0,63,71,224,15,255,255,199,248,0,63,255,208,15,255,255,223,240,0,31,255,192,10,170,170,175,208,0,7,254,0,0,0,0,7,64,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,199,255,255,255,253,0,15,255,255,199,255,255,255,253,0,10,170,170,135,255,255,255,252,0,0,0,0,0,25,0,3,252,0,0,0,0,0,127,0,7,244,0,15,255,255,192,63,128,15,240,0,15,255,255,192,31,192,31,208,0,15,234,175,192,15,240,127,192,0,15,192,15,192,3,252,255,0,0,15,192,15,192,1,255,253,0,0,15,192,15,192,0,191,248,0,0,15,192,15,192,0,191,244,0,0,15,192,15,192,7,255,254,0,0,15,234,175,192,47,255,255,208,0,15,255,255,203,255,244,127,254,64,15,255,255,239,255,64,11,255,208,15,192,0,15,248,0,1,191,128,10,128,0,10,64,0,0,11,0, + // 0x8a66 試 + 102,138,34,35,59,36,1,252,0,0,0,0,0,0,126,20,0,10,170,170,0,0,0,126,189,0,15,255,255,0,0,0,126,127,0,15,255,255,0,0,0,126,47,192,0,0,0,0,0,0,126,15,208,0,0,0,0,0,0,126,3,128,191,255,255,192,0,0,126,0,0,191,255,255,218,170,170,255,170,128,191,255,255,223,255,255,255,255,192,0,0,0,15,255,255,255,255,192,0,0,0,0,0,0,127,0,0,15,255,255,64,0,0,127,0,0,15,255,255,64,0,0,127,0,0,10,170,170,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,15,255,254,63,0,0,15,255,255,79,255,254,63,0,0,15,255,255,79,255,254,63,0,0,10,170,170,0,47,64,63,0,0,0,0,0,0,47,64,63,0,0,0,0,0,0,47,64,63,0,0,15,255,255,64,47,64,47,64,0,15,255,255,64,47,64,47,64,0,15,234,191,64,47,64,47,128,0,15,192,47,64,47,64,31,128,0,15,192,47,64,47,64,15,192,0,15,192,47,64,47,65,79,193,208,15,192,47,64,47,255,143,209,240,15,192,47,91,255,255,139,226,240,15,234,191,111,255,250,7,247,224,15,255,255,95,249,0,3,255,208,15,255,255,73,0,0,2,255,192,15,192,0,0,0,0,0,255,128,10,64,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0, + // 0x8a8d 認 + 141,138,34,33,41,36,1,253,10,170,170,3,255,255,255,255,64,15,255,255,3,255,255,255,255,64,15,255,255,3,255,255,255,255,64,0,0,0,0,0,126,0,63,0,0,0,0,0,0,189,0,63,0,191,255,255,209,224,253,0,63,0,191,255,255,211,255,252,0,63,0,106,170,170,130,255,252,0,63,0,0,0,0,0,31,255,64,63,0,0,0,0,0,7,255,224,127,0,15,255,255,64,15,255,240,127,0,15,255,255,64,47,194,224,190,0,10,170,170,0,191,64,64,254,0,0,0,0,3,254,0,255,253,0,0,0,0,31,248,0,255,252,0,15,255,255,75,208,96,191,224,0,15,255,255,66,0,253,0,0,0,10,170,170,0,0,255,192,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,7,253,0,0,15,255,255,64,6,144,252,0,0,15,255,255,66,71,224,48,116,0,15,234,191,67,231,224,1,252,0,15,192,47,71,215,224,0,253,0,15,192,47,75,215,224,0,127,0,15,192,47,79,199,224,0,63,128,15,192,47,79,199,224,9,31,192,15,192,47,95,135,224,11,207,208,15,234,191,127,71,224,11,203,224,15,255,255,191,7,224,15,199,240,15,255,255,76,7,255,255,131,128,15,192,0,0,3,255,255,64,0,10,64,0,0,0,191,253,0,0, + // 0x8aa4 誤 + 164,138,34,34,50,36,1,252,6,170,169,0,0,255,255,255,0,15,255,254,0,0,255,255,255,0,15,255,254,0,0,255,255,255,0,0,0,0,7,224,252,0,127,0,0,0,0,7,224,252,0,127,0,191,255,255,199,224,252,0,127,0,191,255,255,199,224,252,0,127,0,106,170,170,135,224,252,0,127,0,0,0,0,7,224,255,255,255,0,0,0,0,7,224,255,255,255,0,15,255,254,7,224,255,255,255,0,15,255,254,7,224,0,0,0,0,10,170,169,7,224,0,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,7,255,255,255,252,0,15,255,254,7,255,255,255,252,0,15,255,254,7,255,255,255,252,0,10,170,169,7,224,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,15,255,255,0,0,0,1,252,0,15,255,255,63,255,255,255,255,224,15,234,191,63,255,255,255,255,224,15,128,63,63,255,255,255,255,224,15,128,63,0,10,0,2,0,0,15,128,63,0,15,208,47,192,0,15,128,63,0,63,208,31,240,0,15,128,63,0,255,128,7,252,0,15,234,191,3,254,0,2,254,0,15,255,255,15,248,0,0,191,128,15,255,255,127,224,0,0,63,208,15,128,0,63,128,0,0,15,208,10,64,0,13,0,0,0,6,0,0,0,0,0,0,0,0,0,0, + // 0x8abf 調 + 191,138,33,34,50,36,1,252,10,170,168,15,255,255,255,255,64,15,255,252,31,255,255,255,255,64,15,255,252,31,255,255,255,255,64,0,0,0,31,128,0,0,47,64,0,0,0,31,128,31,0,47,64,191,255,255,31,128,31,64,47,64,191,255,255,31,128,31,64,47,64,106,170,170,31,139,255,254,47,64,0,0,0,31,139,255,254,47,64,0,0,0,31,134,175,169,47,64,15,255,252,31,128,31,64,47,64,15,255,252,31,128,31,64,47,64,10,170,168,31,134,175,170,47,64,0,0,0,31,143,255,255,47,64,0,0,0,31,143,255,255,47,64,15,255,252,31,128,0,0,47,64,15,255,252,31,128,0,0,47,64,10,170,168,31,129,85,84,47,64,0,0,0,31,139,255,253,47,64,0,0,0,31,139,255,253,47,64,15,255,252,47,75,192,61,47,64,15,255,252,47,75,192,61,47,64,15,234,252,47,75,192,61,47,64,15,64,188,63,11,192,61,47,64,15,64,188,63,11,213,125,47,64,15,64,188,63,11,255,253,47,64,15,64,188,126,11,255,253,47,64,15,64,188,189,11,192,0,47,64,15,234,252,252,1,64,0,47,64,15,255,254,252,0,0,16,127,64,15,255,255,248,0,0,63,255,64,15,64,3,244,0,0,63,255,0,10,64,0,112,0,0,47,248,0,0,0,0,0,0,0,0,0,0, + // 0x8acb 請 + 203,138,34,34,50,36,1,253,0,0,0,0,0,15,192,0,0,6,170,170,64,0,15,192,0,0,15,255,255,129,85,95,229,85,64,15,255,255,135,255,255,255,255,128,0,0,0,7,255,255,255,255,128,0,0,0,0,0,15,192,0,0,191,255,255,240,85,95,213,85,0,191,255,255,241,255,255,255,255,0,106,170,170,161,255,255,255,255,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,15,255,255,143,255,255,255,255,208,15,255,255,143,255,255,255,255,208,10,170,170,69,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,84,0,15,255,255,128,191,255,255,253,0,15,255,255,128,191,255,255,253,0,10,170,170,64,189,0,0,253,0,0,0,0,0,189,0,0,253,0,0,0,0,0,191,255,255,253,0,15,255,255,128,191,255,255,253,0,15,255,255,128,190,85,85,253,0,15,234,191,128,189,0,0,253,0,15,192,15,128,190,85,85,253,0,15,192,15,128,191,255,255,253,0,15,192,15,128,191,255,255,253,0,15,192,15,128,189,0,0,253,0,15,192,15,128,189,0,0,253,0,15,234,191,128,189,0,0,253,0,15,255,255,128,189,0,0,253,0,15,255,255,128,189,0,191,253,0,15,192,0,0,189,0,63,248,0,10,128,0,0,105,0,42,144,0, + // 0x8b70 議 + 112,139,34,34,50,36,1,253,0,0,0,0,100,0,3,144,0,10,170,168,0,252,0,11,224,0,15,255,252,0,127,0,15,192,0,15,255,252,21,127,85,111,149,0,0,0,0,47,255,255,255,255,64,0,0,0,47,255,255,255,255,64,191,255,255,0,0,63,0,0,0,191,255,255,0,0,63,0,0,0,106,170,170,11,255,255,255,253,0,0,0,0,11,255,255,255,253,0,0,0,0,0,0,63,64,0,0,15,255,252,0,0,63,0,0,0,15,255,252,255,255,255,255,255,192,10,170,168,255,255,255,255,255,192,0,0,0,170,170,170,170,170,128,0,0,0,0,0,81,160,0,0,15,255,252,5,175,250,245,244,0,15,255,252,127,255,209,245,254,0,10,170,168,63,254,1,244,63,64,0,0,0,0,62,1,244,15,64,0,0,0,0,62,1,244,0,0,15,255,252,255,255,255,255,255,192,15,255,252,255,255,255,255,255,192,15,234,252,85,191,85,253,85,64,15,64,188,0,62,0,252,36,0,15,64,188,0,127,188,188,190,0,15,64,188,191,255,252,190,252,0,15,64,188,255,255,232,127,240,0,15,64,188,250,190,0,63,192,0,15,234,252,0,62,0,191,129,208,15,255,252,0,62,7,255,194,224,15,255,252,21,190,127,219,251,208,15,64,0,47,253,61,3,255,192,10,64,0,15,244,0,0,191,0, + // 0x8b80 讀 + 128,139,34,35,59,36,1,252,0,0,0,0,0,63,64,0,0,10,170,168,0,0,63,64,0,0,15,255,252,63,255,255,255,255,192,15,255,252,63,255,255,255,255,192,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,191,255,255,11,255,255,255,255,0,191,255,255,6,170,170,170,170,0,106,170,170,0,0,0,0,0,0,0,0,0,47,255,255,255,255,128,0,0,0,47,255,255,255,255,128,15,255,252,47,1,224,240,15,128,15,255,252,47,11,192,255,255,128,10,170,168,47,121,0,21,95,128,0,0,0,47,0,0,0,15,128,0,0,0,47,255,255,255,255,128,15,255,252,47,255,255,255,255,128,15,255,252,0,0,0,0,0,0,10,170,168,11,255,255,255,254,0,0,0,0,11,255,255,255,254,0,0,0,0,11,208,0,0,126,0,15,255,252,11,255,255,255,254,0,15,255,252,11,229,85,85,190,0,15,234,252,11,208,0,0,126,0,15,64,188,11,255,255,255,254,0,15,64,188,11,229,85,85,190,0,15,64,188,11,208,0,0,126,0,15,64,188,11,255,255,255,254,0,15,64,188,11,255,255,255,254,0,15,234,252,0,47,64,47,64,0,15,255,252,2,255,192,127,244,0,15,255,252,127,253,0,7,255,64,15,64,0,255,208,0,0,127,208,10,64,0,56,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x8b8a 變 + 138,139,34,35,59,36,1,252,0,40,0,0,0,0,29,0,0,0,62,0,63,255,128,63,0,0,0,252,0,63,255,128,188,0,0,10,240,144,0,0,5,244,120,0,31,210,245,255,255,255,224,252,0,15,215,226,255,255,255,227,240,0,3,255,192,0,0,3,255,208,0,0,255,16,42,170,128,255,84,0,0,252,180,63,255,192,189,124,0,2,240,124,0,0,1,244,47,0,63,255,255,0,0,63,255,255,128,63,255,255,191,255,255,255,255,208,21,111,10,63,255,169,111,66,192,0,47,0,0,0,0,31,64,0,11,175,120,127,255,199,159,109,0,15,175,60,126,175,203,159,111,0,31,47,46,124,11,207,95,79,128,47,47,31,124,11,223,31,71,192,62,47,5,127,255,254,31,67,208,44,47,11,250,170,156,31,65,0,0,26,31,208,0,0,10,0,0,0,0,127,192,0,0,0,0,0,0,1,255,255,255,255,255,255,0,0,11,255,255,255,255,255,255,0,0,63,254,170,170,175,254,170,0,2,255,255,0,0,47,224,0,0,31,253,127,224,1,255,128,0,0,11,208,15,254,31,253,0,0,0,1,0,1,255,255,240,0,0,0,0,0,1,191,255,228,0,0,0,0,22,191,255,255,255,249,64,0,127,255,255,249,6,255,255,255,208,63,255,249,0,0,7,255,255,192,31,229,0,0,0,0,5,175,0,0,0,0,0,0,0,0,0,0, + // 0x8cc7 資 + 199,140,32,35,24,36,2,252,0,0,0,3,224,0,0,0,11,144,0,7,240,0,0,0,31,255,64,15,229,85,85,80,7,255,240,47,255,255,255,253,0,31,224,191,255,255,255,252,0,1,194,252,7,248,3,240,0,0,7,240,11,252,15,224,0,0,16,192,31,254,15,192,0,27,240,0,127,191,128,0,27,255,240,7,254,31,248,0,255,255,145,191,248,7,255,228,191,228,3,255,128,0,191,255,121,0,2,244,0,0,11,253,0,127,255,255,255,255,255,104,0,127,255,255,255,255,255,0,0,127,0,0,0,0,127,0,0,126,0,0,0,0,127,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,0,0,0,0,127,0,0,126,0,0,0,0,127,0,0,127,0,0,0,0,127,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,126,0,0,0,0,127,0,0,127,0,0,0,0,127,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,0,29,0,0,100,0,0,0,2,255,192,2,255,144,0,1,191,254,0,1,191,254,0,191,255,224,0,0,7,255,228,63,249,0,0,0,0,111,254,14,64,0,0,0,0,2,224,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,34,33,41,36,1,253,11,255,255,244,0,0,0,0,0,15,255,255,244,127,255,255,255,192,15,255,255,244,127,255,255,255,192,15,192,3,244,127,255,255,255,192,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,192,3,244,127,0,0,0,0,15,255,255,244,127,255,255,254,0,15,255,255,244,127,255,255,254,0,15,255,255,244,127,255,255,254,0,0,3,240,0,127,0,0,190,0,0,3,240,0,127,0,0,190,0,0,3,240,0,127,0,0,190,0,15,195,240,0,127,0,0,190,0,15,195,240,0,127,0,0,190,0,15,195,255,252,127,0,0,190,0,15,195,255,252,127,0,0,190,0,15,195,255,252,127,255,255,254,0,15,195,240,0,127,255,255,254,0,15,195,240,0,127,255,255,254,0,15,195,240,0,127,0,0,0,0,15,195,240,0,127,0,0,0,0,15,195,240,4,127,0,0,0,0,15,195,246,253,127,0,0,0,0,15,199,255,253,127,0,0,0,0,31,255,255,253,127,0,0,0,0,191,255,254,64,127,255,255,255,224,191,254,64,0,127,255,255,255,224,126,64,0,0,127,255,255,255,224,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0, + // 0x8eca 車 + 202,142,32,35,24,36,2,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,63,255,255,255,255,255,255,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,252,0,15,224,0,63,64,1,252,0,15,224,0,63,64,1,254,170,175,250,170,191,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,1,252,0,15,224,0,63,64,1,252,0,15,224,0,63,64,1,252,0,15,224,0,63,64,1,254,170,175,250,170,191,64,1,255,255,255,255,255,255,64,1,255,255,255,255,255,255,64,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x8edf 軟 + 223,142,34,35,59,36,1,252,0,3,244,0,1,228,0,0,0,0,3,244,0,2,248,0,0,0,0,3,244,0,2,248,0,0,0,0,3,244,0,3,244,0,0,0,63,255,255,255,67,240,0,0,0,63,255,255,255,71,240,0,0,0,63,255,255,255,75,240,0,0,0,0,3,244,0,11,255,255,255,192,0,3,244,0,15,255,255,255,192,31,255,255,255,31,255,255,255,192,31,255,255,255,47,135,240,31,128,31,151,245,127,63,71,240,47,64,31,66,240,63,191,7,240,63,0,31,66,240,63,254,7,240,63,0,31,86,245,127,252,7,240,62,0,31,255,255,255,248,7,240,125,0,31,255,255,255,48,7,240,188,0,31,66,240,63,0,7,240,4,0,31,66,240,63,0,11,240,0,0,31,151,245,127,0,15,244,0,0,31,255,255,255,0,15,248,0,0,31,255,255,255,0,31,252,0,0,0,3,244,0,0,47,189,0,0,0,3,244,0,0,63,62,0,0,0,3,244,0,0,189,63,0,0,127,255,255,255,192,252,47,128,0,127,255,255,255,195,248,15,208,0,127,255,255,255,203,240,11,240,0,0,3,244,0,47,224,3,252,0,0,3,244,0,191,192,1,255,0,0,3,244,3,255,0,0,255,208,0,3,244,15,252,0,0,63,224,0,3,244,3,240,0,0,15,192,0,3,244,2,128,0,0,2,64,0,0,0,0,0,0,0,0,0, + // 0x8ef8 軸 + 248,142,33,35,59,36,1,252,0,3,224,0,0,3,240,0,0,0,3,224,0,0,3,240,0,0,0,3,224,0,0,3,240,0,0,0,3,224,0,0,3,240,0,0,63,255,255,254,0,3,240,0,0,63,255,255,254,0,3,240,0,0,63,255,255,254,0,3,240,0,0,0,3,224,0,0,3,240,0,0,0,3,224,0,127,255,255,255,64,31,255,255,252,127,255,255,255,64,31,255,255,252,127,255,255,255,64,31,151,229,188,126,3,240,31,64,31,3,208,188,126,3,240,31,64,31,3,208,188,126,3,240,31,64,31,87,229,188,126,3,240,31,64,31,255,255,252,126,3,240,31,64,31,255,255,252,126,3,240,31,64,31,3,208,188,126,3,240,31,64,31,3,208,188,127,255,255,255,64,31,151,229,188,127,255,255,255,64,31,255,255,252,127,255,255,255,64,31,255,255,252,126,3,240,31,64,0,3,224,0,126,3,240,31,64,0,3,224,0,126,3,240,31,64,0,3,224,0,126,3,240,31,64,191,255,255,255,126,3,240,31,64,191,255,255,255,126,3,240,31,64,191,255,255,255,126,3,240,31,64,0,3,224,0,126,3,240,31,64,0,3,224,0,127,255,255,255,64,0,3,224,0,127,255,255,255,64,0,3,224,0,127,255,255,255,64,0,3,224,0,126,0,0,31,64,0,3,224,0,126,0,0,31,64,0,0,0,0,0,0,0,0,0, + // 0x8f09 載 + 9,143,33,35,59,36,2,252,0,0,252,0,3,240,4,0,0,0,0,252,0,3,244,46,0,0,0,0,252,0,3,244,191,128,0,31,255,255,255,195,244,47,224,0,31,255,255,255,195,244,11,248,0,26,170,254,170,131,244,2,252,0,0,0,252,0,3,244,0,240,0,0,0,252,0,3,244,0,0,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,252,0,2,248,0,0,0,0,0,252,0,2,248,0,0,0,63,255,255,255,226,252,2,244,0,63,255,255,255,225,252,3,244,0,21,86,253,85,81,252,7,240,0,0,0,252,0,1,252,11,224,0,10,171,254,170,128,252,15,208,0,31,255,255,255,192,253,31,192,0,31,0,248,7,192,253,63,128,0,31,0,248,7,192,190,127,0,0,31,255,255,255,192,191,254,0,0,31,234,254,175,192,127,252,0,0,31,0,248,7,192,63,244,0,0,31,255,255,255,192,63,240,0,0,31,255,255,255,192,63,192,12,0,0,0,252,0,0,191,192,15,64,0,0,252,0,2,255,208,31,128,191,255,255,255,251,255,240,31,64,191,255,255,255,255,247,248,47,0,85,86,253,86,255,194,254,127,0,0,0,252,3,255,0,255,254,0,0,0,252,1,248,0,63,252,0,0,0,252,0,160,0,11,244,0,0,0,0,0,0,0,0,0,0, + // 0x8f2f 輯 + 47,143,34,35,59,36,1,252,0,3,224,0,0,0,0,0,0,0,3,224,0,15,255,255,254,0,0,3,224,0,15,255,255,254,0,0,3,224,0,15,213,85,254,0,63,255,255,254,15,192,0,190,0,63,255,255,254,15,192,0,190,0,63,255,255,254,15,213,85,254,0,0,3,224,0,15,255,255,254,0,0,3,224,0,15,255,255,254,0,31,255,255,252,0,0,0,0,0,31,255,255,252,0,0,0,0,0,31,151,229,188,255,255,255,255,224,31,3,208,188,255,255,255,255,224,31,3,208,188,175,234,170,255,144,31,87,229,188,15,192,0,190,0,31,255,255,252,15,192,0,190,0,31,255,255,252,15,213,85,190,0,31,3,208,188,15,255,255,254,0,31,3,208,188,15,255,255,254,0,31,151,229,188,15,192,0,190,0,31,255,255,252,15,192,0,190,0,31,255,255,252,15,213,85,254,0,0,3,224,0,15,255,255,254,0,0,3,224,0,15,255,255,254,0,0,3,224,0,15,192,0,190,0,191,255,255,255,15,192,0,190,0,191,255,255,255,15,192,0,191,208,191,255,255,255,15,234,191,255,224,0,3,224,3,255,255,255,255,224,0,3,224,3,255,255,255,254,0,0,3,224,2,250,148,0,190,0,0,3,224,0,0,0,0,190,0,0,3,224,0,0,0,0,190,0,0,3,224,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0, + // 0x8f38 輸 + 56,143,34,34,50,36,1,253,0,15,192,0,0,15,208,0,0,0,15,192,0,0,31,240,0,0,0,15,192,0,0,63,252,0,0,0,15,192,0,0,191,254,0,0,63,255,255,248,1,252,127,64,0,63,255,255,248,7,244,47,208,0,63,255,255,248,31,240,15,244,0,0,15,192,0,127,192,3,254,0,0,15,192,2,255,0,0,255,192,47,255,255,255,255,170,170,191,240,47,255,255,251,227,255,255,207,224,47,91,215,243,67,255,255,194,192,46,7,130,240,0,0,0,0,0,46,7,130,240,0,0,0,0,0,47,91,150,241,85,84,0,15,128,47,255,255,242,255,253,25,15,128,47,255,255,242,255,253,62,15,128,46,7,130,242,224,61,62,15,128,46,7,130,242,224,61,62,15,128,47,91,215,242,245,125,62,15,128,47,255,255,242,255,253,62,15,128,47,255,255,242,255,253,62,15,128,0,15,192,2,224,61,62,15,128,0,15,192,2,224,61,62,15,128,0,15,192,2,245,125,62,15,128,191,255,255,246,255,253,62,15,128,191,255,255,246,255,253,62,15,128,191,255,255,246,224,61,62,15,128,0,15,192,2,224,61,21,15,128,0,15,192,2,224,61,0,15,128,0,15,192,2,224,61,0,15,128,0,15,192,2,224,125,5,111,128,0,15,192,2,225,253,7,255,64,0,15,192,2,224,248,3,253,0, + // 0x8f49 轉 + 73,143,34,35,59,36,1,252,0,11,208,0,0,7,224,0,0,0,11,208,0,0,7,224,0,0,0,11,208,0,170,171,250,170,128,0,11,229,85,255,255,255,255,192,63,255,255,253,255,255,255,255,192,63,255,255,252,0,7,224,0,0,63,255,255,252,0,7,224,0,0,0,11,208,0,191,255,255,255,64,0,11,208,0,191,255,255,255,64,31,255,255,244,188,7,224,47,64,31,255,255,244,188,7,224,47,64,31,91,213,244,191,255,255,255,64,31,3,192,244,191,255,255,255,64,31,3,192,244,188,7,224,47,64,31,87,213,244,188,7,224,47,64,31,255,255,244,191,255,255,255,64,31,255,255,244,191,255,255,255,64,31,3,192,244,0,7,224,248,0,31,3,192,244,0,7,224,190,0,31,91,213,247,255,255,255,255,128,31,255,255,246,255,255,255,255,208,31,255,255,245,165,84,5,67,192,0,11,208,0,0,0,15,208,0,0,11,208,1,170,170,175,234,144,0,11,208,3,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,253,11,0,15,208,0,191,255,255,253,47,192,15,208,0,0,11,208,0,15,224,15,208,0,0,11,208,0,3,244,15,208,0,0,11,208,0,1,240,15,208,0,0,11,208,0,0,74,175,192,0,0,11,208,0,0,15,255,192,0,0,11,208,0,0,7,254,0,0,0,0,0,0,0,0,0,0,0, + // 0x8fd1 近 + 209,143,34,34,50,36,1,253,0,0,0,0,0,0,1,128,0,3,64,0,0,0,1,191,240,0,31,208,0,4,5,191,255,252,0,31,248,0,15,255,255,255,208,0,7,254,0,15,255,255,164,0,0,0,255,128,15,254,80,0,0,0,0,63,208,15,192,0,0,0,0,0,15,192,15,192,0,0,0,0,0,6,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,255,255,255,255,192,0,0,0,31,255,255,255,255,192,0,0,0,31,255,255,255,255,192,0,0,0,31,192,1,252,0,0,63,255,128,31,192,1,252,0,0,63,255,128,47,128,1,252,0,0,63,255,128,63,128,1,252,0,0,0,47,128,63,64,1,252,0,0,0,47,128,127,0,1,252,0,0,0,47,128,191,0,1,252,0,0,0,47,128,253,0,1,252,0,0,0,47,130,252,0,1,252,0,0,0,47,131,248,0,1,252,0,0,0,47,143,240,0,1,252,0,0,0,47,143,208,0,1,252,0,0,0,63,195,128,0,1,252,0,0,1,255,240,0,0,1,252,0,0,11,255,254,0,0,0,0,0,0,127,248,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,64,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,34,33,41,36,1,253,2,0,0,0,0,0,0,0,0,31,208,0,63,255,255,255,255,0,31,244,0,63,255,255,255,255,0,7,253,0,63,255,255,255,255,0,0,255,64,63,0,0,0,0,0,0,63,192,63,0,0,0,0,0,0,15,64,63,0,0,0,0,0,0,4,0,63,0,0,0,0,0,0,0,0,127,255,255,255,248,0,0,0,0,127,255,255,255,252,0,0,0,0,127,255,255,255,248,0,0,0,0,127,127,0,3,244,0,0,0,0,127,63,0,11,240,0,63,255,64,127,47,128,15,224,0,63,255,64,190,15,192,31,192,0,63,255,64,190,15,240,63,128,0,0,63,64,253,7,244,255,0,0,0,63,64,252,2,254,254,0,0,0,63,65,252,0,255,252,0,0,0,63,66,252,0,127,240,0,0,0,63,67,244,0,127,240,0,0,0,63,71,240,2,255,254,0,0,0,63,79,240,15,255,255,192,0,0,63,95,209,255,244,191,253,0,0,63,111,203,255,192,31,255,192,0,127,199,67,254,0,2,255,128,2,255,240,1,224,0,0,47,0,11,255,253,0,0,0,0,0,0,127,245,255,229,64,0,0,21,80,191,192,127,255,255,255,255,255,208,63,0,11,255,255,255,255,255,192,44,0,0,111,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,34,33,41,36,1,253,3,128,0,47,255,255,255,240,0,31,240,0,47,255,255,255,240,0,11,253,0,47,255,255,255,240,0,2,255,64,47,128,0,3,240,0,0,191,192,47,128,0,3,240,0,0,47,224,47,128,0,3,240,0,0,11,128,47,255,255,255,240,0,0,1,0,47,255,255,255,240,0,0,0,0,47,234,170,171,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,128,0,3,240,0,0,0,0,47,255,255,255,240,0,63,255,128,47,255,255,255,240,0,63,255,128,47,255,255,255,244,0,63,255,128,47,128,126,0,62,0,0,47,128,47,128,63,1,255,64,0,47,128,47,128,47,139,253,0,0,47,128,47,128,15,255,224,0,0,47,128,47,128,11,255,0,0,0,47,128,47,128,3,252,0,0,0,47,128,47,128,25,255,0,0,0,47,128,47,155,252,191,208,0,0,47,128,127,255,252,47,253,0,0,47,195,255,255,228,7,255,192,0,63,211,255,228,0,1,255,64,1,255,246,228,0,0,0,30,0,11,255,254,0,0,0,0,0,0,127,244,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,0,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,34,34,50,36,1,253,0,0,0,0,0,252,0,0,0,2,0,0,0,0,252,0,0,0,15,208,0,0,0,252,0,0,0,47,244,0,0,0,252,0,0,0,7,254,7,255,255,255,255,255,192,1,255,135,255,255,255,255,255,192,0,63,215,255,255,255,255,255,128,0,15,128,0,0,252,0,0,0,0,1,0,0,0,252,0,0,0,0,0,0,255,255,255,255,253,0,0,0,0,255,255,255,255,253,0,0,0,0,254,170,254,170,253,0,0,0,0,252,0,252,0,253,0,0,0,0,252,0,252,0,253,0,63,255,128,252,0,252,0,253,0,63,255,128,252,0,252,0,253,0,63,255,128,255,255,255,255,253,0,0,47,128,255,255,255,255,253,0,0,47,128,170,175,255,234,169,0,0,47,128,0,47,255,192,0,0,0,47,128,0,127,255,244,0,0,0,47,128,2,253,254,253,0,0,0,47,128,11,244,252,191,128,0,0,47,128,127,208,252,47,244,0,0,47,130,255,64,252,11,255,64,0,47,207,253,0,252,1,255,128,0,63,211,240,0,252,0,63,0,1,255,245,64,0,252,0,4,0,11,255,254,0,0,168,0,0,0,127,244,255,249,64,0,0,85,80,127,208,63,255,255,255,255,255,208,63,0,7,255,255,255,255,255,192,28,0,0,43,255,255,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x9023 連 + 35,144,34,34,50,36,1,253,0,0,0,0,2,248,0,0,0,7,0,0,0,2,248,0,0,0,47,208,0,0,2,248,0,0,0,31,244,15,255,255,255,255,255,64,7,253,15,255,255,255,255,255,64,1,255,75,255,255,255,255,255,64,0,127,192,0,2,248,0,0,0,0,47,64,0,2,248,0,0,0,0,9,1,255,255,255,255,248,0,0,0,1,255,255,255,255,248,0,0,0,1,253,86,253,86,248,0,0,0,1,248,2,248,1,248,0,0,0,1,248,2,248,1,248,0,0,0,1,255,255,255,255,248,0,127,255,1,255,255,255,255,248,0,127,255,1,253,86,253,86,248,0,127,255,1,248,2,248,1,248,0,0,63,1,253,86,253,86,248,0,0,63,1,255,255,255,255,248,0,0,63,1,255,255,255,255,248,0,0,63,0,0,2,248,0,0,0,0,63,0,0,2,248,0,0,0,0,63,26,170,171,254,170,170,128,0,63,31,255,255,255,255,255,192,0,63,31,255,255,255,255,255,192,0,63,0,0,2,248,0,0,0,0,63,128,0,2,248,0,0,0,0,255,208,0,2,248,0,0,0,7,255,244,0,2,248,0,0,0,47,251,255,128,0,0,0,0,0,127,208,255,255,234,170,170,255,208,63,64,47,255,255,255,255,255,192,45,0,1,255,255,255,255,255,128,4,0,0,1,85,85,85,85,0, + // 0x9032 進 + 50,144,34,34,50,36,1,253,0,0,0,2,144,1,144,0,0,7,64,0,3,248,3,252,0,0,47,208,0,11,240,3,244,0,0,15,248,0,15,224,11,240,0,0,3,254,0,47,192,15,208,0,0,0,255,64,127,255,255,255,255,0,0,63,192,255,255,255,255,255,0,0,31,2,255,255,255,255,255,0,0,4,7,255,0,47,128,0,0,0,0,31,255,0,47,128,0,0,0,0,63,255,0,47,128,0,0,0,0,255,255,0,47,128,0,0,0,0,255,191,255,255,255,252,0,0,0,60,127,255,255,255,252,0,127,255,0,127,255,255,255,252,0,127,255,0,127,0,47,128,0,0,127,255,0,127,0,47,128,0,0,0,63,0,127,0,47,128,0,0,0,63,0,127,255,255,255,252,0,0,63,0,127,255,255,255,252,0,0,63,0,127,255,255,255,252,0,0,63,0,127,0,47,128,0,0,0,63,0,127,0,47,128,0,0,0,63,0,127,0,47,128,0,0,0,63,0,127,255,255,255,255,128,0,63,0,127,255,255,255,255,128,0,63,128,127,255,255,255,255,128,0,255,208,0,0,0,0,0,0,7,255,244,0,0,0,0,0,0,47,251,255,128,0,0,0,0,0,127,208,255,255,234,170,170,255,208,63,64,47,255,255,255,255,255,192,45,0,1,255,255,255,255,255,128,4,0,0,1,85,85,85,85,0, + // 0x904b 運 + 75,144,34,33,41,36,1,253,7,0,5,85,85,85,85,85,0,47,208,11,255,255,255,255,255,64,31,244,11,255,255,255,255,255,64,7,253,11,192,0,84,0,47,64,1,255,75,192,1,252,0,47,64,0,127,193,64,1,252,0,5,0,0,31,67,255,255,255,255,254,0,0,8,3,255,255,255,255,254,0,0,0,1,85,86,253,85,84,0,0,0,0,0,1,252,0,0,0,0,0,0,255,255,255,255,248,0,0,0,0,255,255,255,255,248,0,0,0,0,252,1,252,1,248,0,127,255,0,252,1,252,1,248,0,127,255,0,255,255,255,255,248,0,127,255,0,255,255,255,255,248,0,0,63,0,252,1,252,1,248,0,0,63,0,252,1,252,1,248,0,0,63,0,252,1,252,1,248,0,0,63,0,255,255,255,255,248,0,0,63,0,255,255,255,255,248,0,0,63,0,0,1,252,0,0,0,0,63,10,170,170,254,170,170,128,0,63,15,255,255,255,255,255,192,0,63,15,255,255,255,255,255,192,0,63,128,0,1,252,0,0,0,0,255,208,0,1,252,0,0,0,7,255,244,0,1,252,0,0,0,47,251,255,128,0,0,0,0,0,127,208,255,255,234,170,170,255,208,63,64,47,255,255,255,255,255,192,45,0,1,255,255,255,255,255,128,4,0,0,1,85,85,85,85,0, + // 0x9054 達 + 84,144,34,34,50,36,1,253,0,0,0,0,1,252,0,0,0,3,0,0,0,1,252,0,0,0,31,208,0,85,86,253,85,84,0,31,244,0,255,255,255,255,248,0,7,253,0,255,255,255,255,248,0,1,255,0,0,1,252,0,0,0,0,127,192,0,1,252,0,0,0,0,47,133,85,86,253,85,85,64,0,13,31,255,255,255,255,255,192,0,0,31,255,255,255,255,255,192,0,0,0,11,208,0,63,64,0,0,0,0,7,240,0,191,0,0,0,0,0,3,244,0,253,0,0,0,0,5,87,249,85,253,85,64,127,255,11,255,255,255,255,255,128,127,255,11,255,255,255,255,255,128,127,255,0,0,1,252,0,0,0,0,63,0,0,1,252,0,0,0,0,63,0,255,255,255,255,252,0,0,63,0,255,255,255,255,252,0,0,63,0,85,86,253,85,84,0,0,63,0,0,1,252,0,0,0,0,63,0,0,1,252,0,0,0,0,63,15,255,255,255,255,255,128,0,63,15,255,255,255,255,255,128,0,63,6,170,170,254,170,170,64,0,63,64,0,1,252,0,0,0,0,255,208,0,1,252,0,0,0,7,255,244,0,0,168,0,0,0,31,251,255,64,0,0,0,0,0,127,208,255,255,234,170,170,255,208,63,64,47,255,255,255,255,255,192,45,0,1,255,255,255,255,255,128,4,0,0,1,85,85,85,85,0, + // 0x9078 選 + 120,144,34,33,41,36,1,253,11,0,15,255,255,47,255,254,0,63,192,15,255,255,47,255,254,0,47,240,0,0,63,0,0,126,0,11,252,0,0,63,0,0,126,0,2,254,1,85,127,1,85,126,0,0,255,75,255,255,15,255,254,0,0,63,11,255,255,15,255,254,0,0,36,11,192,0,15,192,1,0,0,0,11,208,7,207,192,7,192,0,0,7,255,255,203,255,255,192,0,0,3,255,255,67,255,255,64,0,0,0,21,84,0,21,84,0,0,0,0,2,248,1,252,0,0,127,255,0,2,248,1,252,0,0,127,255,5,87,253,86,253,85,0,127,255,11,255,255,255,255,255,0,0,127,11,255,255,255,255,255,0,0,63,0,2,248,1,252,0,0,0,63,0,2,248,1,252,0,0,0,63,0,2,248,1,252,0,0,0,63,47,255,255,255,255,255,192,0,63,47,255,255,255,255,255,192,0,63,26,170,170,170,170,170,128,0,63,0,1,248,0,188,0,0,0,63,0,31,248,1,255,128,0,0,127,1,255,208,0,47,248,0,1,255,203,254,0,0,3,255,0,7,255,245,240,0,0,0,190,0,47,247,254,128,0,0,0,16,0,191,192,255,255,170,170,170,255,224,63,0,47,255,255,255,255,255,192,44,0,1,191,255,255,255,255,192,0,0,0,0,85,85,85,84,0, + // 0x9084 還 + 132,144,34,33,41,36,1,253,7,64,3,255,255,255,255,252,0,47,208,3,255,255,255,255,252,0,31,244,3,240,61,7,192,252,0,3,253,3,240,61,7,192,188,0,0,255,67,240,61,7,192,188,0,0,63,195,255,255,255,255,252,0,0,31,67,255,255,255,255,252,0,0,8,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,64,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,0,255,255,255,255,240,0,127,255,0,255,255,255,255,240,0,127,255,0,252,0,0,3,240,0,0,63,0,252,0,0,3,240,0,0,63,0,255,255,255,255,240,0,0,63,0,255,255,255,255,248,0,0,63,0,0,31,248,0,255,0,0,63,0,0,191,254,3,252,0,0,63,0,7,255,255,223,224,0,0,63,0,127,247,255,255,64,0,0,63,7,255,195,246,255,144,0,0,63,15,253,3,240,63,254,64,0,63,131,224,3,240,11,255,64,0,255,209,0,3,240,0,126,0,7,255,244,0,3,240,0,0,0,47,251,255,128,0,0,0,0,0,127,208,255,255,234,170,170,255,208,63,64,47,255,255,255,255,255,192,45,0,1,255,255,255,255,255,128,4,0,0,1,85,85,85,85,0, + // 0x908a 邊 + 138,144,34,34,50,36,1,253,0,64,0,0,1,232,0,0,0,2,224,0,0,2,248,0,0,0,11,253,0,127,255,255,255,240,0,2,255,128,127,170,170,171,240,0,0,127,224,127,85,85,91,240,0,0,15,192,127,255,255,255,240,0,0,2,0,127,0,0,3,240,0,0,0,0,127,85,85,91,240,0,11,64,0,127,255,255,255,240,0,47,224,0,127,0,0,3,240,0,31,252,0,127,85,85,91,240,0,2,255,64,127,255,255,255,240,0,0,127,64,0,1,248,0,0,0,0,29,10,170,171,254,170,170,128,0,0,15,255,255,255,255,255,128,0,0,15,192,124,15,64,31,128,0,0,15,192,248,15,65,255,128,127,255,0,27,240,15,255,224,0,127,255,2,255,129,255,255,128,0,127,255,0,248,1,248,0,0,0,0,63,15,255,255,255,255,255,192,0,63,15,255,255,255,255,255,192,0,63,0,0,126,0,0,0,0,0,63,0,0,191,255,255,192,0,0,63,0,2,255,255,255,192,0,0,63,0,11,240,0,15,192,0,0,127,65,191,208,0,31,128,0,1,255,215,255,0,62,255,0,0,7,255,251,244,0,63,253,0,0,47,247,255,128,0,0,0,0,0,191,208,255,255,234,170,170,191,208,63,64,47,255,255,255,255,255,192,45,0,1,191,255,255,255,255,192,0,0,0,1,85,85,85,85,0, + // 0x90e8 部 + 232,144,34,34,50,36,1,253,0,0,169,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,191,255,255,64,0,0,190,0,0,191,255,255,208,47,255,255,255,244,191,255,255,192,47,255,255,255,244,190,0,63,192,47,255,255,255,244,190,0,63,64,0,16,0,20,0,190,0,191,0,1,248,0,63,64,190,0,254,0,0,252,0,63,0,190,1,252,0,0,189,0,126,0,190,2,248,0,0,126,0,189,0,190,3,244,0,0,127,0,252,0,190,7,240,0,0,36,0,100,0,190,15,208,0,127,255,255,255,252,190,31,192,0,127,255,255,255,252,190,15,240,0,127,255,255,255,252,190,3,248,0,0,0,0,0,0,190,0,253,0,0,0,0,0,0,190,0,191,0,0,0,0,0,0,190,0,63,64,3,255,255,255,192,190,0,47,128,3,255,255,255,192,190,0,31,192,3,255,255,255,192,190,0,31,192,3,240,0,15,192,190,0,31,192,3,240,0,15,192,190,0,31,192,3,240,0,15,192,190,0,127,192,3,240,0,15,192,190,63,255,128,3,240,0,15,192,190,31,255,0,3,240,0,15,192,190,31,248,0,3,255,255,255,192,190,5,64,0,3,255,255,255,192,190,0,0,0,3,255,255,255,192,190,0,0,0,3,240,0,15,192,190,0,0,0,3,240,0,15,192,190,0,0,0, + // 0x91cb 釋 + 203,145,34,35,59,36,1,252,0,0,27,128,0,0,0,0,0,1,107,255,241,85,85,85,85,0,127,255,255,147,255,255,255,255,64,63,255,208,3,255,255,255,255,64,21,11,192,3,240,244,60,31,64,0,11,192,147,240,244,60,31,64,31,11,193,247,240,244,60,31,64,31,11,194,243,245,249,125,111,64,15,139,195,227,255,255,255,255,64,15,203,195,211,255,255,255,255,64,11,203,203,192,0,15,192,0,0,7,203,207,128,21,95,213,84,0,1,11,194,0,191,255,255,252,0,106,175,250,164,191,255,255,252,0,127,255,255,244,0,15,192,0,0,127,255,255,244,0,15,192,0,0,0,47,192,15,255,255,255,255,208,0,63,208,15,255,255,255,255,208,0,127,244,5,95,85,87,229,64,0,255,253,0,15,128,7,224,0,0,255,255,64,15,192,11,192,0,2,255,223,208,7,208,15,128,0,3,235,199,241,87,229,111,85,64,11,203,194,231,255,255,255,255,192,31,139,192,135,255,255,255,255,192,63,75,192,0,0,15,192,0,0,191,11,192,0,0,15,192,0,0,125,11,192,1,255,255,255,255,0,56,11,192,1,255,255,255,255,0,16,11,192,0,85,95,229,85,0,0,11,192,0,0,15,192,0,0,0,11,192,0,0,15,192,0,0,0,11,192,0,0,15,192,0,0,0,11,192,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x91cd 重 + 205,145,32,33,8,36,2,254,0,0,0,0,0,5,172,0,0,0,5,90,191,255,254,0,3,255,255,255,255,255,255,0,2,255,255,255,255,169,64,0,1,170,85,95,208,0,0,0,0,0,0,15,208,0,0,0,170,170,170,175,250,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,253,85,95,229,85,127,64,0,252,0,15,208,0,63,64,0,252,0,15,224,0,63,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,252,0,15,208,0,63,64,0,252,0,15,208,0,63,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,85,85,95,229,85,85,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,7,255,255,255,255,255,255,240,7,255,255,255,255,255,255,240,2,170,170,175,250,170,170,160,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170, + // 0x91cf 量 + 207,145,33,32,32,36,2,254,0,127,255,255,255,255,253,0,0,0,191,255,255,255,255,254,0,0,0,190,0,0,0,0,254,0,0,0,190,0,0,0,0,254,0,0,0,191,255,255,255,255,254,0,0,0,191,255,255,255,255,254,0,0,0,190,0,0,0,0,254,0,0,0,191,255,255,255,255,254,0,0,0,191,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,252,0,11,224,0,63,64,0,0,252,0,11,224,0,63,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,252,0,11,224,0,63,64,0,0,252,0,11,224,0,63,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,0,0,11,224,0,0,0,0,1,85,85,95,229,85,85,64,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,0,0,0,11,224,0,0,0,0,170,170,170,175,250,170,170,170,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64, + // 0x91dd 針 + 221,145,34,34,50,36,1,253,0,3,248,0,0,2,164,0,0,0,11,254,0,0,3,248,0,0,0,15,255,192,0,3,248,0,0,0,63,239,240,0,3,248,0,0,0,127,75,252,0,3,248,0,0,0,254,2,255,0,3,248,0,0,3,252,0,191,128,3,248,0,0,15,240,0,63,192,3,248,0,0,63,208,0,15,64,3,248,0,0,255,255,255,253,0,3,248,0,0,63,255,255,244,0,3,248,0,0,22,255,255,244,0,3,248,0,0,0,2,244,0,255,255,255,255,224,0,2,244,0,255,255,255,255,224,0,2,244,0,255,255,255,255,224,0,2,244,0,85,87,253,85,64,47,255,255,255,64,3,248,0,0,47,255,255,255,64,3,248,0,0,47,255,255,255,64,3,248,0,0,0,2,244,0,0,3,248,0,0,0,2,244,36,0,3,248,0,0,15,130,244,62,0,3,248,0,0,11,194,244,125,0,3,248,0,0,7,194,244,188,0,3,248,0,0,3,210,244,248,0,3,248,0,0,3,226,245,244,0,3,248,0,0,3,242,245,240,0,3,248,0,0,1,66,244,1,0,3,248,0,0,0,2,250,255,64,3,248,0,0,1,175,255,255,64,3,248,0,0,63,255,255,255,64,3,248,0,0,63,255,249,64,0,3,248,0,0,47,148,0,0,0,3,248,0,0,0,0,0,0,0,2,248,0,0, + // 0x9215 鈕 + 21,146,34,34,50,36,1,253,0,15,224,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,63,254,0,255,255,255,252,0,0,127,127,128,255,255,255,252,0,0,253,47,224,255,255,255,252,0,2,252,11,248,1,253,2,252,0,7,240,3,253,0,252,1,252,0,31,208,0,252,0,252,1,252,0,127,192,0,112,1,252,2,248,0,255,255,255,208,1,252,2,248,0,63,255,255,192,1,252,2,248,0,7,255,255,192,1,248,2,248,0,0,11,208,0,2,248,2,248,0,0,11,208,0,2,248,2,248,0,0,11,208,0,2,244,2,248,0,63,255,255,247,255,255,255,255,224,63,255,255,247,255,255,255,255,224,63,255,255,247,255,255,255,255,224,0,11,208,0,7,244,3,248,0,0,11,208,64,3,240,3,244,0,15,11,210,240,7,240,3,244,0,15,75,210,240,7,240,3,244,0,15,139,211,224,7,224,3,240,0,11,203,211,208,11,224,3,240,0,7,203,215,192,11,224,3,240,0,7,203,219,128,11,208,3,240,0,3,139,210,64,15,208,7,240,0,0,11,208,20,15,192,7,240,0,0,11,235,252,15,192,7,240,0,1,191,255,252,31,192,11,240,0,63,255,255,255,255,255,255,255,224,63,255,228,31,255,255,255,255,224,46,144,0,31,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x932f 錯 + 47,147,34,34,50,36,1,253,0,15,224,0,3,240,15,192,0,0,31,248,0,3,240,15,192,0,0,63,254,0,3,240,15,192,0,0,127,191,128,3,240,15,192,0,0,254,47,209,255,255,255,255,128,2,252,15,245,255,255,255,255,128,7,244,3,254,255,255,255,255,128,31,224,0,252,3,240,15,192,0,127,192,0,112,3,240,15,192,0,255,255,255,208,3,240,15,192,0,63,255,255,192,3,240,15,192,0,7,255,255,192,3,240,15,192,0,0,11,208,11,255,255,255,255,224,0,11,208,11,255,255,255,255,224,0,11,208,11,255,255,255,255,224,63,255,255,244,0,0,0,0,0,63,255,255,244,0,0,0,0,0,63,255,255,244,0,0,0,0,0,0,11,208,0,63,255,255,253,0,0,11,208,64,63,255,255,253,0,11,11,209,240,63,170,170,253,0,15,75,210,240,63,0,0,189,0,15,139,211,224,63,0,0,189,0,11,203,211,208,63,0,0,189,0,7,203,215,192,63,255,255,253,0,7,203,219,128,63,255,255,253,0,3,203,210,64,63,170,170,253,0,0,11,208,104,63,0,0,189,0,0,11,255,252,63,0,0,189,0,26,255,255,252,63,255,255,253,0,63,255,255,164,63,255,255,253,0,63,255,144,0,63,255,255,253,0,46,64,0,0,63,0,0,189,0,0,0,0,0,42,0,0,105,0, + // 0x9375 鍵 + 117,147,34,34,50,36,1,253,0,31,128,0,0,0,188,0,0,0,47,224,0,0,0,188,0,0,0,63,244,0,0,0,188,0,0,0,191,252,63,253,63,255,255,0,0,253,255,127,252,63,255,255,0,3,248,63,255,252,42,254,175,0,11,240,31,208,248,0,188,31,0,31,208,11,193,244,0,188,31,0,127,64,3,3,242,255,255,255,240,255,170,170,3,226,255,255,255,240,127,255,255,7,209,170,254,175,224,27,255,255,15,192,0,188,31,0,0,31,64,15,128,0,188,31,0,0,31,64,31,233,63,255,255,0,0,31,64,63,255,63,255,255,0,63,255,255,127,255,42,254,170,0,63,255,255,93,47,0,188,0,0,63,255,255,64,63,0,188,0,0,0,31,64,8,62,191,255,255,64,0,31,68,61,62,191,255,255,64,9,31,79,62,125,106,254,170,64,30,31,79,47,188,0,188,0,0,15,31,94,31,252,0,188,0,0,15,31,110,15,249,255,255,255,208,15,95,125,15,245,255,255,255,208,11,95,124,7,241,255,255,255,192,11,159,68,7,240,0,188,0,0,0,31,64,79,252,0,188,0,0,0,47,255,223,255,0,188,0,0,27,255,255,255,127,228,0,0,0,127,255,255,253,15,255,255,255,224,63,249,11,248,2,255,255,255,208,36,0,3,224,0,27,255,255,192,0,0,0,64,0,0,0,0,0, + // 0x9577 長 + 119,149,32,34,16,36,2,252,0,11,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,253,0,0,15,255,255,255,255,253,0,0,15,250,170,170,170,168,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,253,0,0,15,255,255,255,255,253,0,0,15,250,170,170,170,168,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,15,224,11,240,0,2,128,0,15,224,3,248,0,15,240,0,15,224,2,252,0,127,224,0,15,224,0,255,3,255,64,0,15,224,0,127,159,252,0,0,15,224,0,47,255,208,0,0,15,224,0,15,254,0,0,0,15,224,0,3,255,64,0,0,15,224,91,244,255,244,0,0,15,255,255,244,63,255,64,11,255,255,255,244,11,255,254,15,255,255,233,0,0,255,255,15,255,148,0,0,0,11,253,5,64,0,0,0,0,0,108,0,0,0,0,0,0,0,0, + // 0x9589 閉 + 137,149,30,33,8,36,3,253,106,170,170,144,106,170,170,144,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,254,85,95,224,190,85,91,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,255,85,85,64,85,85,91,240,254,0,0,0,168,0,7,240,254,0,0,0,252,0,7,240,254,0,0,0,252,0,7,240,254,10,170,171,254,170,7,240,254,15,255,255,255,255,7,240,254,15,255,255,255,255,7,240,254,0,0,15,252,0,7,240,254,0,0,63,252,0,7,240,254,0,0,255,252,0,7,240,254,0,3,253,252,0,7,240,254,0,31,240,252,0,7,240,254,0,191,192,252,0,7,240,254,7,255,0,252,0,7,240,254,47,248,0,252,0,7,240,254,15,208,0,252,0,7,240,254,2,0,191,248,21,95,240,254,0,0,191,244,63,255,240,254,0,0,63,144,63,255,208,190,0,0,0,0,47,254,0, + // 0x958b 開 + 139,149,30,34,16,36,3,252,85,85,85,80,85,85,85,80,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,11,224,190,0,7,240,253,0,11,224,190,0,7,240,254,85,91,224,190,85,91,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,11,224,190,0,7,240,253,0,11,224,190,0,7,240,254,85,95,224,190,85,91,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,0,0,0,0,7,240,253,0,0,0,0,0,7,240,253,6,170,170,170,169,7,240,253,11,255,255,255,254,7,240,253,11,255,255,255,254,7,240,253,0,15,128,63,0,7,240,253,0,15,128,63,0,7,240,253,0,15,128,63,0,7,240,253,31,255,255,255,255,71,240,253,31,255,255,255,255,71,240,253,31,255,255,255,255,71,240,253,0,31,128,63,0,7,240,253,0,47,64,63,0,7,240,253,0,63,0,63,0,7,240,253,0,126,0,63,0,7,240,253,0,253,0,63,0,7,240,253,3,252,0,63,5,91,240,253,15,240,0,63,15,255,240,253,7,208,0,63,11,255,208,253,1,64,0,0,7,254,64,0,0,0,0,0,0,0,0, + // 0x9593 間 + 147,149,30,33,8,36,3,253,106,170,170,144,106,170,170,144,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,254,85,95,224,190,85,91,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,254,0,11,224,190,0,7,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,255,85,85,64,85,85,91,240,254,0,0,0,0,0,7,240,254,0,0,0,0,0,7,240,254,0,255,255,255,224,7,240,254,0,255,255,255,224,7,240,254,0,254,170,171,224,7,240,254,0,252,0,7,224,7,240,254,0,252,0,7,224,7,240,254,0,254,85,91,224,7,240,254,0,255,255,255,224,7,240,254,0,255,255,255,224,7,240,254,0,252,0,7,224,7,240,254,0,252,0,7,224,7,240,254,0,252,0,7,224,7,240,254,0,255,255,255,224,7,240,254,0,255,255,255,224,7,240,254,0,254,170,170,181,95,240,254,0,252,0,0,47,255,240,254,0,84,0,0,31,255,208,254,0,0,0,0,15,254,64, + // 0x95dc 關 + 220,149,30,34,16,36,3,252,85,85,85,64,21,85,85,80,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,11,224,190,0,3,240,253,0,11,224,190,0,3,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,11,224,190,0,7,240,253,0,11,224,190,0,3,240,254,85,91,224,190,85,87,240,255,255,255,224,191,255,255,240,255,255,255,224,191,255,255,240,253,0,61,0,15,64,3,240,253,0,124,0,62,0,3,240,253,10,240,131,184,100,3,240,253,15,210,231,240,244,3,240,253,3,231,193,251,208,3,240,253,0,255,0,127,88,3,240,253,0,125,208,45,45,3,240,253,1,240,240,190,191,3,240,253,47,255,255,255,255,67,240,253,47,255,191,229,7,67,240,253,0,1,176,160,0,3,240,253,7,129,240,244,61,3,240,253,7,129,240,244,61,3,240,253,7,129,240,244,61,3,240,253,7,255,240,255,253,3,240,253,7,255,224,255,253,3,240,253,0,7,208,244,0,3,240,253,0,31,192,244,1,7,240,253,1,255,0,244,3,255,240,253,0,252,0,244,2,255,224,253,0,80,0,0,1,254,64,0,0,0,0,0,0,0,0, + // 0x964d 降 + 77,150,32,35,24,36,3,252,0,0,0,0,14,64,0,0,0,0,0,0,63,128,0,0,255,255,208,0,127,0,0,0,255,255,244,0,255,170,170,0,255,255,240,3,255,255,255,192,252,7,240,11,255,255,255,64,252,11,208,47,240,0,191,0,252,15,192,191,248,0,253,0,252,15,195,254,253,3,252,0,252,47,71,244,127,79,240,0,252,63,1,208,47,255,192,0,252,62,0,0,11,255,64,0,252,125,0,0,11,255,64,0,252,190,0,0,191,255,244,0,252,63,0,11,255,159,255,144,252,15,194,255,253,1,255,254,252,15,215,255,208,47,175,252,252,7,226,249,0,47,129,180,252,3,240,64,0,47,128,0,252,3,240,255,255,255,255,240,252,3,240,255,255,255,255,240,252,3,240,255,255,255,255,240,252,11,240,11,192,47,128,0,252,255,224,11,192,47,128,0,252,255,192,11,192,47,128,0,252,190,0,11,192,47,128,0,252,0,15,255,255,255,255,252,252,0,15,255,255,255,255,252,252,0,11,255,255,255,255,252,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,252,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0, + // 0x9664 除 + 100,150,32,34,16,36,3,253,0,0,0,0,6,160,0,0,0,0,0,0,15,248,0,0,255,255,208,0,47,252,0,0,255,255,244,0,127,255,0,0,255,255,240,0,254,63,192,0,252,7,240,3,252,31,240,0,252,11,208,15,240,7,252,0,252,15,192,63,208,2,255,0,252,15,192,255,64,0,127,208,252,47,75,253,0,0,31,248,252,63,63,244,0,0,7,254,252,62,31,239,255,255,254,252,252,189,14,31,255,255,253,40,252,190,0,31,255,255,253,0,252,63,0,0,3,240,0,0,252,15,192,0,3,240,0,0,252,11,208,0,3,240,0,0,252,7,224,0,3,240,0,0,252,3,242,255,255,255,255,240,252,3,242,255,255,255,255,240,252,3,242,255,255,255,255,240,252,3,240,0,3,240,0,0,252,11,240,0,3,240,0,0,252,255,224,62,3,240,124,0,252,255,192,190,3,240,191,0,252,190,0,252,3,240,63,128,252,0,2,248,3,240,31,192,252,0,7,240,3,240,11,240,252,0,15,224,3,240,3,244,252,0,63,192,3,240,1,252,252,0,47,0,7,240,0,252,252,0,9,3,255,240,0,80,252,0,0,2,255,224,0,0,252,0,0,1,254,64,0,0, + // 0x968e 階 + 142,150,32,35,24,36,3,252,0,0,0,80,0,21,0,0,0,0,1,248,0,63,0,0,255,255,209,248,0,63,0,0,255,255,241,248,0,63,1,224,255,255,241,248,0,63,11,248,252,11,225,255,254,63,191,244,252,15,193,255,254,63,255,64,252,15,193,254,170,63,244,0,252,31,129,248,0,63,64,0,252,47,65,248,0,63,0,0,252,63,1,248,0,63,0,56,252,62,1,248,6,63,0,62,252,188,1,254,255,63,64,126,252,189,31,255,255,63,255,253,252,63,31,255,144,31,255,252,252,31,143,144,15,150,255,160,252,15,192,0,15,208,0,0,252,11,208,0,31,192,0,0,252,7,224,191,255,255,255,224,252,3,240,255,255,255,255,240,252,3,240,255,255,255,255,240,252,3,240,253,0,0,7,240,252,11,224,253,0,0,7,240,252,255,208,253,0,0,7,240,252,255,192,255,255,255,255,240,252,189,0,255,255,255,255,240,252,0,0,254,170,170,175,240,252,0,0,253,0,0,7,240,252,0,0,253,0,0,7,240,252,0,0,253,0,0,7,240,252,0,0,255,255,255,255,240,252,0,0,255,255,255,255,240,252,0,0,255,255,255,255,240,252,0,0,189,0,0,7,224,0,0,0,0,0,0,0,0, + // 0x96d9 雙 + 217,150,33,35,59,36,1,252,0,41,1,0,0,100,4,0,0,0,63,7,208,0,252,31,128,0,0,125,15,192,1,252,63,0,0,0,252,31,64,3,244,62,0,0,1,255,255,255,131,255,255,255,64,3,255,255,255,143,255,255,255,64,15,248,63,0,31,240,125,0,0,47,244,47,0,63,224,125,0,0,127,255,255,255,255,255,255,254,0,63,255,255,255,255,255,255,254,0,25,244,63,0,115,240,125,0,0,1,244,47,0,3,224,125,0,0,1,255,255,255,3,255,255,254,0,1,255,255,255,3,255,255,254,0,1,248,63,0,3,240,125,0,0,1,244,47,0,3,224,125,0,0,1,255,255,255,195,255,255,255,192,1,255,255,255,195,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,170,170,170,170,170,174,0,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,128,0,0,1,253,0,0,2,255,0,0,0,1,255,128,0,15,252,0,0,0,0,127,240,0,127,240,0,0,0,0,31,254,7,255,128,0,0,0,0,2,255,255,252,0,0,0,0,0,0,191,255,240,0,0,0,0,0,27,255,255,255,144,0,0,5,175,255,255,255,255,255,233,64,63,255,255,228,2,255,255,255,128,31,255,249,0,0,7,255,255,0,15,148,0,0,0,0,5,189,0,0,0,0,0,0,0,0,0,0, + // 0x96e2 離 + 226,150,34,35,59,36,1,252,0,1,252,0,0,30,0,64,0,0,1,252,0,0,47,128,252,0,0,1,252,0,0,63,2,248,0,127,255,255,255,240,63,3,244,0,127,255,255,255,240,190,3,240,0,106,170,170,170,160,253,7,224,0,0,0,5,0,1,252,15,208,0,11,128,15,79,66,255,255,255,192,15,143,111,15,67,255,255,255,192,15,143,253,15,75,255,255,255,192,15,130,253,15,79,248,15,192,0,15,131,255,143,111,248,15,192,0,15,143,219,223,191,248,15,192,0,15,175,66,79,255,248,15,192,0,15,136,0,15,190,255,255,255,128,15,255,255,255,85,255,255,255,192,15,255,255,255,65,255,255,255,192,5,86,249,85,1,248,15,192,0,0,1,244,0,1,248,15,192,0,26,171,250,170,129,248,15,192,0,47,255,255,255,209,248,15,192,0,47,255,255,255,209,248,15,192,0,47,3,208,11,209,255,255,255,192,47,3,210,75,209,255,255,255,192,47,7,199,139,209,255,255,255,128,47,7,195,203,209,248,15,192,0,47,31,255,219,209,248,15,192,0,47,127,255,251,209,248,15,192,0,47,58,80,251,209,248,15,192,0,47,0,0,155,209,255,255,255,224,47,0,0,11,209,255,255,255,224,47,0,1,95,193,255,255,255,224,47,0,3,255,193,248,0,0,0,47,0,2,254,1,248,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x96fb 電 + 251,150,33,33,41,36,2,253,2,170,170,170,170,170,170,128,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,0,0,0,11,208,0,0,0,0,0,0,0,11,208,0,0,0,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,85,85,95,229,85,85,253,0,126,0,0,11,208,0,0,189,0,126,47,255,139,211,255,244,189,0,126,47,255,139,211,255,248,189,0,126,0,0,11,208,0,0,189,0,0,0,0,11,208,0,0,0,0,0,127,255,139,211,255,253,0,0,0,127,255,139,211,255,253,0,0,0,0,0,6,144,0,0,0,0,0,85,85,85,85,85,85,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,252,0,15,208,0,63,0,0,0,252,0,15,208,0,63,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,252,0,15,208,0,63,0,0,0,252,0,15,208,0,63,0,0,0,253,85,95,229,85,127,0,0,0,255,255,255,255,255,255,4,0,0,255,255,255,255,255,255,31,64,0,252,0,15,208,0,0,47,64,0,168,0,15,224,0,0,63,64,0,0,0,11,255,255,255,255,0,0,0,0,3,255,255,255,253,0,0,0,0,0,26,170,170,144,0, + // 0x9752 青 + 82,151,32,35,24,36,2,252,0,0,0,11,224,0,0,0,0,0,0,15,224,0,0,0,6,170,170,175,250,170,170,144,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,85,85,95,245,85,85,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,106,170,170,170,170,170,170,169,0,0,0,0,0,0,0,0,0,26,170,170,170,170,168,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,0,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,149,85,85,85,252,0,0,63,64,0,0,0,252,0,0,63,149,85,85,85,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,0,252,0,0,63,64,0,0,1,252,0,0,63,64,0,6,171,252,0,0,63,64,0,7,255,252,0,0,63,64,0,3,255,224,0,0,0,0,0,0,0,0,0, + // 0x975e 非 + 94,151,34,35,59,36,1,252,0,0,3,240,1,248,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,15,255,255,240,2,255,255,255,192,15,255,255,240,2,255,255,255,192,15,255,255,240,2,255,255,255,192,0,0,7,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,15,255,255,240,2,255,255,255,0,15,255,255,240,2,255,255,255,0,15,255,255,240,2,255,255,255,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,7,240,2,252,0,0,0,0,0,7,246,130,252,0,0,0,0,5,175,255,194,252,0,0,0,107,255,255,255,194,255,255,255,208,127,255,255,249,2,255,255,255,208,63,255,191,192,2,255,255,255,208,57,64,127,64,2,252,0,0,0,0,0,255,0,2,252,0,0,0,0,2,253,0,2,252,0,0,0,0,11,252,0,2,252,0,0,0,0,47,240,0,2,252,0,0,0,1,255,192,0,2,252,0,0,0,11,255,0,0,2,252,0,0,0,11,252,0,0,2,252,0,0,0,2,208,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,32,33,8,36,2,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,64,0,0,0,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,234,171,240,3,244,31,192,47,255,255,240,3,244,31,192,47,255,255,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,234,171,240,3,244,31,192,47,255,255,240,3,244,31,192,47,255,255,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,192,47,64,3,240,3,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,255,255,255,255,255,255,244,31,192,0,0,0,0,3,244,31,192,0,0,0,0,3,244,0,0,0,0,0,0,0,0, + // 0x9805 項 + 5,152,34,33,41,36,1,252,0,0,0,47,255,255,255,255,224,0,0,0,47,255,255,255,255,224,63,255,255,213,85,127,255,255,208,63,255,255,192,0,47,192,0,0,63,255,255,192,0,63,128,0,0,0,47,128,0,0,63,64,0,0,0,47,128,3,255,255,255,255,0,0,47,128,3,255,255,255,255,0,0,47,128,3,250,170,170,191,0,0,47,128,3,240,0,0,63,0,0,47,128,3,240,0,0,63,0,0,47,128,3,245,85,85,127,0,0,47,128,3,255,255,255,255,0,0,47,128,3,255,255,255,255,0,0,47,128,3,240,0,0,63,0,0,47,128,3,240,0,0,63,0,0,47,128,3,240,0,0,63,0,0,47,128,3,255,255,255,255,0,0,47,134,227,255,255,255,255,0,0,47,255,243,245,85,85,127,0,1,191,255,227,240,0,0,63,0,111,255,253,3,240,0,0,63,0,191,255,128,3,250,170,170,191,0,63,228,0,3,255,255,255,255,0,57,0,0,3,255,255,255,255,0,0,0,0,0,9,0,5,0,0,0,0,0,0,63,128,47,192,0,0,0,0,2,255,192,63,248,0,0,0,0,111,254,0,7,255,64,0,0,3,255,240,0,0,191,224,0,0,2,255,64,0,0,31,208,0,0,0,224,0,0,0,3,64,0,0,0,0,0,0,0,0,0, + // 0x9810 預 + 16,152,34,33,41,36,1,252,63,255,255,247,255,255,255,255,192,63,255,255,251,255,255,255,255,192,63,255,255,243,255,255,255,255,192,0,0,31,208,0,15,240,0,0,0,0,63,128,0,15,208,0,0,3,208,254,0,85,111,229,85,0,11,255,252,0,191,255,255,255,0,2,255,240,0,191,255,255,255,0,0,47,248,0,190,0,0,63,0,0,7,254,0,190,0,0,63,0,0,0,190,0,190,0,0,63,0,191,255,255,254,191,255,255,255,0,191,255,255,254,191,255,255,255,0,191,255,255,253,190,85,85,127,0,0,15,192,252,190,0,0,63,0,0,15,192,248,190,0,0,63,0,0,15,193,244,190,85,85,127,0,0,15,194,240,191,255,255,255,0,0,15,195,240,191,255,255,255,0,0,15,194,208,190,0,0,63,0,0,15,192,0,190,0,0,63,0,0,15,192,0,190,0,0,63,0,0,15,192,0,191,170,170,191,0,0,15,192,0,191,255,255,255,0,0,15,192,0,191,255,255,255,0,0,15,192,0,1,64,1,0,0,0,15,192,0,7,224,11,208,0,0,15,192,0,47,244,31,248,0,0,31,192,1,255,208,7,255,0,15,255,192,31,254,0,0,191,192,15,255,192,63,244,0,0,47,224,11,250,0,15,64,0,0,7,64,0,0,0,0,0,0,0,0,0, + // 0x984d 額 + 77,152,34,34,50,36,1,253,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,191,255,255,255,192,42,171,250,170,191,255,255,255,192,63,255,255,255,191,255,255,255,192,63,255,255,255,0,7,240,0,0,62,0,0,63,0,11,224,0,0,62,11,128,63,10,175,250,170,0,62,15,192,63,31,255,255,255,0,0,63,149,64,31,255,255,255,0,0,127,255,248,31,128,0,63,0,1,255,255,244,31,128,0,63,0,3,244,3,240,31,128,0,63,0,31,248,15,208,31,255,255,255,0,127,255,31,192,31,255,255,255,0,126,127,255,0,31,213,85,127,0,8,15,254,0,31,128,0,63,0,0,7,255,64,31,128,0,63,0,0,31,255,208,31,149,85,127,0,0,191,143,248,31,255,255,255,0,11,254,2,255,31,255,255,255,0,191,244,0,127,31,128,0,63,0,127,255,255,252,31,128,0,63,0,47,255,255,240,31,128,0,63,0,3,250,171,240,31,234,170,191,0,3,240,3,240,31,255,255,255,0,3,240,3,240,31,255,255,255,0,3,240,3,240,0,64,0,0,0,3,240,3,240,2,244,7,208,0,3,255,255,240,31,252,11,248,0,3,255,255,241,255,224,2,255,64,3,250,170,175,255,64,0,127,208,3,240,0,7,248,0,0,15,224,1,64,0,1,128,0,0,3,64, + // 0x985e 類 + 94,152,34,34,50,36,1,253,0,2,160,0,0,0,0,0,0,6,3,240,56,0,0,0,0,0,31,67,240,126,191,255,255,255,208,15,195,240,252,191,255,255,255,208,7,211,241,244,191,255,255,255,192,3,147,241,240,0,7,240,0,0,42,171,250,170,0,11,224,0,0,63,255,255,255,26,175,234,170,0,63,255,255,255,47,255,255,255,0,0,31,244,0,47,255,255,255,0,0,63,255,0,47,64,0,63,0,0,255,255,224,47,64,0,63,0,3,247,247,252,47,64,0,63,0,31,227,240,255,47,255,255,255,0,127,131,240,61,47,255,255,255,0,46,3,240,4,47,149,85,127,0,4,2,160,0,47,64,0,63,0,0,2,160,0,47,64,0,63,0,0,3,240,0,47,149,85,127,0,0,3,240,0,47,255,255,255,0,63,255,255,255,47,255,255,255,0,63,255,255,255,47,64,0,63,0,63,255,255,255,47,64,0,63,0,0,7,240,0,47,64,0,63,0,0,11,240,0,47,255,255,255,0,0,15,253,0,47,255,255,255,0,0,47,255,128,26,170,170,170,0,0,127,175,240,0,208,1,64,0,1,255,11,252,3,252,11,240,0,11,253,1,254,31,248,11,253,0,127,244,0,120,255,224,1,255,64,63,192,0,15,255,64,0,63,224,46,0,0,7,248,0,0,15,208,0,0,0,1,128,0,0,2,0, + // 0x98a8 風 + 168,152,34,33,41,36,1,252,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,190,0,0,0,0,15,208,0,0,190,0,0,1,108,15,208,0,0,190,1,90,255,255,15,208,0,0,190,127,255,255,255,79,208,0,0,190,63,255,250,64,15,208,0,0,190,21,67,240,0,15,208,0,0,190,0,3,240,0,15,208,0,0,190,0,3,240,0,15,208,0,0,190,47,255,255,255,15,208,0,0,190,47,255,255,255,15,208,0,0,190,47,171,250,191,15,208,0,0,189,47,3,240,47,11,208,0,0,189,47,3,240,47,11,208,0,0,253,47,3,240,47,11,224,0,0,253,47,3,240,47,11,224,0,0,252,47,171,250,191,11,224,0,0,252,47,255,255,255,11,224,0,0,252,47,255,255,255,7,224,0,1,252,0,3,240,4,7,224,0,2,248,0,3,240,125,7,240,0,3,244,0,3,240,63,3,240,64,3,240,0,3,240,47,131,240,192,7,240,0,3,250,191,195,240,240,15,225,171,255,255,255,226,244,240,15,210,255,255,255,255,241,249,224,63,194,255,250,149,2,244,255,224,127,64,80,0,0,1,248,255,208,63,0,0,0,0,0,128,127,192,9,0,0,0,0,0,0,31,64,0,0,0,0,0,0,0,0,0, + // 0x98fd 飽 + 253,152,34,34,50,36,1,253,0,7,244,0,3,144,0,0,0,0,15,253,0,3,240,0,0,0,0,31,255,64,11,240,0,0,0,0,63,175,208,15,224,0,0,0,0,191,15,244,15,192,0,0,0,1,253,3,252,47,255,255,255,128,3,252,0,255,63,255,255,255,128,15,241,248,61,127,255,255,255,128,63,193,248,20,254,0,0,47,128,255,65,248,2,252,0,0,47,64,63,255,255,255,244,0,0,47,64,7,255,255,255,255,255,240,47,64,3,245,86,250,239,255,240,47,64,3,240,1,248,31,255,240,47,64,3,240,2,248,0,2,240,47,64,3,255,255,248,0,2,240,63,64,3,255,255,248,0,2,240,63,64,3,240,1,248,0,2,240,63,0,3,240,1,248,63,255,240,63,0,3,245,86,248,63,255,240,63,0,3,255,255,248,63,255,240,127,0,3,255,255,248,63,0,63,255,0,3,240,0,0,63,0,47,253,0,3,240,11,0,63,0,31,244,0,3,240,47,128,63,0,0,0,0,3,240,15,192,63,0,0,0,0,3,240,11,240,63,0,0,2,0,3,240,31,244,63,0,0,3,224,3,251,255,252,63,0,0,7,224,27,255,255,253,63,0,0,7,224,127,255,228,190,63,64,0,15,208,63,249,0,127,63,255,255,255,192,41,0,0,36,31,255,255,255,128,0,0,0,0,6,255,255,253,0, + // 0x9918 餘 + 24,153,34,34,50,36,1,253,0,15,240,0,0,15,224,0,0,0,31,252,0,0,47,240,0,0,0,63,255,0,0,63,248,0,0,0,191,63,192,0,255,253,0,0,0,252,15,240,1,252,191,0,0,3,248,3,248,3,248,63,192,0,15,245,86,252,15,240,15,240,0,63,255,255,184,63,208,11,248,0,255,63,255,32,191,64,2,254,0,124,0,0,3,254,0,0,255,192,21,85,85,95,252,0,0,63,240,7,255,255,251,255,255,255,255,208,7,255,255,243,143,255,255,243,128,7,208,3,240,15,255,255,240,0,7,208,3,240,0,11,208,0,0,7,255,255,240,0,11,208,0,0,7,255,255,240,0,11,208,0,0,7,224,3,242,255,255,255,255,192,7,208,3,243,255,255,255,255,192,7,229,87,243,255,255,255,255,192,7,255,255,240,0,11,208,0,0,7,255,255,240,0,11,208,16,0,7,208,0,0,42,11,209,248,0,7,208,0,0,63,11,208,252,0,7,255,255,240,126,11,208,190,0,7,255,255,240,252,11,208,127,0,7,250,170,161,252,11,208,63,64,7,208,0,3,248,11,208,31,192,7,250,170,171,240,11,208,15,192,7,255,255,255,224,11,208,15,208,7,255,255,250,192,11,208,7,64,7,208,0,0,3,255,208,0,0,7,208,0,0,2,255,192,0,0,7,208,0,0,1,254,0,0,0, + // 0x99ac 馬 + 172,153,33,32,32,36,1,253,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,0,0,252,0,0,0,0,0,63,0,0,252,0,0,0,0,0,63,0,0,252,0,0,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,170,170,254,170,170,128,0,0,63,0,0,252,0,0,0,0,0,63,0,0,252,0,0,0,0,0,63,170,170,254,170,170,128,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,252,0,0,0,0,0,63,0,0,252,0,0,0,0,0,63,0,0,252,0,0,0,0,0,63,255,255,255,255,255,255,128,0,63,255,255,255,255,255,255,128,0,63,255,255,255,255,255,255,64,0,0,0,0,0,0,0,63,64,0,80,0,0,0,6,0,63,64,0,252,6,0,176,47,128,63,64,1,252,47,64,248,15,192,63,0,2,248,31,128,252,7,224,127,0,3,244,15,192,189,3,240,127,0,7,240,15,192,62,1,244,191,0,15,224,15,192,63,0,64,254,0,31,208,11,208,47,0,1,254,0,127,192,11,208,20,3,255,252,0,47,0,5,0,0,2,255,248,0,4,0,0,0,0,1,255,208,0, + // 0x9a45 驅 + 69,154,34,34,50,36,1,252,10,170,170,160,170,170,170,170,64,15,255,255,241,255,255,255,255,192,15,255,255,241,255,255,255,255,192,15,130,240,1,244,0,0,0,0,15,130,240,1,244,0,0,0,0,15,130,240,1,244,31,255,248,0,15,255,255,209,244,31,255,248,0,15,255,255,209,244,31,0,248,0,15,235,250,145,244,31,0,248,0,15,130,240,1,244,31,0,248,0,15,130,240,1,244,31,0,248,0,15,235,250,145,244,31,0,248,0,15,255,255,225,244,31,255,248,0,15,255,255,225,244,31,255,248,0,15,130,240,1,244,0,0,0,0,15,130,240,1,244,0,0,0,0,15,130,240,1,245,255,211,255,128,15,255,255,245,245,255,211,255,128,15,255,255,245,245,225,211,135,128,10,170,170,245,245,209,211,131,128,0,0,1,245,245,209,211,131,128,4,0,33,245,245,209,211,131,128,30,171,57,245,245,209,211,131,128,30,179,109,245,245,209,211,131,128,45,179,143,241,245,255,211,255,128,45,179,207,241,245,255,211,255,128,60,114,194,241,244,0,0,0,0,60,113,194,241,244,0,0,0,0,124,112,3,241,250,170,170,170,144,180,0,3,241,255,255,255,255,224,16,1,91,225,255,255,255,255,224,0,0,255,193,244,0,0,0,0,0,0,255,65,244,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9ad4 體 + 212,154,33,35,59,36,2,252,0,0,0,0,0,244,124,0,0,5,85,85,64,0,244,124,0,0,15,255,255,192,0,244,124,0,0,15,255,255,192,255,255,255,253,0,15,128,15,192,255,255,255,253,0,15,128,15,192,248,184,184,125,0,15,139,255,192,244,180,116,125,0,15,139,255,192,244,180,120,125,0,15,139,15,192,255,255,255,253,0,15,139,15,192,255,255,255,253,0,15,139,15,192,244,180,116,125,0,95,223,95,212,244,180,116,125,0,255,255,255,252,255,255,255,253,0,255,255,255,252,255,255,255,253,0,248,0,0,188,0,0,0,0,0,248,0,0,188,0,0,0,0,0,255,255,255,255,255,255,255,255,64,11,255,255,131,255,255,255,255,64,11,213,111,129,85,85,85,85,0,11,192,15,128,0,0,0,0,0,11,213,95,128,127,255,255,248,0,11,255,255,128,127,255,255,248,0,11,255,255,128,124,0,0,248,0,11,192,15,128,124,0,0,248,0,11,192,15,128,125,0,0,248,0,11,255,255,128,127,255,255,248,0,11,255,255,128,127,255,255,248,0,11,213,95,128,7,128,15,128,0,11,192,15,128,11,192,15,128,0,11,192,15,128,7,224,47,0,0,11,192,15,128,3,240,62,0,0,11,193,175,139,255,255,255,255,128,11,194,255,75,255,255,255,255,128,11,193,254,5,85,85,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,32,35,24,36,2,252,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208,0,0,0,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,191,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,224,0,0,11,255,255,255,255,224,0,0,11,229,85,85,95,224,0,0,11,224,0,0,11,224,0,0,11,224,0,0,11,224,0,0,11,229,85,85,95,224,0,0,11,255,255,255,255,224,0,0,11,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,192,0,0,0,0,3,244,15,192,21,85,85,84,3,244,15,192,63,255,255,252,3,244,15,192,63,255,255,252,3,244,15,192,63,0,0,252,3,244,15,192,63,0,0,252,3,244,15,192,63,0,0,252,3,244,15,192,63,85,85,252,3,244,15,192,63,255,255,252,3,244,15,192,63,255,255,252,7,244,15,192,63,0,0,15,255,240,15,192,42,0,0,11,255,240,15,192,0,0,0,7,255,128,0,0,0,0,0,0,0,0, + // 0x9ec3 黃 + 195,158,32,35,24,36,2,252,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,10,170,255,170,170,191,170,164,31,255,255,255,255,255,255,248,31,255,255,255,255,255,255,248,0,0,253,0,0,127,0,0,0,0,253,0,0,127,0,0,0,0,254,85,85,191,0,0,0,0,255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,254,85,95,229,85,127,64,0,252,0,15,224,0,63,64,0,253,0,15,224,0,127,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,252,0,15,224,0,63,64,0,252,0,15,224,0,63,64,0,254,85,95,229,85,127,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,0,189,0,0,190,64,0,0,11,255,64,1,255,249,0,2,255,253,0,0,111,255,224,191,255,144,0,0,1,191,254,191,248,0,0,0,0,11,254,46,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, + // 0x9ede 點 + 222,158,34,34,50,36,1,253,0,0,0,0,0,3,240,0,0,15,255,255,255,64,3,240,0,0,15,255,255,255,64,3,240,0,0,15,149,245,111,64,3,240,0,0,15,64,240,31,64,3,240,0,0,15,180,241,255,64,3,240,0,0,15,120,242,239,64,3,240,0,0,15,124,243,223,64,3,244,0,0,15,108,243,95,64,3,255,255,224,15,93,247,31,64,3,255,255,224,15,68,246,31,64,3,255,255,224,15,64,240,31,64,3,240,0,0,15,255,255,255,64,3,240,0,0,15,255,255,255,64,3,240,0,0,5,86,249,85,0,3,240,0,0,0,2,244,0,0,3,240,0,0,10,171,250,170,0,3,240,0,0,31,255,255,255,79,255,255,255,0,31,255,255,255,79,255,255,255,0,0,2,244,0,15,255,255,255,0,0,2,244,0,15,192,0,63,0,0,2,249,90,143,192,0,63,0,63,255,255,255,207,192,0,63,0,63,255,255,255,207,192,0,63,0,63,234,149,84,15,192,0,63,0,0,0,4,60,15,192,0,63,0,6,31,46,62,15,192,0,63,0,11,207,31,31,79,192,0,63,0,15,143,79,11,207,192,0,63,0,15,79,75,71,223,255,255,255,0,47,11,139,131,143,255,255,255,0,63,11,134,64,15,255,255,255,0,189,5,0,0,15,192,0,63,0,40,0,0,0,15,192,0,42,0, + // 0x9f4a 齊 + 74,159,34,35,59,36,1,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,42,170,170,170,171,234,170,170,64,0,0,0,36,3,224,0,16,0,0,0,0,188,7,224,6,248,0,31,255,255,255,15,218,255,253,0,31,255,255,159,95,95,255,208,0,5,189,95,142,81,31,155,192,0,0,252,15,131,240,31,67,224,0,0,248,15,67,240,31,66,240,0,2,244,31,67,240,31,64,252,0,7,240,47,3,240,31,150,254,0,47,203,255,3,240,255,255,127,192,127,71,253,3,240,255,255,31,208,44,1,80,2,160,165,0,3,128,0,10,144,0,0,0,42,64,0,0,15,208,0,0,0,63,64,0,0,15,250,170,170,170,191,64,0,0,15,255,255,255,255,255,64,0,0,15,255,255,255,255,255,64,0,0,15,208,0,0,0,63,64,0,0,15,208,0,0,0,63,64,0,0,31,234,170,170,170,191,64,0,0,47,255,255,255,255,255,64,0,0,63,255,255,255,255,255,64,0,0,191,64,0,0,0,63,64,0,1,255,0,0,0,0,63,64,0,7,253,0,0,0,0,63,64,0,31,248,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,3,128,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,6,24,48,36,15,2,47,128,191,224,255,240,255,240,191,224,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,128,191,224,255,240,255,240,191,224,47,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Vietnamese_26.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Vietnamese_26.cpp new file mode 100644 index 000000000000..d291f24576db --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_26px/NotoSans_Medium_Vietnamese_26.cpp @@ -0,0 +1,246 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Vietnamese 36pt, capital 'A' height: 26px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +extern const uint8_t NotoSans_Medium_Vietnamese_26[18855] = { + 162,26,2,1,249,30,34,247, // unifont_t + // 0x0102 Ă + 2,1,24,33,198,24,0,0,0,15,0,2,224,0,0,15,128,7,208,0,0,11,255,255,192,0,0,3,255,255,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x0103 ă + 3,1,17,28,140,21,1,255,2,224,0,60,0,1,244,0,188,0,0,255,255,248,0,0,127,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x0110 Đ + 16,1,23,26,156,26,1,0,6,170,170,144,0,0,7,255,255,255,128,0,7,255,255,255,244,0,7,254,170,255,254,0,7,244,0,7,255,128,7,244,0,0,191,208,7,244,0,0,47,240,7,244,0,0,15,244,7,244,0,0,11,248,7,244,0,0,7,252,7,244,0,0,3,252,91,249,85,0,3,252,255,255,255,64,3,252,255,255,255,64,3,252,255,255,255,0,3,252,7,244,0,0,3,252,7,244,0,0,7,252,7,244,0,0,11,248,7,244,0,0,15,244,7,244,0,0,47,240,7,244,0,0,191,208,7,244,0,7,255,128,7,249,85,191,254,0,7,255,255,255,248,0,7,255,255,255,128,0,7,255,255,228,0,0, + // 0x0111 đ + 17,1,20,29,145,23,2,255,0,0,0,5,64,0,0,0,31,208,0,0,0,31,208,0,1,85,111,229,0,11,255,255,255,0,11,255,255,255,0,1,85,111,229,0,0,0,31,208,0,5,64,31,208,0,191,253,31,208,7,255,255,159,208,31,255,255,255,208,63,240,2,255,208,127,192,0,127,208,191,128,0,63,208,255,0,0,47,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,31,208,255,0,0,47,208,191,64,0,63,208,127,192,0,127,208,63,240,1,255,208,31,255,255,239,208,7,255,255,143,208,0,191,253,15,208,0,5,64,0,0, + // 0x0128 Ĩ + 40,1,14,33,132,13,255,0,1,160,0,160,15,254,1,240,47,255,251,224,62,31,255,192,124,1,255,0,0,0,0,0,0,0,0,0,6,170,170,0,11,255,255,64,7,255,255,0,0,47,224,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,0,47,208,0,2,255,253,0,11,255,255,64,11,255,255,64, + // 0x0129 ĩ + 41,1,14,27,108,10,254,0,2,144,1,144,31,253,3,208,63,255,239,192,189,47,255,128,244,2,254,0,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x0168 Ũ + 104,1,21,34,204,27,3,255,0,6,128,2,128,0,0,63,248,7,192,0,0,191,255,239,128,0,0,248,127,255,0,0,1,240,7,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x0169 ũ + 105,1,17,28,140,23,3,255,0,104,0,40,0,3,255,128,124,0,11,255,254,248,0,15,135,255,240,0,31,0,127,192,0,0,0,0,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x01a0 Ơ + 160,1,28,29,203,29,2,255,0,0,0,0,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0, + // 0x01a1 ơ + 161,1,22,24,144,23,2,255,0,0,0,0,5,80,0,0,0,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0, + // 0x01af Ư + 175,1,27,29,203,29,3,255,0,0,0,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0, + // 0x01b0 ư + 176,1,24,24,144,25,3,255,0,0,0,0,1,84,0,0,0,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0, + // 0x0303 ̃ + 3,3,14,6,24,0,238,21,2,144,1,144,31,253,3,208,63,255,239,192,189,47,255,128,244,2,254,0,0,0,0,0, + // 0x0309 ̉ + 9,3,8,9,18,0,242,21,106,64,191,244,107,252,0,253,0,252,7,248,31,224,15,64,10,0, + // 0x0323 ̣ + 35,3,4,5,5,0,243,249,40,255,255,255,40, + // 0x0340 ̀ + 64,3,8,7,14,0,250,21,170,0,191,128,63,208,15,240,2,252,0,190,0,0, + // 0x0341 ́ + 65,3,8,7,14,0,254,21,0,170,2,254,7,252,15,240,63,128,190,0,0,0, + // 0x1ea0 Ạ + 160,30,24,33,198,24,0,249,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,128,0,0,0,0,15,240,0,0,0,0,31,240,0,0,0,0,15,240,0,0,0,0,6,128,0,0, + // 0x1ea1 ạ + 161,30,17,27,135,21,1,249,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0,0,0,0,0,0,0,0,164,0,0,0,2,252,0,0,0,3,253,0,0,0,2,252,0,0,0,0,164,0,0, + // 0x1ea2 Ả + 162,30,24,36,216,24,0,0,0,0,42,128,0,0,0,0,127,248,0,0,0,0,106,253,0,0,0,0,0,190,0,0,0,0,0,189,0,0,0,0,6,252,0,0,0,0,15,224,0,0,0,0,15,128,0,0,0,0,10,64,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1ea3 ả + 163,30,17,31,155,21,1,255,0,6,164,0,0,0,15,255,64,0,0,10,191,192,0,0,0,15,192,0,0,0,15,192,0,0,0,127,128,0,0,1,253,0,0,0,1,240,0,0,0,0,160,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1ea4 Ấ + 164,30,24,35,210,24,0,0,0,0,0,0,15,224,0,0,0,0,47,128,0,0,47,240,126,0,0,0,127,252,184,0,0,0,254,254,0,0,0,3,244,63,64,0,0,15,192,11,208,0,0,5,0,0,64,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1ea5 ấ + 165,30,19,30,150,21,1,255,0,0,0,1,252,0,0,0,3,240,0,3,254,15,192,0,15,255,94,0,0,47,239,192,0,0,126,7,240,0,1,244,0,252,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1ea6 Ầ + 166,30,24,35,210,24,0,0,15,208,0,0,0,0,3,240,0,0,0,0,1,248,47,240,0,0,0,61,127,248,0,0,0,0,254,254,0,0,0,3,244,63,64,0,0,15,192,11,208,0,0,4,0,0,64,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1ea7 ầ + 167,30,18,30,150,21,0,255,127,0,0,0,0,47,128,0,0,0,11,208,255,128,0,1,227,255,208,0,0,11,251,240,0,0,31,193,252,0,0,62,0,63,0,0,0,0,0,0,0,0,0,0,0,0,1,170,144,0,0,127,255,253,0,0,255,255,255,128,0,190,85,255,192,0,16,0,47,208,0,0,0,15,224,0,0,0,15,240,0,0,0,15,240,0,1,170,255,240,0,127,255,255,240,2,255,255,175,240,11,253,0,15,240,15,240,0,15,240,31,224,0,15,240,31,224,0,31,240,31,224,0,63,240,15,244,0,255,240,11,255,175,251,240,3,255,255,199,240,0,191,254,3,240,0,5,64,0,0, + // 0x1ea8 Ẩ + 168,30,24,38,228,24,0,0,0,0,0,0,80,0,0,0,0,1,254,0,0,0,0,0,95,64,0,0,0,0,11,128,0,0,0,0,47,0,0,0,47,240,184,0,0,0,127,248,116,0,0,1,254,253,0,0,0,3,244,63,64,0,0,15,192,11,192,0,0,4,0,0,64,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1ea9 ẩ + 169,30,19,33,165,21,1,255,0,0,0,5,0,0,0,0,47,224,0,0,0,21,240,0,0,0,0,244,0,0,0,6,240,0,3,254,15,64,0,11,255,75,0,0,47,223,192,0,0,127,7,240,0,0,248,0,252,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eaa Ẫ + 170,30,24,38,228,24,0,0,0,0,168,0,208,0,0,3,255,146,208,0,0,11,239,255,192,0,0,15,1,255,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,63,248,0,0,0,0,254,253,0,0,0,3,244,63,64,0,0,11,192,11,208,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1eab ẫ + 171,30,17,33,165,21,1,255,0,31,128,44,0,0,191,249,124,0,0,250,255,244,0,1,208,31,224,0,0,0,0,0,0,0,2,253,0,0,0,11,255,0,0,0,31,239,192,0,0,127,7,240,0,1,244,0,252,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eac Ậ + 172,30,24,41,246,24,0,249,0,0,26,160,0,0,0,0,63,248,0,0,0,0,255,253,0,0,0,2,253,191,0,0,0,11,240,47,192,0,0,31,128,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,128,0,0,0,0,15,240,0,0,0,0,31,240,0,0,0,0,15,240,0,0,0,0,6,128,0,0, + // 0x1ead ậ + 173,30,17,35,175,21,1,249,0,2,169,0,0,0,7,255,0,0,0,15,255,192,0,0,63,143,240,0,0,254,3,248,0,3,244,0,190,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0,0,0,0,0,0,0,0,160,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,0,160,0,0, + // 0x1eae Ắ + 174,30,24,37,222,24,0,0,0,0,0,21,0,0,0,0,0,254,0,0,0,0,1,248,0,0,0,0,3,224,0,0,0,11,70,66,208,0,0,11,192,7,192,0,0,3,245,111,192,0,0,2,255,255,0,0,0,0,127,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1eaf ắ + 175,30,17,32,160,21,1,255,0,0,5,64,0,0,0,31,192,0,0,0,63,0,0,0,0,188,0,0,0,240,160,120,0,0,244,0,248,0,0,190,91,240,0,0,63,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eb0 Ằ + 176,30,24,37,222,24,0,0,0,0,84,0,0,0,0,0,252,0,0,0,0,0,127,0,0,0,0,0,31,64,0,0,0,11,66,130,208,0,0,11,128,7,192,0,0,7,245,111,128,0,0,2,255,255,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1eb1 ằ + 177,30,17,32,160,21,1,255,0,21,0,0,0,0,47,128,0,0,0,11,208,0,0,0,2,240,0,0,1,240,100,120,0,0,244,0,248,0,0,254,91,240,0,0,63,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eb2 Ẳ + 178,30,24,38,228,24,0,0,0,0,9,64,0,0,0,0,47,240,0,0,0,0,0,244,0,0,0,0,0,240,0,0,0,0,7,224,0,0,0,11,71,66,208,0,0,11,128,7,192,0,0,7,245,111,128,0,0,2,255,255,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1eb3 ẳ + 179,30,17,33,165,21,1,255,0,1,160,0,0,0,3,253,0,0,0,0,31,0,0,0,0,31,0,0,0,0,252,0,0,0,240,160,124,0,0,244,0,184,0,0,190,91,244,0,0,63,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eb4 Ẵ + 180,30,24,38,228,24,0,0,0,0,168,0,144,0,0,3,255,146,208,0,0,11,239,255,192,0,0,15,1,191,64,0,0,0,0,0,0,0,0,10,0,2,128,0,0,11,128,3,192,0,0,7,229,111,192,0,0,3,255,255,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253, + // 0x1eb5 ẵ + 181,30,17,33,165,21,1,255,0,26,64,28,0,0,127,248,124,0,0,250,255,248,0,1,224,31,224,0,0,0,0,0,0,0,160,0,40,0,0,240,0,184,0,0,254,87,244,0,0,63,255,224,0,0,11,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0, + // 0x1eb6 Ặ + 182,30,24,40,240,24,0,249,0,15,64,2,240,0,0,15,128,7,224,0,0,7,255,255,192,0,0,2,255,255,64,0,0,0,127,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,224,0,0,0,0,47,244,0,0,0,0,63,248,0,0,0,0,191,252,0,0,0,0,254,253,0,0,0,1,253,255,0,0,0,2,252,127,0,0,0,3,248,63,128,0,0,7,244,63,192,0,0,15,240,31,208,0,0,15,224,15,224,0,0,47,192,11,240,0,0,63,192,7,244,0,0,127,128,3,252,0,0,191,0,2,252,0,0,255,255,255,254,0,1,255,255,255,255,0,3,255,255,255,255,64,3,254,170,170,191,128,11,244,0,0,63,192,15,240,0,0,47,208,31,224,0,0,15,240,47,208,0,0,15,240,63,192,0,0,7,248,127,128,0,0,3,252,255,0,0,0,2,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,128,0,0,0,0,15,240,0,0,0,0,31,240,0,0,0,0,15,240,0,0,0,0,6,128,0,0, + // 0x1eb7 ặ + 183,30,17,34,170,21,1,249,1,240,0,61,0,0,244,0,188,0,0,255,255,248,0,0,63,255,240,0,0,11,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,170,64,0,1,255,255,244,0,3,255,255,254,0,2,249,87,255,0,0,64,0,191,64,0,0,0,63,128,0,0,0,63,192,0,0,0,63,192,0,6,171,255,192,1,255,255,255,192,11,255,254,191,192,47,244,0,63,192,63,192,0,63,192,127,128,0,63,192,127,128,0,127,192,127,128,0,255,192,63,208,3,255,192,47,254,191,239,192,15,255,255,31,192,2,255,248,15,192,0,21,0,0,0,0,0,0,0,0,0,1,160,0,0,0,7,248,0,0,0,7,252,0,0,0,7,248,0,0,0,1,160,0,0, + // 0x1eb8 Ẹ + 184,30,15,33,132,20,3,249,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252,0,0,0,0,0,0,0,0,0,6,128,0,0,15,224,0,0,31,240,0,0,15,224,0,0,6,128,0, + // 0x1eb9 ẹ + 185,30,17,27,135,21,2,249,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0,0,0,0,0,0,0,1,160,0,0,0,3,248,0,0,0,7,252,0,0,0,3,248,0,0,0,1,160,0,0, + // 0x1eba Ẻ + 186,30,15,36,144,20,3,0,0,42,144,0,0,63,252,0,0,42,254,0,0,0,126,0,0,0,126,0,0,6,252,0,0,15,240,0,0,11,192,0,0,6,128,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x1ebb ẻ + 187,30,17,31,155,21,2,255,0,6,164,0,0,0,15,255,0,0,0,10,191,128,0,0,0,15,192,0,0,0,15,192,0,0,0,191,64,0,0,2,253,0,0,0,2,240,0,0,0,1,160,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x1ebc Ẽ + 188,30,15,33,132,20,3,0,0,164,0,100,7,255,64,244,15,255,251,240,47,75,255,224,61,0,191,128,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x1ebd ẽ + 189,30,17,28,140,21,2,255,0,104,0,40,0,3,255,128,124,0,11,255,254,248,0,15,135,255,240,0,31,0,127,192,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x1ebe Ế + 190,30,18,35,175,20,3,0,0,0,0,15,224,0,0,0,47,128,0,47,240,126,0,0,127,248,244,0,0,254,253,0,0,3,244,63,64,0,15,192,11,192,0,4,0,0,64,0,0,0,0,0,0,106,170,170,168,0,191,255,255,252,0,191,255,255,252,0,191,170,170,168,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,255,255,244,0,191,255,255,244,0,191,255,255,244,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,149,85,84,0,191,255,255,252,0,191,255,255,252,0,191,255,255,252,0, + // 0x1ebf ế + 191,30,19,30,150,21,2,255,0,0,0,3,244,0,0,0,15,208,0,11,252,31,64,0,47,254,45,0,0,127,127,64,0,0,252,15,208,0,3,224,2,240,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x1ec0 Ề + 192,30,17,35,175,20,1,0,254,0,0,0,0,63,0,0,0,0,15,193,255,0,0,3,215,255,192,0,0,15,239,224,0,0,63,66,244,0,0,188,0,189,0,0,80,0,4,0,0,0,0,0,0,6,170,170,170,128,11,255,255,255,192,11,255,255,255,192,11,250,170,170,128,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,255,255,255,64,11,255,255,255,64,11,255,255,255,64,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,249,85,85,64,11,255,255,255,192,11,255,255,255,192,11,255,255,255,192, + // 0x1ec1 ề + 193,30,18,30,150,21,1,255,253,0,0,0,0,63,0,0,0,0,15,130,255,0,0,2,199,255,192,0,0,15,239,224,0,0,63,66,244,0,0,252,0,189,0,0,0,0,0,0,0,0,0,0,0,0,2,170,64,0,0,63,255,244,0,1,255,255,253,0,3,254,70,255,64,15,244,0,63,192,31,224,0,47,208,47,192,0,15,224,63,192,0,15,224,63,234,170,175,240,63,255,255,255,240,63,255,255,255,240,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,47,224,0,0,0,15,244,0,0,0,11,253,0,6,192,3,255,255,255,192,0,191,255,255,192,0,27,255,254,0,0,0,21,64,0, + // 0x1ec2 Ể + 194,30,17,38,190,20,3,0,0,0,0,80,0,0,0,1,254,0,0,0,0,95,64,0,0,0,11,128,0,0,0,47,0,0,47,240,184,0,0,127,248,116,0,0,254,253,0,0,3,244,63,64,0,15,192,11,192,0,4,0,0,64,0,0,0,0,0,0,106,170,170,168,0,191,255,255,252,0,191,255,255,252,0,191,170,170,168,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,255,255,244,0,191,255,255,244,0,191,255,255,244,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,149,85,84,0,191,255,255,252,0,191,255,255,252,0,191,255,255,252,0, + // 0x1ec3 ể + 195,30,18,33,165,21,2,255,0,0,0,20,0,0,0,0,191,128,0,0,0,23,208,0,0,0,3,208,0,0,0,27,192,0,15,252,46,0,0,47,254,44,0,0,127,127,64,0,1,252,15,192,0,3,224,2,240,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x1ec4 Ễ + 196,30,15,38,152,20,3,0,0,168,1,208,3,255,147,208,11,239,255,192,15,1,255,0,0,0,0,0,0,31,224,0,0,63,248,0,0,254,253,0,3,244,63,64,15,192,11,192,4,0,0,64,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252, + // 0x1ec5 ễ + 197,30,17,33,165,21,2,255,0,110,0,116,0,1,255,229,240,0,3,235,255,224,0,3,128,127,128,0,0,0,0,0,0,0,11,248,0,0,0,31,253,0,0,0,63,191,64,0,0,252,15,192,0,3,224,2,240,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0, + // 0x1ec6 Ệ + 198,30,15,41,164,20,3,249,0,10,160,0,0,63,252,0,0,191,254,0,1,253,127,64,7,244,31,208,31,192,3,244,0,0,0,0,0,0,0,0,106,170,170,168,191,255,255,252,191,255,255,252,191,170,170,168,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,255,255,244,191,255,255,244,191,255,255,244,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,149,85,84,191,255,255,252,191,255,255,252,191,255,255,252,0,0,0,0,0,0,0,0,0,6,128,0,0,15,224,0,0,31,240,0,0,15,224,0,0,6,128,0, + // 0x1ec7 ệ + 199,30,17,35,175,21,2,249,0,6,164,0,0,0,31,252,0,0,0,63,255,0,0,0,255,63,192,0,3,248,15,224,0,15,208,2,248,0,0,0,0,0,0,0,0,0,0,0,0,10,169,0,0,0,255,255,208,0,7,255,255,244,0,15,249,27,253,0,63,208,0,255,0,127,128,0,191,64,191,0,0,63,128,255,0,0,63,128,255,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,191,128,0,0,0,63,208,0,0,0,47,244,0,27,0,15,255,255,255,0,2,255,255,255,0,0,111,255,248,0,0,0,85,0,0,0,0,0,0,0,0,1,160,0,0,0,3,248,0,0,0,7,252,0,0,0,3,248,0,0,0,1,160,0,0, + // 0x1ec8 Ỉ + 200,30,11,36,108,13,1,0,2,164,0,7,255,128,6,191,208,0,11,224,0,11,208,0,111,192,0,254,0,0,248,0,0,180,0,0,0,0,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244, + // 0x1ec9 ỉ + 201,30,7,30,60,10,2,0,106,64,255,240,171,252,0,252,0,252,7,248,31,208,31,0,10,0,0,0,21,64,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192, + // 0x1eca Ị + 202,30,11,33,99,13,1,249,106,170,160,191,255,244,127,255,240,2,254,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,2,253,0,47,255,208,191,255,244,191,255,244,0,0,0,0,0,0,0,164,0,2,253,0,3,253,0,2,253,0,0,164,0, + // 0x1ecb ị + 203,30,4,34,34,10,3,249,104,255,255,255,40,0,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,40,255,255,255,40, + // 0x1ecc Ọ + 204,30,24,33,198,28,2,249,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,2,144,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,240,0,0,0,0,2,144,0,0, + // 0x1ecd ọ + 205,30,18,27,135,22,2,249,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0,0,0,0,0,0,0,1,160,0,0,0,3,252,0,0,0,7,252,0,0,0,3,252,0,0,0,1,160,0,0, + // 0x1ece Ỏ + 206,30,24,37,222,28,2,255,0,0,10,144,0,0,0,0,47,253,0,0,0,0,42,255,0,0,0,0,0,63,64,0,0,0,0,63,0,0,0,0,1,191,0,0,0,0,7,248,0,0,0,0,3,208,0,0,0,0,3,192,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x1ecf ỏ + 207,30,18,31,155,22,2,255,0,6,164,0,0,0,15,255,64,0,0,10,191,192,0,0,0,15,192,0,0,0,15,192,0,0,0,127,128,0,0,1,253,0,0,0,1,240,0,0,0,0,160,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x1ed0 Ố + 208,30,24,36,216,28,2,255,0,0,0,0,11,240,0,0,0,0,15,192,0,0,15,244,63,0,0,0,63,252,120,0,0,0,191,191,0,0,0,2,248,47,128,0,0,7,208,7,224,0,0,1,0,0,64,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x1ed1 ố + 209,30,19,30,150,22,2,255,0,0,0,3,248,0,0,0,7,224,0,7,253,15,128,0,15,255,46,0,0,63,191,128,0,0,253,11,224,0,2,240,1,244,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x1ed2 Ồ + 210,30,24,36,216,28,2,255,11,240,0,0,0,0,2,244,0,0,0,0,0,188,15,244,0,0,0,46,63,252,0,0,0,0,191,191,0,0,0,2,248,31,192,0,0,7,208,7,224,0,0,1,0,0,64,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x1ed3 ồ + 211,30,19,30,150,22,1,255,254,0,0,0,0,63,64,0,0,0,15,193,255,64,0,2,211,255,192,0,0,15,235,240,0,0,47,66,248,0,0,189,0,126,0,0,0,0,0,0,0,0,0,0,0,0,1,170,64,0,0,47,255,248,0,1,255,255,255,0,3,255,150,255,192,15,248,0,47,224,31,240,0,15,240,47,208,0,7,248,63,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,7,248,31,224,0,11,244,15,240,0,15,240,7,253,0,127,224,2,255,255,255,192,0,191,255,254,0,0,27,255,228,0,0,0,84,0,0, + // 0x1ed4 Ổ + 212,30,24,39,234,28,2,255,0,0,0,0,16,0,0,0,0,0,255,64,0,0,0,0,91,192,0,0,0,0,3,192,0,0,0,0,31,128,0,0,31,244,61,0,0,0,63,252,56,0,0,0,255,191,0,0,0,2,248,47,128,0,0,7,208,7,224,0,0,1,0,0,64,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x1ed5 ổ + 213,30,18,33,165,22,2,255,0,0,0,20,0,0,0,0,63,192,0,0,0,22,224,0,0,0,1,240,0,0,0,11,208,0,7,253,31,0,0,15,255,13,0,0,63,191,128,0,0,253,11,224,0,2,240,1,244,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x1ed6 Ỗ + 214,30,24,39,234,28,2,255,0,0,105,0,176,0,0,2,255,209,224,0,0,7,235,255,208,0,0,11,64,191,64,0,0,0,0,0,0,0,0,0,11,240,0,0,0,0,47,252,0,0,0,0,191,190,0,0,0,1,248,47,128,0,0,7,208,7,224,0,0,1,0,0,64,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0, + // 0x1ed7 ỗ + 215,30,18,33,165,22,2,255,0,46,64,56,0,0,255,244,184,0,1,250,255,240,0,2,192,47,208,0,0,0,0,0,0,0,3,252,0,0,0,15,255,0,0,0,47,191,128,0,0,190,11,224,0,2,244,1,244,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0, + // 0x1ed8 Ộ + 216,30,24,41,246,28,2,249,0,0,10,164,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,1,254,127,128,0,0,3,244,15,224,0,0,15,208,2,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,254,64,0,0,31,255,255,248,0,0,191,255,255,255,0,3,255,229,91,255,192,11,254,0,0,127,240,15,248,0,0,15,244,47,240,0,0,11,252,63,208,0,0,3,253,127,192,0,0,2,254,191,128,0,0,1,255,191,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,255,64,0,0,0,255,191,64,0,0,0,255,191,128,0,0,1,255,127,192,0,0,2,254,63,192,0,0,3,253,63,224,0,0,7,252,31,244,0,0,15,248,15,253,0,0,63,240,3,255,144,6,255,208,0,255,255,255,255,64,0,47,255,255,252,0,0,6,255,255,144,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,2,144,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,240,0,0,0,0,2,144,0,0, + // 0x1ed9 ộ + 217,30,18,35,175,22,2,249,0,2,168,0,0,0,15,255,0,0,0,47,255,128,0,0,127,95,208,0,1,253,7,244,0,7,240,0,253,0,0,0,0,0,0,0,0,0,0,0,0,6,169,0,0,0,191,255,224,0,7,255,255,252,0,15,254,91,255,0,63,224,0,191,128,127,192,0,63,192,191,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,127,128,0,47,208,63,192,0,63,192,31,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,111,255,144,0,0,1,80,0,0,0,0,0,0,0,0,1,160,0,0,0,3,252,0,0,0,7,252,0,0,0,3,252,0,0,0,1,160,0,0, + // 0x1eda Ớ + 218,30,28,35,245,29,2,255,0,0,0,42,144,0,0,0,0,0,127,192,0,0,0,0,0,255,64,0,0,0,0,2,253,0,0,0,0,0,7,240,0,0,0,0,0,15,192,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0, + // 0x1edb ớ + 219,30,22,29,174,23,2,255,0,0,10,164,0,0,0,0,47,240,0,0,0,0,63,192,0,0,0,0,255,0,0,0,0,2,252,0,0,0,0,7,240,0,5,80,0,0,0,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0, + // 0x1edc Ờ + 220,30,28,35,245,29,2,255,0,2,168,0,0,0,0,0,2,255,0,0,0,0,0,0,191,64,0,0,0,0,0,47,192,0,0,0,0,0,11,240,0,0,0,0,0,2,248,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0, + // 0x1edd ờ + 221,30,22,29,174,23,2,255,0,170,0,0,0,0,0,255,128,0,0,0,0,63,208,0,0,0,0,15,240,0,0,0,0,3,248,0,0,0,0,0,189,0,5,80,0,0,0,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0, + // 0x1ede Ở + 222,30,28,37,3,29,2,255,0,0,26,144,0,0,0,0,0,63,252,0,0,0,0,0,42,255,0,0,0,0,0,0,63,0,0,0,0,0,0,63,0,0,0,0,0,2,253,0,0,0,0,0,11,244,0,0,0,0,0,7,192,0,0,0,0,0,6,128,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0, + // 0x1edf ở + 223,30,22,31,186,23,2,255,0,10,164,0,0,0,0,15,255,0,0,0,0,10,191,128,0,0,0,0,31,192,0,0,0,0,31,128,0,0,0,1,191,64,0,0,0,2,253,0,0,0,0,2,240,0,5,80,0,1,160,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0, + // 0x1ee0 Ỡ + 224,30,28,34,238,29,2,255,0,0,100,0,40,0,0,0,3,255,128,184,0,0,0,15,255,251,244,0,0,0,31,71,255,240,0,0,0,46,0,127,128,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0, + // 0x1ee1 ỡ + 225,30,22,28,168,23,2,255,0,41,0,25,0,0,1,255,208,62,0,0,3,255,254,252,0,0,11,210,255,248,0,0,15,64,47,224,5,80,0,0,0,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0, + // 0x1ee2 Ợ + 226,30,28,35,245,29,2,249,0,0,0,0,0,1,84,0,0,0,0,0,3,253,0,1,191,254,64,3,252,0,31,255,255,248,3,252,0,255,255,255,255,11,244,3,255,229,91,255,239,240,11,254,0,0,127,255,192,15,248,0,0,15,253,0,47,240,0,0,11,252,0,63,208,0,0,3,253,0,127,192,0,0,2,254,0,191,128,0,0,1,255,0,191,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,255,64,0,0,0,255,0,191,64,0,0,0,255,0,191,128,0,0,1,255,0,127,192,0,0,2,254,0,63,192,0,0,3,253,0,63,224,0,0,7,252,0,31,244,0,0,15,248,0,15,253,0,0,63,240,0,3,255,144,2,255,208,0,0,255,255,255,255,64,0,0,47,255,255,252,0,0,0,6,255,255,144,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,0,0,2,128,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,2,128,0,0,0, + // 0x1ee3 ợ + 227,30,22,30,180,23,2,249,0,0,0,0,5,80,0,0,0,0,15,240,0,0,0,0,31,224,0,6,169,0,31,208,0,191,255,224,63,192,7,255,255,253,255,64,15,254,91,255,253,0,63,224,0,191,224,0,127,192,0,63,192,0,191,64,0,31,208,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,224,0,127,128,0,47,208,0,63,192,0,63,192,0,31,244,1,255,128,0,11,255,255,255,0,0,2,255,255,248,0,0,0,111,255,144,0,0,0,1,80,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,0,160,0,0,0, + // 0x1ee4 Ụ + 228,30,21,33,198,27,3,249,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,255,0,0,0,0,0,255,64,0,0,0,0,255,0,0,0,0,0,41,0,0,0, + // 0x1ee5 ụ + 229,30,17,27,135,23,3,249,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0,0,0,0,0,0,0,6,128,0,0,0,15,224,0,0,0,31,240,0,0,0,15,224,0,0,0,6,128,0,0, + // 0x1ee6 Ủ + 230,30,21,37,222,27,3,255,0,0,169,0,0,0,0,2,255,208,0,0,0,2,175,240,0,0,0,0,3,244,0,0,0,0,3,240,0,0,0,0,27,240,0,0,0,0,63,128,0,0,0,0,61,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,170,0,0,0,106,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,127,64,255,0,0,0,191,64,191,64,0,0,191,0,127,128,0,0,255,0,63,192,0,1,255,0,63,224,0,3,253,0,15,253,0,47,248,0,7,255,255,255,240,0,1,255,255,255,128,0,0,47,255,249,0,0,0,0,21,0,0,0, + // 0x1ee7 ủ + 231,30,17,31,155,23,3,255,0,26,144,0,0,0,47,253,0,0,0,42,255,0,0,0,0,63,0,0,0,0,63,0,0,0,1,254,0,0,0,7,248,0,0,0,3,208,0,0,0,2,128,0,0,0,0,0,0,0,85,0,0,21,64,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,63,128,254,0,0,127,128,254,0,0,127,128,255,0,0,255,128,255,64,1,255,128,191,192,7,255,128,127,255,255,255,128,47,255,255,47,128,7,255,248,31,128,0,21,0,0,0, + // 0x1ee8 Ứ + 232,30,27,35,245,29,3,255,0,0,1,170,0,0,0,0,0,3,253,0,0,0,0,0,15,244,0,0,0,0,0,47,208,0,0,0,0,0,63,64,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0, + // 0x1ee9 ứ + 233,30,24,29,174,25,3,255,0,0,26,160,0,0,0,0,63,208,0,0,0,0,255,64,0,0,0,1,253,0,0,0,0,3,244,0,0,0,0,15,208,0,1,84,0,0,0,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0, + // 0x1eea Ừ + 234,30,27,35,245,29,3,255,0,42,144,0,0,0,0,0,31,240,0,0,0,0,0,11,248,0,0,0,0,0,2,253,0,0,0,0,0,0,127,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0, + // 0x1eeb ừ + 235,30,24,29,174,25,3,255,2,169,0,0,0,0,1,255,0,0,0,0,0,191,128,0,0,0,0,47,208,0,0,0,0,7,240,0,0,0,0,1,252,0,1,84,0,0,0,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0, + // 0x1eec Ử + 236,30,27,37,3,29,3,255,0,0,169,0,0,0,0,0,1,255,224,0,0,0,0,1,175,240,0,0,0,0,0,2,244,0,0,0,0,0,2,244,0,0,0,0,0,27,240,0,0,0,0,0,63,128,0,0,0,0,0,62,0,0,0,0,0,0,45,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0, + // 0x1eed ử + 237,30,24,31,186,25,3,255,0,26,144,0,0,0,0,47,253,0,0,0,0,26,255,0,0,0,0,0,47,64,0,0,0,0,63,0,0,0,0,1,255,0,0,0,0,3,248,0,0,0,0,3,208,0,1,84,0,2,128,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0, + // 0x1eee Ữ + 238,30,27,34,238,29,3,255,0,6,128,2,128,0,0,0,63,248,7,192,0,0,0,255,255,239,128,0,0,0,248,127,255,0,0,0,1,240,7,252,0,0,0,0,0,0,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0, + // 0x1eef ữ + 239,30,24,28,168,25,3,255,0,104,0,40,0,0,3,255,128,124,0,0,11,255,254,248,0,0,15,135,255,240,0,0,31,0,127,192,1,84,0,0,0,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0, + // 0x1ef0 Ự + 240,30,27,35,245,29,3,249,0,0,0,0,0,1,84,0,0,0,0,0,3,252,170,0,0,0,106,67,252,255,0,0,0,127,71,248,255,0,0,0,127,75,240,255,0,0,0,127,175,208,255,0,0,0,127,255,128,255,0,0,0,127,249,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,127,64,0,255,0,0,0,191,64,0,191,64,0,0,191,0,0,127,128,0,0,255,0,0,63,192,0,1,255,0,0,63,224,0,3,253,0,0,15,253,0,47,252,0,0,7,255,255,255,240,0,0,1,255,255,255,192,0,0,0,31,255,253,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,191,64,0,0,0,0,0,255,64,0,0,0,0,0,191,64,0,0,0,0,0,41,0,0,0,0, + // 0x1ef1 ự + 241,30,24,30,180,25,3,249,0,0,0,0,1,84,0,0,0,0,2,253,0,0,0,0,3,252,84,0,0,21,67,252,254,0,0,63,135,244,254,0,0,63,239,240,254,0,0,63,255,192,254,0,0,63,253,0,254,0,0,63,192,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,63,128,0,254,0,0,127,128,0,254,0,0,127,128,0,255,0,0,255,128,0,255,64,1,255,128,0,191,192,7,255,128,0,63,255,255,255,128,0,31,255,255,47,128,0,7,255,248,31,128,0,0,21,0,0,0,0,0,0,0,0,0,0,0,6,128,0,0,0,0,15,224,0,0,0,0,31,240,0,0,0,0,15,224,0,0,0,0,6,128,0,0,0, + // 0x1ef2 Ỳ + 242,30,21,34,204,21,0,0,0,26,160,0,0,0,0,15,244,0,0,0,0,3,252,0,0,0,0,0,254,0,0,0,0,0,63,64,0,0,0,0,15,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x1ef3 ỳ + 243,30,19,37,185,19,0,247,0,106,128,0,0,0,63,208,0,0,0,15,240,0,0,0,3,248,0,0,0,0,253,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x1ef4 Ỵ + 244,30,21,33,198,21,0,249,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,191,64,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,25,0,0,0, + // 0x1ef5 ỵ + 245,30,19,29,145,19,0,247,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,25,0,0,11,244,127,128,0,47,240,191,128,38,255,192,127,128,127,255,64,25,0,127,253,0,0,0,42,144,0,0,0, + // 0x1ef6 Ỷ + 246,30,21,36,216,21,0,0,0,0,105,0,0,0,0,1,255,224,0,0,0,1,175,244,0,0,0,0,2,248,0,0,0,0,2,244,0,0,0,0,27,240,0,0,0,0,63,192,0,0,0,0,62,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x1ef7 ỷ + 247,30,19,39,195,19,0,247,0,2,164,0,0,0,7,255,128,0,0,6,191,208,0,0,0,11,208,0,0,0,11,208,0,0,0,111,192,0,0,0,254,0,0,0,0,248,0,0,0,0,164,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, + // 0x1ef8 Ỹ + 248,30,21,33,198,21,0,0,0,6,144,2,128,0,0,63,252,7,192,0,0,191,255,239,192,0,0,248,127,255,0,0,0,240,7,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,64,0,0,106,128,127,192,0,0,255,64,63,208,0,1,255,0,31,240,0,3,252,0,11,244,0,7,248,0,3,252,0,15,240,0,2,253,0,31,224,0,0,255,0,63,192,0,0,191,128,127,128,0,0,63,192,255,0,0,0,47,226,253,0,0,0,15,243,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0, + // 0x1ef9 ỹ + 249,30,19,36,180,19,0,247,0,26,64,10,0,0,255,240,31,0,2,255,255,190,0,3,225,255,252,0,3,192,31,244,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,191,64,0,7,248,63,192,0,15,240,63,192,0,15,240,31,224,0,31,208,15,240,0,63,192,11,244,0,63,128,3,248,0,191,64,3,252,0,255,0,1,253,0,254,0,0,255,2,252,0,0,191,3,252,0,0,63,71,244,0,0,63,203,240,0,0,31,207,224,0,0,15,223,208,0,0,11,255,192,0,0,3,255,128,0,0,3,255,0,0,0,1,255,0,0,0,1,253,0,0,0,3,252,0,0,0,3,248,0,0,0,11,244,0,0,0,47,240,0,0,38,255,192,0,0,127,255,64,0,0,127,253,0,0,0,42,144,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_27.cpp new file mode 100644 index 000000000000..f94284c75848 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_27.cpp @@ -0,0 +1,416 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium 37pt, capital 'A' height: 27px, width: 100%, range: 0x0020-0x00ff +extern const uint8_t NotoSans_Medium_27[25343] = { + 130,27,32,0,255,0,35,247, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 6,28,56,10,2,255,21,64,63,208,63,208,63,208,63,192,63,192,63,192,63,192,63,192,63,192,47,192,47,192,47,192,47,192,47,128,31,128,31,128,31,128,31,128,0,0,0,0,0,0,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x0022 " + 12,11,33,16,2,16,21,0,84,191,65,253,127,1,252,127,1,252,127,1,252,63,0,252,63,0,252,63,0,252,62,0,252,62,0,248,0,0,0, + // 0x0023 # + 22,27,162,24,1,0,0,0,84,0,84,0,0,0,252,1,248,0,0,1,248,1,248,0,0,2,248,2,244,0,0,2,244,3,240,0,0,3,240,3,240,0,0,3,240,3,224,0,0,7,240,7,224,0,42,175,250,175,250,160,63,255,255,255,255,240,63,255,255,255,255,240,0,15,192,31,192,0,0,15,192,31,128,0,0,31,128,47,64,0,0,47,64,63,0,0,0,63,0,63,0,0,85,127,85,191,85,64,255,255,255,255,255,128,255,255,255,255,255,128,85,254,85,253,85,64,0,252,0,252,0,0,0,252,0,252,0,0,0,252,1,248,0,0,1,248,2,244,0,0,1,244,3,244,0,0,2,244,3,240,0,0,3,240,3,240,0,0, + // 0x0024 $ + 17,31,155,21,2,253,0,2,240,0,0,0,2,240,0,0,0,2,240,0,0,0,111,255,164,0,7,255,255,255,64,47,255,255,255,0,127,251,246,191,0,191,130,240,5,0,255,2,240,0,0,255,2,240,0,0,255,66,240,0,0,127,210,240,0,0,63,255,240,0,0,15,255,249,0,0,2,255,255,208,0,0,31,255,252,0,0,2,255,255,0,0,2,242,255,192,0,2,240,63,192,0,2,240,47,192,0,2,240,47,192,64,2,240,63,192,254,66,246,255,128,255,255,255,255,0,255,255,255,248,0,27,255,255,128,0,0,6,240,0,0,0,2,240,0,0,0,2,240,0,0,0,2,240,0,0,0,0,0,0,0, + // 0x0025 % + 29,28,224,32,1,255,0,170,64,0,0,85,0,0,7,255,224,0,0,252,0,0,15,255,248,0,2,248,0,0,47,193,252,0,3,240,0,0,63,64,254,0,15,224,0,0,63,0,126,0,31,192,0,0,127,0,127,0,63,64,0,0,127,0,63,0,127,0,0,0,127,0,63,0,253,0,0,0,127,0,63,2,252,0,0,0,127,0,127,3,240,0,0,0,63,0,127,11,224,191,224,0,63,64,254,15,195,255,252,0,31,193,252,47,135,250,254,0,15,255,248,127,15,224,127,0,3,255,240,253,15,192,63,64,0,110,65,252,31,192,47,128,0,0,3,244,31,192,31,192,0,0,11,240,47,128,31,192,0,0,15,192,47,128,31,192,0,0,47,128,31,192,31,192,0,0,63,0,31,192,47,128,0,0,190,0,15,192,63,128,0,1,252,0,15,208,63,0,0,3,244,0,7,249,255,0,0,7,240,0,3,255,252,0,0,15,208,0,0,191,244,0,0,0,0,0,0,5,0,0, + // 0x0026 & + 25,28,196,27,2,255,0,6,250,64,0,0,0,0,127,255,240,0,0,0,2,255,255,252,0,0,0,3,254,91,254,0,0,0,11,248,1,255,0,0,0,11,240,0,255,0,0,0,11,240,0,255,0,0,0,11,240,0,255,0,0,0,7,248,2,253,0,0,0,3,253,11,252,0,0,0,0,255,191,240,0,0,0,0,127,255,128,0,0,0,0,63,253,0,0,0,0,2,255,253,0,0,169,0,11,255,255,64,2,253,0,47,248,191,208,3,252,0,127,208,47,244,3,252,0,255,128,11,253,11,244,0,255,0,2,255,79,240,0,255,0,0,191,255,208,0,255,0,0,47,255,128,0,255,64,0,11,255,0,0,255,192,0,31,255,128,0,127,244,1,255,255,224,0,47,255,255,255,175,248,0,11,255,255,253,7,254,0,1,191,255,208,1,255,128,0,1,80,0,0,0,0, + // 0x0027 ' + 5,11,22,9,2,16,21,0,191,64,127,0,127,0,127,0,63,0,63,0,63,0,62,0,62,0,0,0, + // 0x0028 ( + 9,33,99,12,1,250,0,5,64,0,63,192,0,127,0,0,254,0,2,252,0,3,248,0,11,240,0,15,240,0,31,208,0,47,192,0,63,192,0,63,128,0,63,128,0,127,64,0,127,64,0,127,64,0,191,0,0,127,0,0,127,64,0,127,64,0,127,64,0,63,128,0,63,192,0,47,192,0,31,208,0,15,224,0,15,240,0,7,244,0,3,252,0,1,253,0,0,255,0,0,63,64,0,31,192, + // 0x0029 ) + 9,33,99,12,1,250,85,0,0,127,64,0,47,192,0,15,224,0,11,240,0,3,248,0,2,252,0,1,253,0,0,255,0,0,191,0,0,127,64,0,63,128,0,63,128,0,63,192,0,63,192,0,63,192,0,47,192,0,47,192,0,63,192,0,63,192,0,63,192,0,63,128,0,127,64,0,191,64,0,255,0,0,254,0,1,253,0,3,252,0,7,244,0,15,240,0,31,208,0,63,128,0,127,0,0, + // 0x002a * + 18,17,85,20,1,11,0,3,252,0,0,0,2,252,0,0,0,2,252,0,0,0,1,248,0,0,0,1,248,0,0,57,1,244,6,208,127,249,249,255,224,127,255,255,255,224,111,255,255,255,160,0,7,254,0,0,0,15,255,64,0,0,63,159,192,0,0,191,15,224,0,1,254,7,248,0,3,253,3,252,0,1,252,2,244,0,0,20,0,64,0, + // 0x002b + + 18,18,90,21,2,4,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,170,171,250,170,128,255,255,255,255,208,255,255,255,255,208,85,87,245,85,64,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0, + // 0x002c , + 7,10,20,10,1,251,1,80,15,244,15,240,15,224,31,208,47,192,63,128,63,0,127,0,125,0, + // 0x002d - + 10,4,12,12,1,8,106,170,144,191,255,224,191,255,224,127,255,208, + // 0x002e . + 6,6,12,10,2,255,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x002f / + 14,27,108,14,0,0,0,0,5,80,0,0,15,224,0,0,47,192,0,0,63,192,0,0,127,64,0,0,191,0,0,0,254,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,240,0,0,15,240,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,64,0,0,255,0,0,0,254,0,0,2,252,0,0,3,252,0,0,7,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0, + // 0x0030 0 + 19,28,140,21,1,255,0,6,250,64,0,0,127,255,240,0,1,255,255,253,0,3,255,171,255,0,11,252,0,191,128,15,240,0,63,192,31,224,0,31,208,47,192,0,15,240,63,192,0,15,240,63,192,0,11,240,63,128,0,11,244,127,128,0,11,244,127,128,0,7,244,127,128,0,7,244,127,128,0,7,244,127,128,0,11,244,63,128,0,11,244,63,192,0,11,244,63,192,0,15,240,63,192,0,15,240,31,208,0,31,224,15,224,0,47,208,15,244,0,63,192,7,253,1,255,128,2,255,255,255,0,0,191,255,252,0,0,31,255,224,0,0,0,84,0,0, + // 0x0031 1 + 11,27,81,21,3,0,0,1,84,0,11,252,0,63,252,1,255,252,7,255,252,47,247,252,255,195,252,127,3,252,24,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252, + // 0x0032 2 + 19,27,135,21,1,0,0,6,186,64,0,0,255,255,244,0,11,255,255,254,0,63,255,171,255,64,31,208,0,255,192,11,0,0,63,192,0,0,0,47,208,0,0,0,47,208,0,0,0,47,208,0,0,0,63,192,0,0,0,63,192,0,0,0,191,64,0,0,1,255,0,0,0,3,252,0,0,0,15,244,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,244,0,0,0,63,245,85,85,80,127,255,255,255,244,127,255,255,255,244,127,255,255,255,244, + // 0x0033 3 + 18,28,140,21,1,255,0,26,186,64,0,2,255,255,248,0,47,255,255,254,0,63,254,171,255,128,15,128,0,191,192,4,0,0,63,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,192,0,0,0,63,192,0,0,0,255,64,0,21,91,253,0,0,127,255,224,0,0,127,255,144,0,0,127,255,254,0,0,0,6,255,192,0,0,0,63,224,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,31,240,0,0,0,63,224,126,64,1,255,192,127,255,255,255,64,127,255,255,253,0,27,255,255,208,0,0,5,80,0,0, + // 0x0034 4 + 21,27,162,21,0,0,0,0,0,42,64,0,0,0,0,255,192,0,0,0,2,255,192,0,0,0,3,255,192,0,0,0,15,255,192,0,0,0,47,191,192,0,0,0,127,63,192,0,0,0,254,63,192,0,0,2,252,63,192,0,0,7,240,63,192,0,0,15,208,63,192,0,0,47,192,63,192,0,0,127,0,63,192,0,0,253,0,63,192,0,3,248,0,63,192,0,11,240,0,63,192,0,15,208,0,63,192,0,63,192,0,63,192,0,127,255,255,255,255,64,127,255,255,255,255,64,127,255,255,255,255,64,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0, + // 0x0035 5 + 17,28,140,21,2,255,5,85,85,84,0,31,255,255,253,0,31,255,255,253,0,31,255,255,253,0,47,192,0,0,0,47,192,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,128,0,0,0,63,133,80,0,0,63,255,255,128,0,63,255,255,248,0,63,255,255,254,0,4,0,7,255,0,0,0,0,255,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,64,0,0,255,64,249,0,11,255,0,255,255,255,252,0,255,255,255,224,0,31,255,254,64,0,0,21,64,0,0, + // 0x0036 6 + 18,28,140,21,2,255,0,0,106,169,0,0,11,255,254,0,0,127,255,254,0,2,255,249,89,0,7,254,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,127,128,0,0,0,191,0,0,0,0,191,1,170,64,0,255,31,255,244,0,254,127,255,254,0,255,254,91,255,64,255,224,0,191,192,255,128,0,63,192,255,0,0,47,208,255,0,0,31,224,255,0,0,31,224,255,0,0,31,208,191,64,0,47,208,127,128,0,63,192,63,208,0,127,192,31,248,2,255,64,11,255,255,254,0,2,255,255,248,0,0,47,255,208,0,0,0,84,0,0, + // 0x0037 7 + 19,27,135,21,1,0,21,85,85,85,80,191,255,255,255,248,191,255,255,255,248,191,255,255,255,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,11,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,127,128,0,0,0,255,64,0,0,1,255,0,0,0,3,253,0,0,0,3,252,0,0,0,11,244,0,0,0,15,240,0,0,0,47,224,0,0,0,63,192,0,0,0,191,128,0,0,0,255,64,0,0, + // 0x0038 8 + 19,28,140,21,1,255,0,6,186,64,0,0,191,255,248,0,3,255,255,255,0,11,254,86,255,192,15,240,0,63,208,31,224,0,31,224,31,208,0,15,224,31,208,0,31,224,15,224,0,47,208,15,244,0,127,192,3,254,2,255,0,1,255,239,252,0,0,63,255,224,0,0,47,255,208,0,1,255,255,252,0,7,254,7,255,64,15,244,0,191,208,47,208,0,31,240,63,192,0,11,240,63,128,0,7,244,127,64,0,7,244,63,128,0,11,244,63,192,0,15,240,47,244,0,127,224,15,255,171,255,192,3,255,255,254,0,0,127,255,228,0,0,0,84,0,0, + // 0x0039 9 + 19,28,140,21,1,255,0,6,169,0,0,0,191,255,224,0,2,255,255,252,0,11,255,171,255,0,31,244,0,255,128,47,208,0,63,208,63,192,0,31,224,63,128,0,15,240,127,128,0,11,240,127,128,0,11,244,63,128,0,11,244,63,192,0,15,244,63,208,0,47,244,31,244,0,255,244,15,255,255,251,244,3,255,255,219,240,0,127,254,11,240,0,1,64,15,240,0,0,0,15,224,0,0,0,31,208,0,0,0,63,192,0,0,0,191,128,0,0,2,255,0,0,0,31,253,0,7,255,255,244,0,7,255,255,192,0,7,255,249,0,0,0,85,0,0,0, + // 0x003a : + 6,22,44,10,2,255,5,0,63,192,127,208,127,224,63,208,31,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x003b ; + 7,26,52,10,1,251,1,64,15,240,31,244,47,244,31,244,7,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,80,15,240,31,240,31,224,47,192,63,192,63,64,127,0,190,0,188,0, + // 0x003c < + 18,19,95,21,2,4,0,0,0,0,64,0,0,0,7,208,0,0,0,127,208,0,0,7,255,192,0,0,127,253,0,0,7,255,208,0,0,127,253,0,0,7,255,208,0,0,127,249,0,0,0,255,128,0,0,0,255,208,0,0,0,127,254,0,0,0,7,255,228,0,0,0,47,255,64,0,0,2,255,248,0,0,0,31,255,192,0,0,1,255,208,0,0,0,11,208,0,0,0,0,144, + // 0x003d = + 17,11,55,21,2,7,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,0,0,0,0,0, + // 0x003e > + 18,19,95,21,2,4,64,0,0,0,0,244,0,0,0,0,255,64,0,0,0,255,244,0,0,0,31,255,64,0,0,1,255,244,0,0,0,31,255,64,0,0,1,191,244,0,0,0,11,255,64,0,0,0,191,208,0,0,1,191,208,0,0,31,255,128,0,2,255,244,0,0,127,254,64,0,11,255,224,0,0,191,253,0,0,0,255,208,0,0,0,249,0,0,0,0,128,0,0,0,0, + // 0x003f ? + 16,28,112,17,0,255,0,106,164,0,31,255,255,128,127,255,255,240,63,250,191,252,45,0,7,252,0,0,1,253,0,0,0,254,0,0,0,254,0,0,1,253,0,0,3,252,0,0,15,244,0,0,63,224,0,1,255,128,0,7,253,0,0,15,244,0,0,31,208,0,0,47,128,0,0,63,64,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,64,0,0,127,192,0,0,191,208,0,0,191,208,0,0,63,192,0,0,5,0,0, + // 0x0040 @ + 29,31,248,33,2,252,0,0,0,21,80,0,0,0,0,0,27,255,255,144,0,0,0,1,255,255,255,253,0,0,0,11,255,149,91,255,128,0,0,63,224,0,0,127,224,0,0,255,64,0,0,7,248,0,3,252,0,0,0,1,253,0,11,240,0,5,64,0,191,0,15,208,1,255,255,128,63,64,47,128,15,255,255,208,47,128,63,0,63,229,111,192,15,192,63,0,191,64,15,192,15,192,126,0,253,0,15,192,15,192,189,1,252,0,15,192,15,192,252,2,248,0,15,192,15,192,252,2,248,0,31,192,15,192,252,2,248,0,31,192,15,192,252,2,248,0,47,192,31,128,253,1,252,0,63,192,47,64,189,0,254,0,191,208,127,0,190,0,191,235,247,250,253,0,63,0,47,255,209,255,244,0,63,64,6,254,0,127,128,0,31,192,0,0,0,0,0,0,15,240,0,0,0,0,0,0,3,252,0,0,0,0,0,0,1,255,128,0,1,180,0,0,0,127,254,170,191,244,0,0,0,11,255,255,255,240,0,0,0,0,111,255,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x0041 A + 24,27,162,24,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0042 B + 20,27,135,24,3,0,21,85,84,0,0,127,255,255,248,0,127,255,255,255,64,127,255,255,255,208,127,128,1,191,240,127,128,0,31,244,127,128,0,15,244,127,128,0,11,244,127,128,0,11,244,127,128,0,15,240,127,128,0,47,224,127,149,86,255,128,127,255,255,253,0,127,255,255,249,0,127,255,255,255,192,127,128,0,127,240,127,128,0,15,248,127,128,0,3,252,127,128,0,3,252,127,128,0,3,253,127,128,0,3,252,127,128,0,11,252,127,128,0,31,248,127,149,86,255,240,127,255,255,255,208,127,255,255,255,0,127,255,255,228,0, + // 0x0043 C + 20,28,140,23,2,255,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x0044 D + 22,27,162,27,3,0,21,85,84,0,0,0,127,255,255,244,0,0,127,255,255,255,64,0,127,255,255,255,224,0,127,128,1,191,252,0,127,128,0,11,254,0,127,128,0,2,255,64,127,128,0,0,255,192,127,128,0,0,127,192,127,128,0,0,63,208,127,128,0,0,47,224,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,47,224,127,128,0,0,63,208,127,128,0,0,63,192,127,128,0,0,191,192,127,128,0,1,255,64,127,128,0,7,255,0,127,128,0,47,252,0,127,149,91,255,244,0,127,255,255,255,192,0,127,255,255,253,0,0,127,255,254,64,0,0, + // 0x0045 E + 16,27,108,21,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0046 F + 16,27,108,20,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0, + // 0x0047 G + 22,28,168,27,2,255,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0, + // 0x0048 H + 21,27,162,28,3,0,21,0,0,0,21,64,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,149,85,85,127,192,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x0049 I + 11,27,81,13,1,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x004a J + 11,35,105,11,253,248,0,5,80,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,15,240,0,31,240,81,191,224,255,255,192,255,255,0,191,248,0,0,0,0, + // 0x004b K + 20,27,135,23,3,0,21,0,0,1,85,127,128,0,7,253,127,128,0,15,244,127,128,0,63,224,127,128,0,255,128,127,128,2,255,0,127,128,11,252,0,127,128,31,240,0,127,128,127,192,0,127,128,255,64,0,127,131,253,0,0,127,143,248,0,0,127,175,244,0,0,127,255,252,0,0,127,255,254,0,0,127,245,255,64,0,127,192,191,192,0,127,128,63,224,0,127,128,31,244,0,127,128,11,252,0,127,128,3,255,0,127,128,0,255,128,127,128,0,127,192,127,128,0,47,240,127,128,0,15,248,127,128,0,7,253,127,128,0,2,255, + // 0x004c L + 16,27,108,20,3,0,21,0,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x004d M + 28,27,189,34,3,0,21,80,0,0,0,5,84,127,248,0,0,0,47,253,127,252,0,0,0,63,253,127,253,0,0,0,127,253,127,254,0,0,0,191,253,127,191,0,0,0,254,253,127,127,64,0,1,253,253,127,63,128,0,3,249,253,127,47,192,0,3,241,253,127,15,208,0,11,241,253,127,15,240,0,15,225,253,127,7,240,0,31,193,253,127,3,244,0,47,193,253,127,3,252,0,63,65,253,127,1,252,0,127,1,253,127,0,254,0,190,1,253,127,0,191,0,253,1,253,127,0,127,65,252,1,253,127,0,63,131,248,1,253,127,0,47,195,240,1,253,127,0,31,219,240,1,253,127,0,15,239,208,1,253,127,0,11,255,192,1,253,127,0,3,255,128,1,253,127,0,3,255,64,1,253,127,0,2,255,0,1,253,127,0,0,254,0,1,253, + // 0x004e N + 22,27,162,29,3,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x004f O + 25,28,196,29,2,255,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x0050 P + 18,27,135,23,3,0,21,85,80,0,0,127,255,255,208,0,127,255,255,253,0,127,255,255,255,0,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,224,127,128,0,31,240,127,128,0,31,224,127,128,0,47,224,127,128,0,63,208,127,128,1,255,192,127,149,111,255,64,127,255,255,253,0,127,255,255,240,0,127,255,250,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0051 Q + 25,34,238,29,2,249,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,240,0,0,0,0,5,111,244,0,0,0,0,0,11,253,0,0,0,0,0,3,255,64,0,0,0,0,0,255,192,0,0,0,0,0,63,240,0,0,0,0,0,31,252,0,0,0,0,0,1,84,0, + // 0x0052 R + 20,27,135,23,3,0,21,85,84,0,0,127,255,255,224,0,127,255,255,253,0,127,255,255,255,64,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,47,208,127,128,0,127,192,127,128,6,255,64,127,255,255,254,0,127,255,255,244,0,127,255,255,192,0,127,149,127,208,0,127,128,15,240,0,127,128,11,248,0,127,128,3,253,0,127,128,1,255,0,127,128,0,255,128,127,128,0,63,192,127,128,0,47,240,127,128,0,15,244,127,128,0,7,252,127,128,0,3,254, + // 0x0053 S + 17,28,140,20,2,255,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,21,64,0,0, + // 0x0054 T + 21,27,162,21,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x0055 U + 21,28,168,27,3,255,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x0056 V + 23,27,162,23,0,0,85,0,0,0,1,84,191,64,0,0,11,244,127,192,0,0,15,240,63,192,0,0,31,224,47,208,0,0,47,208,31,240,0,0,63,192,15,240,0,0,127,128,11,244,0,0,255,64,3,252,0,0,255,0,3,252,0,1,254,0,2,253,0,3,253,0,0,255,0,3,252,0,0,255,0,7,248,0,0,127,128,15,240,0,0,63,192,15,240,0,0,63,192,31,208,0,0,31,224,63,192,0,0,15,240,63,192,0,0,11,240,127,64,0,0,7,248,255,0,0,0,3,252,254,0,0,0,2,253,253,0,0,0,1,255,252,0,0,0,0,255,248,0,0,0,0,191,244,0,0,0,0,63,240,0,0,0,0,63,224,0,0, + // 0x0057 W + 34,27,243,35,0,0,85,0,0,1,84,0,0,5,80,127,128,0,3,254,0,0,15,240,63,192,0,3,255,0,0,15,240,63,192,0,11,255,0,0,31,224,47,208,0,15,255,64,0,47,208,31,224,0,15,255,128,0,63,192,15,240,0,31,239,192,0,63,192,15,240,0,47,207,208,0,127,128,11,244,0,63,143,224,0,191,64,7,248,0,63,75,240,0,255,0,3,252,0,127,7,240,0,255,0,3,252,0,255,3,244,1,254,0,2,253,0,254,3,252,2,253,0,1,254,1,253,2,252,3,252,0,0,255,2,252,1,253,3,252,0,0,255,3,248,0,254,7,248,0,0,191,67,244,0,191,11,244,0,0,127,135,240,0,127,15,240,0,0,63,203,240,0,63,79,240,0,0,47,207,224,0,63,143,224,0,0,31,223,208,0,47,223,192,0,0,15,239,192,0,31,239,192,0,0,15,255,128,0,15,255,128,0,0,11,255,64,0,11,255,64,0,0,7,255,0,0,7,255,0,0,0,3,255,0,0,3,255,0,0,0,3,254,0,0,3,254,0,0, + // 0x0058 X + 22,27,162,23,0,0,21,64,0,0,5,80,47,224,0,0,63,192,15,244,0,0,191,128,7,252,0,0,255,0,3,254,0,3,253,0,0,255,0,7,248,0,0,191,128,15,240,0,0,63,208,47,208,0,0,15,240,127,128,0,0,11,248,255,0,0,0,3,254,253,0,0,0,1,255,252,0,0,0,0,191,240,0,0,0,0,127,240,0,0,0,0,255,244,0,0,0,2,255,252,0,0,0,3,254,254,0,0,0,15,240,255,64,0,0,31,224,127,192,0,0,63,192,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,3,254,0,11,248,0,0,255,0,31,240,0,0,191,192,63,208,0,0,63,208,191,128,0,0,31,240, + // 0x0059 Y + 21,27,162,22,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x005a Z + 19,27,135,21,1,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x005b [ + 9,33,99,12,3,250,85,85,0,255,255,64,255,255,64,255,170,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,254,0,0,255,255,64,255,255,64,255,255,0, + // 0x005c "\" + 14,27,108,14,0,0,85,0,0,0,127,64,0,0,63,128,0,0,47,192,0,0,15,208,0,0,15,240,0,0,7,240,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,254,0,0,0,191,0,0,0,63,64,0,0,63,192,0,0,31,192,0,0,15,224,0,0,11,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,255,0,0,0,191,0,0,0,63,128,0,0,63,192,0,0,31,208,0,0,15,224, + // 0x005d ] + 9,33,99,12,1,250,85,85,0,255,255,64,255,255,64,170,191,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,255,255,64,255,255,64,255,255,64, + // 0x005e ^ + 19,18,90,21,1,9,0,0,160,0,0,0,1,248,0,0,0,3,253,0,0,0,7,255,0,0,0,15,255,64,0,0,31,223,192,0,0,47,79,208,0,0,63,7,240,0,0,189,3,244,0,0,252,1,252,0,2,248,0,253,0,3,240,0,127,0,11,224,0,63,64,15,192,0,31,192,31,128,0,15,208,63,64,0,7,240,127,0,0,3,248,20,0,0,0,80, + // 0x005f _ + 16,3,12,16,0,250,170,170,170,170,255,255,255,255,170,170,170,170, + // 0x0060 ` + 8,7,14,11,2,22,85,0,255,128,127,192,31,240,7,248,0,253,0,41, + // 0x0061 a + 18,22,110,21,1,255,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0062 b + 18,29,145,23,3,255,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,7,255,208,0,255,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,64,0,31,224,255,128,0,63,208,255,192,0,127,192,255,244,1,255,128,255,255,255,255,0,253,63,255,252,0,252,11,255,224,0,0,0,20,0,0, + // 0x0063 c + 15,22,88,18,2,255,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x0064 d + 18,29,145,23,2,255,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,1,64,15,240,0,191,254,15,240,3,255,255,207,240,15,255,255,255,240,47,248,1,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,191,128,0,47,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,203,240,0,191,254,7,240,0,1,64,0,0, + // 0x0065 e + 18,22,110,21,2,255,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0066 f + 15,29,116,13,0,0,0,0,4,0,0,7,255,248,0,31,255,244,0,63,255,240,0,191,192,16,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,7,255,255,128,127,255,255,192,127,255,255,192,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0, + // 0x0067 g + 18,30,150,23,2,247,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x0068 h + 18,28,140,23,3,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,4,0,0,255,7,255,224,0,255,63,255,253,0,255,191,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x0069 i + 4,28,28,10,3,0,20,255,255,255,125,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006a j + 9,37,111,10,254,247,0,5,0,0,63,192,0,63,192,0,63,192,0,31,64,0,0,0,0,0,0,0,0,0,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,127,192,150,255,128,255,255,0,255,253,0,191,144,0, + // 0x006b k + 17,28,140,21,3,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,255,64,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,255,31,240,0,0,255,127,192,0,0,255,255,224,0,0,255,255,244,0,0,255,231,252,0,0,255,130,255,0,0,255,0,255,128,0,255,0,63,208,0,255,0,31,240,0,255,0,11,252,0,255,0,3,254,0,255,0,1,255,64,255,0,0,191,192, + // 0x006c l + 4,28,28,10,3,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 29,21,168,35,3,0,0,0,16,0,0,4,0,0,253,11,255,224,7,255,244,0,253,63,255,252,47,255,253,0,255,255,255,254,191,255,255,0,255,244,3,255,253,1,255,128,255,192,0,255,240,0,127,192,255,128,0,191,192,0,63,192,255,64,0,127,192,0,63,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192, + // 0x006e n + 18,21,105,23,3,0,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x006f o + 19,22,110,23,2,255,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0070 p + 18,30,150,23,3,247,0,0,20,0,0,253,11,255,224,0,254,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,64,0,47,224,255,128,0,63,208,255,208,0,127,192,255,244,2,255,128,255,255,255,255,0,255,63,255,252,0,255,11,255,224,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0071 q + 18,30,150,23,2,247,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,1,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,191,128,0,47,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240, + // 0x0072 r + 12,21,63,16,3,0,0,0,20,252,7,255,253,31,255,254,127,255,255,255,85,255,244,0,255,208,0,255,128,0,255,64,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0073 s + 15,22,88,18,2,255,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,85,0,0, + // 0x0074 t + 14,26,104,14,0,255,0,20,0,0,0,125,0,0,0,189,0,0,0,253,0,0,1,253,0,0,11,255,255,192,127,255,255,192,127,255,255,192,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,1,254,0,0,1,255,64,0,0,255,255,208,0,127,255,208,0,31,255,192,0,0,84,0, + // 0x0075 u + 17,21,105,23,3,255,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x0076 v + 20,20,100,19,0,0,255,64,0,3,253,127,128,0,3,252,63,192,0,11,248,47,208,0,15,240,31,224,0,31,240,15,240,0,47,208,11,244,0,63,192,3,252,0,127,128,3,252,0,191,64,1,253,0,255,0,0,255,1,253,0,0,191,3,252,0,0,127,131,248,0,0,63,199,244,0,0,47,203,240,0,0,15,223,224,0,0,15,255,192,0,0,7,255,192,0,0,3,255,64,0,0,2,255,0,0, + // 0x0077 w + 30,20,160,30,0,0,127,128,0,127,192,0,47,208,63,192,0,191,224,0,63,192,63,192,0,255,240,0,63,192,47,208,0,255,240,0,127,64,31,224,2,251,244,0,191,0,15,240,3,246,248,0,255,0,15,240,3,241,252,0,254,0,11,244,7,240,253,1,253,0,7,248,11,224,254,2,252,0,3,252,15,208,191,3,252,0,2,252,31,192,127,7,248,0,1,253,47,192,63,75,240,0,0,254,63,128,63,139,240,0,0,255,63,0,31,207,224,0,0,191,127,0,15,223,208,0,0,127,190,0,15,239,192,0,0,63,253,0,11,255,192,0,0,63,252,0,7,255,128,0,0,31,248,0,3,255,64,0,0,15,244,0,2,255,0,0, + // 0x0078 x + 18,20,100,20,1,0,255,128,0,31,240,63,208,0,63,192,31,240,0,255,128,15,248,1,255,0,3,253,3,252,0,1,255,15,244,0,0,191,159,240,0,0,63,255,192,0,0,31,255,64,0,0,11,254,0,0,0,15,255,0,0,0,47,255,128,0,0,127,255,208,0,0,255,79,240,0,2,254,11,248,0,7,252,3,253,0,15,244,0,255,0,47,224,0,191,192,127,192,0,63,224,255,64,0,15,240, + // 0x0079 y + 20,29,145,20,0,247,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x007a z + 16,20,80,18,1,0,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x007b { + 12,33,99,14,1,250,0,0,5,0,2,255,0,31,255,0,63,254,0,127,208,0,191,64,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,255,0,7,254,0,255,248,0,255,128,0,255,244,0,91,253,0,1,255,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,127,128,0,63,245,0,47,255,0,11,255,0,0,111, + // 0x007c | + 4,37,37,20,8,247,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126, + // 0x007d } + 13,33,132,14,1,250,80,0,0,0,191,144,0,0,191,244,0,0,191,252,0,0,3,254,0,0,0,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,127,208,0,0,31,255,64,0,1,255,64,0,11,255,64,0,63,245,0,0,191,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,254,0,0,1,254,0,0,27,253,0,0,191,252,0,0,191,224,0,0,185,0,0,0, + // 0x007e ~ + 18,6,30,21,2,10,6,164,0,0,0,127,255,144,0,208,255,255,254,175,208,249,111,255,255,192,192,0,191,255,64,0,0,5,164,0, + // 0x007f - 0x009a Control Characters + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00a0 "�" + 0,0,0,10,0,0, + // 0x00a1 ¡ + 6,27,54,10,2,249,47,128,127,208,127,224,127,208,47,128,0,0,0,0,0,0,31,64,31,128,31,128,47,128,47,128,47,128,47,192,47,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,208,42,128, + // 0x00a2 ¢ + 15,28,112,21,3,255,0,1,240,0,0,2,240,0,0,2,240,0,0,7,254,144,0,191,255,252,7,255,255,248,15,255,150,244,47,244,0,16,63,208,0,0,127,192,0,0,191,64,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,244,0,20,15,255,170,252,7,255,255,252,0,255,255,248,0,7,254,64,0,2,240,0,0,2,240,0,0,2,240,0,0,0,80,0, + // 0x00a3 £ + 19,27,135,21,1,0,0,0,106,164,0,0,7,255,255,224,0,31,255,255,240,0,63,250,175,208,0,191,128,1,128,0,255,0,0,0,0,255,0,0,0,0,254,0,0,0,0,254,0,0,0,0,254,0,0,0,0,254,0,0,0,0,254,0,0,0,107,255,170,168,0,191,255,255,252,0,191,255,255,252,0,1,255,0,0,0,0,254,0,0,0,0,254,0,0,0,0,254,0,0,0,0,254,0,0,0,1,254,0,0,0,3,252,0,0,0,11,244,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x00a4 ¤ + 17,17,85,21,2,4,44,0,64,15,0,191,111,254,127,128,63,255,255,255,0,15,254,175,252,0,11,240,2,252,0,15,192,0,253,0,31,64,0,126,0,47,64,0,63,0,47,64,0,63,0,31,128,0,126,0,15,192,0,253,0,11,240,3,252,0,15,255,191,252,0,63,255,255,255,0,191,31,253,63,128,44,0,0,14,0,0,0,0,0,0, + // 0x00a5 ¥ + 19,27,135,21,1,0,85,0,0,0,84,255,0,0,3,252,191,64,0,7,248,63,192,0,15,240,47,208,0,31,224,15,240,0,63,192,11,244,0,127,128,3,252,0,255,0,1,253,1,253,0,0,255,3,252,0,0,127,71,244,0,0,63,207,240,0,0,31,239,208,0,0,15,255,192,0,6,175,255,234,64,11,255,255,255,128,11,255,255,255,128,0,1,253,0,0,0,1,253,0,0,0,1,254,0,0,11,255,255,255,128,11,255,255,255,128,5,86,254,85,64,0,1,253,0,0,0,1,253,0,0,0,1,253,0,0,0,1,253,0,0, + // 0x00a6 ¦ + 4,37,37,20,8,247,126,126,126,126,126,126,126,126,126,126,126,126,126,126,0,0,0,0,0,0,0,0,41,126,126,126,126,126,126,126,126,126,126,126,126,126,126, + // 0x00a7 § + 15,30,120,19,2,255,0,1,64,0,2,255,255,128,15,255,255,240,63,233,175,224,127,64,0,128,127,0,0,0,127,64,0,0,63,208,0,0,31,254,0,0,7,255,224,0,11,255,254,0,47,214,255,192,63,0,47,240,126,0,7,240,190,0,3,244,127,0,3,244,63,192,3,240,47,248,11,240,11,255,255,192,0,191,255,0,0,11,255,192,0,0,127,240,0,0,11,240,0,0,3,244,0,0,3,244,224,0,15,240,255,170,191,224,255,255,255,128,47,255,248,0,0,0,0,0, + // 0x00a8 ¨ + 12,4,12,22,5,23,127,0,252,191,66,253,127,1,252,41,0,164, + // 0x00a9 © + 27,28,196,31,2,255,0,0,22,186,64,0,0,0,2,255,255,253,0,0,0,31,249,85,191,192,0,0,191,64,0,7,244,0,2,244,0,0,0,253,0,7,208,0,89,0,47,0,15,64,11,255,244,15,192,46,0,63,255,240,3,208,60,0,255,0,96,2,240,188,2,252,0,0,0,244,244,3,240,0,0,0,248,240,3,240,0,0,0,188,240,7,224,0,0,0,124,240,7,224,0,0,0,124,240,7,224,0,0,0,124,240,7,224,0,0,0,124,244,3,240,0,0,0,184,184,3,244,0,0,0,244,124,1,252,0,0,0,240,61,0,255,149,176,2,240,47,0,63,255,240,7,208,15,192,7,255,208,15,192,3,240,0,0,0,63,0,1,253,0,0,1,252,0,0,127,144,0,31,240,0,0,11,255,239,255,128,0,0,0,191,255,244,0,0,0,0,0,84,0,0,0, + // 0x00aa ª + 11,14,42,14,1,13,1,170,0,63,255,224,47,155,244,0,1,248,0,0,248,1,171,248,47,255,248,127,64,248,252,0,248,252,1,248,253,11,248,127,255,184,31,244,56,0,0,0, + // 0x00ab « + 17,17,85,20,1,1,0,5,0,5,0,0,15,192,31,192,0,63,192,63,192,0,255,64,255,0,2,253,3,253,0,11,248,11,248,0,31,240,31,224,0,63,192,127,192,0,127,192,191,128,0,47,224,47,224,0,11,244,15,244,0,3,253,3,252,0,0,255,0,255,0,0,127,192,127,128,0,31,208,47,192,0,10,0,10,0,0,0,0,0,0, + // 0x00ac ¬ + 18,11,55,21,2,4,170,170,170,170,128,255,255,255,255,208,255,255,255,255,208,85,85,85,95,208,0,0,0,11,208,0,0,0,11,208,0,0,0,11,208,0,0,0,11,208,0,0,0,11,208,0,0,0,11,208,0,0,0,1,64, + // 0x00ad ­ + 10,4,12,12,1,8,106,170,144,191,255,224,191,255,224,127,255,208, + // 0x00ae ® + 27,28,196,31,2,255,0,0,22,186,64,0,0,0,2,255,255,253,0,0,0,31,249,85,191,192,0,0,191,64,0,7,244,0,2,244,0,0,0,253,0,7,208,21,80,0,47,0,15,64,191,255,128,15,192,46,0,191,255,240,3,208,60,0,188,7,248,2,240,188,0,188,0,252,0,244,244,0,188,0,252,0,248,240,0,188,0,252,0,188,240,0,188,3,244,0,124,240,0,191,255,224,0,124,240,0,191,255,64,0,124,240,0,190,175,64,0,124,244,0,188,15,192,0,184,184,0,188,7,224,0,244,124,0,188,3,244,0,240,61,0,188,1,252,2,240,47,0,188,0,189,7,208,15,192,188,0,63,15,192,3,240,0,0,0,63,0,1,253,0,0,1,252,0,0,127,144,0,31,240,0,0,11,255,239,255,128,0,0,0,191,255,244,0,0,0,0,0,84,0,0,0, + // 0x00af ¯ + 19,3,15,19,0,28,255,255,255,255,248,255,255,255,255,248,255,255,255,255,248, + // 0x00b0 ° + 12,12,36,16,2,15,1,170,64,15,255,224,63,255,252,190,0,253,252,0,63,248,0,63,248,0,63,252,0,63,190,0,189,63,235,252,31,255,240,1,254,64, + // 0x00b1 ± + 18,23,115,21,2,0,0,1,80,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,1,80,0,0,0,0,0,0,0,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208, + // 0x00b2 ² + 11,17,51,13,1,15,1,101,0,31,255,192,191,255,240,125,7,244,16,2,248,0,2,248,0,3,244,0,7,240,0,15,192,0,63,64,0,253,0,7,244,0,31,208,0,127,64,0,255,255,248,255,255,248,170,170,164, + // 0x00b3 ³ + 11,17,51,13,1,15,1,101,0,47,255,192,255,255,240,120,3,244,0,2,248,0,2,244,0,3,240,10,191,192,15,255,64,6,175,240,0,2,248,0,0,252,0,0,252,128,2,252,254,175,244,255,255,224,27,254,0, + // 0x00b4 ´ + 9,7,21,11,1,22,0,85,64,1,255,64,3,253,0,11,248,0,31,208,0,63,64,0,104,0,0, + // 0x00b5 µ + 18,29,145,23,3,247,255,0,0,31,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,208,255,64,0,127,208,255,128,0,255,208,255,224,7,255,208,255,255,255,239,208,255,255,255,143,208,255,63,253,15,208,255,1,64,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x00b6 ¶ + 19,33,165,24,2,251,0,127,255,255,248,7,255,255,255,248,31,255,255,213,248,63,255,255,128,248,127,255,255,128,248,191,255,255,128,248,255,255,255,128,248,255,255,255,128,248,255,255,255,128,248,255,255,255,128,248,255,255,255,128,248,255,255,255,128,248,191,255,255,128,248,127,255,255,128,248,63,255,255,128,248,31,255,255,128,248,11,255,255,128,248,1,191,255,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,15,128,248,0,0,10,64,164, + // 0x00b7 · + 6,6,12,10,2,10,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x00b8 ¸ + 8,9,18,8,0,247,7,192,15,192,31,244,6,253,0,190,0,126,86,253,255,248,191,144, + // 0x00b9 ¹ + 9,16,48,13,1,15,0,191,64,3,255,64,31,255,64,127,111,64,44,47,64,0,47,64,0,63,64,0,63,64,0,63,64,0,63,64,0,63,64,0,63,64,0,63,64,0,63,64,0,63,64,0,26,0, + // 0x00ba º + 12,14,42,14,1,13,0,170,0,11,255,224,47,235,248,126,0,189,188,0,62,252,0,63,252,0,63,252,0,63,188,0,62,125,0,125,63,150,252,15,255,240,2,255,128,0,0,0, + // 0x00bb » + 18,17,85,20,1,1,5,0,5,0,0,63,64,63,0,0,63,192,63,192,0,15,240,31,240,0,7,252,7,248,0,2,254,2,253,0,0,191,64,255,64,0,63,208,63,192,0,47,208,63,208,0,191,128,191,128,1,255,1,254,0,3,252,7,252,0,15,240,15,240,0,63,208,63,192,0,127,128,127,64,0,10,0,10,0,0,0,0,0,0,0, + // 0x00bc ¼ + 27,27,189,28,1,0,0,21,0,0,0,84,0,1,255,0,0,3,244,0,11,255,0,0,7,240,0,63,255,0,0,15,192,0,191,63,0,0,47,128,0,56,63,0,0,63,0,0,0,63,0,0,253,0,0,0,63,0,1,252,0,0,0,63,0,3,240,0,0,0,63,0,11,224,0,0,0,63,0,15,192,0,0,0,63,0,63,64,47,192,0,63,0,127,0,127,192,0,63,0,252,0,255,192,0,63,2,248,2,255,192,0,63,3,240,7,223,192,0,21,15,208,15,159,192,0,0,31,192,47,31,192,0,0,63,64,124,31,192,0,0,190,0,248,31,192,0,0,252,2,240,31,192,0,2,244,7,255,255,252,0,7,240,7,255,255,252,0,15,208,6,170,191,232,0,47,128,0,0,31,192,0,63,0,0,0,31,192,0,190,0,0,0,31,192, + // 0x00bd ½ + 27,27,189,30,1,0,0,21,0,0,1,80,0,1,254,0,0,11,224,0,11,254,0,0,15,192,0,127,254,0,0,63,64,0,254,126,0,0,127,0,0,116,126,0,0,252,0,0,0,126,0,2,248,0,0,0,126,0,3,240,0,0,0,126,0,15,208,0,0,0,126,0,31,192,0,0,0,126,0,63,0,0,0,0,126,0,190,7,255,128,0,126,0,252,63,255,240,0,126,3,244,63,155,248,0,126,7,240,24,1,252,0,126,15,208,0,0,252,0,21,47,128,0,1,252,0,0,63,0,0,2,244,0,0,189,0,0,7,240,0,1,252,0,0,31,192,0,3,244,0,0,127,0,0,11,224,0,1,252,0,0,15,192,0,7,240,0,0,47,128,0,31,192,0,0,127,0,0,127,234,168,0,253,0,0,191,255,252,1,248,0,0,191,255,252, + // 0x00be ¾ + 29,27,216,30,1,0,6,169,0,0,0,21,0,0,127,255,208,0,0,127,0,0,255,175,240,0,0,253,0,0,52,3,248,0,2,248,0,0,0,1,248,0,3,240,0,0,0,2,244,0,11,224,0,0,0,7,240,0,31,192,0,0,11,255,192,0,63,64,0,0,11,255,128,0,190,0,0,0,5,91,244,0,252,0,0,0,0,1,252,2,248,0,0,0,0,0,252,7,240,7,240,0,0,0,252,15,208,15,240,0,208,2,252,31,192,63,240,0,255,191,244,63,0,191,240,0,255,255,208,190,0,247,240,0,22,169,1,252,3,227,240,0,0,0,3,244,11,195,240,0,0,0,7,240,31,67,240,0,0,0,15,192,62,3,240,0,0,0,47,128,188,3,240,0,0,0,63,0,255,255,255,0,0,0,253,1,255,255,255,64,0,1,252,0,170,171,250,0,0,3,244,0,0,3,240,0,0,11,224,0,0,3,240,0,0,15,192,0,0,3,240,0, + // 0x00bf ¿ + 15,28,112,17,1,248,0,3,244,0,0,15,252,0,0,15,252,0,0,15,252,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,244,0,0,3,244,0,0,3,244,0,0,11,240,0,0,31,224,0,0,191,192,0,2,255,0,0,15,252,0,0,47,240,0,0,127,192,0,0,255,0,0,0,255,0,0,0,254,0,0,0,255,0,0,0,255,64,0,96,127,229,91,244,63,255,255,252,11,255,255,244,1,191,254,64,0,0,0,0, + // 0x00c0 À + 24,35,210,24,0,0,0,1,84,0,0,0,0,3,255,0,0,0,0,0,255,64,0,0,0,0,63,192,0,0,0,0,15,240,0,0,0,0,3,248,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c1 Á + 24,35,210,24,0,0,0,0,0,5,80,0,0,0,0,63,240,0,0,0,0,127,192,0,0,0,0,255,0,0,0,0,3,252,0,0,0,0,11,224,0,0,0,0,10,64,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c2  + 24,35,210,24,0,0,0,0,5,80,0,0,0,0,47,248,0,0,0,0,127,253,0,0,0,1,254,191,64,0,0,3,248,47,192,0,0,15,208,7,240,0,0,26,0,0,164,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c3 à + 24,34,204,24,0,0,0,0,80,0,20,0,0,3,255,64,124,0,0,15,255,245,248,0,0,31,175,255,240,0,0,46,1,255,208,0,0,40,0,25,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c4 Ä + 24,33,198,24,0,0,0,3,240,15,192,0,0,7,244,31,224,0,0,7,244,15,208,0,0,1,160,6,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c5 Å + 24,33,198,24,0,0,0,0,1,64,0,0,0,0,47,248,0,0,0,0,190,190,0,0,0,0,244,31,0,0,0,0,240,15,0,0,0,0,244,31,0,0,0,0,191,255,0,0,0,0,63,252,0,0,0,0,63,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x00c6 Æ + 31,27,216,33,0,0,0,0,0,85,85,85,85,84,0,0,0,255,255,255,255,252,0,0,2,255,255,255,255,252,0,0,3,255,255,255,255,252,0,0,11,244,127,192,0,0,0,0,15,240,63,192,0,0,0,0,31,208,63,192,0,0,0,0,63,192,63,192,0,0,0,0,127,128,63,192,0,0,0,0,255,0,63,192,0,0,0,1,254,0,63,192,0,0,0,3,252,0,63,213,85,80,0,7,248,0,63,255,255,244,0,11,244,0,63,255,255,244,0,15,240,0,63,255,255,244,0,47,208,0,127,192,0,0,0,63,255,255,255,192,0,0,0,191,255,255,255,192,0,0,0,255,255,255,255,192,0,0,2,254,85,85,191,192,0,0,3,252,0,0,63,192,0,0,7,248,0,0,63,192,0,0,15,240,0,0,63,192,0,0,31,224,0,0,63,213,85,84,63,192,0,0,63,255,255,252,127,192,0,0,63,255,255,252,255,64,0,0,63,255,255,252, + // 0x00c7 Ç + 20,36,180,23,2,247,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,11,212,0,0,0,15,128,0,0,0,31,244,0,0,0,6,252,0,0,0,0,190,0,0,0,0,190,0,0,0,150,253,0,0,0,255,248,0,0,0,191,144,0, + // 0x00c8 È + 16,35,140,21,3,0,1,84,0,0,2,255,0,0,0,255,128,0,0,63,208,0,0,15,240,0,0,2,248,0,0,0,104,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x00c9 É + 16,35,140,21,3,0,0,0,5,80,0,0,47,240,0,0,127,192,0,0,255,0,0,2,252,0,0,7,240,0,0,10,128,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x00ca Ê + 16,35,140,21,3,0,0,5,80,0,0,31,252,0,0,127,254,0,0,255,191,128,3,252,31,208,15,224,7,244,26,64,0,168,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x00cb Ë + 16,33,132,21,3,0,3,244,15,208,3,248,15,224,3,248,15,224,1,160,6,128,0,0,0,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x00cc Ì + 11,35,105,13,1,0,85,64,0,127,192,0,47,240,0,11,248,0,2,253,0,0,127,0,0,26,64,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x00cd Í + 12,35,105,13,1,0,0,1,85,0,7,253,0,15,244,0,47,208,0,127,64,0,253,0,1,160,0,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x00ce Î + 13,35,140,13,0,0,0,21,64,0,0,255,192,0,3,255,240,0,11,251,252,0,47,192,254,0,191,0,63,128,164,0,6,128,0,0,0,0,21,85,85,0,47,255,254,0,47,255,254,0,2,255,224,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,191,128,0,11,255,249,0,47,255,254,0,47,255,254,0, + // 0x00cf Ï + 11,33,99,13,1,0,190,1,248,255,3,252,255,2,252,40,0,160,0,0,0,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x00d0 Ð + 24,27,162,27,1,0,1,85,85,64,0,0,7,255,255,255,64,0,7,255,255,255,244,0,7,255,255,255,254,0,7,248,0,27,255,192,7,248,0,0,191,224,7,248,0,0,47,244,7,248,0,0,15,252,7,248,0,0,7,252,7,248,0,0,3,253,7,248,0,0,2,254,7,248,0,0,1,255,191,255,255,64,1,255,255,255,255,128,1,255,255,255,255,128,1,255,171,254,170,64,1,255,7,248,0,0,2,254,7,248,0,0,3,253,7,248,0,0,3,252,7,248,0,0,11,252,7,248,0,0,31,244,7,248,0,0,127,240,7,248,0,2,255,192,7,253,85,191,255,64,7,255,255,255,252,0,7,255,255,255,208,0,7,255,255,228,0,0, + // 0x00d1 Ñ + 22,34,204,29,3,0,0,0,80,0,80,0,0,11,253,0,240,0,0,47,255,215,240,0,0,63,175,255,208,0,0,124,2,255,128,0,0,100,0,25,0,0,0,0,0,0,0,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x00d2 Ò + 25,36,252,29,2,255,0,1,85,0,0,0,0,0,1,255,0,0,0,0,0,0,191,192,0,0,0,0,0,47,224,0,0,0,0,0,11,244,0,0,0,0,0,1,252,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x00d3 Ó + 25,36,252,29,2,255,0,0,0,5,84,0,0,0,0,0,31,244,0,0,0,0,0,63,208,0,0,0,0,0,191,64,0,0,0,0,1,253,0,0,0,0,0,3,244,0,0,0,0,0,6,128,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x00d4 Ô + 25,36,252,29,2,255,0,0,5,80,0,0,0,0,0,15,252,0,0,0,0,0,63,255,0,0,0,0,0,255,191,192,0,0,0,2,252,31,224,0,0,0,11,240,3,248,0,0,0,10,64,0,104,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x00d5 Õ + 25,35,245,29,2,255,0,0,20,0,20,0,0,0,2,255,128,61,0,0,0,7,255,249,188,0,0,0,15,235,255,248,0,0,0,31,0,191,240,0,0,0,9,0,6,64,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x00d6 Ö + 25,34,238,29,2,255,0,2,248,7,224,0,0,0,3,252,15,240,0,0,0,3,252,11,240,0,0,0,0,160,2,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x00d7 × + 16,17,68,21,3,4,116,0,0,52,253,0,0,253,255,64,3,252,63,208,15,240,15,244,63,192,3,253,255,0,0,255,252,0,0,63,240,0,0,63,244,0,0,255,253,0,3,253,255,64,15,240,63,208,63,192,15,240,255,0,3,252,252,0,0,252,48,0,0,48,0,0,0,0, + // 0x00d8 Ø + 25,30,210,29,2,254,0,0,0,0,0,64,0,0,0,107,250,64,244,0,0,11,255,255,251,252,0,0,127,255,255,255,240,0,1,255,254,175,255,224,0,3,255,128,0,191,240,0,15,252,0,0,191,252,0,31,244,0,0,255,253,0,63,224,0,3,250,255,0,63,208,0,11,240,255,0,127,192,0,31,192,255,64,191,128,0,63,128,191,128,191,128,0,191,0,191,128,191,128,1,252,0,127,128,255,64,3,244,0,127,192,191,64,15,224,0,127,192,191,128,47,192,0,127,128,191,128,63,64,0,191,128,127,192,254,0,0,255,64,63,194,252,0,0,255,64,63,215,244,0,1,255,0,47,255,224,0,3,254,0,15,255,192,0,11,252,0,11,255,64,0,47,248,0,3,255,228,2,255,240,0,2,255,255,255,255,192,0,7,255,255,255,254,0,0,15,210,255,255,224,0,0,3,128,1,84,0,0,0,0,0,0,0,0,0,0, + // 0x00d9 Ù + 21,36,216,27,3,255,0,5,80,0,0,0,0,31,244,0,0,0,0,7,252,0,0,0,0,1,254,0,0,0,0,0,127,64,0,0,0,0,31,192,0,0,0,0,2,144,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x00da Ú + 21,36,216,27,3,255,0,0,0,85,64,0,0,0,1,255,64,0,0,0,3,254,0,0,0,0,11,248,0,0,0,0,31,224,0,0,0,0,63,64,0,0,0,0,105,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x00db Û + 21,36,216,27,3,255,0,0,21,64,0,0,0,0,255,208,0,0,0,3,255,240,0,0,0,11,251,252,0,0,0,47,208,255,0,0,0,127,0,47,128,0,0,168,0,6,128,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x00dc Ü + 21,34,204,27,3,255,0,31,128,126,0,0,0,63,192,191,0,0,0,47,192,191,0,0,0,10,64,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x00dd Ý + 21,35,210,22,0,0,0,0,0,85,64,0,0,0,0,255,128,0,0,0,3,254,0,0,0,0,7,248,0,0,0,0,15,224,0,0,0,0,63,128,0,0,0,0,41,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x00de Þ + 18,27,135,23,3,0,21,0,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,255,254,64,0,127,255,255,248,0,127,255,255,255,0,127,149,111,255,128,127,128,0,255,192,127,128,0,63,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,63,208,127,128,0,127,192,127,128,7,255,128,127,255,255,255,0,127,255,255,248,0,127,255,255,144,0,127,149,80,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x00df ß + 20,30,150,24,3,255,0,0,80,0,0,0,191,255,224,0,11,255,255,253,0,47,255,255,255,64,127,224,1,255,192,191,128,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,128,255,0,1,255,0,255,0,11,252,0,255,0,47,240,0,255,0,127,192,0,255,0,191,0,0,255,0,191,64,0,255,0,191,208,0,255,0,63,248,0,255,0,15,255,0,255,0,2,255,208,255,0,0,127,244,255,0,0,15,252,255,0,0,3,253,255,0,0,1,254,255,0,0,1,254,255,0,0,1,254,255,3,64,3,253,255,3,254,191,252,255,3,255,255,240,255,1,255,255,128,0,0,5,80,0, + // 0x00e0 à + 18,30,150,21,1,255,0,85,64,0,0,0,127,208,0,0,0,31,240,0,0,0,7,248,0,0,0,1,253,0,0,0,0,127,0,0,0,0,10,64,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e1 á + 18,30,150,21,1,255,0,0,1,85,0,0,0,7,253,0,0,0,15,244,0,0,0,47,224,0,0,0,127,64,0,0,0,253,0,0,0,1,160,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e2 â + 18,30,150,21,1,255,0,0,85,0,0,0,3,255,64,0,0,15,255,192,0,0,47,239,240,0,0,191,67,252,0,1,252,0,254,0,2,160,0,26,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e3 ã + 18,29,145,21,1,255,0,5,0,1,64,0,127,224,15,128,1,255,254,111,0,3,250,255,255,0,3,192,47,252,0,2,128,1,144,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e4 ä + 18,28,140,21,1,255,0,126,1,248,0,0,255,2,252,0,0,191,2,252,0,0,40,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e5 å + 18,32,160,21,1,255,0,0,84,0,0,0,7,255,64,0,0,15,239,208,0,0,31,3,224,0,0,46,1,240,0,0,31,2,224,0,0,15,155,208,0,0,7,255,128,0,0,0,100,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x00e6 æ + 30,22,176,33,1,255,0,0,16,0,0,20,0,0,0,127,255,208,11,255,208,0,7,255,255,248,127,255,248,0,3,255,255,254,255,239,255,0,2,208,1,255,252,0,255,64,0,0,0,127,240,0,63,192,0,0,0,63,224,0,47,208,0,0,0,63,192,0,31,224,0,0,0,63,192,0,31,224,0,27,255,255,255,255,255,224,2,255,255,255,255,255,255,240,15,255,165,127,255,255,255,224,47,244,0,63,192,0,0,0,63,192,0,63,192,0,0,0,127,192,0,63,208,0,0,0,127,128,0,191,224,0,0,0,63,192,0,255,244,0,0,0,63,224,7,251,254,0,6,192,47,254,191,225,255,255,255,192,15,255,255,128,127,255,255,192,2,255,253,0,11,255,254,0,0,5,64,0,0,21,0,0, + // 0x00e7 ç + 15,30,120,18,2,247,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,3,244,0,0,3,224,0,0,11,252,0,0,1,255,0,0,0,63,64,0,0,63,64,0,37,191,0,0,63,253,0,0,63,224,0, + // 0x00e8 è + 18,30,150,21,2,255,0,85,0,0,0,1,255,64,0,0,0,127,192,0,0,0,31,224,0,0,0,7,244,0,0,0,1,252,0,0,0,0,41,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x00e9 é + 18,30,150,21,2,255,0,0,5,84,0,0,0,31,244,0,0,0,63,224,0,0,0,191,128,0,0,1,254,0,0,0,3,244,0,0,0,6,144,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x00ea ê + 18,30,150,21,2,255,0,1,84,0,0,0,15,253,0,0,0,63,255,0,0,0,191,191,192,0,2,253,15,240,0,7,240,2,248,0,10,128,0,104,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x00eb ë + 18,28,140,21,2,255,1,248,7,224,0,3,252,11,240,0,2,252,11,240,0,0,164,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x00ec ì + 8,29,58,10,0,0,85,0,255,128,63,208,15,240,3,248,0,253,0,42,0,0,0,0,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252, + // 0x00ed í + 8,29,58,10,3,0,0,85,3,255,11,252,15,240,63,192,190,0,164,0,0,0,0,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x00ee î + 14,29,116,10,254,0,0,21,64,0,0,191,224,0,1,255,244,0,7,250,253,0,15,224,191,0,63,64,31,192,104,0,2,144,0,0,0,0,0,0,0,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x00ef ï + 12,27,81,10,255,0,63,0,252,127,65,253,127,64,253,25,0,104,0,0,0,0,0,0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x00f0 ð + 19,29,145,23,2,255,0,30,0,29,0,0,63,208,191,0,0,47,255,254,0,0,7,255,240,0,0,3,255,208,0,0,47,255,240,0,0,255,199,252,0,0,125,1,254,0,0,16,0,191,64,0,0,0,63,192,0,6,165,31,208,0,255,255,223,224,7,255,255,255,240,31,254,91,255,240,63,224,0,127,244,127,192,0,31,248,191,64,0,15,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,244,255,0,0,11,240,191,128,0,15,240,63,192,0,47,224,47,244,0,191,192,15,255,239,255,64,2,255,255,252,0,0,111,255,224,0,0,0,84,0,0, + // 0x00f1 ñ + 18,28,140,23,3,0,0,20,0,5,0,1,255,128,62,0,7,255,249,188,0,15,235,255,252,0,15,0,191,240,0,10,0,6,64,0,0,0,0,0,0,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x00f2 ò + 19,30,150,23,2,255,0,85,0,0,0,0,191,192,0,0,0,63,224,0,0,0,15,244,0,0,0,2,252,0,0,0,0,190,0,0,0,0,26,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x00f3 ó + 19,30,150,23,2,255,0,0,1,84,0,0,0,11,252,0,0,0,31,240,0,0,0,63,192,0,0,0,191,0,0,0,1,252,0,0,0,1,160,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x00f4 ô + 19,30,150,23,2,255,0,1,84,0,0,0,7,255,0,0,0,15,255,128,0,0,63,239,224,0,0,255,7,244,0,3,248,1,253,0,2,144,0,42,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x00f5 õ + 19,29,145,23,2,255,0,5,0,5,0,0,255,208,15,0,2,255,253,127,0,3,251,255,253,0,11,192,63,248,0,6,64,1,64,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x00f6 ö + 19,28,140,23,2,255,0,253,2,244,0,0,254,3,248,0,0,254,3,248,0,0,104,1,160,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x00f7 ÷ + 18,18,90,21,2,4,0,1,144,0,0,0,7,244,0,0,0,11,248,0,0,0,11,248,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,128,255,255,255,255,208,255,255,255,255,208,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,3,240,0,0,0,11,248,0,0,0,11,248,0,0,0,7,244,0,0,0,1,144,0,0, + // 0x00f8 ø + 19,23,115,23,2,254,0,0,16,3,0,0,47,255,219,208,2,255,255,255,192,11,255,255,255,64,31,248,1,255,192,63,208,1,255,208,127,192,3,255,240,191,64,15,239,240,255,0,47,203,244,255,0,127,11,248,255,0,253,7,248,255,2,252,7,248,255,7,240,7,248,255,15,208,11,244,191,127,128,15,240,127,255,0,31,240,63,253,0,63,224,31,252,1,255,192,15,255,255,255,0,31,255,255,252,0,63,175,255,208,0,14,0,84,0,0,0,0,0,0,0, + // 0x00f9 ù + 17,30,150,23,3,255,0,85,0,0,0,1,255,64,0,0,0,127,192,0,0,0,31,224,0,0,0,7,244,0,0,0,1,252,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x00fa ú + 17,30,150,23,3,255,0,0,5,84,0,0,0,31,244,0,0,0,63,224,0,0,0,191,128,0,0,1,254,0,0,0,3,244,0,0,0,6,144,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x00fb û + 17,30,150,23,3,255,0,1,84,0,0,0,15,253,0,0,0,63,255,0,0,0,191,191,192,0,2,253,15,240,0,7,240,3,248,0,10,128,0,104,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x00fc ü + 17,28,140,23,3,255,1,248,7,224,0,3,252,11,240,0,2,252,11,240,0,0,160,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x00fd ý + 20,38,190,20,0,247,0,0,1,85,0,0,0,3,254,0,0,0,15,248,0,0,0,31,224,0,0,0,63,128,0,0,0,254,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x00fe þ + 18,37,185,23,3,247,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,20,0,0,255,7,255,224,0,255,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,64,0,31,224,255,128,0,63,208,255,208,0,127,192,255,244,1,255,128,255,255,255,255,0,255,63,255,252,0,255,11,255,224,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x00ff ÿ + 20,36,180,20,0,247,0,127,1,252,0,0,191,2,252,0,0,191,2,252,0,0,41,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_ASCII_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_ASCII_27.cpp new file mode 100644 index 000000000000..384408c9d32a --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_ASCII_27.cpp @@ -0,0 +1,222 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium ASCII 37pt, capital 'A' height: 27px, width: 100%, range: 0x0020-0x007e +extern const uint8_t NotoSans_Medium_ASCII_27[11627] = { + 130,27,32,0,126,0,35,247, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 6,28,56,10,2,255,21,64,63,208,63,208,63,208,63,192,63,192,63,192,63,192,63,192,63,192,47,192,47,192,47,192,47,192,47,128,31,128,31,128,31,128,31,128,0,0,0,0,0,0,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x0022 " + 12,11,33,16,2,16,21,0,84,191,65,253,127,1,252,127,1,252,127,1,252,63,0,252,63,0,252,63,0,252,62,0,252,62,0,248,0,0,0, + // 0x0023 # + 22,27,162,24,1,0,0,0,84,0,84,0,0,0,252,1,248,0,0,1,248,1,248,0,0,2,248,2,244,0,0,2,244,3,240,0,0,3,240,3,240,0,0,3,240,3,224,0,0,7,240,7,224,0,42,175,250,175,250,160,63,255,255,255,255,240,63,255,255,255,255,240,0,15,192,31,192,0,0,15,192,31,128,0,0,31,128,47,64,0,0,47,64,63,0,0,0,63,0,63,0,0,85,127,85,191,85,64,255,255,255,255,255,128,255,255,255,255,255,128,85,254,85,253,85,64,0,252,0,252,0,0,0,252,0,252,0,0,0,252,1,248,0,0,1,248,2,244,0,0,1,244,3,244,0,0,2,244,3,240,0,0,3,240,3,240,0,0, + // 0x0024 $ + 17,31,155,21,2,253,0,2,240,0,0,0,2,240,0,0,0,2,240,0,0,0,111,255,164,0,7,255,255,255,64,47,255,255,255,0,127,251,246,191,0,191,130,240,5,0,255,2,240,0,0,255,2,240,0,0,255,66,240,0,0,127,210,240,0,0,63,255,240,0,0,15,255,249,0,0,2,255,255,208,0,0,31,255,252,0,0,2,255,255,0,0,2,242,255,192,0,2,240,63,192,0,2,240,47,192,0,2,240,47,192,64,2,240,63,192,254,66,246,255,128,255,255,255,255,0,255,255,255,248,0,27,255,255,128,0,0,6,240,0,0,0,2,240,0,0,0,2,240,0,0,0,2,240,0,0,0,0,0,0,0, + // 0x0025 % + 29,28,224,32,1,255,0,170,64,0,0,85,0,0,7,255,224,0,0,252,0,0,15,255,248,0,2,248,0,0,47,193,252,0,3,240,0,0,63,64,254,0,15,224,0,0,63,0,126,0,31,192,0,0,127,0,127,0,63,64,0,0,127,0,63,0,127,0,0,0,127,0,63,0,253,0,0,0,127,0,63,2,252,0,0,0,127,0,127,3,240,0,0,0,63,0,127,11,224,191,224,0,63,64,254,15,195,255,252,0,31,193,252,47,135,250,254,0,15,255,248,127,15,224,127,0,3,255,240,253,15,192,63,64,0,110,65,252,31,192,47,128,0,0,3,244,31,192,31,192,0,0,11,240,47,128,31,192,0,0,15,192,47,128,31,192,0,0,47,128,31,192,31,192,0,0,63,0,31,192,47,128,0,0,190,0,15,192,63,128,0,1,252,0,15,208,63,0,0,3,244,0,7,249,255,0,0,7,240,0,3,255,252,0,0,15,208,0,0,191,244,0,0,0,0,0,0,5,0,0, + // 0x0026 & + 25,28,196,27,2,255,0,6,250,64,0,0,0,0,127,255,240,0,0,0,2,255,255,252,0,0,0,3,254,91,254,0,0,0,11,248,1,255,0,0,0,11,240,0,255,0,0,0,11,240,0,255,0,0,0,11,240,0,255,0,0,0,7,248,2,253,0,0,0,3,253,11,252,0,0,0,0,255,191,240,0,0,0,0,127,255,128,0,0,0,0,63,253,0,0,0,0,2,255,253,0,0,169,0,11,255,255,64,2,253,0,47,248,191,208,3,252,0,127,208,47,244,3,252,0,255,128,11,253,11,244,0,255,0,2,255,79,240,0,255,0,0,191,255,208,0,255,0,0,47,255,128,0,255,64,0,11,255,0,0,255,192,0,31,255,128,0,127,244,1,255,255,224,0,47,255,255,255,175,248,0,11,255,255,253,7,254,0,1,191,255,208,1,255,128,0,1,80,0,0,0,0, + // 0x0027 ' + 5,11,22,9,2,16,21,0,191,64,127,0,127,0,127,0,63,0,63,0,63,0,62,0,62,0,0,0, + // 0x0028 ( + 9,33,99,12,1,250,0,5,64,0,63,192,0,127,0,0,254,0,2,252,0,3,248,0,11,240,0,15,240,0,31,208,0,47,192,0,63,192,0,63,128,0,63,128,0,127,64,0,127,64,0,127,64,0,191,0,0,127,0,0,127,64,0,127,64,0,127,64,0,63,128,0,63,192,0,47,192,0,31,208,0,15,224,0,15,240,0,7,244,0,3,252,0,1,253,0,0,255,0,0,63,64,0,31,192, + // 0x0029 ) + 9,33,99,12,1,250,85,0,0,127,64,0,47,192,0,15,224,0,11,240,0,3,248,0,2,252,0,1,253,0,0,255,0,0,191,0,0,127,64,0,63,128,0,63,128,0,63,192,0,63,192,0,63,192,0,47,192,0,47,192,0,63,192,0,63,192,0,63,192,0,63,128,0,127,64,0,191,64,0,255,0,0,254,0,1,253,0,3,252,0,7,244,0,15,240,0,31,208,0,63,128,0,127,0,0, + // 0x002a * + 18,17,85,20,1,11,0,3,252,0,0,0,2,252,0,0,0,2,252,0,0,0,1,248,0,0,0,1,248,0,0,57,1,244,6,208,127,249,249,255,224,127,255,255,255,224,111,255,255,255,160,0,7,254,0,0,0,15,255,64,0,0,63,159,192,0,0,191,15,224,0,1,254,7,248,0,3,253,3,252,0,1,252,2,244,0,0,20,0,64,0, + // 0x002b + + 18,18,90,21,2,4,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,170,171,250,170,128,255,255,255,255,208,255,255,255,255,208,85,87,245,85,64,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0, + // 0x002c , + 7,10,20,10,1,251,1,80,15,244,15,240,15,224,31,208,47,192,63,128,63,0,127,0,125,0, + // 0x002d - + 10,4,12,12,1,8,106,170,144,191,255,224,191,255,224,127,255,208, + // 0x002e . + 6,6,12,10,2,255,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x002f / + 14,27,108,14,0,0,0,0,5,80,0,0,15,224,0,0,47,192,0,0,63,192,0,0,127,64,0,0,191,0,0,0,254,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,240,0,0,15,240,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,64,0,0,255,0,0,0,254,0,0,2,252,0,0,3,252,0,0,7,244,0,0,11,240,0,0,15,224,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,0,0,0, + // 0x0030 0 + 19,28,140,21,1,255,0,6,250,64,0,0,127,255,240,0,1,255,255,253,0,3,255,171,255,0,11,252,0,191,128,15,240,0,63,192,31,224,0,31,208,47,192,0,15,240,63,192,0,15,240,63,192,0,11,240,63,128,0,11,244,127,128,0,11,244,127,128,0,7,244,127,128,0,7,244,127,128,0,7,244,127,128,0,11,244,63,128,0,11,244,63,192,0,11,244,63,192,0,15,240,63,192,0,15,240,31,208,0,31,224,15,224,0,47,208,15,244,0,63,192,7,253,1,255,128,2,255,255,255,0,0,191,255,252,0,0,31,255,224,0,0,0,84,0,0, + // 0x0031 1 + 11,27,81,21,3,0,0,1,84,0,11,252,0,63,252,1,255,252,7,255,252,47,247,252,255,195,252,127,3,252,24,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252, + // 0x0032 2 + 19,27,135,21,1,0,0,6,186,64,0,0,255,255,244,0,11,255,255,254,0,63,255,171,255,64,31,208,0,255,192,11,0,0,63,192,0,0,0,47,208,0,0,0,47,208,0,0,0,47,208,0,0,0,63,192,0,0,0,63,192,0,0,0,191,64,0,0,1,255,0,0,0,3,252,0,0,0,15,244,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,244,0,0,0,63,245,85,85,80,127,255,255,255,244,127,255,255,255,244,127,255,255,255,244, + // 0x0033 3 + 18,28,140,21,1,255,0,26,186,64,0,2,255,255,248,0,47,255,255,254,0,63,254,171,255,128,15,128,0,191,192,4,0,0,63,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,192,0,0,0,63,192,0,0,0,255,64,0,21,91,253,0,0,127,255,224,0,0,127,255,144,0,0,127,255,254,0,0,0,6,255,192,0,0,0,63,224,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,31,240,0,0,0,63,224,126,64,1,255,192,127,255,255,255,64,127,255,255,253,0,27,255,255,208,0,0,5,80,0,0, + // 0x0034 4 + 21,27,162,21,0,0,0,0,0,42,64,0,0,0,0,255,192,0,0,0,2,255,192,0,0,0,3,255,192,0,0,0,15,255,192,0,0,0,47,191,192,0,0,0,127,63,192,0,0,0,254,63,192,0,0,2,252,63,192,0,0,7,240,63,192,0,0,15,208,63,192,0,0,47,192,63,192,0,0,127,0,63,192,0,0,253,0,63,192,0,3,248,0,63,192,0,11,240,0,63,192,0,15,208,0,63,192,0,63,192,0,63,192,0,127,255,255,255,255,64,127,255,255,255,255,64,127,255,255,255,255,64,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0, + // 0x0035 5 + 17,28,140,21,2,255,5,85,85,84,0,31,255,255,253,0,31,255,255,253,0,31,255,255,253,0,47,192,0,0,0,47,192,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,128,0,0,0,63,133,80,0,0,63,255,255,128,0,63,255,255,248,0,63,255,255,254,0,4,0,7,255,0,0,0,0,255,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,64,0,0,255,64,249,0,11,255,0,255,255,255,252,0,255,255,255,224,0,31,255,254,64,0,0,21,64,0,0, + // 0x0036 6 + 18,28,140,21,2,255,0,0,106,169,0,0,11,255,254,0,0,127,255,254,0,2,255,249,89,0,7,254,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,127,128,0,0,0,191,0,0,0,0,191,1,170,64,0,255,31,255,244,0,254,127,255,254,0,255,254,91,255,64,255,224,0,191,192,255,128,0,63,192,255,0,0,47,208,255,0,0,31,224,255,0,0,31,224,255,0,0,31,208,191,64,0,47,208,127,128,0,63,192,63,208,0,127,192,31,248,2,255,64,11,255,255,254,0,2,255,255,248,0,0,47,255,208,0,0,0,84,0,0, + // 0x0037 7 + 19,27,135,21,1,0,21,85,85,85,80,191,255,255,255,248,191,255,255,255,248,191,255,255,255,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,11,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,127,128,0,0,0,255,64,0,0,1,255,0,0,0,3,253,0,0,0,3,252,0,0,0,11,244,0,0,0,15,240,0,0,0,47,224,0,0,0,63,192,0,0,0,191,128,0,0,0,255,64,0,0, + // 0x0038 8 + 19,28,140,21,1,255,0,6,186,64,0,0,191,255,248,0,3,255,255,255,0,11,254,86,255,192,15,240,0,63,208,31,224,0,31,224,31,208,0,15,224,31,208,0,31,224,15,224,0,47,208,15,244,0,127,192,3,254,2,255,0,1,255,239,252,0,0,63,255,224,0,0,47,255,208,0,1,255,255,252,0,7,254,7,255,64,15,244,0,191,208,47,208,0,31,240,63,192,0,11,240,63,128,0,7,244,127,64,0,7,244,63,128,0,11,244,63,192,0,15,240,47,244,0,127,224,15,255,171,255,192,3,255,255,254,0,0,127,255,228,0,0,0,84,0,0, + // 0x0039 9 + 19,28,140,21,1,255,0,6,169,0,0,0,191,255,224,0,2,255,255,252,0,11,255,171,255,0,31,244,0,255,128,47,208,0,63,208,63,192,0,31,224,63,128,0,15,240,127,128,0,11,240,127,128,0,11,244,63,128,0,11,244,63,192,0,15,244,63,208,0,47,244,31,244,0,255,244,15,255,255,251,244,3,255,255,219,240,0,127,254,11,240,0,1,64,15,240,0,0,0,15,224,0,0,0,31,208,0,0,0,63,192,0,0,0,191,128,0,0,2,255,0,0,0,31,253,0,7,255,255,244,0,7,255,255,192,0,7,255,249,0,0,0,85,0,0,0, + // 0x003a : + 6,22,44,10,2,255,5,0,63,192,127,208,127,224,63,208,31,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,64,63,208,127,224,127,208,63,192,5,0, + // 0x003b ; + 7,26,52,10,1,251,1,64,15,240,31,244,47,244,31,244,7,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,80,15,240,31,240,31,224,47,192,63,192,63,64,127,0,190,0,188,0, + // 0x003c < + 18,19,95,21,2,4,0,0,0,0,64,0,0,0,7,208,0,0,0,127,208,0,0,7,255,192,0,0,127,253,0,0,7,255,208,0,0,127,253,0,0,7,255,208,0,0,127,249,0,0,0,255,128,0,0,0,255,208,0,0,0,127,254,0,0,0,7,255,228,0,0,0,47,255,64,0,0,2,255,248,0,0,0,31,255,192,0,0,1,255,208,0,0,0,11,208,0,0,0,0,144, + // 0x003d = + 17,11,55,21,2,7,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,0,0,0,0,0, + // 0x003e > + 18,19,95,21,2,4,64,0,0,0,0,244,0,0,0,0,255,64,0,0,0,255,244,0,0,0,31,255,64,0,0,1,255,244,0,0,0,31,255,64,0,0,1,191,244,0,0,0,11,255,64,0,0,0,191,208,0,0,1,191,208,0,0,31,255,128,0,2,255,244,0,0,127,254,64,0,11,255,224,0,0,191,253,0,0,0,255,208,0,0,0,249,0,0,0,0,128,0,0,0,0, + // 0x003f ? + 16,28,112,17,0,255,0,106,164,0,31,255,255,128,127,255,255,240,63,250,191,252,45,0,7,252,0,0,1,253,0,0,0,254,0,0,0,254,0,0,1,253,0,0,3,252,0,0,15,244,0,0,63,224,0,1,255,128,0,7,253,0,0,15,244,0,0,31,208,0,0,47,128,0,0,63,64,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,64,0,0,127,192,0,0,191,208,0,0,191,208,0,0,63,192,0,0,5,0,0, + // 0x0040 @ + 29,31,248,33,2,252,0,0,0,21,80,0,0,0,0,0,27,255,255,144,0,0,0,1,255,255,255,253,0,0,0,11,255,149,91,255,128,0,0,63,224,0,0,127,224,0,0,255,64,0,0,7,248,0,3,252,0,0,0,1,253,0,11,240,0,5,64,0,191,0,15,208,1,255,255,128,63,64,47,128,15,255,255,208,47,128,63,0,63,229,111,192,15,192,63,0,191,64,15,192,15,192,126,0,253,0,15,192,15,192,189,1,252,0,15,192,15,192,252,2,248,0,15,192,15,192,252,2,248,0,31,192,15,192,252,2,248,0,31,192,15,192,252,2,248,0,47,192,31,128,253,1,252,0,63,192,47,64,189,0,254,0,191,208,127,0,190,0,191,235,247,250,253,0,63,0,47,255,209,255,244,0,63,64,6,254,0,127,128,0,31,192,0,0,0,0,0,0,15,240,0,0,0,0,0,0,3,252,0,0,0,0,0,0,1,255,128,0,1,180,0,0,0,127,254,170,191,244,0,0,0,11,255,255,255,240,0,0,0,0,111,255,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x0041 A + 24,27,162,24,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0042 B + 20,27,135,24,3,0,21,85,84,0,0,127,255,255,248,0,127,255,255,255,64,127,255,255,255,208,127,128,1,191,240,127,128,0,31,244,127,128,0,15,244,127,128,0,11,244,127,128,0,11,244,127,128,0,15,240,127,128,0,47,224,127,149,86,255,128,127,255,255,253,0,127,255,255,249,0,127,255,255,255,192,127,128,0,127,240,127,128,0,15,248,127,128,0,3,252,127,128,0,3,252,127,128,0,3,253,127,128,0,3,252,127,128,0,11,252,127,128,0,31,248,127,149,86,255,240,127,255,255,255,208,127,255,255,255,0,127,255,255,228,0, + // 0x0043 C + 20,28,140,23,2,255,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x0044 D + 22,27,162,27,3,0,21,85,84,0,0,0,127,255,255,244,0,0,127,255,255,255,64,0,127,255,255,255,224,0,127,128,1,191,252,0,127,128,0,11,254,0,127,128,0,2,255,64,127,128,0,0,255,192,127,128,0,0,127,192,127,128,0,0,63,208,127,128,0,0,47,224,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,47,224,127,128,0,0,63,208,127,128,0,0,63,192,127,128,0,0,191,192,127,128,0,1,255,64,127,128,0,7,255,0,127,128,0,47,252,0,127,149,91,255,244,0,127,255,255,255,192,0,127,255,255,253,0,0,127,255,254,64,0,0, + // 0x0045 E + 16,27,108,21,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0046 F + 16,27,108,20,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0, + // 0x0047 G + 22,28,168,27,2,255,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0, + // 0x0048 H + 21,27,162,28,3,0,21,0,0,0,21,64,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,149,85,85,127,192,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x0049 I + 11,27,81,13,1,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x004a J + 11,35,105,11,253,248,0,5,80,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,11,244,0,15,240,0,31,240,81,191,224,255,255,192,255,255,0,191,248,0,0,0,0, + // 0x004b K + 20,27,135,23,3,0,21,0,0,1,85,127,128,0,7,253,127,128,0,15,244,127,128,0,63,224,127,128,0,255,128,127,128,2,255,0,127,128,11,252,0,127,128,31,240,0,127,128,127,192,0,127,128,255,64,0,127,131,253,0,0,127,143,248,0,0,127,175,244,0,0,127,255,252,0,0,127,255,254,0,0,127,245,255,64,0,127,192,191,192,0,127,128,63,224,0,127,128,31,244,0,127,128,11,252,0,127,128,3,255,0,127,128,0,255,128,127,128,0,127,192,127,128,0,47,240,127,128,0,15,248,127,128,0,7,253,127,128,0,2,255, + // 0x004c L + 16,27,108,20,3,0,21,0,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x004d M + 28,27,189,34,3,0,21,80,0,0,0,5,84,127,248,0,0,0,47,253,127,252,0,0,0,63,253,127,253,0,0,0,127,253,127,254,0,0,0,191,253,127,191,0,0,0,254,253,127,127,64,0,1,253,253,127,63,128,0,3,249,253,127,47,192,0,3,241,253,127,15,208,0,11,241,253,127,15,240,0,15,225,253,127,7,240,0,31,193,253,127,3,244,0,47,193,253,127,3,252,0,63,65,253,127,1,252,0,127,1,253,127,0,254,0,190,1,253,127,0,191,0,253,1,253,127,0,127,65,252,1,253,127,0,63,131,248,1,253,127,0,47,195,240,1,253,127,0,31,219,240,1,253,127,0,15,239,208,1,253,127,0,11,255,192,1,253,127,0,3,255,128,1,253,127,0,3,255,64,1,253,127,0,2,255,0,1,253,127,0,0,254,0,1,253, + // 0x004e N + 22,27,162,29,3,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x004f O + 25,28,196,29,2,255,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x0050 P + 18,27,135,23,3,0,21,85,80,0,0,127,255,255,208,0,127,255,255,253,0,127,255,255,255,0,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,224,127,128,0,31,240,127,128,0,31,224,127,128,0,47,224,127,128,0,63,208,127,128,1,255,192,127,149,111,255,64,127,255,255,253,0,127,255,255,240,0,127,255,250,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0051 Q + 25,34,238,29,2,249,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,240,0,0,0,0,5,111,244,0,0,0,0,0,11,253,0,0,0,0,0,3,255,64,0,0,0,0,0,255,192,0,0,0,0,0,63,240,0,0,0,0,0,31,252,0,0,0,0,0,1,84,0, + // 0x0052 R + 20,27,135,23,3,0,21,85,84,0,0,127,255,255,224,0,127,255,255,253,0,127,255,255,255,64,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,47,208,127,128,0,127,192,127,128,6,255,64,127,255,255,254,0,127,255,255,244,0,127,255,255,192,0,127,149,127,208,0,127,128,15,240,0,127,128,11,248,0,127,128,3,253,0,127,128,1,255,0,127,128,0,255,128,127,128,0,63,192,127,128,0,47,240,127,128,0,15,244,127,128,0,7,252,127,128,0,3,254, + // 0x0053 S + 17,28,140,20,2,255,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,21,64,0,0, + // 0x0054 T + 21,27,162,21,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x0055 U + 21,28,168,27,3,255,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x0056 V + 23,27,162,23,0,0,85,0,0,0,1,84,191,64,0,0,11,244,127,192,0,0,15,240,63,192,0,0,31,224,47,208,0,0,47,208,31,240,0,0,63,192,15,240,0,0,127,128,11,244,0,0,255,64,3,252,0,0,255,0,3,252,0,1,254,0,2,253,0,3,253,0,0,255,0,3,252,0,0,255,0,7,248,0,0,127,128,15,240,0,0,63,192,15,240,0,0,63,192,31,208,0,0,31,224,63,192,0,0,15,240,63,192,0,0,11,240,127,64,0,0,7,248,255,0,0,0,3,252,254,0,0,0,2,253,253,0,0,0,1,255,252,0,0,0,0,255,248,0,0,0,0,191,244,0,0,0,0,63,240,0,0,0,0,63,224,0,0, + // 0x0057 W + 34,27,243,35,0,0,85,0,0,1,84,0,0,5,80,127,128,0,3,254,0,0,15,240,63,192,0,3,255,0,0,15,240,63,192,0,11,255,0,0,31,224,47,208,0,15,255,64,0,47,208,31,224,0,15,255,128,0,63,192,15,240,0,31,239,192,0,63,192,15,240,0,47,207,208,0,127,128,11,244,0,63,143,224,0,191,64,7,248,0,63,75,240,0,255,0,3,252,0,127,7,240,0,255,0,3,252,0,255,3,244,1,254,0,2,253,0,254,3,252,2,253,0,1,254,1,253,2,252,3,252,0,0,255,2,252,1,253,3,252,0,0,255,3,248,0,254,7,248,0,0,191,67,244,0,191,11,244,0,0,127,135,240,0,127,15,240,0,0,63,203,240,0,63,79,240,0,0,47,207,224,0,63,143,224,0,0,31,223,208,0,47,223,192,0,0,15,239,192,0,31,239,192,0,0,15,255,128,0,15,255,128,0,0,11,255,64,0,11,255,64,0,0,7,255,0,0,7,255,0,0,0,3,255,0,0,3,255,0,0,0,3,254,0,0,3,254,0,0, + // 0x0058 X + 22,27,162,23,0,0,21,64,0,0,5,80,47,224,0,0,63,192,15,244,0,0,191,128,7,252,0,0,255,0,3,254,0,3,253,0,0,255,0,7,248,0,0,191,128,15,240,0,0,63,208,47,208,0,0,15,240,127,128,0,0,11,248,255,0,0,0,3,254,253,0,0,0,1,255,252,0,0,0,0,191,240,0,0,0,0,127,240,0,0,0,0,255,244,0,0,0,2,255,252,0,0,0,3,254,254,0,0,0,15,240,255,64,0,0,31,224,127,192,0,0,63,192,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,3,254,0,11,248,0,0,255,0,31,240,0,0,191,192,63,208,0,0,63,208,191,128,0,0,31,240, + // 0x0059 Y + 21,27,162,22,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x005a Z + 19,27,135,21,1,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x005b [ + 9,33,99,12,3,250,85,85,0,255,255,64,255,255,64,255,170,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,253,0,0,254,0,0,255,255,64,255,255,64,255,255,0, + // 0x005c "\" + 14,27,108,14,0,0,85,0,0,0,127,64,0,0,63,128,0,0,47,192,0,0,15,208,0,0,15,240,0,0,7,240,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,254,0,0,0,191,0,0,0,63,64,0,0,63,192,0,0,31,192,0,0,15,224,0,0,11,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,255,0,0,0,191,0,0,0,63,128,0,0,63,192,0,0,31,208,0,0,15,224, + // 0x005d ] + 9,33,99,12,1,250,85,85,0,255,255,64,255,255,64,170,191,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,255,255,64,255,255,64,255,255,64, + // 0x005e ^ + 19,18,90,21,1,9,0,0,160,0,0,0,1,248,0,0,0,3,253,0,0,0,7,255,0,0,0,15,255,64,0,0,31,223,192,0,0,47,79,208,0,0,63,7,240,0,0,189,3,244,0,0,252,1,252,0,2,248,0,253,0,3,240,0,127,0,11,224,0,63,64,15,192,0,31,192,31,128,0,15,208,63,64,0,7,240,127,0,0,3,248,20,0,0,0,80, + // 0x005f _ + 16,3,12,16,0,250,170,170,170,170,255,255,255,255,170,170,170,170, + // 0x0060 ` + 8,7,14,11,2,22,85,0,255,128,127,192,31,240,7,248,0,253,0,41, + // 0x0061 a + 18,22,110,21,1,255,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0062 b + 18,29,145,23,3,255,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,7,255,208,0,255,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,64,0,31,224,255,128,0,63,208,255,192,0,127,192,255,244,1,255,128,255,255,255,255,0,253,63,255,252,0,252,11,255,224,0,0,0,20,0,0, + // 0x0063 c + 15,22,88,18,2,255,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x0064 d + 18,29,145,23,2,255,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,1,64,15,240,0,191,254,15,240,3,255,255,207,240,15,255,255,255,240,47,248,1,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,191,128,0,47,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,203,240,0,191,254,7,240,0,1,64,0,0, + // 0x0065 e + 18,22,110,21,2,255,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0066 f + 15,29,116,13,0,0,0,0,4,0,0,7,255,248,0,31,255,244,0,63,255,240,0,191,192,16,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,7,255,255,128,127,255,255,192,127,255,255,192,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0, + // 0x0067 g + 18,30,150,23,2,247,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x0068 h + 18,28,140,23,3,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,4,0,0,255,7,255,224,0,255,63,255,253,0,255,191,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x0069 i + 4,28,28,10,3,0,20,255,255,255,125,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006a j + 9,37,111,10,254,247,0,5,0,0,63,192,0,63,192,0,63,192,0,31,64,0,0,0,0,0,0,0,0,0,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,127,192,150,255,128,255,255,0,255,253,0,191,144,0, + // 0x006b k + 17,28,140,21,3,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,255,64,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,255,31,240,0,0,255,127,192,0,0,255,255,224,0,0,255,255,244,0,0,255,231,252,0,0,255,130,255,0,0,255,0,255,128,0,255,0,63,208,0,255,0,31,240,0,255,0,11,252,0,255,0,3,254,0,255,0,1,255,64,255,0,0,191,192, + // 0x006c l + 4,28,28,10,3,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 29,21,168,35,3,0,0,0,16,0,0,4,0,0,253,11,255,224,7,255,244,0,253,63,255,252,47,255,253,0,255,255,255,254,191,255,255,0,255,244,3,255,253,1,255,128,255,192,0,255,240,0,127,192,255,128,0,191,192,0,63,192,255,64,0,127,192,0,63,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192,255,0,0,127,128,0,47,192, + // 0x006e n + 18,21,105,23,3,0,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x006f o + 19,22,110,23,2,255,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0070 p + 18,30,150,23,3,247,0,0,20,0,0,253,11,255,224,0,254,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,64,0,47,224,255,128,0,63,208,255,208,0,127,192,255,244,2,255,128,255,255,255,255,0,255,63,255,252,0,255,11,255,224,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0071 q + 18,30,150,23,2,247,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,1,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,191,128,0,47,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240, + // 0x0072 r + 12,21,63,16,3,0,0,0,20,252,7,255,253,31,255,254,127,255,255,255,85,255,244,0,255,208,0,255,128,0,255,64,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0073 s + 15,22,88,18,2,255,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,85,0,0, + // 0x0074 t + 14,26,104,14,0,255,0,20,0,0,0,125,0,0,0,189,0,0,0,253,0,0,1,253,0,0,11,255,255,192,127,255,255,192,127,255,255,192,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,1,254,0,0,1,255,64,0,0,255,255,208,0,127,255,208,0,31,255,192,0,0,84,0, + // 0x0075 u + 17,21,105,23,3,255,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x0076 v + 20,20,100,19,0,0,255,64,0,3,253,127,128,0,3,252,63,192,0,11,248,47,208,0,15,240,31,224,0,31,240,15,240,0,47,208,11,244,0,63,192,3,252,0,127,128,3,252,0,191,64,1,253,0,255,0,0,255,1,253,0,0,191,3,252,0,0,127,131,248,0,0,63,199,244,0,0,47,203,240,0,0,15,223,224,0,0,15,255,192,0,0,7,255,192,0,0,3,255,64,0,0,2,255,0,0, + // 0x0077 w + 30,20,160,30,0,0,127,128,0,127,192,0,47,208,63,192,0,191,224,0,63,192,63,192,0,255,240,0,63,192,47,208,0,255,240,0,127,64,31,224,2,251,244,0,191,0,15,240,3,246,248,0,255,0,15,240,3,241,252,0,254,0,11,244,7,240,253,1,253,0,7,248,11,224,254,2,252,0,3,252,15,208,191,3,252,0,2,252,31,192,127,7,248,0,1,253,47,192,63,75,240,0,0,254,63,128,63,139,240,0,0,255,63,0,31,207,224,0,0,191,127,0,15,223,208,0,0,127,190,0,15,239,192,0,0,63,253,0,11,255,192,0,0,63,252,0,7,255,128,0,0,31,248,0,3,255,64,0,0,15,244,0,2,255,0,0, + // 0x0078 x + 18,20,100,20,1,0,255,128,0,31,240,63,208,0,63,192,31,240,0,255,128,15,248,1,255,0,3,253,3,252,0,1,255,15,244,0,0,191,159,240,0,0,63,255,192,0,0,31,255,64,0,0,11,254,0,0,0,15,255,0,0,0,47,255,128,0,0,127,255,208,0,0,255,79,240,0,2,254,11,248,0,7,252,3,253,0,15,244,0,255,0,47,224,0,191,192,127,192,0,63,224,255,64,0,15,240, + // 0x0079 y + 20,29,145,20,0,247,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x007a z + 16,20,80,18,1,0,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x007b { + 12,33,99,14,1,250,0,0,5,0,2,255,0,31,255,0,63,254,0,127,208,0,191,64,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,255,0,7,254,0,255,248,0,255,128,0,255,244,0,91,253,0,1,255,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,191,0,0,127,128,0,63,245,0,47,255,0,11,255,0,0,111, + // 0x007c | + 4,37,37,20,8,247,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126, + // 0x007d } + 13,33,132,14,1,250,80,0,0,0,191,144,0,0,191,244,0,0,191,252,0,0,3,254,0,0,0,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,127,208,0,0,31,255,64,0,1,255,64,0,11,255,64,0,63,245,0,0,191,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,254,0,0,1,254,0,0,27,253,0,0,191,252,0,0,191,224,0,0,185,0,0,0, + // 0x007e ~ + 18,6,30,21,2,10,6,164,0,0,0,127,255,144,0,208,255,255,254,175,208,249,111,255,255,192,192,0,191,255,64,0,0,5,164,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Cyrillic_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Cyrillic_27.cpp new file mode 100644 index 000000000000..c621bdfc9efe --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Cyrillic_27.cpp @@ -0,0 +1,322 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Cyrillic 37pt, capital 'A' height: 27px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +extern const uint8_t NotoSans_Medium_Cyrillic_27[10855] = { + 130,27,1,4,145,4,35,247, // unifont_t + // 0x0401 Ё + 16,33,132,21,3,0,3,244,15,208,3,248,15,224,3,248,15,224,1,160,6,128,0,0,0,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0402 Ђ + 255, + // 0x0403 Ѓ + 255, + // 0x0404 Є + 21,28,168,24,2,255,0,0,26,254,144,0,0,7,255,255,254,64,0,47,255,255,255,128,0,255,255,175,255,64,3,255,208,0,47,0,11,253,0,0,0,0,15,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,128,0,0,0,0,191,149,85,85,64,0,191,255,255,255,192,0,255,255,255,255,192,0,255,255,255,255,192,0,191,128,0,0,0,0,191,128,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,208,0,0,0,0,47,240,0,0,0,0,15,248,0,0,0,0,11,255,0,0,0,0,3,255,228,0,111,0,0,255,255,255,255,0,0,47,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0405 Ѕ + 255, + // 0x0406 І + 11,27,81,13,1,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x0407 Ї + 11,33,99,13,1,0,190,1,248,255,3,252,255,2,252,40,0,160,0,0,0,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x0408 Ј + 255, + // 0x0409 Љ + 255, + // 0x040a Њ + 255, + // 0x040b Ћ + 255, + // 0x040c Ќ + 255, + // 0x040d Ѝ + 255, + // 0x040e Ў + 255, + // 0x040f Џ + 255, + // 0x0410 А + 24,27,162,24,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0411 Б + 18,27,135,23,3,0,21,85,85,85,0,127,255,255,255,128,127,255,255,255,128,127,255,255,255,128,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,149,0,0,127,255,255,244,0,127,255,255,254,0,127,255,255,255,192,127,128,1,255,208,127,128,0,47,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,31,240,127,128,0,127,224,127,149,91,255,192,127,255,255,255,64,127,255,255,252,0,127,255,254,128,0, + // 0x0412 В + 20,27,135,24,3,0,21,85,84,0,0,127,255,255,248,0,127,255,255,255,64,127,255,255,255,208,127,128,1,191,240,127,128,0,31,244,127,128,0,15,244,127,128,0,11,244,127,128,0,11,244,127,128,0,15,240,127,128,0,47,224,127,149,86,255,128,127,255,255,253,0,127,255,255,249,0,127,255,255,255,192,127,128,0,127,240,127,128,0,15,248,127,128,0,3,252,127,128,0,3,252,127,128,0,3,253,127,128,0,3,252,127,128,0,11,252,127,128,0,31,248,127,149,86,255,240,127,255,255,255,208,127,255,255,255,0,127,255,255,228,0, + // 0x0413 Г + 16,27,108,20,3,0,21,85,85,85,127,255,255,255,127,255,255,255,127,255,255,255,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0, + // 0x0414 Д + 26,35,245,26,0,248,0,0,21,85,85,80,0,0,0,63,255,255,240,0,0,0,63,255,255,240,0,0,0,127,255,255,240,0,0,0,127,64,15,240,0,0,0,191,0,15,240,0,0,0,255,0,15,240,0,0,0,255,0,15,240,0,0,0,254,0,15,240,0,0,1,253,0,15,240,0,0,2,253,0,15,240,0,0,3,252,0,15,240,0,0,3,248,0,15,240,0,0,11,244,0,15,240,0,0,15,240,0,15,240,0,0,15,240,0,15,240,0,0,47,208,0,15,240,0,0,63,192,0,15,240,0,0,127,128,0,15,240,0,0,255,64,0,15,240,0,0,255,0,0,15,240,0,2,253,0,0,15,240,0,3,252,0,0,15,240,0,95,253,85,85,95,249,80,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,255,0,0,0,0,31,224,0,0,0,0,0,0,0, + // 0x0415 Е + 16,27,108,21,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0416 Ж + 32,27,216,33,0,0,21,64,0,5,80,0,0,85,63,208,0,11,240,0,3,253,15,240,0,11,240,0,11,248,7,252,0,11,240,0,31,240,2,254,0,11,240,0,63,192,0,255,64,11,240,0,255,64,0,63,192,11,240,2,254,0,0,31,240,11,240,7,252,0,0,7,248,11,240,15,240,0,0,2,253,11,240,63,208,0,0,0,255,11,240,191,64,0,0,0,63,203,241,254,0,0,0,0,31,235,247,252,0,0,0,0,15,255,255,244,0,0,0,0,47,235,247,252,0,0,0,0,127,203,241,255,0,0,0,0,255,75,240,191,128,0,0,3,254,11,240,63,208,0,0,11,252,11,240,15,240,0,0,31,240,11,240,7,252,0,0,63,208,11,240,2,254,0,0,255,128,11,240,0,255,64,2,255,0,11,240,0,127,192,7,252,0,11,240,0,47,240,15,244,0,11,240,0,15,248,63,224,0,11,240,0,3,253,191,192,0,11,240,0,1,255, + // 0x0417 З + 20,28,140,22,1,255,0,6,170,144,0,2,255,255,254,0,47,255,255,255,192,63,254,154,255,240,31,128,0,47,244,4,0,0,11,252,0,0,0,3,252,0,0,0,3,252,0,0,0,7,248,0,0,0,15,244,0,0,0,127,224,0,85,91,255,128,0,255,255,248,0,0,255,255,228,0,0,255,255,255,128,0,0,1,191,240,0,0,0,15,248,0,0,0,3,252,0,0,0,2,253,0,0,0,2,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,252,126,64,0,127,244,127,255,255,255,224,127,255,255,255,64,27,255,255,244,0,0,5,84,0,0, + // 0x0418 И + 23,27,162,29,3,0,21,0,0,0,5,80,127,0,0,0,47,248,127,0,0,0,127,248,127,0,0,0,255,248,127,0,0,2,255,248,127,0,0,7,255,248,127,0,0,15,247,248,127,0,0,47,227,248,127,0,0,63,195,248,127,0,0,255,67,248,127,0,1,255,3,248,127,0,3,252,3,248,127,0,15,248,3,248,127,0,31,240,3,248,127,0,63,192,3,248,127,0,191,128,3,248,127,1,255,0,3,248,127,3,253,0,3,248,127,11,248,0,3,248,127,31,240,0,3,248,127,63,208,0,3,248,127,191,128,0,3,248,127,255,0,0,3,248,127,253,0,0,3,248,127,252,0,0,3,248,127,240,0,0,3,248,127,208,0,0,3,248, + // 0x0419 Й + 23,35,210,29,3,0,0,127,0,0,253,0,0,63,64,1,253,0,0,63,192,3,252,0,0,31,249,111,244,0,0,11,255,255,224,0,0,1,191,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,5,80,127,0,0,0,47,248,127,0,0,0,127,248,127,0,0,0,255,248,127,0,0,2,255,248,127,0,0,7,255,248,127,0,0,15,247,248,127,0,0,47,227,248,127,0,0,63,195,248,127,0,0,255,67,248,127,0,1,255,3,248,127,0,3,252,3,248,127,0,15,248,3,248,127,0,31,240,3,248,127,0,63,192,3,248,127,0,191,128,3,248,127,1,255,0,3,248,127,3,253,0,3,248,127,11,248,0,3,248,127,31,240,0,3,248,127,63,208,0,3,248,127,191,128,0,3,248,127,255,0,0,3,248,127,253,0,0,3,248,127,252,0,0,3,248,127,240,0,0,3,248,127,208,0,0,3,248, + // 0x041a К + 20,27,135,23,3,0,21,0,0,1,85,127,128,0,7,252,127,128,0,15,244,127,128,0,63,208,127,128,0,255,128,127,128,2,254,0,127,128,11,252,0,127,128,31,240,0,127,128,127,192,0,127,128,255,64,0,127,131,253,0,0,127,143,248,0,0,127,175,240,0,0,127,255,208,0,0,127,175,240,0,0,127,143,252,0,0,127,131,254,0,0,127,128,255,64,0,127,128,127,208,0,127,128,47,240,0,127,128,11,252,0,127,128,3,255,0,127,128,0,255,128,127,128,0,63,224,127,128,0,31,244,127,128,0,7,252,127,128,0,2,255, + // 0x041b Л + 23,28,168,27,0,255,0,0,85,85,85,84,0,0,255,255,255,252,0,1,255,255,255,252,0,1,255,255,255,252,0,2,252,0,3,252,0,2,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,248,0,3,252,0,3,248,0,3,252,0,7,244,0,3,252,0,11,244,0,3,252,0,11,240,0,3,252,0,15,240,0,3,252,0,15,240,0,3,252,0,15,224,0,3,252,0,31,224,0,3,252,0,31,208,0,3,252,0,47,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,127,128,0,3,252,0,255,64,0,3,252,2,255,0,0,3,252,255,253,0,0,3,252,255,252,0,0,3,252,255,224,0,0,3,252,21,0,0,0,0,0, + // 0x041c М + 28,27,189,34,3,0,21,80,0,0,0,5,84,127,248,0,0,0,47,253,127,252,0,0,0,63,253,127,253,0,0,0,127,253,127,254,0,0,0,191,253,127,191,0,0,0,254,253,127,127,64,0,1,253,253,127,63,128,0,3,249,253,127,47,192,0,3,241,253,127,15,208,0,11,241,253,127,15,240,0,15,225,253,127,7,240,0,31,193,253,127,3,244,0,47,193,253,127,3,252,0,63,65,253,127,1,252,0,127,1,253,127,0,254,0,190,1,253,127,0,191,0,253,1,253,127,0,127,65,252,1,253,127,0,63,131,248,1,253,127,0,47,195,240,1,253,127,0,31,219,240,1,253,127,0,15,239,208,1,253,127,0,11,255,192,1,253,127,0,3,255,128,1,253,127,0,3,255,64,1,253,127,0,2,255,0,1,253,127,0,0,254,0,1,253, + // 0x041d Н + 21,27,162,28,3,0,21,0,0,0,21,64,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,149,85,85,127,192,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x041e О + 25,28,196,29,2,255,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x041f П + 21,27,162,27,3,0,21,85,85,85,85,64,127,255,255,255,255,128,127,255,255,255,255,128,127,255,255,255,255,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128, + // 0x0420 Р + 18,27,135,23,3,0,21,85,80,0,0,127,255,255,208,0,127,255,255,253,0,127,255,255,255,0,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,224,127,128,0,31,240,127,128,0,31,224,127,128,0,47,224,127,128,0,63,208,127,128,1,255,192,127,149,111,255,64,127,255,255,253,0,127,255,255,240,0,127,255,250,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0421 С + 20,28,140,23,2,255,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x0422 Т + 21,27,162,21,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x0423 У + 22,28,168,24,1,255,85,0,0,0,5,80,255,0,0,0,15,240,191,128,0,0,31,224,63,192,0,0,63,192,47,224,0,0,127,192,15,240,0,0,255,64,11,248,0,0,255,0,3,252,0,2,253,0,2,254,0,3,252,0,0,255,0,7,248,0,0,191,128,15,240,0,0,63,192,31,224,0,0,47,224,63,192,0,0,15,240,63,192,0,0,11,248,191,64,0,0,3,252,255,0,0,0,2,255,253,0,0,0,0,255,252,0,0,0,0,191,248,0,0,0,0,63,240,0,0,0,0,63,224,0,0,0,0,191,192,0,0,0,1,255,128,0,0,101,91,255,0,0,0,127,255,252,0,0,0,127,255,244,0,0,0,127,255,128,0,0,0,1,80,0,0,0,0, + // 0x0424 Ф + 27,28,196,30,2,255,0,0,2,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,87,254,80,0,0,0,47,255,255,255,128,0,1,255,255,255,255,248,0,11,255,255,255,255,255,0,31,253,3,252,6,255,192,63,224,3,252,0,127,208,191,192,3,252,0,31,240,255,64,3,252,0,15,240,255,0,3,252,0,11,244,255,0,3,252,0,7,244,255,0,3,252,0,7,248,255,0,3,252,0,7,244,255,0,3,252,0,11,244,191,64,3,252,0,15,240,127,192,3,252,0,47,224,63,240,3,252,0,191,192,15,254,67,252,7,255,64,7,255,255,255,255,254,0,0,191,255,255,255,244,0,0,11,255,255,254,64,0,0,0,7,253,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,1,84,0,0,0, + // 0x0425 Х + 22,27,162,23,0,0,21,64,0,0,5,80,47,224,0,0,63,192,15,244,0,0,191,128,7,252,0,0,255,0,3,254,0,3,253,0,0,255,0,7,248,0,0,191,128,15,240,0,0,63,208,47,208,0,0,15,240,127,128,0,0,11,248,255,0,0,0,3,254,253,0,0,0,1,255,252,0,0,0,0,191,240,0,0,0,0,127,240,0,0,0,0,255,244,0,0,0,2,255,252,0,0,0,3,254,254,0,0,0,15,240,255,64,0,0,31,224,127,192,0,0,63,192,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,3,254,0,11,248,0,0,255,0,31,240,0,0,191,192,63,208,0,0,63,208,191,128,0,0,31,240, + // 0x0426 Ц + 24,35,210,28,3,248,21,0,0,0,21,64,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,213,85,85,191,213,127,255,255,255,255,255,127,255,255,255,255,255,127,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,0, + // 0x0427 Ч + 21,27,162,26,2,0,21,64,0,0,21,64,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,128,0,0,127,128,127,192,0,0,127,128,63,192,0,0,127,128,63,224,0,2,255,128,47,254,90,255,255,128,15,255,255,255,255,128,3,255,255,254,191,128,0,111,255,144,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128, + // 0x0428 Ш + 33,27,243,39,3,0,21,0,0,5,80,0,0,85,0,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,128,0,11,244,0,0,191,64,127,213,85,95,249,85,85,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64, + // 0x0429 Щ + 36,35,59,39,3,248,21,0,0,5,80,0,0,85,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,128,0,15,240,0,0,255,0,127,213,85,95,249,85,86,255,84,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,0, + // 0x042a Ъ + 24,27,162,26,0,0,85,85,80,0,0,0,255,255,244,0,0,0,255,255,244,0,0,0,255,255,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,254,169,80,0,0,11,255,255,254,0,0,11,255,255,255,224,0,11,255,255,255,248,0,11,244,0,31,253,0,11,244,0,2,254,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,2,255,0,11,244,0,7,253,0,11,249,85,191,252,0,11,255,255,255,240,0,11,255,255,255,128,0,11,255,255,232,0, + // 0x042b Ы + 26,27,189,32,3,0,21,0,0,0,0,5,80,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,128,0,0,0,31,240,127,234,148,0,0,31,240,127,255,255,224,0,31,240,127,255,255,253,0,31,240,127,255,255,255,64,31,240,127,128,1,255,192,31,240,127,128,0,63,208,31,240,127,128,0,31,224,31,240,127,128,0,15,240,31,240,127,128,0,15,240,31,240,127,128,0,31,240,31,240,127,128,0,63,224,31,240,127,128,0,191,208,31,240,127,149,91,255,128,31,240,127,255,255,255,0,31,240,127,255,255,248,0,31,240,127,255,254,64,0,31,240, + // 0x042c Ь + 19,27,135,24,3,0,21,0,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,165,0,0,127,255,255,248,0,127,255,255,255,64,127,255,255,255,208,127,128,0,191,240,127,128,0,15,244,127,128,0,7,248,127,128,0,7,252,127,128,0,3,252,127,128,0,7,252,127,128,0,15,248,127,128,0,47,240,127,149,90,255,224,127,255,255,255,192,127,255,255,254,0,127,255,255,144,0, + // 0x042d Э + 21,28,168,24,1,255,1,107,233,0,0,0,111,255,255,244,0,0,191,255,255,254,0,0,63,254,191,255,192,0,45,0,1,255,240,0,0,0,0,47,248,0,0,0,0,11,252,0,0,0,0,3,253,0,0,0,0,1,255,0,0,0,0,0,255,0,0,0,0,0,255,64,0,85,85,85,255,64,0,255,255,255,255,64,0,255,255,255,255,64,0,255,255,255,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,0,0,0,0,1,255,0,0,0,0,2,254,0,0,0,0,7,252,0,0,0,0,15,252,0,0,0,0,127,240,0,185,64,27,255,208,0,191,255,255,255,64,0,191,255,255,252,0,0,47,255,255,144,0,0,0,21,80,0,0,0, + // 0x042e Ю + 34,28,252,39,3,255,21,0,0,0,6,190,144,0,0,127,128,0,0,191,255,254,0,0,127,128,0,7,255,255,255,208,0,127,128,0,31,255,234,255,248,0,127,128,0,63,244,0,31,253,0,127,128,0,191,192,0,3,255,0,127,128,0,255,64,0,0,255,64,127,128,2,254,0,0,0,127,192,127,128,3,253,0,0,0,63,192,127,128,3,252,0,0,0,63,208,127,128,7,252,0,0,0,47,224,127,149,91,248,0,0,0,31,224,127,255,255,248,0,0,0,31,240,127,255,255,248,0,0,0,31,240,127,255,255,248,0,0,0,31,240,127,128,11,248,0,0,0,31,240,127,128,7,248,0,0,0,31,224,127,128,7,252,0,0,0,47,224,127,128,3,252,0,0,0,63,208,127,128,3,253,0,0,0,63,192,127,128,1,255,0,0,0,191,128,127,128,0,255,128,0,1,255,64,127,128,0,127,224,0,7,254,0,127,128,0,63,253,0,111,252,0,127,128,0,15,255,255,255,240,0,127,128,0,2,255,255,255,192,0,127,128,0,0,47,255,249,0,0,0,0,0,0,0,85,0,0,0, + // 0x042f Я + 20,27,135,24,1,0,0,0,21,85,84,0,11,255,255,253,0,191,255,255,253,2,255,255,255,253,7,255,64,2,253,15,252,0,2,253,15,240,0,2,253,15,240,0,2,253,15,240,0,2,253,15,240,0,2,253,15,244,0,2,253,11,252,0,2,253,3,255,144,2,253,1,255,255,255,253,0,63,255,255,253,0,7,255,255,253,0,11,249,86,253,0,31,240,2,253,0,63,208,2,253,0,191,128,2,253,1,255,0,2,253,3,254,0,2,253,11,252,0,2,253,15,244,0,2,253,63,224,0,2,253,191,192,0,2,253,255,64,0,2,253, + // 0x0430 а + 18,22,110,21,1,255,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0431 б + 19,29,145,22,2,255,0,0,1,111,240,0,1,191,255,240,0,31,255,255,240,0,255,255,250,80,3,255,228,0,0,11,253,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,127,128,90,64,0,191,71,255,248,0,191,47,255,255,0,255,191,171,255,192,255,248,0,127,224,255,208,0,31,240,255,128,0,15,240,255,0,0,15,244,255,0,0,11,244,255,0,0,11,244,255,64,0,11,244,191,64,0,11,244,127,192,0,15,240,63,192,0,15,240,47,240,0,63,224,15,253,0,255,192,7,255,255,255,64,1,255,255,253,0,0,47,255,224,0,0,0,84,0,0, + // 0x0432 в + 17,20,100,22,3,0,255,255,254,128,0,255,255,255,248,0,255,255,255,255,0,255,0,6,255,64,255,0,0,191,128,255,0,0,127,128,255,0,0,191,64,255,0,2,255,0,255,255,255,248,0,255,255,255,208,0,255,255,255,253,0,255,0,6,255,64,255,0,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,1,255,128,255,255,255,255,0,255,255,255,252,0,255,255,255,144,0, + // 0x0433 г + 13,20,80,17,3,0,255,255,255,128,255,255,255,128,255,255,255,128,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0434 д + 22,27,162,22,0,249,0,2,255,255,248,0,0,3,255,255,252,0,0,3,255,255,252,0,0,3,248,3,252,0,0,3,244,3,252,0,0,7,244,3,252,0,0,11,240,3,252,0,0,11,240,3,252,0,0,15,240,3,252,0,0,31,208,3,252,0,0,47,192,3,252,0,0,63,192,3,252,0,0,127,128,3,252,0,0,255,0,3,252,0,1,254,0,3,252,0,3,252,0,3,252,0,11,248,0,3,252,0,127,255,255,255,255,224,127,255,255,255,255,224,127,255,255,255,255,224,127,64,0,0,15,224,127,64,0,0,15,224,127,64,0,0,15,224,127,64,0,0,15,224,127,64,0,0,15,224,127,64,0,0,15,224,127,64,0,0,15,224, + // 0x0435 е + 18,22,110,21,2,255,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0436 ж + 29,20,160,29,0,0,63,208,0,127,64,0,255,0,15,240,0,127,64,3,252,0,7,252,0,127,64,15,244,0,1,254,0,127,64,47,208,0,0,191,64,127,64,127,128,0,0,63,208,127,64,255,0,0,0,15,240,127,67,252,0,0,0,3,252,127,79,240,0,0,0,1,254,127,111,208,0,0,0,0,191,255,255,128,0,0,0,0,255,191,191,192,0,0,0,3,253,127,95,240,0,0,0,11,248,127,75,248,0,0,0,31,224,127,66,254,0,0,0,127,192,127,64,255,64,0,0,255,0,127,64,63,192,0,3,253,0,127,64,15,240,0,15,244,0,127,64,7,252,0,47,224,0,127,64,2,254,0,191,192,0,127,64,0,191,128, + // 0x0437 з + 16,22,88,19,1,255,0,1,64,0,27,255,255,64,127,255,255,240,63,255,255,252,30,0,7,253,0,0,0,254,0,0,0,254,0,0,1,253,0,0,11,252,0,191,255,224,0,255,255,64,0,255,255,240,0,0,27,253,0,0,1,255,0,0,0,191,0,0,0,191,0,0,0,255,180,0,7,254,191,255,255,252,191,255,255,244,47,255,255,128,0,21,64,0, + // 0x0438 и + 19,20,100,25,3,0,255,0,0,47,244,255,0,0,63,248,255,0,0,255,248,255,0,1,255,248,255,0,3,255,248,255,0,11,243,248,255,0,31,227,248,255,0,63,195,248,255,0,191,67,248,255,1,254,3,248,255,3,252,3,248,255,11,244,3,248,255,31,224,3,248,254,63,192,3,248,254,191,64,3,248,255,255,0,3,248,255,252,0,3,248,255,244,0,3,248,255,240,0,3,248,255,192,0,3,248, + // 0x0439 й + 19,29,145,25,3,0,1,64,0,5,64,11,240,0,47,192,7,240,0,63,128,3,253,1,255,64,2,255,255,254,0,0,127,255,244,0,0,5,169,64,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,244,255,0,0,63,248,255,0,0,255,248,255,0,1,255,248,255,0,3,255,248,255,0,11,243,248,255,0,31,227,248,255,0,63,195,248,255,0,191,67,248,255,1,254,3,248,255,3,252,3,248,255,11,244,3,248,255,31,224,3,248,254,63,192,3,248,254,191,64,3,248,255,255,0,3,248,255,252,0,3,248,255,244,0,3,248,255,240,0,3,248,255,192,0,3,248, + // 0x043a к + 17,20,100,21,3,0,255,0,0,255,0,255,0,3,253,0,255,0,15,244,0,255,0,47,224,0,255,0,191,128,0,255,1,255,0,0,255,7,252,0,0,255,15,240,0,0,255,63,192,0,0,255,255,64,0,0,255,127,192,0,0,255,47,240,0,0,255,11,248,0,0,255,3,254,0,0,255,0,255,64,0,255,0,63,208,0,255,0,31,240,0,255,0,7,252,0,255,0,2,255,0,255,0,0,191,192, + // 0x043b л + 19,21,105,22,0,255,0,15,255,255,252,0,15,255,255,252,0,15,255,255,252,0,15,224,3,252,0,31,208,3,252,0,31,208,3,252,0,31,192,3,252,0,47,192,3,252,0,47,192,3,252,0,63,192,3,252,0,63,128,3,252,0,63,64,3,252,0,127,64,3,252,0,255,0,3,252,0,255,0,3,252,2,253,0,3,252,7,252,0,3,252,255,248,0,3,252,255,240,0,3,252,255,128,0,3,252,4,0,0,0,0, + // 0x043c м + 23,20,120,29,3,0,255,224,0,0,63,248,255,240,0,0,127,248,255,244,0,0,191,248,255,252,0,0,255,248,255,252,0,1,255,248,254,254,0,3,251,248,254,127,0,3,243,248,254,63,64,11,243,248,254,47,128,15,211,248,254,31,192,31,195,248,254,15,208,63,131,248,254,11,240,63,3,248,254,3,240,191,3,248,254,3,248,253,3,248,254,1,253,252,3,248,254,0,255,248,3,248,254,0,191,244,3,248,254,0,63,240,3,248,254,0,63,208,3,248,254,0,31,192,3,248, + // 0x043d н + 18,20,100,24,3,0,255,0,0,15,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,255,85,85,95,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x043e о + 19,22,110,23,2,255,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x043f п + 18,20,100,23,3,0,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x0440 р + 18,30,150,23,3,247,0,0,20,0,0,253,11,255,224,0,254,63,255,252,0,255,255,255,255,0,255,244,2,255,128,255,192,0,127,192,255,128,0,63,208,255,64,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,64,0,47,224,255,128,0,63,208,255,208,0,127,192,255,244,2,255,128,255,255,255,255,0,255,63,255,252,0,255,11,255,224,0,255,0,20,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0441 с + 15,22,88,18,2,255,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x0442 т + 17,20,100,18,1,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,0,15,244,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0, + // 0x0443 у + 20,29,145,20,0,247,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x0444 ф + 24,37,222,28,2,247,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,7,255,255,144,0,0,191,255,255,253,0,3,255,255,255,255,128,15,254,79,241,255,224,47,240,15,240,31,244,63,192,15,240,7,252,191,128,15,240,3,253,255,64,15,240,2,254,255,0,15,240,1,254,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,1,254,255,64,15,240,1,254,191,128,15,240,3,253,63,192,15,240,7,252,47,240,15,240,31,244,15,254,15,240,191,224,3,255,255,255,255,128,0,191,255,255,254,0,0,11,255,255,208,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,224,0,0, + // 0x0445 х + 18,20,100,20,1,0,255,128,0,31,240,63,208,0,63,192,31,240,0,255,128,15,248,1,255,0,3,253,3,252,0,1,255,15,244,0,0,191,159,240,0,0,63,255,192,0,0,31,255,64,0,0,11,254,0,0,0,15,255,0,0,0,47,255,128,0,0,127,255,208,0,0,255,79,240,0,2,254,11,248,0,7,252,3,253,0,15,244,0,255,0,47,224,0,191,192,127,192,0,63,224,255,64,0,15,240, + // 0x0446 ц + 21,27,162,24,3,249,255,0,0,31,208,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,0,0,31,224,0,255,255,255,255,255,64,255,255,255,255,255,64,255,255,255,255,255,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64,0,0,0,0,127,64, + // 0x0447 ч + 18,20,100,23,2,0,127,64,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,127,128,0,15,240,63,208,0,191,240,47,250,175,255,240,15,255,255,255,240,3,255,254,79,240,0,26,80,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240, + // 0x0448 ш + 28,20,140,34,3,0,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0449 щ + 31,27,216,34,3,249,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,0,0,255,0,0,255,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248, + // 0x044a ъ + 24,20,120,26,0,0,127,255,248,0,0,0,191,255,252,0,0,0,191,255,252,0,0,0,0,7,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,255,255,250,0,0,3,255,255,255,240,0,3,255,255,255,252,0,3,252,0,27,254,0,3,252,0,0,255,0,3,252,0,0,255,0,3,252,0,0,255,0,3,252,0,0,255,0,3,252,0,7,254,0,3,255,255,255,252,0,3,255,255,255,240,0,3,255,255,254,64, + // 0x044b ы + 24,20,120,30,3,0,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,0,0,0,1,253,255,255,254,64,1,253,255,255,255,244,1,253,255,255,255,253,1,253,255,0,7,255,1,253,255,0,0,255,1,253,255,0,0,191,65,253,255,0,0,191,65,253,255,0,0,255,1,253,255,0,7,255,1,253,255,255,255,252,1,253,255,255,255,244,1,253,255,255,254,64,1,253, + // 0x044c ь + 18,20,100,22,3,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,255,255,144,0,255,255,255,253,0,255,255,255,255,64,255,0,5,255,192,255,0,0,63,208,255,0,0,47,208,255,0,0,47,208,255,0,0,63,192,255,0,1,255,192,255,255,255,255,0,255,255,255,253,0,255,255,255,144,0, + // 0x044d э + 16,22,88,18,1,255,0,20,0,0,47,255,244,0,127,255,255,64,63,255,255,208,41,0,127,240,0,0,15,248,0,0,3,252,0,0,3,252,0,0,2,253,6,170,171,253,11,255,255,254,11,255,255,254,1,85,86,253,0,0,2,253,0,0,3,252,0,0,7,252,0,0,15,244,160,0,127,240,255,255,255,192,255,255,255,0,127,255,244,0,0,84,0,0, + // 0x044e ю + 27,22,154,31,3,255,0,0,0,0,20,0,0,255,0,0,31,255,208,0,255,0,0,255,255,252,0,255,0,3,255,255,255,0,255,0,15,253,1,255,192,255,0,31,240,0,63,208,255,0,63,208,0,31,240,255,0,63,192,0,15,240,255,0,63,192,0,15,240,255,255,255,128,0,11,244,255,255,255,128,0,11,244,255,255,255,128,0,11,244,255,85,191,128,0,11,244,255,0,63,192,0,15,244,255,0,63,192,0,15,240,255,0,63,208,0,31,240,255,0,31,240,0,63,208,255,0,15,252,0,255,192,255,0,3,255,255,255,0,255,0,0,255,255,252,0,255,0,0,47,255,224,0,0,0,0,0,84,0,0, + // 0x044f я + 18,20,100,21,0,0,0,27,255,255,240,1,255,255,255,240,7,255,255,255,240,15,253,0,15,240,15,240,0,15,240,31,224,0,15,240,31,208,0,15,240,15,240,0,15,240,15,248,0,15,240,7,255,255,255,240,1,255,255,255,240,0,47,255,255,240,0,31,224,15,240,0,63,192,15,240,0,255,64,15,240,2,254,0,15,240,3,252,0,15,240,15,244,0,15,240,47,240,0,15,240,127,192,0,15,240, + // 0x0450 ѐ + 255, + // 0x0451 ё + 18,28,140,21,2,255,1,248,7,224,0,3,252,11,240,0,2,252,11,240,0,0,160,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0452 ђ + 255, + // 0x0453 ѓ + 255, + // 0x0454 є + 15,22,88,19,2,255,0,0,84,0,0,47,255,244,2,255,255,252,11,255,255,252,31,248,0,100,63,208,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,170,170,128,255,255,255,192,255,255,255,192,255,85,85,64,255,0,0,0,191,64,0,0,127,128,0,0,63,208,0,0,47,248,0,44,15,255,255,252,2,255,255,252,0,111,255,244,0,0,84,0, + // 0x0455 ѕ + 255, + // 0x0456 і + 4,28,28,10,3,0,20,255,255,255,125,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0457 ї + 12,27,81,10,255,0,63,0,252,127,65,253,127,64,253,25,0,104,0,0,0,0,0,0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x0458 ј + 255, + // 0x0459 љ + 255, + // 0x045a њ + 255, + // 0x045b ћ + 255, + // 0x045c ќ + 255, + // 0x045d ѝ + 255, + // 0x045e ў + 255, + // 0x045f џ + 255, + // 0x0460 Ѡ + 255, + // 0x0461 ѡ + 255, + // 0x0462 Ѣ + 255, + // 0x0463 ѣ + 255, + // 0x0464 Ѥ + 255, + // 0x0465 ѥ + 255, + // 0x0466 Ѧ + 255, + // 0x0467 ѧ + 255, + // 0x0468 Ѩ + 255, + // 0x0469 ѩ + 255, + // 0x046a Ѫ + 255, + // 0x046b ѫ + 255, + // 0x046c Ѭ + 255, + // 0x046d ѭ + 255, + // 0x046e Ѯ + 255, + // 0x046f ѯ + 255, + // 0x0470 Ѱ + 255, + // 0x0471 ѱ + 255, + // 0x0472 Ѳ + 255, + // 0x0473 ѳ + 255, + // 0x0474 Ѵ + 255, + // 0x0475 ѵ + 255, + // 0x0476 Ѷ + 255, + // 0x0477 ѷ + 255, + // 0x0478 Ѹ + 255, + // 0x0479 ѹ + 255, + // 0x047a Ѻ + 255, + // 0x047b ѻ + 255, + // 0x047c Ѽ + 255, + // 0x047d ѽ + 255, + // 0x047e Ѿ + 255, + // 0x047f ѿ + 255, + // 0x0480 Ҁ + 255, + // 0x0481 ҁ + 255, + // 0x0482 ҂ + 255, + // 0x0483 ҃ + 255, + // 0x0484 ҄ + 255, + // 0x0485 ҅ + 255, + // 0x0486 ҆ + 255, + // 0x0487 ҇ + 255, + // 0x0488 ҈ + 255, + // 0x0489 ҉ + 255, + // 0x048a Ҋ + 255, + // 0x048b ҋ + 255, + // 0x048c Ҍ + 255, + // 0x048d ҍ + 255, + // 0x048e Ҏ + 255, + // 0x048f ҏ + 255, + // 0x0490 Ґ + 17,32,160,20,3,0,0,0,0,63,64,0,0,0,63,64,0,0,0,63,64,0,0,0,63,64,0,0,0,63,64,21,85,85,191,64,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0491 ґ + 13,26,104,17,3,0,0,0,26,128,0,0,47,192,0,0,47,192,0,0,47,192,0,0,47,192,0,0,47,192,255,255,255,192,255,255,255,192,255,255,255,192,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Greek_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Greek_27.cpp new file mode 100644 index 000000000000..4767eed15a02 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Greek_27.cpp @@ -0,0 +1,178 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Greek 37pt, capital 'A' height: 27px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +extern const uint8_t NotoSans_Medium_Greek_27[10040] = { + 130,27,134,3,206,3,35,247, // unifont_t + // 0x0386 Ά + 27,27,189,27,0,0,10,164,0,42,128,0,0,15,240,0,127,224,0,0,47,224,0,191,240,0,0,63,192,0,255,244,0,0,63,64,1,255,248,0,0,126,0,3,250,252,0,0,104,0,7,244,253,0,0,0,0,11,240,255,0,0,0,0,15,240,191,0,0,0,0,31,208,63,128,0,0,0,63,192,63,192,0,0,0,63,128,47,208,0,0,0,191,64,15,224,0,0,0,255,0,15,240,0,0,1,254,0,7,244,0,0,2,253,0,3,252,0,0,3,255,255,255,252,0,0,7,255,255,255,254,0,0,15,255,255,255,255,0,0,15,245,85,85,255,64,0,47,224,0,0,127,128,0,63,192,0,0,63,192,0,127,192,0,0,47,208,0,191,64,0,0,31,240,0,255,0,0,0,15,240,1,254,0,0,0,11,248,3,253,0,0,0,3,252, + // 0x0387 · + 255, + // 0x0388 Έ + 25,27,189,27,0,0,10,164,5,85,85,85,64,15,240,15,255,255,255,192,47,224,15,255,255,255,192,63,192,15,255,255,255,192,63,64,15,244,0,0,0,126,0,15,244,0,0,0,104,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,249,85,85,0,0,0,15,255,255,255,64,0,0,15,255,255,255,64,0,0,15,255,255,255,64,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,244,0,0,0,0,0,15,249,85,85,64,0,0,15,255,255,255,192,0,0,15,255,255,255,192,0,0,15,255,255,255,192, + // 0x0389 Ή + 31,27,216,34,0,0,10,164,5,80,0,0,1,84,15,240,15,244,0,0,3,252,47,224,15,244,0,0,3,252,63,192,15,244,0,0,3,252,63,64,15,244,0,0,3,252,126,0,15,244,0,0,3,252,104,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,249,85,85,91,252,0,0,15,255,255,255,255,252,0,0,15,255,255,255,255,252,0,0,15,255,255,255,255,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252,0,0,15,244,0,0,3,252, + // 0x038a Ί + 19,27,135,21,0,0,10,164,21,85,84,15,240,63,255,252,47,224,63,255,252,63,192,6,255,144,63,64,0,255,0,126,0,0,255,0,104,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,31,255,244,0,0,63,255,252,0,0,63,255,252, + // 0x038b ΋ + 255, + // 0x038c Ό + 32,28,224,34,0,255,10,164,0,1,175,233,0,0,15,240,0,47,255,255,224,0,47,224,1,255,255,255,252,0,63,192,7,255,250,191,255,64,63,64,31,253,0,2,255,192,126,0,63,240,0,0,63,240,104,0,127,192,0,0,31,244,0,0,255,128,0,0,11,248,0,0,255,0,0,0,7,252,0,1,255,0,0,0,3,253,0,2,254,0,0,0,3,253,0,3,253,0,0,0,2,254,0,3,253,0,0,0,2,254,0,3,253,0,0,0,2,254,0,3,253,0,0,0,2,254,0,3,253,0,0,0,2,254,0,2,254,0,0,0,2,254,0,2,254,0,0,0,3,253,0,1,255,0,0,0,3,252,0,0,255,64,0,0,11,252,0,0,191,192,0,0,15,248,0,0,127,224,0,0,47,240,0,0,47,248,0,0,191,208,0,0,15,255,64,11,255,128,0,0,3,255,255,255,254,0,0,0,0,191,255,255,244,0,0,0,0,11,255,255,128,0,0,0,0,0,21,64,0,0, + // 0x038d ΍ + 255, + // 0x038e Ύ + 30,27,216,30,0,0,10,164,21,64,0,0,5,80,15,240,63,208,0,0,47,224,47,224,31,240,0,0,63,192,63,192,15,244,0,0,191,128,63,64,7,252,0,0,255,0,126,0,3,253,0,2,253,0,104,0,0,255,0,3,252,0,0,0,0,191,128,15,244,0,0,0,0,63,192,31,240,0,0,0,0,47,224,63,208,0,0,0,0,15,240,127,128,0,0,0,0,11,248,255,0,0,0,0,0,3,254,254,0,0,0,0,0,1,255,252,0,0,0,0,0,0,255,248,0,0,0,0,0,0,127,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0, + // 0x038f Ώ + 31,27,216,32,0,0,10,164,0,1,191,164,0,0,15,240,0,127,255,255,128,0,47,224,3,255,255,255,244,0,63,192,15,255,234,255,254,0,63,64,63,248,0,7,255,64,126,0,191,208,0,0,255,192,104,0,255,128,0,0,63,224,0,2,255,0,0,0,31,240,0,3,253,0,0,0,15,244,0,3,252,0,0,0,11,248,0,7,252,0,0,0,7,252,0,7,252,0,0,0,7,252,0,7,248,0,0,0,3,252,0,7,248,0,0,0,3,252,0,7,252,0,0,0,3,252,0,3,252,0,0,0,7,248,0,3,252,0,0,0,11,244,0,2,253,0,0,0,15,240,0,0,255,0,0,0,31,224,0,0,191,64,0,0,63,192,0,0,63,192,0,0,127,128,0,0,15,240,0,1,254,0,0,0,7,252,0,7,248,0,0,5,86,255,0,47,245,84,0,11,255,255,64,63,255,252,0,11,255,255,64,63,255,252,0,11,255,255,64,63,255,252, + // 0x0390 ΐ + 255, + // 0x0391 Α + 24,27,162,24,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0392 Β + 20,27,135,24,3,0,21,85,84,0,0,127,255,255,248,0,127,255,255,255,64,127,255,255,255,208,127,128,1,191,240,127,128,0,31,244,127,128,0,15,244,127,128,0,11,244,127,128,0,11,244,127,128,0,15,240,127,128,0,47,224,127,149,86,255,128,127,255,255,253,0,127,255,255,249,0,127,255,255,255,192,127,128,0,127,240,127,128,0,15,248,127,128,0,3,252,127,128,0,3,252,127,128,0,3,253,127,128,0,3,252,127,128,0,11,252,127,128,0,31,248,127,149,86,255,240,127,255,255,255,208,127,255,255,255,0,127,255,255,228,0, + // 0x0393 Γ + 15,27,108,19,3,0,21,85,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0, + // 0x0394 Δ + 24,27,162,24,0,0,0,0,10,160,0,0,0,0,31,244,0,0,0,0,63,252,0,0,0,0,127,252,0,0,0,0,191,254,0,0,0,0,254,191,0,0,0,1,252,127,64,0,0,3,252,63,192,0,0,3,248,47,192,0,0,11,240,15,224,0,0,15,240,15,240,0,0,31,208,7,244,0,0,63,192,3,252,0,0,63,128,2,252,0,0,191,64,1,254,0,0,255,0,0,255,0,1,254,0,0,191,64,3,252,0,0,63,128,3,252,0,0,63,192,11,244,0,0,31,224,15,240,0,0,15,240,31,224,0,0,15,244,47,208,0,0,7,248,63,234,170,170,171,252,127,255,255,255,255,253,191,255,255,255,255,254,191,255,255,255,255,254, + // 0x0395 Ε + 16,27,108,21,3,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0396 Ζ + 19,27,135,21,1,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x0397 Η + 21,27,162,28,3,0,21,0,0,0,21,64,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,149,85,85,127,192,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x0398 Θ + 25,28,196,29,2,255,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,131,255,255,240,127,192,255,67,255,255,240,127,192,255,67,255,255,240,127,192,191,128,85,85,64,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x0399 Ι + 11,27,81,13,1,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x039a Κ + 20,27,135,23,3,0,21,0,0,1,85,127,128,0,7,253,127,128,0,15,244,127,128,0,63,224,127,128,0,255,128,127,128,2,255,0,127,128,11,252,0,127,128,31,240,0,127,128,127,192,0,127,128,255,64,0,127,131,253,0,0,127,143,248,0,0,127,175,244,0,0,127,255,252,0,0,127,255,254,0,0,127,245,255,64,0,127,192,191,192,0,127,128,63,224,0,127,128,31,244,0,127,128,11,252,0,127,128,3,255,0,127,128,0,255,128,127,128,0,127,192,127,128,0,47,240,127,128,0,15,248,127,128,0,7,253,127,128,0,2,255, + // 0x039b Λ + 23,27,162,23,0,0,0,0,26,144,0,0,0,0,63,240,0,0,0,0,63,244,0,0,0,0,191,248,0,0,0,0,255,252,0,0,0,1,253,253,0,0,0,2,252,255,0,0,0,3,248,127,0,0,0,7,244,63,128,0,0,11,240,63,192,0,0,15,224,31,192,0,0,31,208,15,224,0,0,63,192,15,240,0,0,63,128,7,244,0,0,191,64,3,248,0,0,255,0,3,252,0,0,254,0,1,253,0,2,253,0,0,255,0,3,252,0,0,255,0,7,248,0,0,127,64,11,244,0,0,63,192,15,240,0,0,63,192,31,224,0,0,47,224,47,208,0,0,15,240,63,192,0,0,15,244,127,128,0,0,11,248,255,64,0,0,3,252, + // 0x039c Μ + 28,27,189,34,3,0,21,80,0,0,0,5,84,127,248,0,0,0,47,253,127,252,0,0,0,63,253,127,253,0,0,0,127,253,127,254,0,0,0,191,253,127,191,0,0,0,254,253,127,127,64,0,1,253,253,127,63,128,0,3,249,253,127,47,192,0,3,241,253,127,15,208,0,11,241,253,127,15,240,0,15,225,253,127,7,240,0,31,193,253,127,3,244,0,47,193,253,127,3,252,0,63,65,253,127,1,252,0,127,1,253,127,0,254,0,190,1,253,127,0,191,0,253,1,253,127,0,127,65,252,1,253,127,0,63,131,248,1,253,127,0,47,195,240,1,253,127,0,31,219,240,1,253,127,0,15,239,208,1,253,127,0,11,255,192,1,253,127,0,3,255,128,1,253,127,0,3,255,64,1,253,127,0,2,255,0,1,253,127,0,0,254,0,1,253, + // 0x039d Ν + 22,27,162,29,3,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x039e Ξ + 19,27,135,23,2,0,21,85,85,85,80,63,255,255,255,240,63,255,255,255,240,63,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,170,170,64,11,255,255,255,128,11,255,255,255,128,11,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,84,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252, + // 0x039f Ο + 25,28,196,29,2,255,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x03a0 Π + 21,27,162,27,3,0,21,85,85,85,85,64,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x03a1 Ρ + 18,27,135,23,3,0,21,85,80,0,0,127,255,255,208,0,127,255,255,253,0,127,255,255,255,0,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,224,127,128,0,31,240,127,128,0,31,224,127,128,0,47,224,127,128,0,63,208,127,128,1,255,192,127,149,111,255,64,127,255,255,253,0,127,255,255,240,0,127,255,250,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x03a2 ΢ + 255, + // 0x03a3 Σ + 19,27,135,21,1,0,21,85,85,85,80,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,47,240,0,0,0,15,252,0,0,0,3,254,0,0,0,0,255,128,0,0,0,127,208,0,0,0,31,244,0,0,0,11,252,0,0,0,2,255,0,0,0,0,255,192,0,0,0,127,192,0,0,0,255,0,0,0,3,253,0,0,0,15,244,0,0,0,47,224,0,0,0,127,192,0,0,1,255,0,0,0,3,252,0,0,0,15,244,0,0,0,47,224,0,0,0,127,213,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x03a4 Τ + 21,27,162,21,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x03a5 Υ + 21,27,162,22,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x03a6 Φ + 28,28,196,32,2,255,0,0,0,169,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,1,175,255,250,64,0,0,47,255,255,255,248,0,2,255,255,255,255,255,64,11,255,229,255,91,255,224,31,248,0,255,0,63,244,63,208,0,255,0,11,252,191,128,0,255,0,3,253,255,64,0,255,0,1,254,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,255,0,0,255,0,0,255,191,64,0,255,0,2,254,127,192,0,255,0,3,252,63,240,0,255,0,15,248,15,253,0,255,0,127,240,7,255,250,255,175,255,208,1,255,255,255,255,255,0,0,31,255,255,255,244,0,0,0,90,255,165,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0, + // 0x03a7 Χ + 22,27,162,23,0,0,21,64,0,0,5,80,47,224,0,0,63,192,15,244,0,0,191,128,7,252,0,0,255,0,3,254,0,3,253,0,0,255,0,7,248,0,0,191,128,15,240,0,0,63,208,47,208,0,0,15,240,127,128,0,0,11,248,255,0,0,0,3,254,253,0,0,0,1,255,252,0,0,0,0,191,240,0,0,0,0,127,240,0,0,0,0,255,244,0,0,0,2,255,252,0,0,0,3,254,254,0,0,0,15,240,255,64,0,0,31,224,127,192,0,0,63,192,47,224,0,0,191,64,15,244,0,1,255,0,7,252,0,3,252,0,3,254,0,11,248,0,0,255,0,31,240,0,0,191,192,63,208,0,0,63,208,191,128,0,0,31,240, + // 0x03a8 Ψ + 25,27,189,31,3,0,85,0,1,80,0,21,64,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,0,7,244,0,127,128,191,64,7,244,0,127,128,191,64,7,244,0,127,128,127,128,7,244,0,191,64,63,192,7,244,0,255,0,63,224,7,244,2,255,0,31,244,7,244,7,253,0,11,255,91,249,191,248,0,2,255,255,255,255,224,0,0,127,255,255,255,64,0,0,6,255,255,228,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0, + // 0x03a9 Ω + 25,27,189,27,1,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,191,240,0,15,253,0,0,31,252,0,31,244,0,0,7,253,0,63,224,0,0,2,255,0,63,192,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,64,0,0,0,127,128,191,64,0,0,0,127,128,191,128,0,0,0,127,128,127,128,0,0,0,191,64,63,192,0,0,0,255,0,63,192,0,0,0,255,0,31,224,0,0,2,253,0,15,240,0,0,3,252,0,7,248,0,0,11,244,0,1,254,0,0,47,208,0,0,127,128,0,191,64,0,85,111,240,3,254,85,64,255,255,240,3,255,255,192,255,255,240,3,255,255,192,255,255,240,3,255,255,192, + // 0x03aa Ϊ + 255, + // 0x03ab Ϋ + 255, + // 0x03ac ά + 21,30,180,23,2,255,0,0,26,160,0,0,0,0,47,224,0,0,0,0,63,192,0,0,0,0,127,64,0,0,0,0,191,0,0,0,0,0,252,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1,64,0,0,0,0,191,253,7,240,0,3,255,255,203,240,0,15,255,255,255,240,0,47,248,1,255,240,0,63,208,0,127,240,0,127,192,0,47,240,0,191,64,0,31,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,191,64,0,31,240,0,191,128,0,47,240,0,63,208,0,63,240,0,47,244,1,255,244,0,15,255,255,251,255,64,3,255,255,195,255,128,0,191,254,1,255,64,0,1,64,0,20,0, + // 0x03ad έ + 16,30,120,18,1,255,0,0,26,160,0,0,63,224,0,0,63,192,0,0,127,64,0,0,191,0,0,0,252,0,0,0,164,0,0,0,0,0,0,0,80,0,0,191,255,228,3,255,255,253,15,255,255,252,31,240,0,120,47,208,0,0,47,192,0,0,31,208,0,0,15,244,0,0,3,255,254,0,0,191,255,0,3,255,255,0,31,249,0,0,63,192,0,0,127,128,0,0,127,128,0,0,127,192,0,0,63,224,0,28,47,255,255,252,11,255,255,252,1,191,255,244,0,1,84,0, + // 0x03ae ή + 17,38,190,23,3,247,0,2,170,0,0,0,3,253,0,0,0,7,248,0,0,0,11,240,0,0,0,15,208,0,0,0,31,192,0,0,0,26,0,0,0,0,0,0,0,0,0,0,20,0,0,253,11,255,224,0,253,63,255,252,0,255,255,255,255,0,255,248,2,255,64,255,208,0,191,128,255,192,0,63,192,255,64,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192, + // 0x03af ί + 9,30,90,13,3,255,2,169,0,7,252,0,11,244,0,15,224,0,31,192,0,47,64,0,26,0,0,0,0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,191,128,0,127,255,192,47,255,192,11,255,192,0,21,0, + // 0x03b0 ΰ + 255, + // 0x03b1 α + 21,22,132,23,2,255,0,1,64,0,0,0,0,191,253,7,240,0,3,255,255,203,240,0,15,255,255,255,240,0,47,248,1,255,240,0,63,208,0,127,240,0,127,192,0,47,240,0,191,64,0,31,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,191,64,0,31,240,0,191,128,0,47,240,0,63,208,0,63,240,0,47,244,1,255,244,0,15,255,255,251,255,64,3,255,255,195,255,128,0,191,254,1,255,64,0,1,64,0,20,0, + // 0x03b2 β + 18,38,190,23,3,247,0,0,80,0,0,0,127,255,128,0,3,255,255,248,0,15,255,255,253,0,63,244,7,255,0,127,192,0,255,64,191,128,0,191,128,255,0,0,127,128,255,0,0,127,128,255,0,0,127,128,255,0,0,255,0,255,0,1,254,0,255,1,91,248,0,255,11,255,144,0,255,11,255,144,0,255,11,255,253,0,255,0,1,255,64,255,0,0,63,192,255,0,0,47,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,224,255,0,0,63,208,255,224,1,255,192,255,255,255,255,0,255,255,255,253,0,255,111,255,224,0,255,1,84,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x03b3 γ + 19,28,140,20,0,248,255,0,0,7,244,127,128,0,7,244,63,192,0,7,244,63,192,0,11,244,31,224,0,11,240,15,240,0,15,240,11,240,0,15,240,7,244,0,15,240,3,252,0,31,208,2,252,0,47,192,1,253,0,63,192,0,255,0,63,128,0,191,0,191,0,0,63,64,254,0,0,63,195,252,0,0,47,199,248,0,0,15,239,240,0,0,15,255,192,0,0,7,255,64,0,0,3,253,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,2,252,0,0, + // 0x03b4 δ + 19,30,150,22,1,255,0,0,5,0,0,0,2,255,253,0,0,31,255,255,208,0,127,255,255,240,0,255,64,11,224,1,254,0,0,192,1,254,0,0,0,1,255,0,0,0,0,255,128,0,0,0,127,240,0,0,0,31,254,0,0,0,7,255,224,0,0,47,255,252,0,0,255,231,255,0,3,254,0,255,192,15,244,0,47,240,47,224,0,15,244,63,192,0,7,248,63,192,0,3,252,127,128,0,3,252,127,128,0,3,252,127,128,0,3,252,127,192,0,3,252,63,208,0,11,248,47,240,0,15,244,15,253,0,127,224,7,255,255,255,192,1,255,255,255,0,0,47,255,228,0,0,0,84,0,0, + // 0x03b5 ε + 16,22,88,18,1,255,0,0,80,0,0,191,255,228,3,255,255,253,15,255,255,252,31,240,0,120,47,208,0,0,47,192,0,0,31,208,0,0,15,244,0,0,3,255,254,0,0,191,255,0,3,255,255,0,31,249,0,0,63,192,0,0,127,128,0,0,127,128,0,0,127,192,0,0,63,224,0,28,47,255,255,252,11,255,255,252,1,191,255,244,0,1,84,0, + // 0x03b6 ζ + 15,36,144,17,2,248,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,47,224,0,0,127,128,0,0,255,0,0,3,252,0,0,11,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,7,252,0,0,15,240,0,0,47,208,0,0,63,192,0,0,127,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,128,0,0,191,224,0,0,63,254,0,0,31,255,249,0,3,255,255,208,0,111,255,244,0,1,191,252,0,0,7,252,0,0,3,252,0,0,3,252,0,0,3,248,0,0,7,244,0,0,15,240,0,0,5,64, + // 0x03b7 η + 17,30,150,23,3,247,0,0,20,0,0,253,11,255,224,0,253,63,255,252,0,255,255,255,255,0,255,248,2,255,64,255,208,0,191,128,255,192,0,63,192,255,64,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192, + // 0x03b8 θ + 18,30,150,22,2,255,0,0,80,0,0,0,47,255,128,0,1,255,255,244,0,7,255,255,252,0,15,248,2,255,0,31,224,0,191,64,63,192,0,63,192,63,128,0,47,192,127,64,0,31,224,191,64,0,15,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,0,0,15,240,127,64,0,31,224,63,128,0,47,208,63,192,0,63,192,31,224,0,127,128,15,248,1,255,0,3,255,255,253,0,1,255,255,248,0,0,47,255,144,0,0,0,84,0,0, + // 0x03b9 ι + 9,21,63,13,3,255,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,191,128,0,127,255,192,47,255,192,11,255,192,0,21,0, + // 0x03ba κ + 17,20,100,21,3,0,255,0,0,255,64,255,0,3,254,0,255,0,11,252,0,255,0,47,240,0,255,0,127,192,0,255,1,255,64,0,255,3,253,0,0,255,15,248,0,0,255,47,224,0,0,255,191,224,0,0,255,255,244,0,0,255,251,252,0,0,255,210,255,0,0,255,0,255,128,0,255,0,63,208,0,255,0,31,240,0,255,0,11,252,0,255,0,3,254,0,255,0,0,255,64,255,0,0,127,192, + // 0x03bb λ + 20,30,150,20,0,255,5,0,0,0,0,255,248,0,0,0,255,255,0,0,0,255,255,192,0,0,0,127,224,0,0,0,15,240,0,0,0,11,244,0,0,0,3,252,0,0,0,2,252,0,0,0,2,254,0,0,0,3,255,0,0,0,7,255,64,0,0,11,255,128,0,0,15,239,192,0,0,31,207,208,0,0,63,143,240,0,0,63,75,240,0,0,191,7,248,0,0,255,3,252,0,1,253,2,253,0,2,252,0,254,0,3,252,0,255,0,7,248,0,191,64,15,240,0,63,192,15,240,0,63,208,47,224,0,31,224,63,208,0,15,255,63,192,0,11,255,191,128,0,3,255,0,0,0,0,84, + // 0x03bc μ + 20,29,145,24,3,247,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,64,0,127,192,255,128,0,255,208,255,224,7,255,224,255,255,255,239,255,255,255,255,79,255,255,63,253,3,255,255,1,64,0,20,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x03bd ν + 19,20,100,20,0,0,255,0,0,7,244,127,128,0,7,244,63,192,0,7,244,63,192,0,11,244,31,224,0,11,240,15,240,0,15,240,11,240,0,15,240,7,244,0,15,240,3,252,0,31,224,2,252,0,47,192,1,253,0,63,192,0,255,0,63,128,0,191,0,191,0,0,63,64,254,0,0,63,195,252,0,0,47,199,248,0,0,15,239,240,0,0,15,255,192,0,0,7,255,64,0,0,3,253,0,0, + // 0x03be ξ + 16,36,144,19,2,248,63,255,255,253,63,255,255,253,63,255,255,168,0,191,64,0,7,244,0,0,15,224,0,0,47,192,0,0,63,192,0,0,63,192,0,0,47,208,0,0,31,240,0,0,11,254,80,0,1,255,255,248,0,127,255,248,3,255,255,248,15,248,0,0,63,208,0,0,127,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,128,0,0,191,208,0,0,63,254,0,0,15,255,249,0,2,255,255,224,0,47,255,248,0,0,127,252,0,0,3,252,0,0,3,252,0,0,3,252,0,0,3,252,0,0,7,244,0,0,15,240,0,0,5,80, + // 0x03bf ο + 19,22,110,23,2,255,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x03c0 π + 25,21,147,25,0,255,127,255,255,255,255,255,0,127,255,255,255,255,255,64,127,255,255,255,255,255,64,0,127,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,64,0,0,63,128,0,191,128,0,0,63,128,0,127,255,0,0,63,128,0,63,255,0,0,63,128,0,15,254,0,0,0,0,0,0,80,0, + // 0x03c1 ρ + 19,30,150,22,2,247,0,0,80,0,0,0,47,255,208,0,1,255,255,252,0,7,255,255,255,0,15,248,1,255,192,47,240,0,63,208,63,192,0,31,224,63,192,0,15,240,127,128,0,15,240,127,128,0,11,244,127,64,0,11,244,127,64,0,11,244,127,64,0,11,244,127,64,0,15,244,127,64,0,15,240,127,64,0,31,240,127,128,0,63,208,127,244,1,255,192,127,255,255,255,0,127,255,255,252,0,127,95,255,208,0,127,64,84,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0,127,64,0,0,0, + // 0x03c2 ς + 15,29,116,18,2,248,0,0,20,0,0,47,255,228,1,255,255,248,11,255,255,244,31,249,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,254,0,0,11,255,249,0,1,255,255,208,0,47,255,244,0,0,127,252,0,0,7,252,0,0,3,252,0,0,3,252,0,0,3,248,0,0,7,244,0,0,15,240,0,0,5,64, + // 0x03c3 σ + 20,21,105,23,2,255,0,6,255,255,255,0,191,255,255,255,7,255,255,255,255,15,254,64,254,0,63,240,0,63,128,127,192,0,47,192,191,128,0,31,224,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,11,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,47,224,63,208,0,127,192,47,244,1,255,128,11,255,255,255,0,2,255,255,248,0,0,127,255,208,0,0,1,84,0,0, + // 0x03c4 τ + 18,21,105,19,0,255,127,255,255,255,208,127,255,255,255,208,127,255,255,255,208,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,252,0,0,0,7,255,255,64,0,2,255,255,64,0,0,191,255,0,0,0,1,80,0, + // 0x03c5 υ + 17,21,105,23,3,255,255,0,0,255,0,255,0,0,255,0,255,0,0,191,64,255,0,0,127,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,128,255,0,0,255,64,191,128,1,255,0,127,208,11,253,0,63,255,255,248,0,15,255,255,224,0,2,255,255,64,0,0,5,64,0,0, + // 0x03c6 φ + 24,37,222,28,2,247,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,7,255,255,144,0,0,191,255,255,253,0,3,255,255,255,255,128,15,254,15,241,191,224,47,240,15,240,31,244,63,192,15,240,7,252,191,128,15,240,3,253,255,64,15,240,1,254,255,0,15,240,1,255,255,0,15,240,0,255,255,0,15,240,0,255,255,0,15,240,0,255,255,64,15,240,1,254,191,128,15,240,3,253,63,192,15,240,7,252,47,240,15,240,15,244,15,253,15,240,191,240,3,255,255,255,255,192,0,191,255,255,254,0,0,11,255,255,208,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,224,0,0, + // 0x03c7 χ + 21,29,174,22,1,247,255,64,0,0,63,192,255,224,0,0,191,64,255,240,0,1,254,0,11,252,0,3,252,0,3,253,0,7,248,0,1,255,0,15,240,0,0,255,64,31,208,0,0,127,192,63,192,0,0,63,192,191,0,0,0,31,224,254,0,0,0,15,242,252,0,0,0,7,255,244,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,2,255,192,0,0,0,7,255,224,0,0,0,15,255,240,0,0,0,47,215,248,0,0,0,63,131,252,0,0,0,255,1,254,0,0,1,253,0,255,0,0,3,252,0,191,128,0,11,244,0,63,208,0,31,224,0,47,249,64,63,192,0,15,255,192,191,64,0,3,255,192,255,0,0,0,191,128, + // 0x03c8 ψ + 23,37,222,29,3,247,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,254,0,47,192,11,240,254,0,47,192,11,240,254,0,47,192,7,244,254,0,47,192,3,248,254,0,47,192,3,252,254,0,47,192,3,252,254,0,47,192,3,252,254,0,47,192,2,252,254,0,47,192,2,252,254,0,47,192,2,252,254,0,47,192,2,252,254,0,47,192,2,252,255,0,47,192,3,252,255,0,47,192,3,248,191,64,47,192,11,244,63,192,47,192,47,240,47,244,47,193,255,208,15,255,255,255,255,64,3,255,255,255,253,0,0,111,255,255,144,0,0,0,47,208,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,47,192,0,0,0,0,31,192,0,0, + // 0x03c9 ω + 26,21,147,30,2,255,2,252,0,0,2,252,0,7,244,0,0,0,254,0,15,240,0,0,0,191,64,31,208,0,0,0,63,128,63,192,0,0,0,47,192,63,128,0,0,0,31,208,127,64,0,84,0,15,224,191,64,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,64,2,252,0,15,240,127,64,3,252,0,15,224,63,128,3,252,0,31,208,63,192,7,254,0,63,192,31,240,15,239,64,191,128,15,255,255,159,255,255,0,3,255,255,11,255,253,0,0,191,248,2,255,240,0,0,5,64,0,5,0,0, + // 0x03ca ϊ + 255, + // 0x03cb ϋ + 255, + // 0x03cc ό + 19,30,150,23,2,255,0,0,10,164,0,0,0,31,240,0,0,0,47,208,0,0,0,63,192,0,0,0,63,0,0,0,0,190,0,0,0,0,104,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x03cd ύ + 17,30,150,23,3,255,0,0,106,128,0,0,0,255,128,0,0,0,255,0,0,0,1,253,0,0,0,2,248,0,0,0,3,240,0,0,0,2,144,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,255,0,255,0,0,255,0,255,0,0,191,64,255,0,0,127,128,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,128,255,0,0,255,64,191,128,1,255,0,127,208,11,253,0,63,255,255,248,0,15,255,255,224,0,2,255,255,64,0,0,5,64,0,0, + // 0x03ce ώ + 26,30,210,30,2,255,0,0,0,10,164,0,0,0,0,0,31,240,0,0,0,0,0,47,208,0,0,0,0,0,63,128,0,0,0,0,0,127,0,0,0,0,0,0,189,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,252,0,0,2,252,0,7,244,0,0,0,254,0,15,240,0,0,0,191,64,31,208,0,0,0,63,128,63,192,0,0,0,47,192,63,128,0,0,0,31,208,127,64,0,84,0,15,224,191,64,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,0,2,252,0,15,240,191,64,2,252,0,15,240,127,64,3,252,0,15,224,63,128,3,252,0,31,208,63,192,7,254,0,63,192,31,240,15,239,64,191,128,15,255,255,159,255,255,0,3,255,255,11,255,253,0,0,191,248,2,255,240,0,0,5,64,0,5,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Katakana_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Katakana_27.cpp new file mode 100644 index 000000000000..7fd80a5ebf94 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Katakana_27.cpp @@ -0,0 +1,238 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Katakana 37pt, capital 'A' height: 27px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +extern const uint8_t NotoSans_Medium_Katakana_27[13151] = { + 162,27,160,48,104,136,35,247, // unifont_t + // 0x30a0 ゠ + 160,48,17,8,40,37,10,10,191,255,255,255,128,21,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,128,21,85,85,85,0, + // 0x30a1 ァ + 161,48,26,25,175,37,6,252,191,255,255,255,255,255,192,191,255,255,255,255,255,240,191,255,255,255,255,255,240,101,85,85,85,85,191,192,0,0,0,0,0,191,64,0,0,5,80,1,255,0,0,0,15,240,7,252,0,0,0,15,240,31,244,0,0,0,15,224,127,208,0,0,0,15,225,255,128,0,0,0,15,224,254,0,0,0,0,15,224,40,0,0,0,0,31,208,0,0,0,0,0,47,192,0,0,0,0,0,63,192,0,0,0,0,0,63,128,0,0,0,0,0,255,64,0,0,0,0,1,255,0,0,0,0,0,7,253,0,0,0,0,0,31,248,0,0,0,0,0,191,240,0,0,0,0,11,255,192,0,0,0,0,3,254,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a2 ア + 162,48,31,30,240,37,4,254,186,170,170,170,170,170,170,128,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,248,191,255,255,255,255,255,255,240,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,128,0,0,0,0,0,2,255,0,0,0,0,170,0,7,252,0,0,0,0,255,0,31,244,0,0,0,0,255,0,127,224,0,0,0,0,255,2,255,128,0,0,0,0,255,15,255,0,0,0,0,0,254,11,248,0,0,0,0,0,254,2,224,0,0,0,0,1,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,47,240,0,0,0,0,0,0,127,208,0,0,0,0,0,1,255,128,0,0,0,0,0,11,255,0,0,0,0,0,0,127,252,0,0,0,0,0,6,255,240,0,0,0,0,0,3,255,192,0,0,0,0,0,0,189,0,0,0,0,0,0,0,16,0,0,0,0,0,0, + // 0x30a3 ィ + 163,48,25,26,182,37,4,253,0,0,0,0,0,13,0,0,0,0,0,0,63,64,0,0,0,0,0,255,192,0,0,0,0,3,255,128,0,0,0,0,31,254,0,0,0,0,0,191,244,0,0,0,0,3,255,192,0,0,0,0,31,254,0,0,0,0,1,255,244,0,0,0,0,31,255,208,0,0,0,1,255,255,192,0,0,0,111,255,255,192,0,0,27,255,254,63,192,0,0,127,255,224,63,192,0,0,63,253,0,63,192,0,0,31,128,0,63,192,0,0,4,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0, + // 0x30a4 イ + 164,48,29,31,248,37,3,255,0,0,0,0,0,0,4,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,192,0,0,0,0,0,15,255,0,0,0,0,0,0,127,248,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,127,253,0,0,0,0,0,2,255,224,0,0,0,0,0,47,255,64,0,0,0,0,2,255,253,0,0,0,0,0,47,255,253,0,0,0,0,7,255,255,253,0,0,0,1,191,255,226,253,0,0,0,111,255,254,2,253,0,0,0,255,255,224,2,253,0,0,0,127,249,0,2,253,0,0,0,63,64,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,254,0,0,0, + // 0x30a5 ゥ + 165,48,25,28,196,37,6,252,0,0,11,244,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,7,240,0,0,0,0,0,7,240,0,0,0,127,255,255,255,255,254,0,127,255,255,255,255,255,192,63,255,255,255,255,255,192,63,149,85,85,85,191,128,63,64,0,0,0,191,64,63,64,0,0,0,255,0,63,64,0,0,0,255,0,63,64,0,0,1,254,0,127,64,0,0,2,253,0,127,64,0,0,3,252,0,21,0,0,0,11,248,0,0,0,0,0,15,244,0,0,0,0,0,63,240,0,0,0,0,0,191,192,0,0,0,0,2,255,64,0,0,0,0,15,255,0,0,0,0,0,191,248,0,0,0,0,27,255,224,0,0,0,6,255,255,64,0,0,0,7,255,248,0,0,0,0,2,255,144,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a6 ウ + 166,48,29,33,8,37,4,254,0,0,0,191,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,41,85,85,255,149,85,104,0,127,255,255,255,255,255,255,128,127,255,255,255,255,255,255,192,63,255,255,255,255,255,255,128,63,64,0,0,0,0,255,64,63,64,0,0,0,0,255,0,63,64,0,0,0,0,255,0,63,64,0,0,0,1,255,0,63,64,0,0,0,2,254,0,63,64,0,0,0,3,253,0,127,128,0,0,0,7,252,0,127,128,0,0,0,11,248,0,127,64,0,0,0,15,244,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,0,0,0,0,0,0,11,254,0,0,0,0,0,0,63,252,0,0,0,0,0,1,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,191,255,0,0,0,0,0,111,255,248,0,0,0,0,2,255,255,192,0,0,0,0,0,191,253,0,0,0,0,0,0,63,144,0,0,0,0,0,0,8,0,0,0,0,0, + // 0x30a7 ェ + 167,48,27,21,147,37,5,255,11,255,255,255,255,255,192,11,255,255,255,255,255,192,11,255,255,255,255,255,192,5,85,86,254,85,85,64,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,127,255,255,255,255,255,244,127,255,255,255,255,255,244,127,255,255,255,255,255,244,106,170,170,170,170,170,164, + // 0x30a8 エ + 168,48,31,25,200,37,3,1,11,170,170,170,170,170,171,192,11,255,255,255,255,255,255,192,11,255,255,255,255,255,255,192,11,255,255,255,255,255,255,192,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0x30a9 ォ + 169,48,26,27,189,37,6,253,0,0,0,2,160,0,0,0,0,0,7,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,47,255,255,255,255,255,240,47,255,255,255,255,255,240,47,255,255,255,255,255,240,21,85,85,127,249,85,80,0,0,0,191,244,0,0,0,0,1,255,244,0,0,0,0,7,255,244,0,0,0,0,31,247,244,0,0,0,0,127,211,248,0,0,0,2,255,131,248,0,0,0,15,254,3,248,0,0,0,127,244,3,248,0,0,2,255,208,3,248,0,0,47,255,0,3,248,0,0,191,248,0,3,248,0,0,63,208,0,3,248,0,0,14,0,4,3,248,0,0,0,0,15,255,248,0,0,0,0,15,255,244,0,0,0,0,15,255,224,0,0,0,0,0,0,0,0,0, + // 0x30aa オ + 170,48,31,31,248,37,3,255,0,0,0,0,31,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,26,170,170,170,175,250,170,164,47,255,255,255,255,255,255,244,47,255,255,255,255,255,255,244,47,255,255,255,255,255,255,244,0,0,0,0,255,224,0,0,0,0,0,2,255,224,0,0,0,0,0,7,255,240,0,0,0,0,0,31,255,240,0,0,0,0,0,127,223,240,0,0,0,0,1,255,143,240,0,0,0,0,7,254,15,240,0,0,0,0,31,252,15,240,0,0,0,0,191,224,15,240,0,0,0,3,255,128,15,240,0,0,0,31,254,0,15,240,0,0,0,191,248,0,15,240,0,0,11,255,208,0,11,240,0,0,127,255,0,0,11,240,0,0,255,248,0,0,11,240,0,0,63,208,0,0,11,240,0,0,14,0,0,0,15,240,0,0,0,0,0,250,191,240,0,0,0,0,0,255,255,240,0,0,0,0,0,255,255,208,0,0,0,0,0,191,255,64,0,0, + // 0x30ab カ + 171,48,28,32,224,37,4,254,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,127,255,255,255,255,255,248,127,255,255,255,255,255,255,127,255,255,255,255,255,254,106,149,91,249,85,86,254,0,0,11,240,0,0,254,0,0,15,240,0,0,254,0,0,15,240,0,0,254,0,0,15,224,0,0,253,0,0,31,208,0,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,252,0,0,191,128,0,2,252,0,0,255,0,0,2,252,0,2,255,0,0,3,252,0,3,253,0,0,3,252,0,11,252,0,0,3,248,0,47,244,0,0,3,248,0,127,224,0,0,7,244,1,255,192,0,0,15,240,11,255,0,1,0,47,240,47,253,0,3,255,255,224,255,244,0,3,255,255,208,63,208,0,3,255,255,128,15,0,0,1,170,168,0,0,0,0,0,0,0,0, + // 0x30ac ガ + 172,48,32,34,16,37,3,254,0,0,0,0,0,0,0,80,0,0,0,0,0,0,3,240,0,0,2,253,0,1,225,248,0,0,3,253,0,3,240,189,0,0,2,253,0,1,252,63,0,0,2,252,0,0,189,47,0,0,2,252,0,0,63,0,0,0,2,252,0,0,40,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,42,149,91,253,85,85,255,0,0,0,7,248,0,0,255,0,0,0,7,244,0,0,255,0,0,0,11,240,0,0,255,0,0,0,15,240,0,0,254,0,0,0,15,224,0,0,254,0,0,0,31,208,0,0,254,0,0,0,63,192,0,0,253,0,0,0,63,192,0,0,253,0,0,0,191,128,0,1,253,0,0,0,255,0,0,1,252,0,0,2,254,0,0,2,252,0,0,7,252,0,0,2,252,0,0,15,248,0,0,3,252,0,0,63,240,0,0,3,248,0,0,255,208,0,0,7,248,0,3,255,128,0,0,15,244,0,31,255,0,3,254,191,240,0,191,248,0,3,255,255,224,0,127,224,0,3,255,255,192,0,15,128,0,2,255,254,0,0,1,0,0,0,0,0,0,0, + // 0x30ad キ + 173,48,30,32,0,37,4,254,0,0,10,208,0,0,0,0,0,0,31,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,240,0,0,80,0,0,0,11,244,1,175,240,0,0,0,7,254,255,255,240,0,0,5,191,255,255,255,240,0,175,255,255,255,255,254,80,0,255,255,255,255,165,0,0,0,255,255,251,253,0,0,0,0,191,164,1,254,0,0,0,0,16,0,0,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,191,0,0,1,64,0,0,0,191,64,5,191,192,0,0,0,127,155,255,255,192,0,0,5,191,255,255,255,208,0,107,255,255,255,255,250,64,255,255,255,255,255,164,0,0,255,255,255,255,208,0,0,0,255,255,148,31,208,0,0,0,186,64,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,0,0,0,0,0,0,1,64,0,0,0, + // 0x30ae ギ + 174,48,32,34,16,37,3,254,0,0,0,0,0,0,2,224,0,0,0,0,0,0,130,244,0,0,0,80,0,3,240,252,0,0,15,240,0,2,244,126,0,0,15,240,0,0,252,63,0,0,11,244,0,0,126,20,0,0,7,244,0,0,61,0,0,0,3,248,0,6,240,0,0,0,3,252,107,255,240,0,0,0,23,255,255,255,244,0,21,175,255,255,255,255,244,0,191,255,255,255,255,148,0,0,191,255,255,255,64,0,0,0,127,254,144,255,0,0,0,0,57,0,0,255,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,128,0,26,192,0,0,0,63,193,111,255,208,0,0,0,63,255,255,255,224,0,1,111,255,255,255,255,224,107,255,255,255,255,254,144,0,191,255,255,255,249,0,0,0,191,255,254,159,240,0,0,0,127,233,0,15,240,0,0,0,20,0,0,11,240,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,254,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,229,0,0,0, + // 0x30af ク + 175,48,30,33,8,37,3,254,0,0,0,57,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,253,85,85,88,0,0,0,15,255,255,255,255,128,0,0,63,255,255,255,255,224,0,0,191,255,255,255,255,192,0,1,255,64,0,0,255,128,0,7,254,0,0,0,255,64,0,31,252,0,0,1,255,0,0,127,240,0,0,3,254,0,2,255,192,0,0,3,252,0,11,255,0,0,0,11,252,0,127,252,0,0,0,15,244,0,63,240,0,0,0,47,240,0,11,128,0,0,0,127,208,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,240,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,64,0,0,0,0,0,63,253,0,0,0,0,0,2,255,244,0,0,0,0,0,31,255,192,0,0,0,0,2,255,254,0,0,0,0,0,127,255,244,0,0,0,0,0,127,255,128,0,0,0,0,0,31,248,0,0,0,0,0,0,3,64,0,0,0,0,0, + // 0x30b0 グ + 176,48,34,35,59,37,2,253,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,20,63,0,0,0,0,120,0,0,189,47,128,0,0,0,191,192,0,63,15,192,0,0,0,255,64,0,47,71,224,0,0,2,255,0,0,15,194,64,0,0,3,253,0,0,7,192,0,0,0,15,253,85,85,105,0,0,0,0,31,255,255,255,255,64,0,0,0,63,255,255,255,255,192,0,0,0,255,255,255,255,255,192,0,0,2,255,0,0,0,255,64,0,0,11,253,0,0,1,255,0,0,0,47,248,0,0,2,254,0,0,0,191,224,0,0,3,253,0,0,3,255,128,0,0,11,252,0,0,31,254,0,0,0,15,244,0,0,191,248,0,0,0,31,240,0,0,127,208,0,0,0,63,224,0,0,15,0,0,0,0,191,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,47,255,128,0,0,0,0,0,7,255,253,0,0,0,0,0,0,191,255,224,0,0,0,0,0,0,191,255,64,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0, + // 0x30b1 ケ + 177,48,32,33,8,37,2,254,0,0,20,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,255,170,170,170,170,171,0,7,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,63,224,0,7,248,0,0,0,255,192,0,11,244,0,0,2,255,64,0,11,244,0,0,7,254,0,0,15,240,0,0,31,252,0,0,15,240,0,0,127,240,0,0,31,240,0,0,63,208,0,0,47,224,0,0,7,64,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,192,0,0,0,0,0,15,255,0,0,0,0,0,0,191,252,0,0,0,0,0,0,191,240,0,0,0,0,0,0,31,128,0,0,0,0,0,0,1,0,0,0,0,0, + // 0x30b2 ゲ + 178,48,33,35,59,37,2,253,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,189,0,0,0,36,0,0,0,188,63,0,0,0,127,192,0,0,189,31,128,0,0,191,192,0,0,63,15,192,0,0,191,128,0,0,31,131,128,0,0,255,0,0,0,15,192,0,0,1,255,0,0,0,6,0,0,0,3,253,0,0,0,0,0,0,0,7,254,170,170,170,170,173,0,0,15,255,255,255,255,255,254,0,0,31,255,255,255,255,255,254,0,0,63,255,255,255,255,255,254,0,0,191,192,0,15,240,0,0,0,1,255,64,0,15,240,0,0,0,3,255,0,0,15,240,0,0,0,15,252,0,0,31,224,0,0,0,63,244,0,0,47,224,0,0,0,255,224,0,0,47,208,0,0,0,127,192,0,0,63,192,0,0,0,11,0,0,0,127,192,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,47,254,0,0,0,0,0,0,1,255,248,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b3 コ + 179,48,27,27,189,37,5,255,63,255,255,255,255,255,248,63,255,255,255,255,255,248,63,255,255,255,255,255,248,63,250,170,170,170,175,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,127,255,255,255,255,255,248,127,255,255,255,255,255,248,127,255,255,255,255,255,248,127,255,255,255,255,255,248,0,0,0,0,0,7,248,0,0,0,0,0,7,252,0,0,0,0,0,0,0, + // 0x30b4 ゴ + 180,48,30,35,24,37,5,254,0,0,0,0,0,0,5,0,0,0,0,0,0,4,63,0,0,0,0,0,0,188,47,128,0,0,0,0,0,126,15,192,0,0,0,0,0,63,7,224,0,0,0,0,0,31,131,224,0,0,0,0,0,15,192,0,0,0,0,0,0,5,0,0,191,255,255,255,255,255,240,0,191,255,255,255,255,255,240,0,191,255,255,255,255,255,240,0,191,234,170,170,170,191,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0, + // 0x30b5 サ + 181,48,32,33,8,37,2,253,0,0,169,0,0,47,192,0,0,1,254,0,0,63,192,0,0,1,254,0,0,47,192,0,0,0,254,0,0,47,192,0,0,0,254,0,0,47,192,0,0,0,254,0,0,47,192,0,0,0,254,0,0,47,192,0,0,0,254,0,0,47,192,0,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,106,170,255,170,170,191,234,170,0,0,254,0,0,47,192,0,0,0,254,0,0,47,192,0,0,0,254,0,0,63,192,0,0,0,254,0,0,63,192,0,0,0,254,0,0,63,192,0,0,0,254,0,0,63,192,0,0,0,254,0,0,63,128,0,0,1,254,0,0,127,128,0,0,1,254,0,0,191,64,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,255,224,0,0,0,0,0,11,255,192,0,0,0,0,0,191,255,0,0,0,0,0,1,255,248,0,0,0,0,0,0,127,208,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b6 ザ + 182,48,35,33,41,37,1,253,0,0,0,0,0,0,0,7,192,0,0,170,0,0,47,226,195,208,0,0,255,0,0,31,227,210,240,0,0,255,0,0,31,209,241,240,0,0,255,0,0,31,208,244,244,0,0,255,0,0,31,208,184,80,0,0,255,0,0,31,208,80,0,0,0,255,0,0,31,208,0,0,122,170,255,170,170,175,250,170,64,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,47,208,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,85,0,0,127,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,1,255,224,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,4,0,0,0,0,0, + // 0x30b7 シ + 183,48,30,30,240,37,4,255,0,3,64,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,254,0,0,0,0,0,0,15,255,192,0,0,0,0,0,1,255,248,0,0,0,0,0,0,47,252,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,176,0,0,0,0,20,0,0,0,0,0,1,0,62,0,0,0,0,0,3,128,255,224,0,0,0,0,11,192,255,253,0,0,0,0,31,224,47,255,128,0,0,0,63,240,3,255,224,0,0,0,255,192,0,127,192,0,0,3,255,64,0,11,64,0,0,15,254,0,0,1,0,0,0,63,248,0,0,0,0,0,0,255,224,0,0,0,0,0,7,255,128,0,0,0,0,0,47,254,0,0,0,0,0,0,255,244,0,0,0,0,0,11,255,208,0,0,0,0,0,127,255,0,0,0,0,0,11,255,248,0,0,0,0,1,191,255,192,0,0,0,1,191,255,253,0,0,0,0,47,255,255,224,0,0,0,0,15,255,253,0,0,0,0,0,11,255,128,0,0,0,0,0,3,144,0,0,0,0,0,0, + // 0x30b8 ジ + 184,48,32,31,248,37,3,255,0,0,0,0,0,0,7,208,0,2,192,0,0,1,7,240,0,7,248,0,0,31,66,248,0,15,255,64,0,15,192,252,0,11,255,224,0,11,224,126,0,0,255,253,0,3,240,62,0,0,31,254,0,1,248,0,0,0,2,252,0,0,244,0,0,0,0,116,0,0,0,0,8,0,0,0,0,0,0,64,47,64,0,0,0,0,2,192,127,240,0,0,0,0,3,224,191,254,0,0,0,0,15,240,15,255,208,0,0,0,47,244,1,255,240,0,0,0,191,224,0,47,224,0,0,1,255,192,0,7,192,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,191,240,0,0,0,0,0,2,255,208,0,0,0,0,0,15,255,64,0,0,0,0,0,191,252,0,0,0,0,0,3,255,224,0,0,0,0,0,47,255,128,0,0,0,0,6,255,252,0,0,0,0,0,191,255,224,0,0,0,0,111,255,255,0,0,0,0,15,255,255,244,0,0,0,0,11,255,254,0,0,0,0,0,3,255,144,0,0,0,0,0,1,228,0,0,0,0,0,0, + // 0x30b9 ス + 185,48,30,30,240,37,4,254,0,0,0,0,0,1,0,0,3,255,255,255,255,255,192,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,224,0,3,250,170,170,170,255,192,0,0,0,0,0,0,255,128,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,128,0,0,0,0,0,2,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,31,253,0,0,0,0,0,0,63,255,64,0,0,0,0,0,255,255,208,0,0,0,0,7,255,127,248,0,0,0,0,31,253,15,253,0,0,0,0,191,244,7,255,64,0,0,3,255,208,1,255,208,0,0,31,255,0,0,127,244,0,0,255,252,0,0,31,252,0,11,255,224,0,0,7,255,0,191,255,64,0,0,2,255,192,255,248,0,0,0,0,255,208,127,208,0,0,0,0,63,64,29,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0, + // 0x30ba ズ + 186,48,33,36,68,37,3,253,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,1,244,0,0,0,0,0,0,1,224,252,0,0,0,0,0,0,3,240,189,0,0,0,0,0,0,1,248,63,0,0,0,0,0,0,0,189,47,64,0,0,0,0,0,1,127,13,0,3,255,255,255,255,255,254,0,0,3,255,255,255,255,255,240,0,0,3,255,255,255,255,255,240,0,0,3,255,170,170,170,255,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,255,255,240,0,0,0,0,0,3,255,127,252,0,0,0,0,0,31,253,15,255,0,0,0,0,0,127,244,3,255,192,0,0,0,3,255,208,0,255,224,0,0,0,31,255,0,0,63,248,0,0,0,255,252,0,0,15,254,0,0,11,255,224,0,0,3,255,64,0,255,255,64,0,0,1,255,208,0,191,248,0,0,0,0,127,208,0,47,208,0,0,0,0,47,64,0,9,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0, + // 0x30bb セ + 187,48,31,31,248,37,2,255,0,0,42,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,6,192,0,0,63,128,0,22,255,244,0,0,63,128,27,255,255,252,0,0,63,239,255,255,255,244,0,5,191,255,255,255,255,240,91,255,255,255,255,144,63,208,255,255,255,254,80,0,191,128,191,255,255,192,0,0,255,0,127,249,63,128,0,3,253,0,100,0,63,128,0,11,252,0,0,0,63,128,0,31,240,0,0,0,63,128,0,63,208,0,0,0,63,128,0,255,128,0,0,0,63,128,0,255,0,0,0,0,63,128,0,28,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,224,0,0,5,144,0,0,63,255,170,255,255,208,0,0,31,255,255,255,255,208,0,0,7,255,255,255,255,208,0,0,0,111,255,255,169,64, + // 0x30bc ゼ + 188,48,35,34,50,37,1,254,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,5,31,128,0,0,0,0,0,0,47,11,208,0,0,63,208,0,0,31,131,240,0,0,63,208,0,0,11,194,244,0,0,47,208,0,0,3,240,208,0,0,47,208,0,0,2,240,0,0,0,47,192,0,0,0,64,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,27,240,0,0,0,47,192,0,91,255,253,0,0,0,47,193,111,255,255,253,0,0,0,47,255,255,255,255,248,0,0,26,255,255,255,255,159,240,0,47,255,255,255,254,64,47,224,0,127,255,255,249,0,0,63,192,0,63,255,255,192,0,0,255,64,0,63,164,47,192,0,2,254,0,0,16,0,47,192,0,7,252,0,0,0,0,47,192,0,15,244,0,0,0,0,47,192,0,63,224,0,0,0,0,47,192,0,255,192,0,0,0,0,47,192,0,47,0,0,0,0,0,47,192,0,4,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,249,0,1,91,240,0,0,0,15,255,255,255,255,240,0,0,0,11,255,255,255,255,240,0,0,0,1,255,255,255,255,224,0,0,0,0,6,170,165,80,0,0, + // 0x30bd ソ + 189,48,28,29,203,37,4,255,0,0,0,0,0,1,80,11,64,0,0,0,3,254,191,192,0,0,0,3,253,127,224,0,0,0,3,252,47,240,0,0,0,7,252,15,252,0,0,0,7,252,7,253,0,0,0,11,248,3,255,0,0,0,15,244,1,255,128,0,0,31,240,0,191,192,0,0,47,224,0,63,224,0,0,63,208,0,47,224,0,0,127,192,0,15,0,0,0,255,128,0,0,0,0,1,255,0,0,0,0,0,3,254,0,0,0,0,0,11,252,0,0,0,0,0,31,248,0,0,0,0,0,63,240,0,0,0,0,0,255,208,0,0,0,0,3,255,128,0,0,0,0,15,255,0,0,0,0,0,63,252,0,0,0,0,1,255,240,0,0,0,0,11,255,192,0,0,0,0,191,254,0,0,0,0,11,255,248,0,0,0,0,15,255,208,0,0,0,0,3,254,0,0,0,0,0,0,160,0,0,0,0, + // 0x30be ゾ + 190,48,31,34,16,37,4,254,0,0,0,0,0,0,2,128,0,0,0,0,0,6,15,208,0,0,0,0,0,47,67,240,0,0,0,0,0,15,193,248,0,0,0,0,0,7,224,252,0,0,0,0,0,3,240,100,31,0,0,0,0,1,224,0,255,64,0,0,0,10,144,0,255,192,0,0,0,15,248,0,63,224,0,0,0,15,244,0,47,240,0,0,0,15,240,0,15,252,0,0,0,31,240,0,7,253,0,0,0,47,224,0,3,255,0,0,0,63,208,0,1,255,128,0,0,63,192,0,0,255,192,0,0,191,128,0,0,127,192,0,0,255,64,0,0,61,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,128,0,0,0,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,191,244,0,0,0,0,0,3,255,208,0,0,0,0,0,31,255,64,0,0,0,0,1,255,253,0,0,0,0,0,31,255,240,0,0,0,0,0,47,255,128,0,0,0,0,0,7,248,0,0,0,0,0,0,1,208,0,0,0,0,0, + // 0x30bf タ + 191,48,30,34,16,37,3,254,0,0,0,16,0,0,0,0,0,0,0,62,64,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,253,0,0,4,0,0,0,15,255,255,255,255,64,0,0,47,255,255,255,255,208,0,0,127,255,255,255,255,192,0,0,255,149,85,85,255,192,0,3,255,0,0,0,255,64,0,15,252,0,0,0,255,0,0,47,244,0,0,2,254,0,0,191,208,0,0,3,253,0,3,255,128,128,0,11,252,0,31,254,2,248,0,15,244,0,191,248,11,255,64,47,240,0,127,208,3,255,224,127,208,0,15,0,0,191,253,255,192,0,0,0,0,31,255,255,0,0,0,0,0,2,255,254,0,0,0,0,0,0,127,253,0,0,0,0,0,0,63,255,128,0,0,0,0,0,255,255,240,0,0,0,0,3,255,191,252,0,0,0,0,31,254,31,244,0,0,0,0,191,248,3,224,0,0,0,7,255,208,0,128,0,0,0,63,255,64,0,0,0,0,6,255,252,0,0,0,0,0,191,255,208,0,0,0,0,0,255,254,0,0,0,0,0,0,63,228,0,0,0,0,0,0,10,0,0,0,0,0,0, + // 0x30c0 ダ + 192,48,34,36,68,37,2,253,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,125,0,0,0,0,16,0,0,40,63,0,0,0,0,126,64,0,189,31,128,0,0,0,191,192,0,63,15,192,0,0,0,255,64,0,31,135,224,0,0,2,255,0,0,15,193,0,0,0,7,253,0,0,11,128,0,0,0,15,255,255,255,255,0,0,0,0,47,255,255,255,255,208,0,0,0,127,255,255,255,255,192,0,0,0,255,149,85,85,255,128,0,0,3,255,0,0,0,255,64,0,0,15,252,0,0,1,255,0,0,0,63,244,0,0,2,254,0,0,0,255,208,0,0,3,252,0,0,3,255,128,128,0,11,252,0,0,31,253,2,248,0,15,244,0,0,191,244,11,255,64,47,240,0,0,127,208,3,255,224,127,208,0,0,15,0,0,191,253,255,128,0,0,0,0,0,31,255,255,0,0,0,0,0,0,2,255,253,0,0,0,0,0,0,0,127,253,0,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,255,255,240,0,0,0,0,0,7,255,191,252,0,0,0,0,0,31,253,31,244,0,0,0,0,0,191,244,3,224,0,0,0,0,7,255,208,0,128,0,0,0,0,127,255,0,0,0,0,0,0,7,255,248,0,0,0,0,0,0,191,255,208,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0, + // 0x30c1 チ + 193,48,31,32,0,37,3,254,0,0,0,0,0,0,128,0,0,0,0,0,0,111,240,0,0,0,0,22,191,255,248,0,3,255,255,255,255,255,252,0,2,255,255,255,255,249,0,0,1,255,255,255,245,0,0,0,0,149,84,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,170,85,85,95,249,85,85,168,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,47,254,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,128,0,0,0,0,0, + // 0x30c2 ヂ + 194,48,33,32,32,37,2,253,0,0,0,0,0,6,208,0,0,0,0,0,0,26,255,240,0,0,1,85,106,191,255,255,252,0,0,3,255,255,255,255,255,228,24,0,2,255,255,255,255,144,0,125,0,0,255,250,175,240,0,124,63,0,0,0,0,11,240,0,126,31,128,0,0,0,11,240,0,47,11,192,0,0,0,11,240,0,15,131,64,0,0,0,11,240,0,11,192,0,0,0,0,11,240,0,1,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,169,85,85,95,245,85,85,168,0,0,0,0,15,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,47,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c3 ッ + 195,48,26,25,175,37,6,253,0,0,7,64,0,0,0,0,0,63,192,0,25,0,27,0,47,192,0,47,208,191,64,31,224,0,63,208,63,128,15,240,0,63,192,63,192,11,244,0,63,192,31,224,3,248,0,191,64,15,240,3,252,0,255,0,11,244,2,228,1,255,0,3,248,0,0,2,253,0,3,248,0,0,3,252,0,1,64,0,0,15,244,0,0,0,0,0,31,240,0,0,0,0,0,63,208,0,0,0,0,0,255,128,0,0,0,0,3,255,0,0,0,0,0,15,252,0,0,0,0,0,127,244,0,0,0,0,2,255,208,0,0,0,0,47,255,64,0,0,0,2,255,252,0,0,0,0,63,255,224,0,0,0,0,31,255,0,0,0,0,0,7,244,0,0,0,0,0,1,64,0,0,0,0, + // 0x30c4 ツ + 196,48,31,30,240,37,3,255,0,0,0,16,0,0,0,0,0,0,3,248,0,0,0,0,1,0,3,252,0,0,11,144,47,64,2,253,0,0,15,248,191,128,0,255,0,0,15,244,63,192,0,255,64,0,31,240,47,224,0,127,128,0,47,224,31,240,0,63,192,0,63,208,15,244,0,47,208,0,63,192,7,252,0,31,224,0,127,128,3,252,0,15,128,0,255,64,2,254,0,0,0,1,255,0,1,255,0,0,0,2,254,0,0,228,0,0,0,3,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,64,0,0,0,0,0,11,254,0,0,0,0,0,0,47,248,0,0,0,0,0,0,255,240,0,0,0,0,0,7,255,192,0,0,0,0,0,47,255,0,0,0,0,0,2,255,248,0,0,0,0,0,47,255,208,0,0,0,0,7,255,255,0,0,0,0,0,3,255,244,0,0,0,0,0,0,255,128,0,0,0,0,0,0,116,0,0,0,0,0, + // 0x30c5 ヅ + 197,48,33,34,50,37,3,254,0,0,0,0,0,0,1,240,0,0,0,0,0,0,2,209,252,0,0,0,0,0,0,3,240,189,0,0,0,0,0,0,2,248,63,0,0,0,0,80,0,0,252,31,64,0,0,11,240,0,0,126,8,0,0,0,11,244,0,0,36,0,0,126,0,3,252,0,0,0,0,0,255,0,3,252,0,0,63,128,0,191,64,1,254,0,0,63,208,0,127,192,0,255,0,0,63,192,0,63,208,0,191,64,0,127,192,0,31,224,0,127,128,0,255,128,0,15,240,0,63,192,0,255,0,0,11,248,0,46,64,1,255,0,0,7,252,0,0,0,3,253,0,0,3,252,0,0,0,7,252,0,0,2,208,0,0,0,15,248,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,127,253,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,127,255,128,0,0,0,0,0,11,255,253,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,3,254,64,0,0,0,0,0,0,0,224,0,0,0,0,0,0, + // 0x30c6 テ + 198,48,31,32,0,37,3,253,0,41,85,85,85,85,168,0,0,127,255,255,255,255,252,0,0,127,255,255,255,255,252,0,0,127,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,85,85,85,85,85,85,168,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,0,0,0,1,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,15,252,0,0,0,0,0,0,127,244,0,0,0,0,0,2,255,224,0,0,0,0,0,31,255,64,0,0,0,0,0,7,253,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c7 デ + 199,48,33,36,68,37,3,253,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,116,126,0,0,0,0,0,0,0,252,47,64,0,0,0,0,0,0,126,15,192,0,191,255,255,255,255,47,75,192,0,191,255,255,255,255,15,192,0,0,191,255,255,255,255,10,64,0,0,101,85,85,85,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,164,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,248,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,31,255,64,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,3,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c8 ト + 200,48,20,31,155,37,12,255,85,0,0,0,0,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,248,0,0,0,255,255,224,0,0,255,255,255,64,0,255,255,255,249,0,255,27,255,255,208,255,0,127,255,253,255,0,2,255,253,255,0,0,31,252,255,0,0,1,244,255,0,0,0,16,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,64,0,0,0, + // 0x30c9 ド + 201,48,23,31,186,37,10,254,21,64,0,0,10,0,127,192,0,0,63,64,63,192,0,44,15,192,63,192,0,126,11,224,63,192,0,63,67,240,63,192,0,15,193,244,63,192,0,11,208,128,63,192,0,3,224,0,63,192,0,1,0,0,63,192,0,0,0,0,63,208,0,0,0,0,63,254,64,0,0,0,63,255,249,0,0,0,63,255,255,224,0,0,63,255,255,255,64,0,63,194,255,255,248,0,63,192,27,255,255,64,63,192,0,127,255,0,63,192,0,6,254,0,63,192,0,0,44,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0, + // 0x30ca ナ + 202,48,31,32,0,37,3,254,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,122,170,170,175,254,170,170,172,0,0,0,11,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,47,252,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,208,0,0,0,0,0,47,255,64,0,0,0,0,0,47,252,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,64,0,0,0,0,0, + // 0x30cb ニ + 203,48,30,24,192,37,3,1,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0x30cc ヌ + 204,48,26,31,217,37,5,253,0,0,0,0,0,4,0,31,255,255,255,255,255,64,31,255,255,255,255,255,208,31,255,255,255,255,255,208,26,170,170,170,170,255,192,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,0,0,0,1,255,0,0,0,0,0,3,253,0,0,40,0,0,7,252,0,0,127,64,0,11,248,0,1,255,240,0,15,240,0,0,191,253,0,47,224,0,0,31,255,192,127,192,0,0,1,255,244,255,128,0,0,0,63,255,255,0,0,0,0,11,255,253,0,0,0,0,1,255,252,0,0,0,0,0,127,255,0,0,0,0,1,255,255,208,0,0,0,7,255,255,244,0,0,0,47,253,63,254,0,0,0,255,244,11,255,128,0,11,255,208,1,255,224,0,191,255,0,0,127,192,11,255,248,0,0,31,64,255,255,208,0,0,1,0,255,254,0,0,0,0,0,63,224,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30cd ネ + 205,48,32,33,8,37,3,254,0,0,0,26,160,0,0,0,0,0,0,31,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,11,255,255,255,255,255,244,0,11,255,255,255,255,255,254,0,11,255,255,255,255,255,254,0,6,165,85,85,85,127,248,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,192,0,0,0,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,192,0,0,0,0,0,31,254,0,0,0,0,0,1,255,248,0,0,0,0,0,31,255,224,15,128,0,0,1,255,255,224,63,244,0,0,47,255,255,224,63,255,0,27,255,255,95,224,11,255,224,255,255,244,15,224,0,255,252,191,255,64,15,224,0,31,253,63,208,0,15,224,0,3,248,24,0,0,15,224,0,0,176,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0, + // 0x30ce ノ + 206,48,25,29,203,37,5,255,0,0,0,0,0,121,0,0,0,0,0,0,191,192,0,0,0,0,0,255,128,0,0,0,0,0,255,64,0,0,0,0,2,255,0,0,0,0,0,3,254,0,0,0,0,0,3,252,0,0,0,0,0,11,252,0,0,0,0,0,15,244,0,0,0,0,0,31,240,0,0,0,0,0,63,208,0,0,0,0,0,127,192,0,0,0,0,0,255,128,0,0,0,0,2,255,0,0,0,0,0,7,253,0,0,0,0,0,15,252,0,0,0,0,0,63,240,0,0,0,0,0,255,208,0,0,0,0,3,255,192,0,0,0,0,15,255,0,0,0,0,0,127,252,0,0,0,0,1,255,240,0,0,0,0,31,255,192,0,0,0,0,191,254,0,0,0,0,11,255,248,0,0,0,0,255,255,192,0,0,0,0,127,254,0,0,0,0,0,31,224,0,0,0,0,0,10,0,0,0,0,0,0, + // 0x30cf ハ + 207,48,33,27,243,37,2,0,0,0,4,0,0,44,0,0,0,0,0,31,224,3,254,0,0,0,0,0,47,224,1,255,0,0,0,0,0,63,208,0,255,128,0,0,0,0,63,192,0,127,192,0,0,0,0,63,192,0,63,208,0,0,0,0,127,128,0,31,240,0,0,0,0,191,64,0,15,244,0,0,0,0,255,0,0,11,252,0,0,0,1,255,0,0,3,252,0,0,0,2,254,0,0,2,254,0,0,0,3,253,0,0,1,255,0,0,0,3,252,0,0,0,255,64,0,0,11,248,0,0,0,191,192,0,0,15,244,0,0,0,63,192,0,0,31,240,0,0,0,63,224,0,0,63,224,0,0,0,47,240,0,0,127,192,0,0,0,15,244,0,0,255,128,0,0,0,15,248,0,1,255,0,0,0,0,7,252,0,3,254,0,0,0,0,3,253,0,11,252,0,0,0,0,3,254,0,31,248,0,0,0,0,2,255,0,63,240,0,0,0,0,1,255,64,127,208,0,0,0,0,0,255,64,7,192,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0, + // 0x30d0 バ + 208,48,34,31,23,37,2,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,4,63,0,0,0,0,0,0,0,189,31,64,0,0,0,0,0,0,63,15,192,0,0,0,0,0,0,31,71,224,0,0,36,0,0,184,15,194,64,0,0,63,208,3,252,7,192,0,0,0,63,192,2,254,1,0,0,0,0,127,192,0,255,0,0,0,0,0,127,128,0,191,128,0,0,0,0,191,64,0,127,192,0,0,0,0,255,0,0,63,224,0,0,0,0,255,0,0,31,240,0,0,0,1,254,0,0,15,244,0,0,0,2,253,0,0,11,252,0,0,0,3,252,0,0,3,253,0,0,0,7,252,0,0,2,254,0,0,0,11,244,0,0,1,255,0,0,0,15,240,0,0,0,255,64,0,0,31,240,0,0,0,191,192,0,0,63,208,0,0,0,127,192,0,0,127,192,0,0,0,63,224,0,0,255,128,0,0,0,47,240,0,1,255,0,0,0,0,15,240,0,3,254,0,0,0,0,15,248,0,11,252,0,0,0,0,11,252,0,31,248,0,0,0,0,7,252,0,63,240,0,0,0,0,3,254,0,191,224,0,0,0,0,3,255,0,191,192,0,0,0,0,1,254,0,7,64,0,0,0,0,0,144,0, + // 0x30d1 パ + 209,48,34,32,32,37,2,255,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,31,67,208,0,0,0,0,0,0,45,1,224,0,0,0,0,0,0,45,0,224,0,0,62,128,2,252,31,3,208,0,0,63,192,3,253,11,255,192,0,0,63,192,1,255,1,253,0,0,0,127,128,0,255,64,0,0,0,0,191,64,0,191,192,0,0,0,0,255,64,0,63,208,0,0,0,0,255,0,0,47,224,0,0,0,0,255,0,0,15,240,0,0,0,2,254,0,0,15,248,0,0,0,3,253,0,0,7,252,0,0,0,3,252,0,0,3,253,0,0,0,7,248,0,0,2,255,0,0,0,15,244,0,0,1,255,0,0,0,15,240,0,0,0,255,64,0,0,47,240,0,0,0,191,192,0,0,63,208,0,0,0,127,192,0,0,127,192,0,0,0,63,224,0,0,255,128,0,0,0,47,240,0,1,255,0,0,0,0,31,240,0,3,254,0,0,0,0,15,248,0,7,253,0,0,0,0,11,252,0,15,252,0,0,0,0,7,252,0,47,244,0,0,0,0,3,253,0,127,224,0,0,0,0,3,254,0,255,192,0,0,0,0,2,255,0,31,128,0,0,0,0,1,244,0,1,0,0,0,0,0,0,0,0, + // 0x30d2 ヒ + 210,48,24,30,180,37,8,0,170,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,16,255,0,0,0,2,240,255,0,0,0,111,244,255,0,0,11,255,248,255,0,1,255,255,244,255,0,191,255,254,0,255,111,255,255,208,0,255,255,255,244,0,0,255,255,249,0,0,0,255,254,64,0,0,0,255,64,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,191,208,0,0,1,111,127,255,255,255,255,255,63,255,255,255,255,255,15,255,255,255,255,255,0,111,255,255,250,165, + // 0x30d3 ビ + 211,48,28,33,231,37,6,255,0,0,0,0,0,0,144,0,0,0,0,0,3,240,0,0,0,0,2,224,252,127,128,0,0,3,240,189,127,128,0,0,0,252,63,127,128,0,0,0,189,46,127,128,0,0,0,63,0,127,128,0,0,0,40,0,127,128,0,0,0,16,0,127,128,0,0,2,240,0,127,128,0,0,47,248,0,127,128,0,7,255,252,0,127,128,1,255,255,244,0,127,129,191,255,254,64,0,127,239,255,255,208,0,0,127,255,255,248,0,0,0,127,255,254,0,0,0,0,127,254,64,0,0,0,0,127,208,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,192,0,0,0,0,0,63,224,0,0,0,91,64,63,255,255,255,255,255,64,31,255,255,255,255,255,64,7,255,255,255,255,255,64,0,111,255,255,254,165,0, + // 0x30d4 ピ + 212,48,29,32,0,37,6,255,0,0,0,0,0,7,244,0,0,0,0,0,0,47,254,0,106,128,0,0,0,61,15,64,127,128,0,0,0,120,7,128,127,128,0,0,0,180,3,192,127,128,0,0,0,120,7,128,127,128,0,0,0,61,31,64,127,128,0,0,0,47,254,0,127,128,0,0,1,247,244,0,127,128,0,0,27,244,0,0,127,128,0,2,255,252,0,0,127,128,0,127,255,252,0,0,127,128,111,255,255,128,0,0,127,155,255,255,228,0,0,0,127,255,255,253,0,0,0,0,127,255,254,64,0,0,0,0,127,255,144,0,0,0,0,0,127,208,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,224,0,0,0,91,64,0,63,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,7,255,255,255,255,255,64,0,0,111,255,255,254,165,0,0, + // 0x30d5 フ + 213,48,27,29,203,37,5,254,255,255,255,255,255,255,224,255,255,255,255,255,255,252,255,255,255,255,255,255,252,186,170,170,170,170,175,248,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,31,240,0,0,0,0,0,47,224,0,0,0,0,0,63,208,0,0,0,0,0,63,192,0,0,0,0,0,191,128,0,0,0,0,0,255,64,0,0,0,0,2,255,0,0,0,0,0,3,254,0,0,0,0,0,11,252,0,0,0,0,0,31,244,0,0,0,0,0,127,240,0,0,0,0,0,255,208,0,0,0,0,3,255,64,0,0,0,0,31,254,0,0,0,0,0,191,248,0,0,0,0,7,255,224,0,0,0,0,127,255,128,0,0,0,11,255,253,0,0,0,1,255,255,224,0,0,0,0,255,255,64,0,0,0,0,63,244,0,0,0,0,0,14,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d6 ブ + 214,48,32,35,24,37,4,254,0,0,0,0,0,0,0,128,0,0,0,0,0,6,7,240,0,0,0,0,0,15,194,244,0,0,0,0,0,11,224,252,0,0,0,0,0,3,240,126,0,0,0,0,0,1,248,56,191,170,170,170,170,171,240,0,191,255,255,255,255,255,252,0,191,255,255,255,255,255,253,0,191,255,255,255,255,255,252,0,0,0,0,0,0,11,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,191,224,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,63,253,0,0,0,0,0,1,255,244,0,0,0,0,0,31,255,208,0,0,0,0,1,255,255,0,0,0,0,0,111,255,248,0,0,0,0,0,255,255,208,0,0,0,0,0,63,254,0,0,0,0,0,0,31,208,0,0,0,0,0,0,4,0,0,0,0,0,0, + // 0x30d7 プ + 215,48,33,34,50,37,4,254,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,184,47,0,0,0,0,0,0,0,240,15,0,0,0,0,0,0,0,240,11,64,191,170,170,170,170,171,240,15,0,191,255,255,255,255,255,248,47,0,191,255,255,255,255,255,255,252,0,191,255,255,255,255,255,255,224,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,63,253,0,0,0,0,0,0,1,255,244,0,0,0,0,0,0,31,255,208,0,0,0,0,0,1,255,255,0,0,0,0,0,0,111,255,248,0,0,0,0,0,0,255,255,208,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0, + // 0x30d8 ヘ + 216,48,33,24,216,37,2,1,0,0,0,100,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,191,255,252,0,0,0,0,0,1,255,135,255,0,0,0,0,0,7,254,1,255,192,0,0,0,0,15,252,0,127,240,0,0,0,0,63,240,0,47,252,0,0,0,0,191,208,0,11,254,0,0,0,2,255,128,0,2,255,128,0,0,11,255,0,0,0,255,224,0,0,47,252,0,0,0,63,248,0,0,191,244,0,0,0,15,253,0,0,127,224,0,0,0,7,255,64,0,31,192,0,0,0,1,255,192,0,11,0,0,0,0,0,191,240,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x30d9 ベ + 217,48,33,28,252,37,2,0,0,0,0,0,0,0,2,192,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,3,244,0,0,0,0,0,0,31,193,252,0,0,0,1,248,0,15,208,190,0,0,0,11,255,0,3,240,63,0,0,0,47,255,192,2,248,40,0,0,0,127,255,240,0,252,0,0,0,1,255,239,252,0,160,0,0,0,3,255,7,255,0,0,0,0,0,15,252,1,255,192,0,0,0,0,47,240,0,127,240,0,0,0,0,191,208,0,31,252,0,0,0,1,255,128,0,11,255,0,0,0,7,255,0,0,2,255,128,0,0,31,253,0,0,0,255,224,0,0,127,244,0,0,0,63,248,0,0,255,224,0,0,0,15,253,0,0,127,192,0,0,0,7,255,64,0,31,64,0,0,0,1,255,208,0,6,0,0,0,0,0,191,240,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0, + // 0x30da ペ + 218,48,33,28,252,37,2,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,3,225,252,0,0,0,0,0,0,7,192,61,0,0,0,2,248,0,11,64,45,0,0,0,11,255,0,11,64,45,0,0,0,47,255,192,7,128,61,0,0,0,127,255,240,3,224,188,0,0,1,255,239,252,1,255,244,0,0,3,255,7,255,0,47,128,0,0,15,252,1,255,192,0,0,0,0,47,240,0,127,240,0,0,0,0,191,208,0,31,252,0,0,0,1,255,128,0,11,255,0,0,0,7,255,0,0,2,255,128,0,0,15,253,0,0,0,255,224,0,0,63,248,0,0,0,63,248,0,0,255,240,0,0,0,15,253,0,0,191,192,0,0,0,7,255,64,0,47,128,0,0,0,1,255,208,0,11,0,0,0,0,0,191,240,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0, + // 0x30db ホ + 219,48,32,32,0,37,3,254,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,42,170,170,175,250,170,170,164,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,9,0,15,240,0,96,0,0,15,208,15,240,3,248,0,0,47,208,15,240,7,252,0,0,127,192,15,240,2,255,0,0,255,64,15,240,0,255,128,2,254,0,15,240,0,127,192,7,252,0,15,240,0,47,224,15,244,0,15,240,0,15,244,63,224,0,15,240,0,11,252,255,192,0,15,240,0,3,253,255,64,0,15,240,0,1,253,45,0,0,15,240,0,0,224,0,0,0,15,240,0,0,0,0,0,16,31,240,0,0,0,0,0,127,255,240,0,0,0,0,0,127,255,224,0,0,0,0,0,63,255,192,0,0,0,0,0,21,169,0,0,0,0, + // 0x30dc ボ + 220,48,34,34,50,37,2,254,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,124,0,0,0,0,6,164,0,184,63,0,0,0,0,11,244,0,252,47,64,0,0,0,11,244,0,126,15,192,0,0,0,7,244,0,47,71,208,0,0,0,7,244,0,15,130,0,0,0,0,7,244,0,9,0,0,0,0,0,7,244,0,0,0,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,26,170,170,175,250,170,170,168,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,16,0,0,0,11,128,7,244,0,248,0,0,0,15,240,7,244,3,253,0,0,0,63,208,7,244,1,255,0,0,0,127,192,7,244,0,191,128,0,0,255,0,7,244,0,63,208,0,3,254,0,7,244,0,31,240,0,11,252,0,7,244,0,15,248,0,31,240,0,7,244,0,3,252,0,127,208,0,7,244,0,2,255,0,191,128,0,7,244,0,0,254,0,31,0,0,7,244,0,0,180,0,0,0,0,7,244,0,0,0,0,0,0,16,15,244,0,0,0,0,0,0,63,255,244,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,63,255,224,0,0,0,0,0,0,5,89,0,0,0,0,0, + // 0x30dd ポ + 221,48,33,35,59,37,2,254,0,0,0,0,0,0,6,228,0,0,0,0,0,0,0,47,253,0,0,0,0,0,0,0,61,31,0,0,0,0,11,248,0,180,11,64,0,0,0,11,244,0,180,7,128,0,0,0,11,244,0,180,11,64,0,0,0,7,244,0,61,31,0,0,0,0,7,244,0,47,253,0,0,0,0,7,244,0,6,228,0,0,0,0,7,244,0,0,0,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,252,0,26,170,170,175,250,170,170,168,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,16,0,0,0,11,128,7,244,0,248,0,0,0,15,240,7,244,3,253,0,0,0,63,208,7,244,1,255,0,0,0,127,192,7,244,0,191,128,0,0,255,0,7,244,0,63,208,0,3,254,0,7,244,0,31,240,0,11,252,0,7,244,0,15,248,0,31,240,0,7,244,0,3,252,0,127,208,0,7,244,0,2,255,0,191,128,0,7,244,0,0,254,0,31,0,0,7,244,0,0,180,0,0,0,0,7,244,0,0,0,0,0,0,16,15,244,0,0,0,0,0,0,63,255,244,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,63,255,224,0,0,0,0,0,0,5,89,0,0,0,0,0, + // 0x30de マ + 222,48,32,30,240,37,3,253,0,0,0,0,0,0,0,64,127,255,255,255,255,255,255,240,127,255,255,255,255,255,255,252,127,255,255,255,255,255,255,253,122,170,170,170,170,170,191,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,208,0,0,0,0,0,1,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,1,128,0,0,191,224,0,0,7,224,0,2,255,128,0,0,47,252,0,11,255,0,0,0,15,255,0,47,252,0,0,0,2,255,208,191,240,0,0,0,0,191,251,255,192,0,0,0,0,31,255,255,0,0,0,0,0,7,255,248,0,0,0,0,0,0,255,240,0,0,0,0,0,0,63,248,0,0,0,0,0,0,15,253,0,0,0,0,0,0,7,255,64,0,0,0,0,0,1,255,208,0,0,0,0,0,0,127,240,0,0,0,0,0,0,47,252,0,0,0,0,0,0,11,253,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0, + // 0x30df ミ + 223,48,24,30,180,37,6,255,0,186,64,0,0,0,0,255,255,144,0,0,1,255,255,255,144,0,1,191,255,255,255,144,0,0,111,255,255,255,0,0,0,27,255,255,0,0,0,0,27,253,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,7,229,0,0,0,0,11,255,249,0,0,0,15,255,255,249,0,0,10,255,255,255,249,0,0,6,191,255,255,224,0,0,1,191,255,208,0,0,0,1,191,192,0,0,0,0,6,128,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,127,228,0,0,0,0,255,255,229,0,0,0,255,255,255,249,0,0,107,255,255,255,228,0,0,26,255,255,255,224,0,0,6,255,255,252,0,0,0,6,255,248,0,0,0,0,27,240,0,0,0,0,0,96, + // 0x30e0 ム + 224,48,33,32,32,37,2,254,0,0,0,20,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,47,208,0,2,192,0,0,0,0,63,192,0,47,224,0,0,0,0,127,192,0,15,244,0,0,0,0,191,64,0,11,252,0,0,0,0,255,0,0,3,253,0,0,0,1,255,0,0,1,255,0,0,0,2,253,0,0,0,255,128,0,0,3,252,0,0,0,127,192,0,0,7,252,0,0,0,63,224,0,0,11,244,0,21,175,255,240,0,0,15,250,255,255,255,255,248,0,127,255,255,255,255,255,255,252,0,63,255,255,255,255,255,167,254,0,63,255,255,254,149,0,2,255,0,63,250,80,0,0,0,0,255,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0, + // 0x30e1 メ + 225,48,29,31,248,37,4,254,0,0,0,0,0,14,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,31,0,0,0,255,64,0,0,63,224,0,1,255,0,0,0,191,252,0,3,253,0,0,0,31,255,64,7,252,0,0,0,2,255,240,15,244,0,0,0,0,127,253,47,240,0,0,0,0,15,255,191,208,0,0,0,0,2,255,255,128,0,0,0,0,0,127,255,0,0,0,0,0,0,15,255,64,0,0,0,0,0,31,255,224,0,0,0,0,0,63,255,248,0,0,0,0,0,255,239,254,0,0,0,0,3,255,71,255,192,0,0,0,31,253,1,255,240,0,0,0,127,244,0,63,252,0,0,2,255,208,0,15,255,0,0,15,255,64,0,3,255,128,0,127,253,0,0,0,255,0,7,255,240,0,0,0,60,0,63,255,128,0,0,0,16,0,191,253,0,0,0,0,0,0,31,224,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30e2 モ + 226,48,30,29,232,37,4,255,6,85,85,85,85,85,84,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,170,170,175,254,170,170,170,144,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,224,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,255,64,0,21,64,0,0,3,255,255,255,255,128,0,0,2,255,255,255,255,64,0,0,0,191,255,255,255,64,0,0,0,6,175,170,170,0, + // 0x30e3 ャ + 227,48,27,27,189,37,5,253,0,0,80,0,0,0,0,0,15,224,0,0,0,0,0,15,240,0,0,0,0,0,11,240,0,0,0,0,0,7,244,0,0,1,144,0,3,248,0,6,255,248,0,2,252,27,255,255,252,0,2,255,255,255,255,244,22,191,255,255,254,95,224,191,255,255,249,0,63,192,127,255,255,0,0,191,64,63,148,127,64,1,254,0,16,0,63,128,3,252,0,0,0,63,192,15,244,0,0,0,47,192,63,208,0,0,0,31,208,127,128,0,0,0,15,240,10,0,0,0,0,15,240,0,0,0,0,0,11,244,0,0,0,0,0,3,248,0,0,0,0,0,3,252,0,0,0,0,0,2,252,0,0,0,0,0,1,253,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,191,64,0,0,0,0,0,121,0,0,0, + // 0x30e4 ヤ + 228,48,32,32,0,37,2,254,0,0,108,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,255,0,0,0,0,16,0,0,255,0,0,0,107,252,0,0,191,64,1,175,255,255,0,0,127,134,255,255,255,254,0,0,127,255,255,255,255,252,5,175,255,255,255,249,15,244,255,255,255,255,228,0,31,240,191,255,255,240,0,0,63,192,127,254,79,240,0,0,255,64,57,64,11,244,0,2,255,0,0,0,7,248,0,11,252,0,0,0,3,252,0,47,244,0,0,0,3,252,0,191,208,0,0,0,2,254,1,255,128,0,0,0,1,255,0,126,0,0,0,0,0,255,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,208,0,0,0,0,0,0,47,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,244,0,0,0,0,0,0,11,248,0,0,0,0,0,0,7,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,64,0,0,0, + // 0x30e5 ュ + 229,48,27,20,140,37,5,255,0,255,255,255,255,208,0,0,255,255,255,255,244,0,0,255,255,255,255,244,0,0,170,170,170,175,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,0,0,31,224,0,0,0,0,0,31,208,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,128,0,0,0,0,0,127,128,0,106,170,170,170,255,234,168,191,255,255,255,255,255,252,191,255,255,255,255,255,252,191,255,255,255,255,255,252,0,0,0,0,0,0,0, + // 0x30e6 ユ + 230,48,32,25,200,37,3,1,0,254,170,170,170,191,128,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,0,0,0,0,47,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,191,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,254,0,0,0,0,0,0,2,254,0,0,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0, + // 0x30e7 ョ + 231,48,22,24,144,37,7,253,63,255,255,255,255,240,63,255,255,255,255,240,63,255,255,255,255,240,21,85,85,85,95,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,15,255,255,255,255,240,15,255,255,255,255,240,15,255,255,255,255,240,5,85,85,85,95,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,0,0,0,0,11,240,21,85,85,85,95,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,0,0,11,240,0,0,0,0,5,80, + // 0x30e8 ヨ + 232,48,26,28,196,37,5,255,63,255,255,255,255,255,240,63,255,255,255,255,255,240,63,255,255,255,255,255,240,42,170,170,170,170,175,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,15,255,255,255,255,255,240,15,255,255,255,255,255,240,15,255,255,255,255,255,240,10,170,170,170,170,175,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,106,170,170,170,170,175,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,127,255,255,255,255,255,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240, + // 0x30e9 ラ + 233,48,28,31,217,37,5,254,1,169,85,85,85,106,128,2,255,255,255,255,255,192,2,255,255,255,255,255,192,2,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,85,85,85,85,85,160,255,255,255,255,255,255,253,255,255,255,255,255,255,254,255,255,255,255,255,255,252,0,0,0,0,0,7,252,0,0,0,0,0,11,248,0,0,0,0,0,15,240,0,0,0,0,0,47,224,0,0,0,0,0,63,208,0,0,0,0,0,191,192,0,0,0,0,1,255,0,0,0,0,0,7,254,0,0,0,0,0,31,252,0,0,0,0,0,127,240,0,0,0,0,2,255,192,0,0,0,0,31,255,0,0,0,0,2,255,252,0,0,0,0,111,255,224,0,0,0,15,255,255,64,0,0,0,7,255,244,0,0,0,0,1,255,64,0,0,0,0,0,160,0,0,0,0, + // 0x30ea リ + 234,48,21,31,186,37,8,254,170,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,63,192,255,0,0,0,127,128,255,0,0,0,127,128,255,0,0,0,191,64,85,0,0,0,255,0,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,11,252,0,0,0,0,47,248,0,0,0,0,191,240,0,0,0,7,255,192,0,0,0,111,255,0,0,0,11,255,252,0,0,0,31,255,224,0,0,0,7,254,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0, + // 0x30eb ル + 235,48,33,29,5,37,2,255,0,2,253,0,63,208,0,0,0,0,2,253,0,63,192,0,0,0,0,2,253,0,47,192,0,0,0,0,2,253,0,47,192,0,0,0,0,2,253,0,47,192,0,0,0,0,2,253,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,2,252,0,47,192,0,0,0,0,3,252,0,47,192,0,0,0,0,3,252,0,47,192,0,0,0,0,3,252,0,47,192,0,0,0,0,3,248,0,47,192,0,7,0,0,7,248,0,47,192,0,15,128,0,11,244,0,47,192,0,63,192,0,15,240,0,47,192,0,255,192,0,31,240,0,47,192,3,255,0,0,63,208,0,47,192,31,252,0,0,127,192,0,47,192,191,240,0,0,255,128,0,47,203,255,192,0,2,255,0,0,47,255,255,0,0,11,253,0,0,47,255,248,0,0,47,248,0,0,63,255,208,0,0,191,240,0,0,63,254,0,0,0,47,192,0,0,31,224,0,0,0,7,0,0,0,3,64,0,0,0, + // 0x30ec レ + 236,48,26,29,203,37,8,255,255,64,0,0,0,0,0,255,64,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,3,64,255,0,0,0,0,15,192,255,0,0,0,0,63,224,255,0,0,0,0,255,192,255,0,0,0,7,255,0,255,0,0,0,47,253,0,255,0,0,1,255,244,0,255,0,0,11,255,192,0,255,0,0,191,254,0,0,255,0,11,255,244,0,0,255,0,191,255,128,0,0,255,95,255,252,0,0,0,255,255,255,208,0,0,0,255,255,253,0,0,0,0,255,255,128,0,0,0,0,63,228,0,0,0,0,0,9,0,0,0,0,0,0, + // 0x30ed ロ + 237,48,27,28,196,37,5,255,170,170,170,170,170,170,168,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,170,170,170,170,171,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,0,0,0,0,0,0,0, + // 0x30ee ヮ + 238,48,25,25,175,37,6,252,21,85,85,85,85,104,0,127,255,255,255,255,255,64,63,255,255,255,255,255,192,63,255,255,255,255,255,128,63,128,0,0,0,191,64,63,128,0,0,0,255,0,63,128,0,0,0,255,0,63,128,0,0,0,255,0,63,128,0,0,1,254,0,63,128,0,0,2,253,0,127,128,0,0,3,252,0,42,64,0,0,11,248,0,0,0,0,0,15,240,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,1,255,128,0,0,0,0,7,255,0,0,0,0,0,31,252,0,0,0,0,0,191,244,0,0,0,0,11,255,192,0,0,0,1,191,255,0,0,0,0,11,255,248,0,0,0,0,3,255,192,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x30ef ワ + 239,48,29,29,232,37,4,254,127,255,255,255,255,255,253,0,127,255,255,255,255,255,255,128,127,255,255,255,255,255,255,128,127,234,170,170,170,170,255,64,127,128,0,0,0,0,255,0,127,128,0,0,0,1,255,0,127,128,0,0,0,1,255,0,127,128,0,0,0,2,254,0,127,128,0,0,0,3,253,0,127,128,0,0,0,3,252,0,127,128,0,0,0,7,252,0,127,128,0,0,0,11,248,0,127,128,0,0,0,15,244,0,21,64,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,11,254,0,0,0,0,0,0,47,248,0,0,0,0,0,0,255,240,0,0,0,0,0,7,255,192,0,0,0,0,0,47,255,0,0,0,0,0,2,255,252,0,0,0,0,0,111,255,224,0,0,0,0,3,255,255,64,0,0,0,0,0,255,248,0,0,0,0,0,0,63,128,0,0,0,0,0,0,4,0,0,0,0,0, + // 0x30f0 ヰ + 240,48,31,32,0,37,3,254,0,0,0,0,1,168,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,31,255,255,255,255,255,255,240,26,86,254,85,86,254,85,96,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,170,170,170,170,171,254,170,168,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,1,168,0,0, + // 0x30f1 ヱ + 241,48,32,27,216,37,3,0,14,170,170,170,170,170,171,192,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,244,15,255,255,255,255,255,255,240,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,0,0,0,1,255,0,0,0,0,63,192,7,253,0,0,0,0,63,192,31,248,0,0,0,0,63,192,127,224,0,0,0,0,63,193,255,192,0,0,0,0,63,193,255,0,0,0,0,0,63,192,44,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0, + // 0x30f2 ヲ + 242,48,28,30,210,37,5,254,58,170,170,170,170,170,224,127,255,255,255,255,255,253,127,255,255,255,255,255,255,127,255,255,255,255,255,253,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,7,248,0,0,0,0,0,11,248,0,0,0,0,0,11,244,0,0,0,0,0,15,240,10,85,85,85,85,95,240,31,255,255,255,255,255,224,31,255,255,255,255,255,192,31,255,255,255,255,255,192,0,0,0,0,0,191,128,0,0,0,0,0,255,0,0,0,0,0,2,254,0,0,0,0,0,7,252,0,0,0,0,0,31,248,0,0,0,0,0,63,240,0,0,0,0,1,255,192,0,0,0,0,7,255,64,0,0,0,0,47,253,0,0,0,0,1,255,244,0,0,0,0,31,255,192,0,0,0,2,255,254,0,0,0,0,127,255,244,0,0,0,0,47,255,128,0,0,0,0,15,248,0,0,0,0,0,2,64,0,0,0,0, + // 0x30f3 ン + 243,48,30,29,232,37,5,255,2,64,0,0,0,0,0,0,15,224,0,0,0,0,0,0,47,252,0,0,0,0,0,0,31,255,64,0,0,0,0,0,3,255,208,0,0,0,0,0,0,191,248,0,0,0,0,0,0,31,254,0,0,0,6,0,0,7,255,192,0,0,15,0,0,1,255,64,0,0,31,192,0,0,61,0,0,0,63,208,0,0,4,0,0,0,255,192,0,0,0,0,0,2,255,64,0,0,0,0,0,7,254,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,240,0,0,0,0,0,1,255,208,0,0,0,0,0,7,255,64,0,0,0,0,0,47,253,0,0,0,0,0,1,255,244,0,0,0,0,0,11,255,208,0,0,0,0,0,127,255,0,0,0,0,0,7,255,248,0,0,0,0,0,191,255,208,0,0,0,0,47,255,254,0,0,0,0,111,255,255,224,0,0,0,0,191,255,254,0,0,0,0,0,63,255,224,0,0,0,0,0,31,248,0,0,0,0,0,0,5,0,0,0,0,0,0,0, + // 0x30f4 ヴ + 244,48,31,35,24,37,4,253,0,0,0,0,0,0,15,192,0,0,1,84,0,11,71,224,0,0,2,254,0,15,195,240,0,0,2,254,0,11,224,252,0,0,2,253,0,3,240,188,0,0,2,253,0,1,248,16,0,0,2,253,0,0,144,0,0,0,2,253,0,0,16,0,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,255,85,85,85,85,87,254,0,254,0,0,0,0,3,253,0,254,0,0,0,0,3,253,0,254,0,0,0,0,3,252,0,254,0,0,0,0,7,252,0,254,0,0,0,0,11,248,0,254,0,0,0,0,15,244,0,254,0,0,0,0,31,240,0,255,0,0,0,0,47,224,0,84,0,0,0,0,63,192,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,64,0,0,0,0,0,3,254,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,191,254,0,0,0,0,0,27,255,244,0,0,0,0,7,255,255,192,0,0,0,0,3,255,253,0,0,0,0,0,0,255,224,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f5 ヵ + 245,48,24,27,162,37,6,253,0,0,42,128,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,47,192,0,0,0,0,63,128,0,0,0,0,63,128,0,0,191,255,255,255,255,248,191,255,255,255,255,254,191,255,255,255,255,254,85,85,127,149,85,254,0,0,127,0,0,254,0,0,191,0,0,254,0,0,191,0,0,253,0,0,254,0,0,253,0,1,253,0,0,253,0,2,252,0,0,252,0,3,248,0,1,252,0,11,240,0,1,252,0,31,224,0,2,252,0,63,208,0,2,248,0,255,128,0,3,248,3,255,0,0,7,244,15,252,0,105,95,240,191,244,0,127,255,240,191,208,0,127,255,192,31,0,0,63,255,64,0,0,0,0,0,0, + // 0x30f6 ヶ + 246,48,28,27,189,37,4,252,0,0,254,0,0,0,0,0,0,255,0,0,0,0,0,1,254,0,0,0,0,0,2,253,0,0,0,0,0,3,252,0,0,0,0,0,7,249,85,85,85,85,0,15,255,255,255,255,254,0,47,255,255,255,255,254,0,63,255,255,255,255,254,0,255,64,0,254,0,0,2,254,0,0,253,0,0,11,252,0,1,253,0,0,47,244,0,2,252,0,0,127,208,0,3,252,0,0,31,128,0,3,252,0,0,1,0,0,11,244,0,0,0,0,0,15,240,0,0,0,0,0,47,224,0,0,0,0,0,63,192,0,0,0,0,0,255,192,0,0,0,0,2,255,0,0,0,0,0,15,253,0,0,0,0,0,63,248,0,0,0,0,2,255,224,0,0,0,0,2,255,128,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f7 ヷ + 247,48,31,36,32,37,4,253,0,0,0,0,0,0,2,128,0,0,0,0,0,26,15,192,0,0,0,0,0,63,7,240,0,0,0,0,0,31,131,244,0,0,0,0,0,15,193,248,0,0,0,0,0,7,224,64,0,0,0,0,0,1,0,0,255,255,255,255,255,255,244,0,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,0,255,170,170,170,170,171,254,0,255,0,0,0,0,3,253,0,255,0,0,0,0,3,252,0,255,0,0,0,0,3,252,0,255,0,0,0,0,7,252,0,255,0,0,0,0,11,248,0,255,0,0,0,0,15,244,0,255,0,0,0,0,15,240,0,255,0,0,0,0,31,240,0,255,0,0,0,0,63,224,0,85,0,0,0,0,63,192,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,31,248,0,0,0,0,0,0,127,240,0,0,0,0,0,2,255,192,0,0,0,0,0,15,255,64,0,0,0,0,0,191,253,0,0,0,0,0,7,255,244,0,0,0,0,0,191,255,192,0,0,0,0,11,255,254,0,0,0,0,0,3,255,240,0,0,0,0,0,0,254,0,0,0,0,0,0,0,32,0,0,0,0,0, + // 0x30f8 ヸ + 248,48,33,34,50,37,3,254,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,4,124,0,0,0,0,0,1,84,60,61,0,0,0,0,0,3,252,62,47,0,0,0,0,0,3,252,31,15,64,0,0,0,0,3,252,15,79,64,0,0,0,0,3,252,11,64,0,0,0,0,0,3,252,0,0,0,42,85,85,85,87,253,86,160,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,0,2,252,0,3,252,0,0,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,248,0,170,170,170,170,171,254,170,164,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,168,0,0,0, + // 0x30f9 ヹ + 249,48,33,34,50,37,2,255,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,2,240,190,0,0,0,0,0,0,1,248,63,0,0,0,0,0,0,0,252,31,128,0,0,0,0,0,0,126,9,0,0,0,0,0,0,0,40,0,0,7,170,170,170,170,170,171,224,0,7,255,255,255,255,255,255,252,0,7,255,255,255,255,255,255,252,0,7,255,255,255,255,255,255,244,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,255,128,0,0,0,0,47,224,2,255,0,0,0,0,0,47,224,11,252,0,0,0,0,0,47,208,47,244,0,0,0,0,0,47,208,255,224,0,0,0,0,0,47,208,191,128,0,0,0,0,0,47,208,30,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,191,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0, + // 0x30fa ヺ + 250,48,31,36,32,37,4,253,0,0,0,0,0,0,6,128,0,0,0,0,0,26,15,208,0,0,0,0,0,63,71,240,0,0,0,0,0,31,195,244,0,0,0,0,0,15,209,248,0,0,0,0,0,7,208,64,170,170,170,170,170,171,208,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,253,0,191,255,255,255,255,255,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,25,85,85,85,85,111,208,0,47,255,255,255,255,255,192,0,47,255,255,255,255,255,192,0,47,255,255,255,255,255,128,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,240,0,0,0,0,0,0,127,208,0,0,0,0,0,1,255,128,0,0,0,0,0,11,255,0,0,0,0,0,0,63,252,0,0,0,0,0,2,255,240,0,0,0,0,0,31,255,192,0,0,0,0,2,255,254,0,0,0,0,0,127,255,240,0,0,0,0,0,63,255,64,0,0,0,0,0,31,244,0,0,0,0,0,0,6,64,0,0,0,0,0, + // 0x30fb ・ + 251,48,9,9,27,37,14,10,1,144,0,31,253,0,63,255,0,191,255,128,191,255,128,191,255,128,127,255,64,47,254,0,7,244,0, + // 0x30fc ー + 252,48,31,5,40,37,3,12,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,20,0,0,0,0,0,0,80, + // 0x30fd ヽ + 253,48,18,18,90,37,10,4,11,128,0,0,0,47,224,0,0,0,127,248,0,0,0,31,254,0,0,0,3,255,128,0,0,0,255,224,0,0,0,63,248,0,0,0,15,254,0,0,0,3,255,64,0,0,1,255,208,0,0,0,127,244,0,0,0,47,252,0,0,0,11,255,0,0,0,3,255,128,0,0,0,255,224,0,0,0,127,224,0,0,0,47,64,0,0,0,9,0, + // 0x30fe ヾ + 254,48,21,24,144,37,9,4,0,0,0,0,32,0,0,0,0,2,244,0,0,0,2,192,252,0,0,0,7,240,126,0,0,0,3,244,63,64,0,0,0,252,31,192,7,128,0,190,10,0,47,224,0,62,0,0,127,252,0,16,0,0,15,255,0,0,0,0,3,255,192,0,0,0,0,255,224,0,0,0,0,63,248,0,0,0,0,15,254,0,0,0,0,3,255,128,0,0,0,0,255,208,0,0,0,0,127,244,0,0,0,0,31,253,0,0,0,0,11,255,0,0,0,0,2,255,192,0,0,0,0,255,224,0,0,0,0,63,224,0,0,0,0,31,128,0,0,0,0,9,0,0, + // 0x30ff ヿ + 255,48,23,32,192,37,7,254,85,85,85,85,85,80,255,255,255,255,255,244,255,255,255,255,255,244,255,255,255,255,255,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244,0,0,0,0,7,244, + // 0x4eee 仮 + 238,78,35,36,68,37,1,252,0,0,36,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,15,255,255,255,255,240,0,1,252,15,255,255,255,255,240,0,3,252,15,255,255,255,255,240,0,11,244,15,213,85,85,85,64,0,15,240,15,192,0,0,0,0,0,47,208,15,192,0,0,0,0,0,127,128,15,192,0,0,0,0,0,255,128,15,192,0,0,0,0,2,255,128,15,192,0,0,0,0,7,255,128,15,192,0,0,0,0,31,255,128,15,255,255,255,255,128,63,255,128,15,255,255,255,255,192,255,239,128,15,255,255,255,255,192,191,47,128,15,255,64,0,63,128,60,47,128,15,255,128,0,63,64,36,47,128,31,223,192,0,127,0,0,47,128,31,207,224,0,254,0,0,47,128,31,199,240,0,253,0,0,47,128,47,195,244,2,252,0,0,47,128,47,194,252,3,248,0,0,47,128,47,128,254,15,240,0,0,47,128,63,64,191,95,224,0,0,47,128,63,64,63,255,192,0,0,47,128,127,0,31,255,64,0,0,47,128,191,0,11,254,0,0,0,47,128,254,0,11,255,0,0,0,47,128,253,0,63,255,192,0,0,47,130,252,0,255,255,244,0,0,47,131,248,11,255,15,255,64,0,47,139,244,127,252,3,255,244,0,47,143,241,255,224,0,191,248,0,47,135,192,191,64,0,15,224,0,47,65,128,36,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x540d 名 + 13,84,32,35,24,37,1,253,0,0,0,185,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,255,255,255,244,0,0,0,127,255,255,255,252,0,0,0,255,255,255,255,244,0,0,7,254,0,0,15,240,0,0,31,248,0,0,47,208,0,0,191,240,0,0,63,192,0,3,255,252,0,0,255,64,0,31,255,255,64,1,254,0,0,127,244,255,224,7,252,0,0,31,192,47,248,15,244,0,0,10,0,11,254,63,224,0,0,0,0,2,255,255,192,0,0,0,0,0,191,255,0,0,0,0,0,0,63,252,0,0,0,0,0,0,191,244,0,0,0,0,0,3,255,255,255,255,255,0,0,47,255,255,255,255,255,0,1,255,255,255,255,255,255,0,31,255,244,0,0,0,191,6,255,255,244,0,0,0,191,127,255,211,244,0,0,0,191,63,253,3,244,0,0,0,191,31,128,3,244,0,0,0,191,4,0,3,244,0,0,0,191,0,0,3,244,0,0,0,191,0,0,3,244,0,0,0,191,0,0,3,255,255,255,255,255,0,0,3,255,255,255,255,255,0,0,3,255,255,255,255,255,0,0,3,244,0,0,0,191,0,0,2,160,0,0,0,190, + // 0x5b9a 定 + 154,91,34,36,68,37,1,252,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,229,85,85,85,85,85,111,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,85,85,85,85,85,47,192,15,211,255,255,255,255,255,47,192,0,3,255,255,255,255,255,0,0,0,3,255,255,255,255,255,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,3,244,1,252,0,0,0,0,0,7,244,1,252,0,0,0,0,0,7,240,1,253,0,0,0,0,0,11,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,31,244,1,252,0,0,0,0,0,63,252,1,252,0,0,0,0,0,63,254,1,252,0,0,0,0,0,191,255,65,252,0,0,0,0,0,254,63,225,252,0,0,0,0,3,252,15,254,252,0,0,0,0,11,248,3,255,253,0,0,0,0,47,240,0,255,255,255,255,255,240,127,208,0,31,255,255,255,255,224,47,128,0,0,111,255,255,255,208,10,0,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,36,32,37,1,252,0,0,0,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,234,170,171,254,170,170,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,234,170,170,171,252,0,0,127,64,0,0,2,252,0,0,191,0,0,0,2,252,0,0,255,0,0,0,2,252,0,0,254,0,0,0,2,252,0,2,253,0,0,0,2,252,0,3,252,0,0,0,2,252,0,11,248,0,0,0,2,252,0,31,240,0,0,0,2,252,0,63,224,0,0,0,2,252,0,127,192,0,0,0,2,252,0,31,64,0,0,0,2,252,0,6,0,0,0,0,2,252,0,0,0,0,0,0,0,0,0, + // 0x793a 示 + 58,121,34,33,41,37,1,253,0,21,85,85,85,85,85,80,0,0,127,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,21,85,85,86,254,85,85,85,80,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,3,228,1,253,0,47,0,0,0,11,244,1,253,0,191,64,0,0,15,240,1,253,0,63,192,0,0,47,224,1,253,0,31,240,0,0,63,192,1,253,0,15,244,0,0,191,128,1,253,0,3,252,0,1,255,0,1,253,0,2,253,0,3,253,0,1,253,0,0,255,0,15,248,0,1,253,0,0,191,128,47,240,0,1,253,0,0,63,192,127,208,0,1,253,0,0,47,208,31,64,0,1,253,0,0,31,128,1,0,26,171,253,0,0,8,0,0,0,15,255,252,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,11,255,144,0,0,0,0, + // 0x7fa9 義 + 169,127,34,35,59,37,2,253,0,0,100,0,0,11,144,0,0,0,2,252,0,0,15,240,0,0,0,0,255,0,0,47,192,0,0,0,0,127,64,0,63,128,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,10,170,170,171,250,170,170,168,0,0,0,0,7,240,0,0,0,0,0,85,85,91,249,85,85,64,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,170,170,170,174,170,170,170,170,128,0,0,90,252,10,128,180,0,0,47,255,255,255,15,193,255,64,0,63,255,255,228,15,208,191,240,0,26,86,252,0,15,208,11,252,0,0,1,252,0,15,224,1,240,0,170,170,254,170,175,250,170,170,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,1,252,0,3,248,2,64,0,0,1,252,0,2,252,15,240,0,86,175,254,175,192,254,63,208,0,255,255,255,255,192,255,255,128,0,255,255,255,250,64,127,253,0,0,80,1,252,0,0,127,244,3,64,0,1,252,0,11,255,244,7,208,0,1,252,1,255,255,254,75,208,2,171,252,47,255,209,255,255,192,3,255,248,15,249,0,127,255,128,2,255,224,7,64,0,6,253,0, + // 0x8868 表 + 104,136,35,35,59,37,1,253,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,255,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,0,127,239,192,0,0,0,0,0,2,255,143,224,0,28,0,0,0,31,253,7,240,0,191,0,0,0,255,240,3,244,2,255,64,0,27,255,192,2,252,31,253,0,1,255,255,128,1,253,191,224,0,111,255,255,128,0,255,255,64,0,127,254,63,128,0,127,248,0,0,47,208,63,128,0,47,224,0,0,9,0,63,128,0,15,244,0,0,0,0,63,128,0,71,253,0,0,0,0,63,128,111,210,255,128,0,0,0,63,239,255,208,191,244,0,0,0,127,255,255,208,47,254,64,0,127,255,255,249,0,7,255,244,0,191,255,249,0,0,0,255,240,0,127,249,0,0,0,0,31,208,0,57,0,0,0,0,0,1,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Korean_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Korean_27.cpp new file mode 100644 index 000000000000..02cce9dccac2 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Korean_27.cpp @@ -0,0 +1,252 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Korean 37pt, capital 'A' height: 27px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +extern const uint8_t NotoSans_Medium_Korean_27[16344] = { + 162,27,112,172,136,215,35,247, // unifont_t + // 0xac70 거 + 112,172,28,35,245,34,2,253,0,0,0,0,0,0,85,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,63,255,255,255,128,1,254,63,255,255,255,128,1,254,63,255,255,255,128,1,254,0,0,0,127,64,1,254,0,0,0,127,64,1,254,0,0,0,191,0,1,254,0,0,0,191,0,1,254,0,0,0,255,0,1,254,0,0,0,254,0,1,254,0,0,2,253,0,1,254,0,0,3,252,127,255,254,0,0,7,248,127,255,254,0,0,15,240,127,255,254,0,0,47,224,0,1,254,0,0,127,192,0,1,254,0,0,255,64,0,1,254,0,3,254,0,0,1,254,0,31,252,0,0,1,254,0,127,240,0,0,1,254,3,255,192,0,0,1,254,47,255,0,0,0,1,254,255,248,0,0,0,1,254,191,208,0,0,0,1,254,62,0,0,0,0,1,254,16,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254, + // 0xace0 고 + 224,172,30,27,216,34,2,1,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,3,252,0,7,248,0,0,0,3,252,0,7,244,0,0,0,3,252,0,11,244,0,0,0,3,252,0,11,240,0,0,0,3,252,0,15,240,0,0,0,3,252,0,15,240,0,0,0,3,252,0,15,240,0,0,0,3,252,0,15,224,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xadf8 그 + 248,173,30,26,208,34,2,2,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,3,255,255,255,255,255,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xae09 급 + 9,174,30,33,8,34,2,253,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,253,0,0,0,7,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0xae30 기 + 48,174,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,15,255,255,255,224,1,253,15,255,255,255,224,1,253,15,255,255,255,208,1,253,0,0,0,31,208,1,253,0,0,0,47,208,1,253,0,0,0,47,192,1,253,0,0,0,63,192,1,253,0,0,0,63,128,1,253,0,0,0,127,64,1,253,0,0,0,255,0,1,253,0,0,1,255,0,1,253,0,0,2,253,0,1,253,0,0,7,252,0,1,253,0,0,15,244,0,1,253,0,0,47,240,0,1,253,0,0,191,192,0,1,253,0,2,255,64,0,1,253,0,11,254,0,0,1,253,0,63,248,0,0,1,253,1,255,224,0,0,1,253,15,255,128,0,0,1,253,191,253,0,0,0,1,253,127,224,0,0,0,1,253,47,64,0,0,0,1,253,4,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xae45 깅 + 69,174,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,15,255,255,255,208,2,253,15,255,255,255,192,2,253,15,255,255,255,192,2,253,0,0,0,63,192,2,253,0,0,0,63,128,2,253,0,0,0,127,64,2,253,0,0,0,255,0,2,253,0,0,1,254,0,2,253,0,0,3,252,0,2,253,0,0,15,244,0,2,253,0,0,63,224,0,2,253,0,1,255,128,0,2,253,0,31,254,0,0,2,253,1,255,248,0,0,2,253,47,255,208,0,0,2,253,191,253,0,0,0,2,253,63,208,0,0,0,2,253,24,0,0,0,0,1,168,0,0,2,191,255,144,0,0,0,127,255,255,254,0,0,3,255,255,255,255,208,0,15,255,80,1,191,244,0,47,244,0,0,11,252,0,63,192,0,0,2,253,0,63,192,0,0,1,253,0,63,192,0,0,1,253,0,63,192,0,0,2,253,0,47,240,0,0,11,252,0,15,255,80,1,191,244,0,3,255,255,255,255,208,0,0,127,255,255,254,0,0,0,6,191,255,144,0, + // 0xb044 끄 + 68,176,30,26,208,34,2,2,15,255,255,194,255,255,252,0,15,255,255,194,255,255,252,0,15,255,255,194,255,255,252,0,0,0,47,192,0,3,252,0,0,0,47,192,0,3,252,0,0,0,47,192,0,3,252,0,0,0,47,192,0,3,252,0,0,0,63,192,0,3,248,0,0,0,63,192,0,3,248,0,0,0,63,192,0,3,248,0,0,0,63,128,0,3,248,0,0,0,127,128,0,7,244,0,0,0,127,64,0,7,244,0,0,0,191,0,0,11,244,0,0,0,255,0,0,11,240,0,0,0,255,0,0,15,240,0,0,1,254,0,0,15,240,0,0,2,253,0,0,15,224,0,0,2,252,0,0,31,224,0,0,0,4,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb0b4 내 + 180,176,28,35,245,34,3,253,0,0,0,0,0,0,84,0,0,0,0,190,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,106,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,255,255,253,191,0,0,0,255,255,253,191,0,0,0,255,255,253,191,0,0,0,255,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,0,0,254,1,253,191,0,90,240,254,1,253,191,255,255,240,254,1,253,191,255,255,244,254,1,253,191,255,254,144,254,1,253,20,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,254,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xb178 노 + 120,177,30,28,224,34,2,1,1,168,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb204 누 + 4,178,30,33,8,34,2,253,0,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0, + // 0xb274 뉴 + 116,178,30,33,8,34,2,253,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0, + // 0xb2c8 니 + 200,178,26,35,245,34,4,253,0,0,0,0,0,5,64,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,20,31,208,254,0,21,191,248,31,208,255,255,255,255,252,31,208,255,255,255,255,248,31,208,255,255,255,165,0,31,208,84,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208, + // 0xb2e4 다 + 228,178,30,35,24,34,3,253,0,0,0,0,0,21,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,255,255,255,254,0,63,128,0,255,255,255,254,0,63,128,0,255,255,255,254,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,255,240,255,0,0,0,0,63,255,240,255,0,0,0,0,63,255,240,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,0,0,0,63,128,0,255,0,1,90,240,63,128,0,255,255,255,255,244,63,128,0,255,255,255,255,244,63,128,0,255,255,255,233,64,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0, + // 0xb2f9 당 + 249,178,30,35,24,34,3,253,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,255,255,255,252,0,63,192,0,255,255,255,252,0,63,192,0,255,255,255,252,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,255,224,255,0,0,0,0,63,255,224,255,0,0,0,0,63,255,224,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,91,240,63,192,0,255,255,255,255,244,63,192,0,255,255,255,255,244,63,192,0,255,255,255,233,64,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,21,64,0,0,0,43,255,233,0,0,0,0,7,255,255,255,224,0,0,0,47,255,255,255,253,0,0,0,255,249,0,91,255,0,0,1,255,64,0,0,255,192,0,2,253,0,0,0,63,192,0,3,252,0,0,0,47,208,0,3,252,0,0,0,47,208,0,2,253,0,0,0,63,192,0,1,255,64,0,0,255,192,0,0,191,249,0,91,255,0,0,0,47,255,255,255,253,0,0,0,7,255,255,255,224,0,0,0,0,43,255,249,0,0,0, + // 0xb3c4 도 + 196,179,30,28,224,34,2,1,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb3cc 돌 + 204,179,30,33,8,34,2,253,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,170,170,170,170,160,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,252,0, + // 0xb3d9 동 + 217,179,30,33,8,34,2,253,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,255,250,64,0,0,0,6,255,255,255,248,0,0,0,47,255,255,255,255,64,0,0,191,249,0,6,255,208,0,0,255,64,0,0,47,240,0,1,254,0,0,0,11,244,0,2,253,0,0,0,7,244,0,1,254,0,0,0,11,244,0,0,255,64,0,0,47,240,0,0,191,249,0,6,255,208,0,0,47,255,255,255,255,128,0,0,7,255,255,255,248,0,0,0,0,27,255,250,64,0,0, + // 0xb418 되 + 24,180,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,11,255,255,255,253,1,253,11,255,255,255,253,1,253,11,255,255,255,253,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,240,0,0,0,1,253,11,255,255,255,254,1,253,11,255,255,255,254,1,253,11,255,255,255,254,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,253,0,0,63,192,0,1,253,0,0,127,218,191,225,253,255,255,255,255,255,225,253,191,255,255,255,255,225,253,191,255,255,170,80,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xb41c 된 + 28,180,29,35,24,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,3,255,255,255,252,1,253,0,3,255,255,255,252,1,253,0,3,255,255,255,252,1,253,0,3,248,0,0,0,1,253,0,3,248,0,0,0,1,253,0,3,248,0,0,0,1,253,0,3,248,0,0,0,1,253,0,3,248,0,0,0,1,253,0,3,248,0,0,0,1,253,0,3,255,255,255,252,1,253,0,3,255,255,255,252,1,253,0,3,255,255,255,252,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,213,170,193,253,0,255,255,255,255,255,209,253,0,255,255,255,255,255,209,253,0,191,255,255,170,80,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,26,128,0,0,1,253,0,0,47,192,0,0,1,253,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,255,255,255,255,255,64,0,47,255,255,255,255,255,64,0,47,255,255,255,255,255,64,0,0,0,0,0,0,0,0, + // 0xb428 됨 + 40,180,28,35,245,34,2,253,0,0,0,0,0,0,169,0,0,0,0,0,1,254,3,255,255,255,252,1,254,3,255,255,255,252,1,254,3,255,255,255,252,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,255,255,255,253,1,254,3,255,255,255,253,1,254,3,255,255,255,253,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,214,175,209,254,255,255,255,255,255,209,254,191,255,255,255,255,209,254,191,255,254,169,64,1,254,0,0,0,0,0,1,254,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,47,255,255,255,255,254,0,47,255,255,255,255,254,0,47,255,255,255,255,254,0,47,192,0,0,1,254,0,47,192,0,0,0,254,0,47,192,0,0,0,254,0,47,192,0,0,0,254,0,47,192,0,0,0,254,0,47,255,255,255,255,254,0,47,255,255,255,255,254,0,47,255,255,255,255,254,0,0,0,0,0,0,0, + // 0xb4a4 뒤 + 164,180,28,35,245,34,2,253,0,0,0,0,0,0,169,0,0,0,0,0,1,254,3,255,255,255,252,1,254,3,255,255,255,252,1,254,3,255,255,255,252,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,248,0,0,0,1,254,3,255,255,255,253,1,254,3,255,255,255,253,1,254,3,255,255,255,253,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,86,145,254,255,255,255,255,255,225,254,255,255,255,255,255,241,254,255,255,255,254,165,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,128,0,1,254,0,0,0,0,0,1,253, + // 0xb4dc 드 + 220,180,30,27,216,34,2,1,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xb514 디 + 20,181,26,35,245,34,4,253,0,0,0,0,0,5,64,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,255,255,255,255,0,31,208,255,255,255,255,0,31,208,255,255,255,255,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,0,0,31,208,254,0,0,90,244,31,208,255,255,255,255,248,31,208,255,255,255,255,248,31,208,255,255,255,250,80,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208, + // 0xb77c 라 + 124,183,30,35,24,34,3,253,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,255,255,255,253,0,63,192,0,255,255,255,253,0,63,192,0,255,255,255,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,255,255,255,253,0,63,192,0,255,255,255,253,0,63,255,240,255,255,255,253,0,63,255,240,255,0,0,0,0,63,255,240,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,63,192,0,255,0,0,0,16,63,192,0,255,0,21,175,244,63,192,0,255,255,255,255,248,63,192,0,255,255,255,255,248,63,192,0,255,255,254,165,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0, + // 0xb7ec 러 + 236,183,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,255,255,255,252,0,3,248,255,255,255,252,0,3,248,255,255,255,252,0,3,248,0,0,3,252,0,3,248,0,0,3,252,0,3,248,0,0,3,252,0,3,248,0,0,3,252,0,3,248,0,0,3,252,0,3,248,0,0,3,252,0,3,248,255,255,255,252,63,255,248,255,255,255,252,63,255,248,255,255,255,252,63,255,248,255,0,0,0,0,7,248,255,0,0,0,0,3,248,255,0,0,0,0,3,248,255,0,0,0,0,3,248,255,0,0,0,0,3,248,255,0,0,0,0,3,248,255,0,0,0,0,3,248,255,0,85,175,224,3,248,255,255,255,255,224,3,248,255,255,255,255,240,3,248,255,255,254,148,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xb808 레 + 8,184,28,35,245,34,3,253,0,0,0,0,0,0,84,0,0,0,0,63,64,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,255,255,254,0,63,128,253,255,255,254,0,63,128,253,255,255,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,0,63,128,253,0,0,254,63,255,128,253,255,255,254,63,255,128,253,255,255,254,63,255,128,253,255,255,254,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,5,90,244,63,128,253,255,255,255,244,63,128,253,255,255,255,248,63,128,253,255,255,233,80,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,21,0,253,0,0,0,0,0,0,253, + // 0xb825 력 + 37,184,27,35,245,34,3,253,0,0,0,0,0,0,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,255,255,255,248,0,3,248,255,255,255,248,0,3,248,255,255,255,248,0,7,248,0,0,3,248,63,255,248,0,0,3,248,63,255,248,0,0,3,248,63,255,248,0,0,3,248,0,3,248,255,255,255,248,0,3,248,255,255,255,248,0,3,248,255,255,255,248,0,7,248,255,0,0,0,63,255,248,255,0,0,0,63,255,248,255,0,0,0,63,255,248,255,0,0,21,0,3,248,255,255,255,255,64,3,248,255,255,255,255,128,3,248,255,255,255,233,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,255,255,255,255,255,248,0,255,255,255,255,255,248,0,255,255,255,255,255,248,0,0,0,0,0,7,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,244, + // 0xb85c 로 + 92,184,30,28,224,34,2,1,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb8cc 료 + 204,184,30,28,224,34,2,1,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,254,0,7,244,0,0,0,0,254,0,7,244,0,0,0,0,254,0,7,244,0,0,0,0,254,0,7,244,0,0,0,0,254,0,7,244,0,0,0,0,255,0,7,244,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb974 르 + 116,185,30,28,224,34,2,1,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xb9ac 리 + 172,185,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,0,0,0,191,64,7,244,0,0,0,191,64,7,244,0,0,0,191,64,7,244,0,0,0,191,64,7,244,0,0,0,191,64,7,244,0,0,0,191,64,7,244,63,255,255,255,64,7,244,63,255,255,255,64,7,244,63,255,255,255,64,7,244,63,128,0,0,0,7,244,63,128,0,0,0,7,244,63,128,0,0,0,7,244,63,128,0,0,0,7,244,63,128,0,0,0,7,244,63,128,0,0,0,7,244,63,128,0,0,1,7,244,63,128,85,107,255,7,244,63,255,255,255,255,7,244,63,255,255,255,255,7,244,63,255,255,169,64,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244, + // 0xb9b0 린 + 176,185,28,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,0,90,252,7,244,127,255,255,255,253,7,244,127,255,255,255,253,7,244,127,255,255,233,80,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,191,0,0,0,7,244,0,191,0,0,0,7,244,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,255,255,255,255,253,0,191,255,255,255,255,253,0,191,255,255,255,255,253,0,0,0,0,0,0,0, + // 0xb9bd 립 + 189,185,27,35,245,34,3,253,0,0,0,0,0,2,160,0,0,0,0,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,254,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,1,90,252,7,244,127,255,255,255,253,7,244,127,255,255,255,253,7,244,127,255,255,233,64,7,244,0,0,0,0,0,6,164,0,0,0,0,0,0,0,0,106,0,0,0,2,164,0,127,64,0,0,7,244,0,127,64,0,0,7,244,0,127,64,0,0,7,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,64,0,0,7,244,0,127,64,0,0,7,244,0,127,64,0,0,7,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,0,0,0,0,0,0, + // 0xb9c1 링 + 193,185,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,0,0,0,255,0,7,244,127,255,255,255,0,7,244,127,255,255,255,0,7,244,127,255,255,254,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,0,0,0,7,244,127,64,1,90,252,7,244,127,255,255,255,253,7,244,127,255,255,255,253,7,244,127,255,255,233,64,7,244,0,0,0,0,0,7,244,0,0,0,0,0,1,80,0,0,26,255,254,64,0,0,2,255,255,255,253,0,0,15,255,255,255,255,128,0,63,249,0,6,255,224,0,191,192,0,0,31,240,0,255,0,0,0,11,244,0,255,0,0,0,7,248,0,255,0,0,0,11,244,0,191,192,0,0,31,240,0,63,249,0,6,255,224,0,15,255,255,255,255,128,0,2,255,255,255,253,0,0,0,26,255,254,64,0, + // 0xba48 멈 + 72,186,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,0,0,255,0,3,248,191,0,0,255,0,3,248,191,0,0,255,0,7,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,0,0,255,0,3,248,191,0,0,255,0,3,248,191,0,0,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,127,64,0,0,3,248,0,127,64,0,0,3,248,0,127,64,0,0,3,248,0,127,64,0,0,3,248,0,127,64,0,0,3,248,0,127,64,0,0,3,248,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,127,255,255,255,255,248,0,0,0,0,0,0,0, + // 0xba54 메 + 84,186,28,35,245,34,3,253,0,0,0,0,0,0,168,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,255,255,128,253,254,0,47,255,255,128,253,254,0,47,255,255,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,5,0,253,0,0,0,0,0,0,253, + // 0xba74 면 + 116,186,28,35,245,34,3,253,0,0,0,0,0,2,164,0,0,0,0,0,3,248,0,0,0,0,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,0,0,255,0,7,248,191,0,0,255,0,3,248,191,0,0,255,0,3,248,191,0,0,255,0,3,248,191,0,0,255,0,7,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,0,0,255,255,255,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,42,64,0,0,3,248,0,63,128,0,0,3,248,0,63,128,0,0,2,164,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,0,0,0,0,0,0, + // 0xbaa8 모 + 168,186,30,28,224,34,2,1,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,252,0,0,0,3,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xbabb 못 + 187,186,30,33,8,34,2,253,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,253,0,0,0,11,240,0,1,253,0,0,0,11,240,0,1,253,0,0,0,11,240,0,1,253,0,0,0,11,240,0,1,253,0,0,0,11,240,0,1,253,0,0,0,11,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,224,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,252,0,0,0,0,0,15,250,255,0,0,0,0,0,191,224,255,208,0,0,0,27,255,128,63,254,0,0,7,255,254,0,11,255,249,0,11,255,224,0,1,255,253,0,3,254,0,0,0,11,252,0,1,64,0,0,0,0,20,0, + // 0xbbf8 미 + 248,187,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244, + // 0xbc00 밀 + 0,188,28,35,245,34,3,253,0,0,0,0,0,6,164,0,0,0,0,0,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,64,0,127,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,127,255,255,255,64,7,244,0,0,0,0,0,7,244,0,0,0,0,0,1,80,0,0,0,0,0,0,0,0,191,255,255,255,255,244,0,191,255,255,255,255,244,0,191,255,255,255,255,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,255,255,255,255,244,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,255,255,255,255,253,0,127,255,255,255,255,253,0,127,255,255,255,255,253, + // 0xbc14 바 + 20,188,30,35,24,34,3,253,0,0,0,0,0,21,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,170,0,0,170,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,255,255,255,0,63,128,0,255,255,255,255,0,63,192,0,255,255,255,255,0,63,255,240,255,0,0,255,0,63,255,240,255,0,0,255,0,63,255,240,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,0,0,255,0,63,128,0,255,255,255,255,0,63,128,0,255,255,255,255,0,63,128,0,255,255,255,255,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0, + // 0xbc84 버 + 132,188,27,35,245,34,3,253,0,0,0,0,0,1,84,0,0,0,0,0,3,248,0,0,0,0,0,3,248,170,0,0,170,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,255,255,255,0,3,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,0,0,255,255,255,248,255,0,0,255,0,7,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,0,0,255,0,3,248,255,255,255,255,0,3,248,255,255,255,255,0,3,248,255,255,255,255,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xbca0 베 + 160,188,28,35,245,34,3,253,0,0,0,0,0,0,84,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,5,64,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,255,255,255,192,63,128,253,255,255,255,255,255,128,253,255,255,255,255,255,128,253,254,0,47,255,255,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,254,0,47,192,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,255,255,255,192,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,0,0,253,0,0,0,0,0,0,253, + // 0xbca8 벨 + 168,188,29,35,24,34,3,253,0,0,0,0,0,0,84,0,0,0,0,0,63,65,252,0,20,0,10,128,63,65,252,0,255,0,31,208,63,65,252,0,255,0,31,208,63,65,252,0,255,0,31,208,63,65,252,0,255,0,31,208,63,65,252,0,255,255,255,208,63,65,252,0,255,255,255,255,255,65,252,0,255,255,255,255,255,65,252,0,255,0,31,255,255,65,252,0,255,0,31,208,63,65,252,0,255,0,31,208,63,65,252,0,255,0,31,208,63,65,252,0,255,255,255,208,63,65,252,0,255,255,255,208,63,65,252,0,255,255,255,208,63,65,252,0,0,0,0,0,63,65,252,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,255,255,255,255,255,64,0,63,255,255,255,255,255,64,0,63,255,255,255,255,255,64, + // 0xbcf8 본 + 248,188,30,33,8,34,2,253,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,254,0,0,0,11,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0xbe44 비 + 68,190,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,42,64,0,42,64,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,255,255,255,128,7,244,127,255,255,255,128,7,244,127,255,255,255,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,64,0,63,128,7,244,127,255,255,255,128,7,244,127,255,255,255,128,7,244,127,255,255,255,128,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244, + // 0xc0ac 사 + 172,192,32,35,24,34,1,253,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,42,64,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,127,128,0,3,248,0,0,0,127,128,0,3,248,0,0,0,127,192,0,3,248,0,0,0,191,192,0,3,248,0,0,0,255,192,0,3,248,0,0,0,255,208,0,3,255,255,0,1,255,240,0,3,255,255,0,3,255,240,0,3,255,255,0,7,247,248,0,3,252,0,0,15,242,253,0,3,248,0,0,47,224,255,0,3,248,0,0,127,192,191,192,3,248,0,0,255,128,63,224,3,248,0,3,255,0,31,248,3,248,0,31,252,0,11,255,67,248,0,127,244,0,2,255,3,248,0,63,208,0,0,189,3,248,0,15,0,0,0,24,3,248,0,4,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0, + // 0xc0bd 삽 + 189,192,31,35,24,34,2,253,0,0,0,0,0,6,160,0,0,0,0,0,0,15,240,0,0,0,254,0,0,15,240,0,0,0,254,0,0,15,240,0,0,0,254,0,0,15,240,0,0,1,254,0,0,15,240,0,0,1,255,0,0,15,240,0,0,2,255,0,0,15,240,0,0,3,255,64,0,15,255,248,0,3,255,192,0,15,255,248,0,11,255,208,0,15,255,248,0,31,239,240,0,15,240,0,0,63,199,252,0,15,240,0,0,255,131,255,0,15,240,0,7,255,0,255,224,15,240,0,127,252,0,127,252,15,240,0,255,244,0,15,252,15,240,0,191,192,0,2,240,15,240,0,62,0,0,0,16,15,240,0,0,0,0,0,0,6,160,0,0,0,0,0,0,0,0,0,0,127,64,0,0,11,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0xc0c8 새 + 200,192,30,35,24,34,1,253,0,0,0,0,0,0,5,64,0,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,84,0,7,240,15,208,0,1,252,0,7,240,15,208,0,1,252,0,7,240,15,208,0,1,252,0,7,240,15,208,0,1,252,0,7,240,15,208,0,1,252,0,7,240,15,208,0,2,252,0,7,240,15,208,0,2,253,0,7,240,15,208,0,2,253,0,7,240,15,208,0,3,253,0,7,240,15,208,0,3,254,0,7,240,15,208,0,3,255,0,7,255,255,208,0,7,255,0,7,255,255,208,0,11,255,64,7,255,255,208,0,15,255,192,7,240,31,208,0,31,223,208,7,240,15,208,0,63,143,240,7,240,15,208,0,191,75,248,7,240,15,208,0,255,3,253,7,240,15,208,3,253,2,255,71,240,15,208,15,252,0,255,231,240,15,208,127,240,0,63,199,240,15,208,63,208,0,15,71,240,15,208,15,0,0,1,7,240,15,208,4,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,0,0,7,240,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208, + // 0xc124 설 + 36,193,29,34,16,34,2,254,0,0,0,0,0,0,169,0,0,0,85,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,254,0,0,0,255,0,0,0,254,0,0,1,255,0,63,255,254,0,0,2,255,64,63,255,254,0,0,3,255,192,63,255,254,0,0,7,255,208,0,1,254,0,0,15,255,240,0,0,254,0,0,63,215,252,0,0,254,0,0,255,195,255,0,0,254,0,3,255,0,255,224,0,254,0,47,253,0,127,253,0,254,0,255,244,0,15,252,0,254,0,127,208,0,2,244,0,254,0,62,0,0,0,16,0,254,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,253,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,255,128,0,15,255,255,255,255,255,128,0,15,255,255,255,255,255,128, + // 0xc18c 소 + 140,193,30,29,232,34,2,1,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,208,0,0,0,0,0,0,255,224,0,0,0,0,0,1,255,240,0,0,0,0,0,3,255,252,0,0,0,0,0,15,246,254,0,0,0,0,0,47,240,255,128,0,0,0,0,255,192,127,224,0,0,0,11,255,64,31,253,0,0,0,191,252,0,7,255,208,0,47,255,240,0,1,255,255,64,47,255,64,0,0,47,255,64,15,244,0,0,0,2,255,0,5,0,0,63,128,0,9,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xc18d 속 + 141,193,30,34,16,34,2,253,0,0,0,63,128,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,224,0,0,0,0,0,1,255,244,0,0,0,0,0,7,255,252,0,0,0,0,0,31,241,255,64,0,0,0,0,191,208,191,224,0,0,0,27,255,128,47,254,0,0,6,255,253,0,7,255,249,0,15,255,224,0,0,191,255,0,11,254,0,63,192,11,254,0,2,64,0,63,192,0,104,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0, + // 0xc2a4 스 + 164,194,30,29,232,34,2,1,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,224,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,248,0,0,0,0,0,11,251,253,0,0,0,0,0,31,240,255,0,0,0,0,0,127,208,191,208,0,0,0,2,255,128,63,244,0,0,0,31,254,0,11,255,64,0,2,255,244,0,2,255,244,0,63,255,208,0,0,127,255,128,31,253,0,0,0,11,255,0,15,144,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xc2ac 슬 + 172,194,30,34,16,34,2,253,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,224,0,0,0,0,0,1,255,244,0,0,0,0,0,7,255,253,0,0,0,0,0,47,240,255,128,0,0,0,2,255,208,127,248,0,0,1,191,255,0,15,255,228,0,31,255,248,0,2,255,255,64,15,255,128,0,0,47,255,0,11,164,0,0,0,1,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,170,170,170,170,160,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,252,0, + // 0xc2dc 시 + 220,194,28,34,238,34,2,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,64,0,1,253,0,0,255,64,0,1,253,0,0,255,128,0,1,253,0,0,255,128,0,1,253,0,1,255,192,0,1,253,0,2,255,208,0,1,253,0,3,255,240,0,1,253,0,11,251,244,0,1,253,0,15,227,252,0,1,253,0,47,210,254,0,1,253,0,127,192,255,64,1,253,1,255,64,127,208,1,253,7,254,0,47,244,1,253,47,252,0,15,255,1,253,255,240,0,3,255,65,253,191,192,0,0,190,1,253,62,0,0,0,28,1,253,20,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,0,168, + // 0xc2dd 식 + 221,194,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,0,191,0,0,1,253,0,0,255,0,0,1,253,0,0,255,0,0,1,253,0,0,255,0,0,1,253,0,0,255,0,0,1,253,0,0,255,0,0,1,253,0,0,255,64,0,1,253,0,2,255,192,0,1,253,0,3,255,208,0,1,253,0,7,255,240,0,1,253,0,15,247,248,0,1,253,0,63,211,254,0,1,253,0,255,129,255,128,1,253,7,255,0,127,248,1,253,127,252,0,31,255,1,253,191,240,0,7,253,1,253,63,128,0,0,188,1,253,24,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xc5b4 어 + 180,197,28,35,245,34,2,253,0,0,0,0,0,0,85,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,11,253,0,0,0,254,0,127,255,208,0,0,254,2,255,255,244,0,0,254,7,255,175,252,0,0,254,15,244,2,254,0,0,254,31,224,0,255,0,0,254,63,192,0,127,128,0,254,63,128,0,63,192,0,254,127,64,0,47,192,0,254,127,64,0,47,192,0,254,127,0,0,31,255,255,254,191,0,0,31,255,255,254,191,0,0,31,255,255,254,127,0,0,31,208,1,254,127,64,0,47,192,0,254,63,64,0,47,192,0,254,63,128,0,63,192,0,254,63,192,0,63,128,0,254,31,208,0,191,0,0,254,15,240,1,255,0,0,254,11,253,7,253,0,0,254,3,255,255,248,0,0,254,0,255,255,224,0,0,254,0,47,255,64,0,0,254,0,0,80,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254, + // 0xc5c6 없 + 198,197,31,35,24,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,0,0,254,0,0,27,254,64,0,0,254,0,1,255,255,244,0,0,254,0,11,255,255,253,0,0,254,0,31,253,6,255,64,0,254,0,63,208,0,127,192,0,254,0,127,128,0,47,208,0,254,0,191,0,0,15,255,255,254,0,191,0,0,15,255,255,254,0,191,0,0,15,255,255,254,0,127,64,0,31,224,1,254,0,63,192,0,63,192,0,254,0,63,224,0,191,128,0,254,0,31,253,7,255,0,0,254,0,7,255,255,253,0,0,254,0,1,255,255,244,0,0,254,0,0,27,254,64,0,0,254,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,64,0,1,252,0,253,0,47,192,0,1,252,0,253,0,47,192,0,1,252,0,253,0,47,192,0,1,252,0,253,0,63,192,0,1,255,255,253,0,63,208,0,1,255,255,253,0,127,224,0,1,255,255,253,0,255,240,0,1,252,0,253,1,255,248,0,1,252,0,253,7,249,254,0,1,252,0,253,47,240,255,208,1,255,255,254,255,208,63,248,1,255,255,253,255,64,15,244,1,255,255,253,60,0,2,224,0,0,0,0,0,0,0,0, + // 0xc5d1 엑 + 209,197,28,35,245,34,2,253,0,0,0,0,0,0,21,0,0,0,0,10,144,127,0,0,0,0,15,224,127,0,191,248,0,15,224,127,3,255,255,128,15,224,127,15,255,255,208,15,224,127,47,224,31,244,15,224,127,127,128,3,248,15,224,127,191,0,2,252,15,224,127,254,0,1,255,255,224,127,254,0,0,255,255,224,127,254,0,0,255,255,224,127,191,0,1,252,15,224,127,191,0,3,252,15,224,127,63,192,7,244,15,224,127,47,244,47,240,15,224,127,15,255,255,208,15,224,127,3,255,255,64,15,224,127,0,127,248,0,15,224,127,0,0,0,0,15,224,127,0,0,0,0,15,224,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,0,31,255,255,255,255,255,0,31,255,255,255,255,255,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191, + // 0xc5d4 엔 + 212,197,29,35,24,34,2,253,0,0,0,0,0,0,21,0,0,0,0,0,15,224,127,0,0,0,0,0,15,224,127,0,0,111,228,0,15,224,127,0,2,255,255,0,15,224,127,0,15,255,255,192,15,224,127,0,31,249,127,240,15,224,127,0,63,192,11,244,15,224,127,0,127,64,3,252,15,224,127,0,191,0,1,252,15,224,127,0,254,0,0,255,255,224,127,0,254,0,0,255,255,224,127,0,254,0,0,255,255,224,127,0,191,0,1,252,15,224,127,0,127,64,3,252,15,224,127,0,63,192,11,244,15,224,127,0,31,249,127,240,15,224,127,0,15,255,255,192,15,224,127,0,2,255,255,0,15,224,127,0,0,111,228,0,15,224,127,0,0,0,0,0,15,224,127,0,0,0,0,0,15,224,127,0,0,0,0,0,15,224,127,0,0,15,240,0,15,224,127,0,0,15,240,0,15,224,127,0,0,15,240,0,0,0,127,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xc5f4 열 + 244,197,29,34,16,34,2,254,0,0,0,0,0,0,169,0,0,0,0,0,0,1,254,0,0,31,255,128,0,1,254,0,1,255,255,252,0,1,254,0,11,255,255,255,255,255,254,0,31,248,2,255,255,255,254,0,63,192,0,63,255,255,254,0,127,64,0,31,224,1,254,0,191,0,0,15,224,1,254,0,191,0,0,15,224,1,254,0,191,0,0,15,224,1,254,0,127,64,0,31,255,255,254,0,63,192,0,63,255,255,254,0,31,248,2,255,255,255,254,0,11,255,255,253,0,1,254,0,1,255,255,244,0,1,254,0,0,47,255,128,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,15,255,255,255,255,254,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,255,128,0,15,255,255,255,255,255,128,0,15,255,255,255,255,255,128, + // 0xc608 예 + 8,198,29,35,24,34,2,253,0,0,0,0,0,0,21,0,0,0,0,0,10,144,63,64,0,0,0,0,15,224,63,64,0,6,64,0,15,224,63,64,0,191,248,0,15,224,63,64,3,255,254,0,15,224,63,64,11,255,255,64,15,224,63,64,15,240,127,192,15,224,63,64,47,192,31,208,15,224,63,64,63,128,15,255,255,224,63,64,127,64,11,255,255,224,63,64,127,0,7,255,255,224,63,64,191,0,3,244,15,224,63,64,191,0,3,244,15,224,63,64,190,0,3,244,15,224,63,64,254,0,3,248,15,224,63,64,190,0,3,244,15,224,63,64,191,0,3,244,15,224,63,64,191,0,3,244,15,224,63,64,127,0,7,255,255,224,63,64,127,64,11,255,255,224,63,64,63,128,15,255,255,224,63,64,47,192,31,208,15,224,63,64,15,240,127,192,15,224,63,64,11,255,255,64,15,224,63,64,3,255,254,0,15,224,63,64,0,191,248,0,15,224,63,64,0,6,64,0,15,224,63,64,0,0,0,0,15,224,63,64,0,0,0,0,15,224,63,64,0,0,0,0,15,224,63,64,0,0,0,0,15,224,63,64,0,0,0,0,15,224,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64, + // 0xc624 오 + 36,198,30,28,224,34,2,1,0,0,6,255,249,0,0,0,0,1,255,255,255,244,0,0,0,15,255,255,255,254,0,0,0,63,253,64,23,255,192,0,0,255,208,0,0,127,240,0,1,255,0,0,0,15,244,0,3,252,0,0,0,3,252,0,3,248,0,0,0,2,252,0,7,244,0,0,0,2,252,0,7,244,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,252,0,0,0,3,252,0,1,255,0,0,0,15,244,0,0,255,208,0,0,127,240,0,0,63,253,64,23,255,192,0,0,15,255,255,255,255,0,0,0,1,255,255,255,244,0,0,0,0,10,255,254,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xc628 온 + 40,198,30,33,8,34,2,253,0,0,27,255,254,64,0,0,0,7,255,255,255,253,0,0,0,47,255,255,255,255,128,0,0,255,249,0,6,255,224,0,1,255,64,0,0,31,244,0,3,253,0,0,0,7,248,0,3,252,0,0,0,3,252,0,3,253,0,0,0,7,248,0,1,255,0,0,0,31,244,0,0,255,249,0,6,255,240,0,0,47,255,255,255,255,128,0,0,7,255,255,255,253,0,0,0,0,26,255,250,64,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0xc644 완 + 68,198,31,35,24,34,2,253,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,6,190,64,0,15,240,0,0,127,255,248,0,15,240,0,2,255,255,255,64,15,240,0,7,254,0,191,192,15,240,0,15,240,0,31,224,15,240,0,15,224,0,11,240,15,240,0,31,208,0,7,240,15,240,0,31,208,0,11,240,15,240,0,15,224,0,15,240,15,240,0,15,244,0,31,224,15,240,0,3,254,69,255,192,15,255,248,1,255,255,255,0,15,255,248,0,63,255,248,0,15,255,248,0,1,255,64,0,15,240,0,0,0,255,0,0,15,240,0,0,0,255,0,0,15,240,0,0,0,255,106,255,79,240,0,255,255,255,255,255,79,240,0,255,255,255,255,255,79,240,0,255,255,250,165,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,85,0,0,0,15,240,0,0,191,0,0,0,15,240,0,0,191,0,0,0,11,240,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,255,255,255,255,252,0,0,191,255,255,255,255,252,0,0,191,255,255,255,255,252,0,0,0,0,0,0,0,0,0, + // 0xc6d0 원 + 208,198,29,35,24,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,0,0,254,0,0,6,191,164,0,0,254,0,0,127,255,255,64,0,254,0,1,255,255,255,208,0,254,0,3,254,0,31,240,0,254,0,11,244,0,7,248,0,254,0,11,240,0,3,248,0,254,0,11,240,0,3,248,0,254,0,7,248,0,7,244,0,254,0,3,254,64,111,240,0,254,0,1,255,255,255,208,0,254,0,0,47,255,254,0,0,254,0,0,1,174,144,0,0,254,0,0,0,0,0,0,0,254,0,0,0,1,85,175,192,254,0,255,255,255,255,255,208,254,0,255,255,255,255,255,208,254,0,255,255,255,254,149,0,254,0,0,0,63,192,0,0,254,0,0,0,63,192,0,0,254,0,0,0,63,192,63,255,254,0,0,0,63,192,63,255,254,0,0,0,63,192,42,171,254,0,0,85,63,192,0,0,254,0,0,255,63,192,0,0,254,0,0,255,0,0,0,0,169,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0, + // 0xc704 위 + 4,199,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,254,0,2,255,228,0,1,254,0,47,255,255,64,1,254,0,255,255,255,208,1,254,3,255,145,127,244,1,254,7,252,0,7,252,1,254,11,240,0,2,252,1,254,15,240,0,1,253,1,254,15,240,0,1,253,1,254,11,240,0,2,252,1,254,7,252,0,7,252,1,254,3,255,64,47,244,1,254,0,255,255,255,224,1,254,0,47,255,255,64,1,254,0,2,255,244,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,1,90,191,225,254,255,255,255,255,255,225,254,255,255,255,255,255,225,254,255,255,255,234,80,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,128,0,1,254,0,0,0,0,0,1,253, + // 0xc73c 으 + 60,199,30,28,224,34,2,1,0,0,11,255,250,0,0,0,0,1,255,255,255,244,0,0,0,11,255,255,255,254,0,0,0,63,254,64,27,255,192,0,0,191,208,0,0,127,224,0,1,255,0,0,0,15,244,0,3,252,0,0,0,7,248,0,3,252,0,0,0,3,252,0,3,244,0,0,0,2,252,0,7,244,0,0,0,1,252,0,3,248,0,0,0,2,252,0,3,252,0,0,0,3,252,0,2,253,0,0,0,7,248,0,1,255,0,0,0,31,240,0,0,191,224,0,0,191,224,0,0,47,254,80,91,255,128,0,0,11,255,255,255,254,0,0,0,0,191,255,255,224,0,0,0,0,6,255,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xc74c 음 + 76,199,30,34,16,34,2,253,0,0,26,255,250,64,0,0,0,7,255,255,255,249,0,0,0,47,255,255,255,255,128,0,0,255,249,0,6,255,224,0,1,255,64,0,0,31,244,0,3,253,0,0,0,7,248,0,3,252,0,0,0,3,252,0,3,252,0,0,0,7,248,0,1,255,0,0,0,31,244,0,0,255,249,0,6,255,240,0,0,47,255,255,255,255,128,0,0,7,255,255,255,253,0,0,0,0,27,255,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,253,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0xc774 이 + 116,199,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,27,249,0,0,7,244,0,191,255,192,0,7,244,3,255,255,240,0,7,244,11,254,111,252,0,7,244,31,240,3,253,0,7,244,63,192,0,255,0,7,244,63,192,0,191,64,7,244,127,64,0,63,128,7,244,191,0,0,63,192,7,244,255,0,0,47,192,7,244,255,0,0,47,192,7,244,254,0,0,47,192,7,244,254,0,0,47,192,7,244,255,0,0,47,192,7,244,255,0,0,47,192,7,244,191,0,0,63,192,7,244,191,0,0,63,128,7,244,127,128,0,127,64,7,244,63,192,0,255,0,7,244,47,224,1,254,0,7,244,15,248,11,252,0,7,244,7,255,255,244,0,7,244,1,255,255,208,0,7,244,0,47,255,0,0,7,244,0,1,80,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244,0,0,0,0,0,7,244, + // 0xc77c 일 + 124,199,29,34,16,34,2,254,0,0,0,0,0,0,84,0,0,0,0,0,0,1,253,0,0,31,255,128,0,1,253,0,1,255,255,248,0,1,253,0,7,255,255,255,0,1,253,0,31,249,1,255,192,1,253,0,63,208,0,63,208,1,253,0,63,128,0,15,224,1,253,0,127,64,0,15,240,1,253,0,127,64,0,11,240,1,253,0,127,64,0,15,240,1,253,0,63,128,0,15,224,1,253,0,63,208,0,63,208,1,253,0,31,249,1,255,192,1,253,0,7,255,255,255,0,1,253,0,1,255,255,248,0,1,253,0,0,27,255,128,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,253,0,0,31,255,255,255,255,253,0,0,31,255,255,255,255,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,31,255,255,255,255,253,0,0,31,255,255,255,255,253,0,0,31,255,255,255,255,253,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64, + // 0xc77d 읽 + 125,199,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,27,254,64,0,1,253,0,255,255,248,0,1,253,7,255,255,255,0,1,253,15,253,6,255,128,1,253,47,224,0,63,192,1,253,63,192,0,31,224,1,253,127,64,0,15,240,1,253,127,64,0,15,240,1,253,127,64,0,15,240,1,253,127,64,0,15,240,1,253,63,192,0,31,224,1,253,47,224,0,63,208,1,253,15,253,6,255,128,1,253,7,255,255,255,0,1,253,0,191,255,244,0,1,253,0,27,255,128,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,255,255,252,127,255,253,0,255,255,252,127,255,253,0,255,255,252,127,255,253,0,0,2,252,0,1,253,0,0,2,252,0,1,253,0,0,2,252,0,1,253,0,255,255,252,0,1,253,0,255,255,252,0,1,253,0,255,170,168,0,1,253,0,254,0,0,0,1,253,0,254,0,1,64,1,253,0,255,255,255,208,1,253,0,255,255,255,208,1,253,0,255,255,250,64,1,253,0,0,0,0,0,0,84, + // 0xc785 입 + 133,199,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,11,255,128,0,1,253,0,191,255,248,0,1,253,7,255,255,255,0,1,253,15,253,70,255,192,1,253,47,224,0,63,208,1,253,63,192,0,15,240,1,253,127,128,0,15,240,1,253,127,64,0,11,240,1,253,127,64,0,11,240,1,253,127,128,0,15,240,1,253,63,192,0,15,240,1,253,47,224,0,63,208,1,253,15,253,70,255,192,1,253,7,255,255,255,0,1,253,0,255,255,248,0,1,253,0,27,255,128,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,26,128,0,0,0,168,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,0,0,0,0,0,0, + // 0xc790 자 + 144,199,32,35,24,34,1,253,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,47,255,255,255,254,3,248,0,47,255,255,255,254,3,248,0,47,255,255,255,254,3,248,0,0,0,127,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,63,128,0,3,248,0,0,0,127,128,0,3,248,0,0,0,127,192,0,3,248,0,0,0,191,192,0,3,248,0,0,0,255,192,0,3,255,255,0,0,255,224,0,3,255,255,0,1,255,240,0,3,255,255,0,3,255,244,0,3,252,0,0,7,247,252,0,3,248,0,0,15,241,254,0,3,248,0,0,47,208,255,64,3,248,0,0,127,192,127,208,3,248,0,1,255,64,47,244,3,248,0,7,254,0,15,254,3,248,0,47,252,0,3,255,131,248,0,127,240,0,0,255,3,248,0,63,192,0,0,45,3,248,0,14,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0, + // 0xc791 작 + 145,199,31,35,24,34,2,253,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,0,0,254,0,0,15,240,0,0,1,254,0,0,15,240,0,0,1,255,0,0,15,240,0,0,2,255,0,0,15,255,248,0,3,255,128,0,15,255,248,0,11,255,192,0,15,255,248,0,15,255,224,0,15,240,0,0,63,203,248,0,15,240,0,0,255,131,254,0,15,240,0,7,255,1,255,208,15,240,0,47,252,0,191,252,15,240,0,255,244,0,31,252,15,240,0,191,192,0,3,244,15,240,0,62,0,0,0,96,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,240,0, + // 0xc798 잘 + 152,199,31,35,24,34,2,253,0,0,0,0,0,10,160,0,0,0,0,0,0,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,0,1,254,0,0,15,240,0,0,1,254,0,0,15,240,0,0,2,255,0,0,15,240,0,0,3,255,0,0,15,255,248,0,3,255,128,0,15,255,248,0,11,255,192,0,15,255,248,0,31,239,240,0,15,240,0,0,127,203,253,0,15,240,0,1,255,67,255,128,15,240,0,11,254,0,255,248,15,240,0,255,252,0,63,252,15,240,0,255,224,0,7,248,15,240,0,191,64,0,0,112,15,240,0,36,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,240,0,0,191,255,255,255,255,240,0,0,191,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,106,170,170,170,175,240,0,0,191,255,255,255,255,240,0,0,191,255,255,255,255,240,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,255,255,255,255,252,0,0,191,255,255,255,255,252,0,0,191,255,255,255,255,252,0, + // 0xc7a5 장 + 165,199,31,35,24,34,2,253,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,127,255,255,255,248,15,240,0,0,1,254,0,0,15,240,0,0,1,254,0,0,15,240,0,0,1,255,0,0,15,240,0,0,2,255,0,0,15,255,248,0,3,255,64,0,15,255,248,0,7,255,192,0,15,255,248,0,15,255,224,0,15,240,0,0,31,223,244,0,15,240,0,0,127,199,253,0,15,240,0,1,255,66,255,128,15,240,0,11,254,0,191,248,15,240,0,191,252,0,47,252,15,240,0,255,224,0,7,244,15,240,0,127,64,0,0,96,15,240,0,36,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0,26,255,254,64,0,0,0,2,255,255,255,248,0,0,0,15,255,255,255,255,64,0,0,63,249,0,6,255,208,0,0,191,192,0,0,47,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,11,244,0,0,255,0,0,0,15,240,0,0,191,192,0,0,47,240,0,0,63,249,0,6,255,208,0,0,15,255,255,255,255,64,0,0,2,255,255,255,248,0,0,0,0,26,255,254,64,0,0, + // 0xc7ac 재 + 172,199,29,35,24,34,2,253,0,0,0,0,0,0,42,64,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,191,255,255,254,31,208,63,128,191,255,255,254,31,208,63,128,191,255,255,254,31,208,63,128,0,11,240,0,31,208,63,128,0,11,240,0,31,208,63,128,0,11,240,0,31,208,63,128,0,15,240,0,31,208,63,128,0,15,244,0,31,208,63,128,0,15,244,0,31,208,63,128,0,15,244,0,31,208,63,128,0,15,248,0,31,255,255,128,0,31,252,0,31,255,255,128,0,47,253,0,31,255,255,128,0,63,254,0,31,208,63,128,0,127,191,0,31,208,63,128,0,255,63,192,31,208,63,128,1,253,47,208,31,208,63,128,3,252,15,240,31,208,63,128,11,248,11,253,31,208,63,128,47,240,3,255,159,208,63,128,255,208,0,255,95,208,63,128,255,128,0,62,31,208,63,128,126,0,0,8,31,208,63,128,36,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,64, + // 0xc800 저 + 0,200,28,35,245,34,2,253,0,0,0,0,0,0,85,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,1,254,0,1,255,64,63,255,254,0,2,255,128,63,255,254,0,3,255,192,63,255,254,0,3,255,192,0,0,254,0,11,255,224,0,0,254,0,15,231,240,0,0,254,0,47,195,252,0,0,254,0,127,130,254,0,0,254,0,255,0,255,64,0,254,3,254,0,127,208,0,254,15,252,0,47,248,0,254,127,240,0,11,255,0,254,255,208,0,3,254,0,254,191,64,0,0,188,0,254,60,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254, + // 0xc804 전 + 4,200,29,35,24,34,2,253,0,0,0,0,0,0,85,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,63,255,255,255,252,0,254,0,63,255,255,255,252,0,254,0,63,255,255,255,252,0,254,0,0,0,255,0,0,0,254,0,0,0,255,0,0,0,254,0,0,0,255,0,0,0,254,0,0,0,255,0,0,1,254,0,0,1,255,64,31,255,254,0,0,3,255,192,31,255,254,0,0,3,255,208,31,255,254,0,0,15,255,240,0,0,254,0,0,47,231,252,0,0,254,0,0,191,195,255,0,0,254,0,2,255,64,255,208,0,254,0,31,254,0,127,253,0,254,0,255,248,0,31,253,0,254,0,191,208,0,2,248,0,254,0,63,0,0,0,32,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,5,80,0,0,0,254,0,0,15,224,0,0,0,254,0,0,15,224,0,0,0,169,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,0,0,0,0,0,0,0, + // 0xc815 정 + 21,200,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,0,254,0,0,0,0,0,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,1,255,64,15,255,254,0,3,255,192,15,255,254,0,3,255,208,15,255,254,0,15,255,240,0,1,254,0,47,231,252,0,0,254,0,191,194,255,0,0,254,1,255,64,255,208,0,254,31,254,0,63,253,0,254,191,252,0,15,253,0,254,191,224,0,2,248,0,254,63,64,0,0,32,0,254,24,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,1,191,255,144,0,0,0,127,255,255,255,64,0,3,255,255,255,255,224,0,15,254,64,0,111,248,0,31,240,0,0,7,253,0,47,208,0,0,1,254,0,63,192,0,0,0,254,0,47,208,0,0,1,254,0,31,240,0,0,7,253,0,15,254,64,0,127,248,0,3,255,255,255,255,224,0,0,127,255,255,255,64,0,0,1,191,255,144,0, + // 0xc81c 제 + 28,200,30,35,24,34,1,253,0,0,0,0,0,0,10,128,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,47,255,255,255,131,248,15,208,47,255,255,255,131,248,15,208,47,255,255,255,131,248,15,208,0,2,252,0,3,248,15,208,0,2,252,0,3,248,15,208,0,2,252,0,3,248,15,208,0,2,252,0,3,248,15,208,0,3,252,0,3,248,15,208,0,3,252,0,3,248,15,208,0,3,253,15,255,248,15,208,0,3,253,15,255,248,15,208,0,7,254,15,255,248,15,208,0,11,255,0,3,248,15,208,0,15,255,64,3,248,15,208,0,31,255,128,3,248,15,208,0,47,223,192,3,248,15,208,0,127,79,240,3,248,15,208,0,255,11,244,3,248,15,208,1,254,3,253,3,248,15,208,7,252,1,255,67,248,15,208,31,244,0,191,211,248,15,208,127,224,0,63,195,248,15,208,63,192,0,11,67,248,15,208,14,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,3,248,15,208,0,0,0,0,0,0,15,208,0,0,0,0,0,0,15,208, + // 0xc8fd 죽 + 253,200,30,33,8,34,2,253,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,0,0,0,255,224,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,248,0,0,0,0,0,15,250,254,0,0,0,0,0,127,240,255,208,0,0,0,7,255,192,127,249,0,0,6,255,255,0,15,255,249,0,31,255,248,0,2,255,255,64,15,255,64,0,0,47,255,0,11,148,0,0,0,1,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0, + // 0xc900 준 + 0,201,30,33,8,34,2,253,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,0,0,0,191,224,0,0,0,0,0,0,255,240,0,0,0,0,0,1,255,244,0,0,0,0,0,7,255,252,0,0,0,0,0,31,241,255,64,0,0,0,0,191,224,191,224,0,0,0,27,255,128,47,254,64,0,11,255,253,0,7,255,254,0,15,255,224,0,1,255,255,0,11,254,0,0,0,11,254,0,6,144,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,47,208,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,1,253,0,47,192,0,0,0,1,253,0,47,192,0,0,0,1,253,0,47,192,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0, + // 0xc911 중 + 17,201,30,33,8,34,2,253,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,0,0,0,255,224,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,252,0,0,0,0,0,31,246,255,0,0,0,0,1,191,224,191,228,0,0,0,111,255,128,47,255,80,0,31,255,253,0,7,255,255,64,15,255,208,0,0,127,255,0,11,249,0,0,0,6,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,27,255,254,64,0,0,0,7,255,255,255,253,0,0,0,63,255,255,255,255,128,0,0,255,228,0,1,191,224,0,1,255,0,0,0,31,240,0,2,253,0,0,0,11,244,0,2,253,0,0,0,11,244,0,1,255,64,0,0,31,240,0,0,255,228,0,6,255,224,0,0,63,255,255,255,255,128,0,0,7,255,255,255,249,0,0,0,0,26,255,250,64,0,0, + // 0xc990 즐 + 144,201,30,33,8,34,2,253,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,0,0,0,191,224,0,0,0,0,0,1,255,244,0,0,0,0,0,7,255,253,0,0,0,0,0,127,240,255,208,0,0,0,95,255,192,63,255,80,0,31,255,253,0,7,255,255,64,15,255,208,0,0,127,255,0,11,164,0,0,0,1,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,170,170,170,170,160,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,252,0, + // 0xc9c0 지 + 192,201,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,63,255,255,255,254,1,253,63,255,255,255,254,1,253,63,255,255,255,254,1,253,0,0,191,64,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,0,0,1,253,0,0,191,64,0,1,253,0,0,255,64,0,1,253,0,0,255,128,0,1,253,0,0,255,192,0,1,253,0,1,255,192,0,1,253,0,3,255,208,0,1,253,0,3,255,240,0,1,253,0,11,247,244,0,1,253,0,31,227,253,0,1,253,0,63,193,255,0,1,253,0,255,128,191,192,1,253,2,255,0,63,240,1,253,11,253,0,31,253,1,253,127,248,0,7,255,129,253,255,224,0,1,255,1,253,127,128,0,0,45,1,253,45,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xcc98 처 + 152,204,28,35,245,34,2,253,0,0,0,0,0,0,169,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,63,255,255,255,252,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,0,255,0,0,0,254,0,1,255,0,63,255,254,0,2,255,64,63,255,254,0,3,255,192,63,255,254,0,3,255,192,0,1,254,0,11,255,224,0,0,254,0,15,215,244,0,0,254,0,63,195,252,0,0,254,0,191,129,255,0,0,254,1,255,0,255,192,0,254,11,253,0,63,240,0,254,47,248,0,15,254,0,254,255,224,0,3,254,0,254,127,128,0,0,252,0,254,45,0,0,0,16,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254, + // 0xcd08 초 + 8,205,30,30,240,34,2,1,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,7,255,255,255,255,255,253,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,224,0,0,0,0,0,0,255,240,0,0,0,0,0,2,255,248,0,0,0,0,0,11,255,254,0,0,0,0,0,47,240,255,128,0,0,0,1,255,208,127,244,0,0,0,47,255,64,31,255,64,0,27,255,252,0,3,255,254,64,31,255,208,0,0,127,255,64,15,253,0,21,64,7,255,0,6,64,0,63,192,0,25,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xcd95 축 + 149,205,30,35,24,34,2,253,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,0,0,0,127,208,0,0,0,0,0,0,255,224,0,0,0,0,0,2,255,244,0,0,0,0,0,11,255,254,0,0,0,0,0,191,240,255,208,0,0,0,111,255,192,63,254,80,0,31,255,253,0,11,255,255,64,15,255,208,0,0,191,255,0,11,164,0,0,0,1,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0, + // 0xcd9c 출 + 156,205,30,35,24,34,2,253,0,0,0,42,128,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,0,0,0,127,208,0,0,0,0,0,0,255,240,0,0,0,0,0,7,255,252,0,0,0,0,0,111,246,255,144,0,0,0,91,255,208,191,254,80,0,47,255,254,0,31,255,255,64,15,255,228,0,1,191,255,0,15,164,0,0,0,1,174,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,1,255,255,255,255,255,240,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,1,170,170,170,170,175,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,252,0, + // 0xcda4 춤 + 164,205,30,35,24,34,2,253,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,0,0,0,127,208,0,0,0,0,0,0,255,224,0,0,0,0,0,2,255,244,0,0,0,0,0,11,255,254,0,0,0,0,0,191,240,255,224,0,0,0,111,255,192,63,255,144,0,31,255,253,0,7,255,255,64,15,255,144,0,0,111,255,0,10,148,0,0,0,1,109,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0xcde8 취 + 232,205,28,35,245,34,2,253,0,0,21,64,0,0,169,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,15,255,255,255,255,1,254,15,255,255,255,255,1,254,15,255,255,255,255,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,191,224,0,1,254,0,0,255,240,0,1,254,0,3,255,252,0,1,254,0,31,250,255,128,1,254,0,191,240,255,248,1,254,31,255,192,47,255,65,254,31,254,0,7,255,1,254,15,244,0,0,125,1,254,6,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,85,90,191,225,254,255,255,255,255,255,225,254,255,255,255,255,255,225,254,191,255,255,233,64,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,63,192,0,1,254,0,0,0,0,0,1,253, + // 0xce58 치 + 88,206,28,35,245,34,2,253,0,0,0,0,0,0,168,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,47,255,255,255,254,1,253,47,255,255,255,254,1,253,47,255,255,255,254,1,253,0,0,127,128,0,1,253,0,0,127,64,0,1,253,0,0,127,128,0,1,253,0,0,127,128,0,1,253,0,0,191,128,0,1,253,0,0,191,192,0,1,253,0,0,255,192,0,1,253,0,1,255,224,0,1,253,0,2,255,240,0,1,253,0,3,251,248,0,1,253,0,11,242,252,0,1,253,0,31,224,255,0,1,253,0,63,192,191,192,1,253,0,255,64,63,224,1,253,3,255,0,31,252,1,253,47,252,0,7,255,129,253,127,240,0,1,255,65,253,63,192,0,0,62,1,253,14,0,0,0,4,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, + // 0xce68 침 + 104,206,28,35,245,34,2,253,0,0,127,64,0,0,168,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,47,255,255,255,254,1,253,47,255,255,255,254,1,253,47,255,255,255,254,1,253,0,0,191,64,0,1,253,0,0,191,64,0,1,253,0,0,255,128,0,1,253,0,0,255,192,0,1,253,0,2,255,224,0,1,253,0,3,255,244,0,1,253,0,15,243,253,0,1,253,0,127,209,255,128,1,253,1,255,192,191,248,1,253,47,255,0,47,255,65,253,127,248,0,7,255,1,253,63,208,0,0,125,1,253,13,0,0,0,0,1,253,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,208,0,0,1,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,31,255,255,255,255,253,0,0,0,0,0,0,0, + // 0xce74 카 + 116,206,31,35,24,34,2,253,0,0,0,0,0,5,80,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,15,255,255,255,192,15,224,0,15,255,255,255,192,15,224,0,15,255,255,255,192,15,224,0,0,0,0,63,192,15,224,0,0,0,0,63,192,15,224,0,0,0,0,63,128,15,224,0,0,0,0,63,128,15,224,0,0,0,0,127,64,15,224,0,0,0,85,255,0,15,224,0,191,255,255,255,0,15,224,0,191,255,255,254,0,15,255,252,127,255,235,253,0,15,255,252,21,0,7,252,0,15,255,252,0,0,15,244,0,15,240,0,0,0,31,240,0,15,224,0,0,0,127,208,0,15,224,0,0,0,255,128,0,15,224,0,0,3,255,0,0,15,224,0,0,31,252,0,0,15,224,0,0,127,240,0,0,15,224,0,3,255,192,0,0,15,224,0,47,255,0,0,0,15,224,0,255,248,0,0,0,15,224,0,63,208,0,0,0,15,224,0,46,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0, + // 0xcf1c 켜 + 28,207,28,35,245,34,2,253,0,0,0,0,0,0,85,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,31,255,255,255,192,1,254,31,255,255,255,128,1,254,31,255,255,255,128,1,254,0,0,0,63,128,1,254,0,0,0,63,128,1,254,0,0,0,127,64,1,254,0,0,0,127,255,255,254,0,0,0,191,255,255,254,0,0,85,255,255,255,254,255,255,255,254,0,1,254,255,255,255,252,0,1,254,191,255,235,252,0,1,254,85,0,11,244,0,1,254,0,0,15,240,0,1,254,0,0,63,224,0,1,254,0,0,191,194,255,255,254,0,2,255,66,255,255,254,0,7,254,2,255,255,254,0,47,248,0,0,1,254,0,191,240,0,0,1,254,7,255,128,0,0,1,254,47,254,0,0,0,1,254,255,244,0,0,0,1,254,127,192,0,0,0,1,254,45,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,0,253, + // 0xd0d1 탑 + 209,208,30,35,24,34,3,253,0,0,0,0,0,42,128,0,0,0,0,0,0,63,192,0,191,255,255,254,0,63,192,0,191,255,255,254,0,63,192,0,191,255,255,254,0,63,192,0,191,0,0,0,0,63,192,0,191,0,0,0,0,63,192,0,191,0,0,0,0,63,192,0,191,0,0,0,0,63,255,224,191,255,255,252,0,63,255,224,191,255,255,252,0,63,255,224,191,255,255,252,0,63,192,0,191,0,0,0,0,63,192,0,191,0,0,0,0,63,192,0,191,0,0,0,0,63,192,0,191,0,1,107,240,63,192,0,191,255,255,255,240,63,192,0,191,255,255,255,240,63,192,0,191,255,255,165,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,0,0,168,0,0,0,26,128,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,253,0,0,0,63,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0, + // 0xd130 터 + 48,209,27,35,245,34,3,253,0,0,0,0,0,1,80,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,255,255,255,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,255,255,244,191,255,248,191,255,255,244,191,255,248,191,255,255,244,191,255,248,191,0,0,0,0,7,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,0,0,0,0,3,248,191,64,5,107,224,3,248,191,255,255,255,240,3,248,191,255,255,255,240,3,248,191,255,255,165,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248,0,0,0,0,0,3,248, + // 0xd14c 테 + 76,209,28,35,245,34,3,253,0,0,0,0,0,0,84,0,0,0,0,42,64,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,255,255,255,64,63,128,253,255,255,255,64,63,128,253,255,255,255,64,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,127,255,128,253,255,255,252,127,255,128,253,255,255,252,127,255,128,253,255,255,252,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,0,0,63,128,253,254,0,86,176,63,128,253,255,255,255,240,63,128,253,255,255,255,240,63,128,253,255,255,250,80,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,63,128,253,0,0,0,0,21,0,253,0,0,0,0,0,0,253, + // 0xd1a0 토 + 160,209,30,28,224,34,2,1,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,255,255,255,255,255,244,0,1,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,255,255,255,255,255,224,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xd2b8 트 + 184,210,30,28,224,34,2,1,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,255,255,255,255,255,248,0,1,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xd39c 펜 + 156,211,30,35,24,34,1,253,0,0,0,0,0,0,5,64,0,0,0,0,1,168,31,208,0,0,0,0,2,252,31,208,0,0,0,0,2,252,31,208,47,255,255,255,130,252,31,208,47,255,255,255,130,252,31,208,47,255,255,255,130,252,31,208,1,252,7,240,2,252,31,208,1,252,7,240,2,252,31,208,1,252,7,240,2,252,31,208,1,252,7,241,255,252,31,208,1,252,7,241,255,252,31,208,1,252,7,241,255,252,31,208,1,252,7,240,2,252,31,208,1,252,7,240,2,252,31,208,1,252,7,240,2,252,31,208,1,252,7,240,2,252,31,208,1,253,27,250,210,252,31,208,127,255,255,255,210,252,31,208,63,255,255,255,210,252,31,208,63,255,250,164,2,252,31,208,0,0,0,0,2,252,31,208,0,0,0,0,2,252,31,208,0,1,168,0,2,252,31,208,0,2,252,0,2,252,31,208,0,2,252,0,1,168,31,208,0,2,252,0,0,0,5,64,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,2,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xd504 프 + 4,213,30,27,216,34,2,1,11,255,255,255,255,255,253,0,11,255,255,255,255,255,253,0,11,255,255,255,255,255,253,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,0,2,252,0,3,248,0,0,11,255,255,255,255,255,253,0,11,255,255,255,255,255,253,0,11,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240, + // 0xd558 하 + 88,213,32,35,24,34,1,253,0,0,0,0,0,1,84,0,0,0,42,64,0,3,252,0,0,0,127,64,0,3,252,0,0,0,127,64,0,3,252,0,0,0,127,64,0,3,252,0,0,0,127,128,0,3,252,0,127,255,255,255,255,67,252,0,127,255,255,255,255,67,252,0,127,255,255,255,255,67,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,2,255,224,0,3,252,0,0,31,255,254,0,3,252,0,0,191,255,255,192,3,255,255,2,255,64,127,224,3,255,255,3,252,0,15,244,3,255,255,7,244,0,3,248,3,252,0,11,240,0,3,252,3,252,0,11,240,0,3,252,3,252,0,11,240,0,3,252,3,252,0,7,248,0,3,248,3,252,0,3,252,0,15,244,3,252,0,2,255,128,127,224,3,252,0,0,191,255,255,192,3,252,0,0,47,255,254,0,3,252,0,0,2,255,224,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0, + // 0xd569 합 + 105,213,31,35,24,34,2,253,0,0,169,0,0,0,0,0,0,0,254,0,0,15,240,0,0,0,254,0,0,15,240,0,0,0,254,0,0,15,240,0,255,255,255,255,254,15,240,0,255,255,255,255,254,15,240,0,255,255,255,255,254,15,240,0,0,0,0,0,0,15,240,0,0,6,186,64,0,15,240,0,0,127,255,249,0,15,255,248,3,255,255,255,64,15,255,248,11,253,0,191,192,15,255,248,15,240,0,31,224,15,240,0,31,208,0,15,240,15,240,0,31,208,0,15,240,15,240,0,15,240,0,31,224,15,240,0,11,248,0,127,192,15,240,0,3,255,255,255,128,15,240,0,0,191,255,253,0,15,240,0,0,10,255,144,0,15,240,0,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,64,0,0,15,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,127,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0xd648 홈 + 72,214,30,34,16,34,2,254,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,47,255,255,255,255,255,255,64,47,255,255,255,255,255,255,64,47,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,5,170,165,0,0,0,0,2,255,255,255,248,0,0,0,47,255,255,255,255,128,0,0,191,228,0,1,191,208,0,0,255,64,0,0,31,240,0,0,255,0,0,0,31,240,0,0,191,208,0,0,127,224,0,0,63,255,170,175,255,192,0,0,11,255,255,255,254,0,0,0,0,111,255,254,144,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,252,0,0,0,7,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0,2,255,255,255,255,255,244,0, + // 0xd654 화 + 84,214,32,34,16,34,1,253,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,63,255,255,255,255,195,252,0,63,255,255,255,255,195,252,0,63,255,255,255,255,195,252,0,0,0,0,0,0,3,252,0,0,1,175,164,0,3,252,0,0,31,255,255,64,3,252,0,0,127,255,255,208,3,252,0,0,255,128,47,240,3,252,0,2,253,0,7,248,3,252,0,3,252,0,3,252,3,252,0,3,248,0,2,252,3,255,254,3,252,0,2,252,3,255,254,2,252,0,3,248,3,255,254,0,255,64,31,244,3,252,0,0,191,255,255,224,3,252,0,0,31,255,255,128,3,252,0,0,2,255,248,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,218,191,211,252,0,127,255,255,255,255,211,252,0,127,255,255,255,255,211,252,0,63,255,255,169,64,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0, + // 0xd788 히 + 136,215,28,35,245,34,2,253,0,0,0,0,0,0,84,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,64,0,1,253,0,0,127,128,0,1,253,127,255,255,255,255,129,253,127,255,255,255,255,129,253,127,255,255,255,255,129,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,2,255,224,0,1,253,0,47,255,254,0,1,253,0,255,255,255,192,1,253,2,255,64,127,240,1,253,3,252,0,15,244,1,253,11,244,0,3,248,1,253,11,240,0,3,252,1,253,15,240,0,2,252,1,253,11,240,0,3,252,1,253,11,244,0,3,248,1,253,3,252,0,15,244,1,253,2,255,64,127,240,1,253,0,255,255,255,192,1,253,0,47,255,254,0,1,253,0,2,255,228,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Latin_Extended_A_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Latin_Extended_A_27.cpp new file mode 100644 index 000000000000..16b5e7a8f974 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Latin_Extended_A_27.cpp @@ -0,0 +1,288 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Latin Extended-A 37pt, capital 'A' height: 27px, width: 100%, range: 0x0100-0x017f +extern const uint8_t NotoSans_Medium_Latin_Extended_A_27[20794] = { + 130,27,0,1,127,1,35,247, // unifont_t + // 0x0100 Ā + 24,32,192,24,0,0,0,1,85,85,80,0,0,11,255,255,224,0,0,11,255,255,224,0,0,6,170,170,144,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0101 ā + 18,27,135,21,1,255,0,85,85,84,0,0,255,255,253,0,0,255,255,253,0,0,170,170,168,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0102 Ă + 24,34,204,24,0,0,0,10,0,0,160,0,0,15,128,2,240,0,0,11,249,111,224,0,0,3,255,255,192,0,0,0,255,254,0,0,0,0,6,144,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0103 ă + 18,29,145,21,1,255,1,160,0,26,0,1,240,0,62,0,0,254,86,252,0,0,127,255,248,0,0,31,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0104 Ą + 24,36,216,24,0,247,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255,0,0,0,0,1,248,0,0,0,0,3,224,0,0,0,0,15,192,0,0,0,0,31,128,0,0,0,0,31,128,0,0,0,0,31,209,0,0,0,0,15,255,0,0,0,0,7,255,0,0,0,0,0,84, + // 0x0105 ą + 18,30,150,21,1,247,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,15,208,0,5,64,15,128,0,0,0,63,0,0,0,0,188,0,0,0,0,248,0,0,0,1,248,0,0,0,0,253,16,0,0,0,255,240,0,0,0,63,240,0,0,0,1,64, + // 0x0106 Ć + 20,36,180,23,2,255,0,0,0,5,80,0,0,0,63,240,0,0,0,191,192,0,0,0,255,0,0,0,3,252,0,0,0,11,224,0,0,0,10,64,0,0,0,0,0,0,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x0107 ć + 15,30,120,18,2,255,0,0,5,84,0,0,31,244,0,0,63,208,0,0,191,64,0,1,253,0,0,3,244,0,0,6,128,0,0,0,0,0,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x0108 Ĉ + 20,36,180,23,2,255,0,0,5,80,0,0,0,47,248,0,0,0,127,253,0,0,1,254,191,64,0,3,248,47,192,0,15,208,7,240,0,26,0,0,164,0,0,0,0,0,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x0109 ĉ + 15,30,120,18,2,255,0,5,80,0,0,15,252,0,0,63,255,0,0,255,191,192,2,252,31,224,11,240,3,248,10,64,0,104,0,0,0,0,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x010a Ċ + 20,35,175,23,2,255,0,0,1,64,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,7,208,0,0,0,0,0,0,0,0,0,0,0,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x010b ċ + 15,29,116,18,2,255,0,1,80,0,0,7,244,0,0,11,248,0,0,11,248,0,0,2,240,0,0,0,0,0,0,0,0,0,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x010c Č + 20,36,180,23,2,255,0,5,0,0,80,0,31,192,3,244,0,7,244,31,208,0,2,253,191,128,0,0,191,254,0,0,0,63,252,0,0,0,10,160,0,0,0,0,0,0,0,0,26,234,64,0,7,255,255,253,0,47,255,255,255,0,255,255,175,253,3,255,208,0,108,11,254,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,191,128,0,0,0,191,64,0,0,0,255,64,0,0,0,255,64,0,0,0,191,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,63,208,0,0,0,47,240,0,0,0,15,248,0,0,0,11,254,0,0,0,3,255,228,1,188,0,255,255,255,252,0,47,255,255,252,0,2,255,255,244,0,0,5,84,0, + // 0x010d č + 15,30,120,18,2,255,5,0,0,20,15,224,2,252,3,252,15,240,0,255,63,192,0,63,255,0,0,31,253,0,0,6,164,0,0,0,0,0,0,0,84,0,0,47,255,228,2,255,255,248,11,255,255,244,31,253,1,176,63,224,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,64,0,0,127,192,0,0,63,208,0,0,47,248,0,120,15,255,255,248,2,255,255,248,0,127,255,224,0,1,84,0, + // 0x010e Ď + 22,35,210,27,3,0,0,80,0,5,64,0,0,254,0,47,192,0,0,63,128,255,0,0,0,15,247,252,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,170,64,0,0,0,0,0,0,0,0,21,85,84,0,0,0,127,255,255,244,0,0,127,255,255,255,64,0,127,255,255,255,224,0,127,128,1,191,252,0,127,128,0,11,254,0,127,128,0,2,255,64,127,128,0,0,255,192,127,128,0,0,127,192,127,128,0,0,63,208,127,128,0,0,47,224,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,47,224,127,128,0,0,63,208,127,128,0,0,63,192,127,128,0,0,191,192,127,128,0,1,255,64,127,128,0,7,255,0,127,128,0,47,252,0,127,149,91,255,244,0,127,255,255,255,192,0,127,255,255,253,0,0,127,255,254,64,0,0, + // 0x010f ď + 24,29,174,23,2,255,0,0,0,15,240,191,0,0,0,15,240,254,0,0,0,15,240,253,0,0,0,15,240,252,0,0,0,15,242,240,0,0,0,15,242,224,0,0,0,15,240,0,0,1,64,15,240,0,0,191,254,15,240,0,3,255,255,207,240,0,15,255,255,255,240,0,47,248,1,255,240,0,63,208,0,127,240,0,127,192,0,47,240,0,191,64,0,31,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,191,64,0,15,240,0,191,128,0,47,240,0,63,208,0,63,240,0,47,244,1,255,240,0,15,255,255,255,240,0,3,255,255,203,240,0,0,191,254,7,240,0,0,1,64,0,0,0, + // 0x0110 Đ + 24,27,162,27,1,0,1,85,85,64,0,0,7,255,255,255,64,0,7,255,255,255,244,0,7,255,255,255,254,0,7,248,0,27,255,192,7,248,0,0,191,224,7,248,0,0,47,244,7,248,0,0,15,252,7,248,0,0,7,252,7,248,0,0,3,253,7,248,0,0,2,254,7,248,0,0,1,255,191,255,255,64,1,255,255,255,255,128,1,255,255,255,255,128,1,255,171,254,170,64,1,255,7,248,0,0,2,254,7,248,0,0,3,253,7,248,0,0,3,252,7,248,0,0,11,252,7,248,0,0,31,244,7,248,0,0,127,240,7,248,0,2,255,192,7,253,85,191,255,64,7,255,255,255,252,0,7,255,255,255,208,0,7,255,255,228,0,0, + // 0x0111 đ + 21,29,174,23,2,255,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,3,255,255,255,128,0,7,255,255,255,128,0,3,255,255,255,128,0,0,0,15,240,0,0,0,0,15,240,0,0,47,232,15,240,0,2,255,255,79,240,0,11,255,255,239,240,0,31,254,91,255,240,0,63,224,0,191,240,0,127,192,0,63,240,0,191,128,0,31,240,0,255,64,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,64,0,15,240,0,191,128,0,47,240,0,63,208,0,63,240,0,63,244,1,255,240,0,15,255,255,255,240,0,3,255,255,203,240,0,0,191,254,7,240,0,0,1,64,0,0,0, + // 0x0112 Ē + 16,32,128,21,3,0,1,85,85,80,7,255,255,240,7,255,255,240,6,170,170,160,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0113 ē + 18,27,135,21,2,255,1,85,85,80,0,3,255,255,244,0,3,255,255,244,0,2,170,170,160,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0114 Ĕ + 16,34,136,21,3,0,10,64,0,160,11,192,1,240,7,249,111,240,3,255,255,192,0,191,255,0,0,6,144,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0115 ĕ + 18,29,145,21,2,255,6,128,0,104,0,7,192,0,248,0,3,249,91,240,0,1,255,255,224,0,0,127,255,64,0,0,6,164,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0116 Ė + 16,34,136,21,3,0,0,1,64,0,0,11,240,0,0,15,244,0,0,15,244,0,0,3,224,0,0,0,0,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x0117 ė + 18,29,145,21,2,255,0,0,80,0,0,0,3,248,0,0,0,11,252,0,0,0,7,248,0,0,0,2,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x0118 Ę + 16,36,144,21,3,247,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253,0,0,3,240,0,0,15,192,0,0,47,64,0,0,63,0,0,0,63,0,0,0,63,68,0,0,47,253,0,0,15,253,0,0,0,80, + // 0x0119 ę + 18,30,150,21,2,247,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,255,0,0,0,85,248,0,0,0,3,240,0,0,0,11,192,0,0,0,15,192,0,0,0,31,128,0,0,0,15,209,0,0,0,15,255,0,0,0,3,255,0,0,0,0,20,0, + // 0x011a Ě + 16,35,140,21,3,0,5,0,0,84,15,208,3,248,3,248,15,224,1,254,127,128,0,127,255,0,0,47,252,0,0,10,164,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x011b ě + 18,30,150,21,2,255,5,64,0,20,0,11,224,1,252,0,2,252,11,240,0,0,255,127,192,0,0,63,255,64,0,0,15,253,0,0,0,6,168,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x011c Ĝ + 22,36,216,27,2,255,0,0,1,84,0,0,0,0,15,254,0,0,0,0,47,255,64,0,0,0,127,191,192,0,0,1,254,11,240,0,0,3,244,2,252,0,0,6,128,0,105,0,0,0,0,0,0,0,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0, + // 0x011d ĝ + 18,38,190,23,2,247,0,1,84,0,0,0,11,255,0,0,0,31,255,128,0,0,63,239,208,0,0,254,11,244,0,3,248,1,253,0,6,144,0,41,0,0,0,0,0,0,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x011e Ğ + 22,35,210,27,2,255,0,2,128,0,104,0,0,3,208,0,252,0,0,2,254,91,244,0,0,0,255,255,240,0,0,0,63,255,128,0,0,0,5,164,0,0,0,0,0,0,0,0,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0, + // 0x011f ğ + 18,37,185,23,2,247,2,144,0,40,0,3,224,0,188,0,1,254,91,248,0,0,255,255,240,0,0,47,255,192,0,0,1,164,0,0,0,0,0,0,0,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x0120 Ġ + 22,35,210,27,2,255,0,0,0,80,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0, + // 0x0121 ġ + 18,37,185,23,2,247,0,0,80,0,0,0,2,252,0,0,0,3,253,0,0,0,3,253,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x0122 Ģ + 22,36,216,27,2,247,0,0,6,190,148,0,0,2,255,255,255,144,0,31,255,255,255,224,0,191,255,235,255,192,2,255,224,0,7,128,7,255,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,255,64,0,127,255,240,191,64,0,127,255,240,191,64,0,127,255,240,191,128,0,0,15,240,127,192,0,0,15,240,63,192,0,0,15,240,63,208,0,0,15,240,47,240,0,0,15,240,15,252,0,0,15,240,7,255,0,0,15,240,2,255,228,0,95,240,0,191,255,255,255,240,0,31,255,255,255,240,0,1,255,255,254,64,0,0,1,85,0,0,0,0,0,0,0,0,0,0,1,252,0,0,0,0,2,252,0,0,0,0,3,248,0,0,0,0,3,240,0,0,0,0,7,208,0,0,0,0,15,192,0,0,0,0,0,0,0,0, + // 0x0123 ģ + 18,38,190,23,2,247,0,0,5,0,0,0,0,62,0,0,0,0,189,0,0,0,0,252,0,0,0,2,248,0,0,0,3,248,0,0,0,2,160,0,0,0,0,0,0,0,0,1,64,0,0,0,191,253,7,240,3,255,255,203,240,15,255,255,255,240,47,248,2,255,240,63,208,0,127,240,127,192,0,47,240,191,64,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,64,0,15,240,127,128,0,31,240,63,208,0,63,240,47,244,1,255,240,15,255,255,255,240,3,255,255,207,240,0,191,254,15,240,0,1,64,15,240,0,0,0,15,240,0,0,0,31,224,0,0,0,47,208,20,0,0,191,192,47,165,87,255,128,47,255,255,254,0,31,255,255,244,0,1,175,254,64,0, + // 0x0124 Ĥ + 21,35,210,28,3,0,0,0,21,64,0,0,0,0,255,224,0,0,0,2,255,244,0,0,0,7,251,252,0,0,0,31,208,255,0,0,0,127,64,47,192,0,0,104,0,6,144,0,0,0,0,0,0,0,21,0,0,0,21,64,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,149,85,85,127,192,127,255,255,255,255,192,127,255,255,255,255,192,127,255,255,255,255,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192,127,128,0,0,63,192, + // 0x0125 ĥ + 23,37,222,23,254,0,0,21,64,0,0,0,0,191,224,0,0,0,1,255,248,0,0,0,7,250,253,0,0,0,15,224,191,64,0,0,63,128,31,192,0,0,104,0,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,1,0,0,0,63,193,255,248,0,0,63,207,255,255,64,0,63,239,255,255,208,0,63,254,0,127,240,0,63,244,0,31,240,0,63,240,0,15,240,0,63,208,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244,0,63,192,0,11,244, + // 0x0126 Ħ + 28,27,189,28,0,0,0,84,0,0,0,85,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,86,254,85,85,85,255,84,255,255,255,255,255,255,254,255,255,255,255,255,255,254,171,255,170,170,170,255,169,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,85,85,85,255,0,1,255,255,255,255,255,0,1,255,255,255,255,255,0,1,255,255,255,255,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0,1,254,0,0,0,255,0, + // 0x0127 ħ + 21,28,168,23,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,191,255,255,240,0,0,191,255,255,240,0,0,191,255,255,240,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,1,84,0,0,3,252,47,255,208,0,3,252,255,255,248,0,3,255,255,255,253,0,3,255,208,3,255,0,3,255,0,0,255,0,3,254,0,0,255,64,3,253,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64,3,252,0,0,191,64, + // 0x0128 Ĩ + 14,34,136,13,0,0,1,64,1,64,47,248,3,208,127,255,155,192,254,191,255,128,240,11,255,0,144,0,100,0,0,0,0,0,21,85,85,0,47,255,254,0,47,255,254,0,2,255,224,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,191,128,0,11,255,249,0,47,255,254,0,47,255,254,0, + // 0x0129 ĩ + 14,28,112,10,254,0,1,64,0,80,15,253,1,240,63,255,215,224,126,191,255,192,248,7,255,64,160,0,100,0,0,0,0,0,0,0,0,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x012a Ī + 11,32,96,13,1,0,85,85,84,255,255,252,255,255,252,170,170,168,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x012b ī + 12,26,78,10,255,0,21,85,85,191,255,254,191,255,254,106,170,169,0,0,0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x012c Ĭ + 13,34,136,13,0,0,104,0,10,64,124,0,15,64,63,149,191,0,31,255,253,0,7,255,244,0,0,106,64,0,0,0,0,0,21,85,85,0,47,255,254,0,47,255,254,0,2,255,224,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,191,128,0,11,255,249,0,47,255,254,0,47,255,254,0, + // 0x012d ĭ + 12,28,84,10,255,0,160,0,10,248,0,47,191,150,254,63,255,252,15,255,224,0,105,0,0,0,0,0,0,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x012e Į + 11,36,108,13,1,247,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248,0,11,192,0,47,64,0,126,0,0,188,0,0,252,0,0,254,0,0,127,248,0,47,248,0,1,64, + // 0x012f į + 7,37,74,10,1,247,1,64,15,240,15,240,15,240,7,208,0,0,0,0,0,0,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,11,208,47,64,62,0,189,0,252,0,190,0,127,248,47,248,1,64, + // 0x0130 İ + 11,34,102,13,1,0,0,84,0,1,253,0,2,255,0,1,254,0,0,188,0,0,0,0,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x0131 ı + 4,20,20,10,3,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0132 IJ + 20,35,175,24,1,248,85,85,84,0,84,191,255,248,2,253,191,255,248,2,253,11,255,128,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,1,254,0,2,253,2,254,0,2,253,47,255,228,2,253,191,255,248,2,253,191,255,248,2,253,0,0,0,2,253,0,0,0,3,252,0,0,0,7,252,0,0,20,111,248,0,0,63,255,240,0,0,63,255,208,0,0,47,254,0,0,0,0,0,0, + // 0x0133 ij + 15,37,148,20,3,247,20,0,1,64,255,0,15,240,255,0,15,244,255,0,15,240,125,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,255,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,31,240,0,37,191,224,0,63,255,192,0,63,255,64,0,47,248,0, + // 0x0134 Ĵ + 15,43,172,11,253,248,0,5,80,0,0,31,252,0,0,63,255,0,0,255,191,128,3,252,31,224,11,224,3,244,10,64,0,168,0,0,0,0,0,5,80,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,15,240,0,0,31,240,0,81,191,224,0,255,255,192,0,255,255,0,0,191,248,0,0,0,0,0,0, + // 0x0135 ĵ + 14,38,152,10,254,247,0,21,64,0,0,191,224,0,1,255,244,0,7,250,253,0,15,224,191,0,63,64,31,192,104,0,2,144,0,0,0,0,0,0,0,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,127,192,0,150,255,128,0,255,255,0,0,255,253,0,0,191,144,0,0, + // 0x0136 Ķ + 20,36,180,23,3,247,21,0,0,1,85,127,128,0,7,253,127,128,0,15,244,127,128,0,63,224,127,128,0,255,128,127,128,2,255,0,127,128,11,252,0,127,128,31,240,0,127,128,127,192,0,127,128,255,64,0,127,131,253,0,0,127,143,248,0,0,127,175,244,0,0,127,255,252,0,0,127,255,254,0,0,127,245,255,64,0,127,192,191,192,0,127,128,63,224,0,127,128,31,244,0,127,128,11,252,0,127,128,3,255,0,127,128,0,255,128,127,128,0,127,192,127,128,0,47,240,127,128,0,15,248,127,128,0,7,253,127,128,0,2,255,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,254,0,0,0,0,252,0,0,0,1,248,0,0,0,3,240,0,0,0,3,208,0,0,0,0,0,0,0, + // 0x0137 ķ + 17,37,185,21,3,247,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,255,64,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,191,128,0,255,2,255,0,0,255,11,252,0,0,255,31,240,0,0,255,127,192,0,0,255,255,224,0,0,255,255,244,0,0,255,231,252,0,0,255,130,255,0,0,255,0,255,128,0,255,0,63,208,0,255,0,31,240,0,255,0,11,252,0,255,0,3,254,0,255,0,1,255,64,255,0,0,191,192,0,0,0,0,0,0,0,0,0,0,0,11,224,0,0,0,15,224,0,0,0,31,192,0,0,0,47,128,0,0,0,63,0,0,0,0,61,0,0,0,0,0,0,0,0, + // 0x0138 ĸ + 17,20,100,21,3,0,255,0,0,255,64,255,0,3,254,0,255,0,11,252,0,255,0,47,240,0,255,0,127,192,0,255,1,255,64,0,255,3,253,0,0,255,15,248,0,0,255,47,224,0,0,255,191,224,0,0,255,255,244,0,0,255,251,252,0,0,255,210,255,0,0,255,0,255,128,0,255,0,63,208,0,255,0,31,240,0,255,0,11,252,0,255,0,3,254,0,255,0,0,255,64,255,0,0,127,192, + // 0x0139 Ĺ + 16,35,140,20,3,0,0,85,0,0,1,255,0,0,3,253,0,0,15,244,0,0,31,208,0,0,63,64,0,0,104,0,0,0,0,0,0,0,21,0,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x013a ĺ + 8,37,74,10,3,0,0,85,3,255,11,252,15,240,63,192,190,0,164,0,0,0,0,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x013b Ļ + 16,36,144,20,3,247,21,0,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255,0,0,0,0,0,0,0,0,0,3,248,0,0,3,244,0,0,7,240,0,0,11,208,0,0,15,192,0,0,31,64,0,0,0,0,0, + // 0x013c ļ + 6,37,74,10,2,247,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,0,0,0,0,15,208,31,208,47,192,63,64,63,0,124,0,0,0, + // 0x013d Ľ + 16,27,108,20,3,0,21,0,0,85,127,128,0,255,127,128,0,254,127,128,0,252,127,128,1,248,127,128,2,240,127,128,1,144,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x013e ľ + 11,28,84,10,3,0,255,7,244,255,11,240,255,15,208,255,15,192,255,31,64,255,30,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x013f Ŀ + 16,27,108,20,3,0,21,0,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,1,64,127,128,15,224,127,128,31,240,127,128,31,240,127,128,11,208,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,85,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0140 ŀ + 10,28,84,11,3,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,5,64,255,31,208,255,47,224,255,47,224,255,15,128,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0141 Ł + 19,27,135,20,0,0,0,84,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,1,0,0,1,254,15,64,0,1,254,191,192,0,1,255,255,128,0,1,255,252,0,0,2,255,208,0,0,31,254,0,0,0,127,254,0,0,0,63,254,0,0,0,26,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,85,85,84,1,255,255,255,252,1,255,255,255,252,1,255,255,255,252, + // 0x0142 ł + 10,28,84,10,0,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,254,208,3,255,240,3,255,240,7,255,64,47,252,0,255,252,0,255,252,0,55,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0, + // 0x0143 Ń + 22,35,210,29,3,0,0,0,0,21,64,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,3,253,0,0,0,0,11,244,0,0,0,0,31,192,0,0,0,0,26,0,0,0,0,0,0,0,0,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x0144 ń + 18,29,145,23,3,0,0,0,5,84,0,0,0,31,244,0,0,0,63,224,0,0,0,191,128,0,0,1,254,0,0,0,3,244,0,0,0,6,144,0,0,0,0,0,0,0,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x0145 Ņ + 22,36,216,29,3,247,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,224,0,0,0,0,15,224,0,0,0,0,31,192,0,0,0,0,47,128,0,0,0,0,63,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0, + // 0x0146 ņ + 18,30,150,23,3,247,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,0,0,0,0,0,0,0,0,0,0,0,1,252,0,0,0,2,252,0,0,0,3,244,0,0,0,3,240,0,0,0,11,208,0,0,0,15,128,0,0,0,0,0,0,0, + // 0x0147 Ň + 22,35,210,29,3,0,0,20,0,1,80,0,0,63,64,11,224,0,0,15,224,63,128,0,0,3,249,255,0,0,0,1,255,252,0,0,0,0,191,240,0,0,0,0,42,144,0,0,0,0,0,0,0,0,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,252,0,0,11,240,127,255,0,0,11,240,127,255,64,0,11,240,127,127,192,0,11,240,127,63,224,0,11,240,127,15,244,0,11,240,127,11,252,0,11,240,127,3,254,0,11,240,127,1,255,0,11,240,127,0,191,192,11,240,127,0,63,208,11,240,127,0,31,240,7,240,127,0,15,248,7,240,127,0,3,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,127,199,240,127,0,0,47,247,240,127,0,0,15,251,240,127,0,0,7,255,240,127,0,0,3,255,240,127,0,0,0,255,240,127,0,0,0,191,240,127,0,0,0,63,240, + // 0x0148 ň + 18,29,145,23,3,0,5,64,0,20,0,11,224,2,252,0,3,252,11,240,0,0,255,127,192,0,0,63,255,64,0,0,31,253,0,0,0,6,168,0,0,0,0,0,0,0,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,127,192,255,192,0,63,192,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208, + // 0x0149 ʼn + 24,27,162,26,0,0,5,80,0,0,0,0,31,240,0,0,0,0,31,224,0,0,0,0,47,208,0,0,0,0,63,192,0,0,0,0,63,128,0,0,0,0,63,0,0,0,64,0,127,15,208,127,255,64,189,15,227,255,255,224,168,15,255,255,255,244,0,15,255,128,31,252,0,15,253,0,3,252,0,15,252,0,2,253,0,15,244,0,2,253,0,15,244,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253,0,15,240,0,1,253, + // 0x014a Ŋ + 22,35,210,29,3,248,21,64,0,0,1,80,127,240,0,0,11,240,127,248,0,0,11,240,127,253,0,0,11,240,127,255,0,0,11,240,127,255,128,0,11,240,127,127,208,0,11,240,127,47,240,0,11,240,127,15,248,0,11,240,127,7,253,0,11,240,127,2,255,0,11,240,127,0,255,128,11,240,127,0,127,208,11,240,127,0,47,240,7,240,127,0,15,248,7,240,127,0,7,253,7,240,127,0,2,255,7,240,127,0,0,255,135,240,127,0,0,63,215,240,127,0,0,47,247,240,127,0,0,15,255,240,127,0,0,3,255,240,127,0,0,1,255,240,127,0,0,0,255,240,127,0,0,0,63,240,127,0,0,0,31,240,127,0,0,0,11,240,0,0,0,0,7,240,0,0,0,0,11,240,0,0,0,0,15,240,0,0,0,64,191,224,0,0,0,255,255,192,0,0,0,255,255,0,0,0,0,255,248,0,0,0,0,0,0,0, + // 0x014b ŋ + 18,30,150,23,3,247,0,0,4,0,0,253,7,255,244,0,253,63,255,254,0,255,255,255,255,64,255,248,1,255,192,255,208,0,63,192,255,192,0,63,208,255,64,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,255,0,0,47,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,208,0,0,0,63,192,0,0,37,255,192,0,0,63,255,64,0,0,63,254,0,0,0,47,228,0, + // 0x014c Ō + 25,33,231,29,2,255,0,1,85,85,80,0,0,0,3,255,255,240,0,0,0,3,255,255,240,0,0,0,2,170,170,160,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x014d ō + 19,27,135,23,2,255,0,85,85,84,0,1,255,255,252,0,1,255,255,252,0,0,170,170,168,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x014e Ŏ + 25,35,245,29,2,255,0,6,128,0,164,0,0,0,7,192,0,244,0,0,0,3,249,107,240,0,0,0,2,255,255,208,0,0,0,0,127,255,64,0,0,0,0,6,148,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x014f ŏ + 19,29,145,23,2,255,2,144,0,41,0,2,240,0,124,0,1,254,91,252,0,0,255,255,240,0,0,47,255,192,0,0,1,164,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0150 Ő + 25,36,252,29,2,255,0,0,21,64,84,0,0,0,0,191,131,253,0,0,0,0,254,11,244,0,0,0,3,252,15,224,0,0,0,7,240,47,128,0,0,0,15,192,126,0,0,0,0,26,0,100,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x0151 ő + 19,30,150,23,2,255,0,5,64,85,0,0,63,208,255,0,0,191,67,252,0,0,254,7,244,0,2,248,15,208,0,7,224,47,64,0,6,64,41,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0152 Œ + 31,28,224,35,2,255,0,0,107,249,85,85,85,84,0,11,255,255,255,255,255,248,0,127,255,255,255,255,255,248,1,255,254,175,255,255,255,248,7,255,64,0,255,0,0,0,15,252,0,0,255,0,0,0,31,240,0,0,255,0,0,0,63,224,0,0,255,0,0,0,63,192,0,0,255,0,0,0,127,192,0,0,255,0,0,0,191,128,0,0,255,0,0,0,191,64,0,0,255,149,85,80,191,64,0,0,255,255,255,240,255,64,0,0,255,255,255,240,255,64,0,0,255,255,255,240,191,64,0,0,255,0,0,0,191,128,0,0,255,0,0,0,127,192,0,0,255,0,0,0,63,192,0,0,255,0,0,0,63,208,0,0,255,0,0,0,47,240,0,0,255,0,0,0,15,248,0,0,255,0,0,0,11,254,0,0,255,0,0,0,3,255,208,6,255,149,85,84,0,255,255,255,255,255,255,248,0,47,255,255,255,255,255,248,0,2,255,255,255,255,255,248,0,0,5,80,0,0,0,0, + // 0x0153 œ + 32,21,168,35,2,255,0,47,255,128,1,255,248,0,2,255,255,244,15,255,255,128,11,255,255,253,63,255,255,224,31,248,1,255,255,128,31,244,63,208,0,63,254,0,7,248,127,192,0,47,252,0,3,252,191,64,0,15,248,0,2,253,255,0,0,15,244,0,1,253,255,0,0,15,255,255,255,253,255,0,0,11,255,255,255,254,255,0,0,11,255,255,255,253,255,0,0,15,244,0,0,0,255,0,0,15,244,0,0,0,191,64,0,15,248,0,0,0,127,128,0,47,252,0,0,0,63,208,0,63,254,0,0,0,31,244,1,255,255,208,0,120,11,255,255,254,63,255,255,248,2,255,255,248,15,255,255,248,0,47,255,144,1,255,255,208,0,0,80,0,0,1,80,0, + // 0x0154 Ŕ + 20,35,175,23,3,0,0,0,1,84,0,0,0,15,248,0,0,0,47,224,0,0,0,127,128,0,0,0,254,0,0,0,3,248,0,0,0,2,144,0,0,0,0,0,0,0,21,85,84,0,0,127,255,255,224,0,127,255,255,253,0,127,255,255,255,64,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,47,208,127,128,0,127,192,127,128,6,255,64,127,255,255,254,0,127,255,255,244,0,127,255,255,192,0,127,149,127,208,0,127,128,15,240,0,127,128,11,248,0,127,128,3,253,0,127,128,1,255,0,127,128,0,255,128,127,128,0,63,192,127,128,0,47,240,127,128,0,15,244,127,128,0,7,252,127,128,0,3,254, + // 0x0155 ŕ + 12,29,87,16,3,0,0,0,85,0,3,255,0,11,252,0,15,240,0,63,192,0,190,0,0,164,0,0,0,0,0,0,20,252,7,255,253,31,255,254,127,255,255,255,85,255,244,0,255,208,0,255,128,0,255,64,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0156 Ŗ + 20,36,180,23,3,247,21,85,84,0,0,127,255,255,224,0,127,255,255,253,0,127,255,255,255,64,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,47,208,127,128,0,127,192,127,128,6,255,64,127,255,255,254,0,127,255,255,244,0,127,255,255,192,0,127,149,127,208,0,127,128,15,240,0,127,128,11,248,0,127,128,3,253,0,127,128,1,255,0,127,128,0,255,128,127,128,0,63,192,127,128,0,47,240,127,128,0,15,244,127,128,0,7,252,127,128,0,3,254,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,254,0,0,0,0,253,0,0,0,1,252,0,0,0,2,240,0,0,0,3,224,0,0,0,0,0,0,0, + // 0x0157 ŗ + 13,30,120,16,2,247,0,0,5,0,63,1,255,192,63,71,255,192,63,159,255,192,63,255,213,64,63,253,0,0,63,244,0,0,63,224,0,0,63,208,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,0,0,0,0,0,0,0,0,15,208,0,0,31,192,0,0,47,192,0,0,63,64,0,0,62,0,0,0,124,0,0,0,0,0,0,0, + // 0x0158 Ř + 20,35,175,23,3,0,5,64,0,20,0,11,240,1,252,0,2,252,11,244,0,0,191,111,208,0,0,63,255,64,0,0,15,254,0,0,0,6,168,0,0,0,0,0,0,0,21,85,84,0,0,127,255,255,224,0,127,255,255,253,0,127,255,255,255,64,127,128,6,255,192,127,128,0,127,208,127,128,0,47,224,127,128,0,31,240,127,128,0,31,240,127,128,0,31,224,127,128,0,47,208,127,128,0,127,192,127,128,6,255,64,127,255,255,254,0,127,255,255,244,0,127,255,255,192,0,127,149,127,208,0,127,128,15,240,0,127,128,11,248,0,127,128,3,253,0,127,128,1,255,0,127,128,0,255,128,127,128,0,63,192,127,128,0,47,240,127,128,0,15,244,127,128,0,7,252,127,128,0,3,254, + // 0x0159 ř + 14,29,116,16,2,0,20,0,1,64,127,0,15,208,31,208,127,64,11,246,254,0,2,255,248,0,0,255,240,0,0,42,128,0,0,0,0,0,0,0,5,0,63,1,255,192,63,71,255,192,63,159,255,192,63,255,213,64,63,253,0,0,63,244,0,0,63,224,0,0,63,208,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0, + // 0x015a Ś + 17,36,180,20,2,255,0,0,5,80,0,0,0,31,244,0,0,0,63,208,0,0,0,191,64,0,0,1,253,0,0,0,3,244,0,0,0,6,128,0,0,0,0,0,0,0,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,21,64,0,0, + // 0x015b ś + 15,30,120,18,2,255,0,0,21,64,0,0,255,128,0,2,255,0,0,7,252,0,0,15,240,0,0,47,128,0,0,41,0,0,0,0,0,0,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,85,0,0, + // 0x015c Ŝ + 17,36,180,20,2,255,0,5,80,0,0,0,15,252,0,0,0,63,255,0,0,0,255,191,192,0,2,252,31,224,0,11,240,3,248,0,10,64,0,104,0,0,0,0,0,0,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,21,64,0,0, + // 0x015d ŝ + 15,30,120,18,2,255,0,21,64,0,0,191,224,0,2,255,244,0,7,251,253,0,15,224,191,0,63,64,47,192,104,0,2,144,0,0,0,0,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,85,0,0, + // 0x015e Ş + 17,36,180,20,2,247,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,31,192,0,0,0,15,128,0,0,0,47,240,0,0,0,7,252,0,0,0,0,253,0,0,0,0,253,0,0,0,150,252,0,0,0,255,244,0,0,0,255,128,0,0, + // 0x015f ş + 15,30,120,18,2,247,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,111,64,0,0,63,0,0,0,127,208,0,0,27,244,0,0,2,248,0,0,1,248,0,1,91,244,0,3,255,240,0,2,254,64,0, + // 0x0160 Š + 17,36,180,20,2,255,5,0,0,20,0,15,224,2,252,0,3,252,15,240,0,0,255,63,192,0,0,63,255,0,0,0,31,253,0,0,0,6,164,0,0,0,0,0,0,0,0,26,234,64,0,2,255,255,253,0,15,255,255,255,0,63,254,175,254,0,127,208,0,108,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,191,192,0,0,0,63,244,0,0,0,31,255,64,0,0,11,255,244,0,0,1,255,255,128,0,0,31,255,240,0,0,1,191,252,0,0,0,15,255,0,0,0,2,255,64,0,0,0,191,128,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,128,0,0,255,0,254,64,27,254,0,255,255,255,252,0,255,255,255,240,0,111,255,254,64,0,0,21,64,0,0, + // 0x0161 š + 15,30,120,18,2,255,84,0,1,64,127,0,31,208,31,208,127,64,11,246,253,0,2,255,248,0,0,255,240,0,0,42,128,0,0,0,0,0,0,5,64,0,2,255,255,64,47,255,255,240,127,255,255,208,255,64,6,192,254,0,0,0,255,0,0,0,255,128,0,0,191,244,0,0,63,255,128,0,11,255,252,0,0,191,255,128,0,7,255,208,0,0,127,240,0,0,15,240,0,0,11,244,0,0,11,240,228,0,31,240,255,234,255,208,255,255,255,128,111,255,248,0,0,85,0,0, + // 0x0162 Ţ + 21,36,216,21,0,247,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,62,0,0,0,0,0,125,0,0,0,0,0,255,128,0,0,0,0,31,240,0,0,0,0,3,240,0,0,0,0,3,244,0,0,0,2,111,240,0,0,0,7,255,208,0,0,0,3,250,0,0,0, + // 0x0163 ţ + 14,34,136,14,0,247,0,20,0,0,0,125,0,0,0,189,0,0,0,253,0,0,1,253,0,0,11,255,255,192,127,255,255,192,127,255,255,192,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,1,254,0,0,1,255,64,0,0,255,255,208,0,127,255,208,0,31,255,192,0,3,244,0,0,7,192,0,0,15,248,0,0,1,254,0,0,0,63,0,0,0,63,0,0,102,255,0,0,127,252,0,0,127,144,0, + // 0x0164 Ť + 21,35,210,21,0,0,0,80,0,5,64,0,0,254,0,47,192,0,0,63,128,255,0,0,0,15,247,252,0,0,0,7,255,240,0,0,0,1,255,192,0,0,0,0,170,64,0,0,0,0,0,0,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x0165 ť + 19,29,145,14,0,255,0,0,0,7,244,0,0,0,11,240,0,0,0,15,224,0,20,0,15,192,0,125,0,15,64,0,189,0,30,0,0,253,0,0,0,1,253,0,0,0,11,255,255,192,0,127,255,255,192,0,127,255,255,192,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,1,254,0,0,0,1,255,64,0,0,0,255,255,208,0,0,127,255,208,0,0,31,255,192,0,0,0,84,0,0, + // 0x0166 Ŧ + 21,27,162,21,0,0,21,85,85,85,85,0,191,255,255,255,255,64,191,255,255,255,255,64,191,255,255,255,255,64,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,3,255,255,255,224,0,3,255,255,255,224,0,3,255,255,255,224,0,1,85,191,149,64,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x0167 ŧ + 14,26,104,14,0,255,0,20,0,0,0,125,0,0,0,189,0,0,0,253,0,0,1,253,0,0,11,255,255,192,127,255,255,192,127,255,255,192,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,43,255,170,64,63,255,255,128,63,255,255,128,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,2,253,0,0,1,254,0,0,1,255,64,0,0,255,255,208,0,127,255,208,0,31,255,192,0,0,84,0, + // 0x0168 Ũ + 21,35,210,27,3,255,0,1,64,0,80,0,0,31,248,3,224,0,0,127,255,155,208,0,0,254,191,255,192,0,0,240,11,255,0,0,0,160,0,100,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x0169 ũ + 17,29,145,23,3,255,0,20,0,5,0,1,255,128,62,0,7,255,249,188,0,15,235,255,252,0,15,0,191,240,0,10,0,6,64,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x016a Ū + 21,33,198,27,3,255,0,21,85,85,0,0,0,63,255,255,64,0,0,63,255,255,64,0,0,42,170,170,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x016b ū + 17,27,135,23,3,255,1,85,85,80,0,3,255,255,244,0,3,255,255,244,0,2,170,170,160,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x016c Ŭ + 21,35,210,27,3,255,0,104,0,6,128,0,0,124,0,15,128,0,0,63,149,191,0,0,0,31,255,254,0,0,0,7,255,244,0,0,0,0,106,64,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x016d ŭ + 17,29,145,23,3,255,6,128,0,104,0,7,192,0,248,0,3,249,91,240,0,1,255,255,224,0,0,127,255,64,0,0,6,164,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x016e Ů + 21,38,228,27,3,255,0,0,21,0,0,0,0,1,255,208,0,0,0,3,251,244,0,0,0,7,192,184,0,0,0,11,128,124,0,0,0,7,192,184,0,0,0,3,246,244,0,0,0,1,255,224,0,0,0,0,25,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x016f ů + 17,32,160,23,3,255,0,1,80,0,0,0,31,253,0,0,0,63,191,64,0,0,124,11,128,0,0,184,7,192,0,0,124,11,128,0,0,63,111,64,0,0,31,254,0,0,0,1,144,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x0170 Ű + 21,36,216,27,3,255,0,1,84,5,64,0,0,11,248,63,208,0,0,15,240,127,128,0,0,47,192,254,0,0,0,127,2,248,0,0,0,252,7,224,0,0,0,160,6,64,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x0171 ű + 17,30,150,23,3,255,0,21,64,84,0,0,191,131,253,0,0,255,7,248,0,2,252,15,224,0,7,240,47,128,0,15,192,126,0,0,10,0,100,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x0172 Ų + 21,36,216,27,3,247,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,255,128,0,0,0,21,127,0,0,0,0,0,188,0,0,0,0,0,248,0,0,0,0,1,248,0,0,0,0,2,248,0,0,0,0,1,253,16,0,0,0,0,255,240,0,0,0,0,127,240,0,0,0,0,5,64,0, + // 0x0173 ų + 18,29,145,23,3,247,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,63,0,0,0,0,252,0,0,0,1,244,0,0,0,3,240,0,0,0,3,240,0,0,0,3,244,64,0,0,2,255,208,0,0,0,255,208,0,0,0,5,0, + // 0x0174 Ŵ + 34,35,59,35,0,0,0,0,0,1,84,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,63,239,224,0,0,0,0,0,0,191,7,248,0,0,0,0,0,2,248,0,254,0,0,0,0,0,2,144,0,42,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,1,84,0,0,5,80,127,128,0,3,254,0,0,15,240,63,192,0,3,255,0,0,15,240,63,192,0,11,255,0,0,31,224,47,208,0,15,255,64,0,47,208,31,224,0,15,255,128,0,63,192,15,240,0,31,239,192,0,63,192,15,240,0,47,207,208,0,127,128,11,244,0,63,143,224,0,191,64,7,248,0,63,75,240,0,255,0,3,252,0,127,7,240,0,255,0,3,252,0,255,3,244,1,254,0,2,253,0,254,3,252,2,253,0,1,254,1,253,2,252,3,252,0,0,255,2,252,1,253,3,252,0,0,255,3,248,0,254,7,248,0,0,191,67,244,0,191,11,244,0,0,127,135,240,0,127,15,240,0,0,63,203,240,0,63,79,240,0,0,47,207,224,0,63,143,224,0,0,31,223,208,0,47,223,192,0,0,15,239,192,0,31,239,192,0,0,15,255,128,0,15,255,128,0,0,11,255,64,0,11,255,64,0,0,7,255,0,0,7,255,0,0,0,3,255,0,0,3,255,0,0,0,3,254,0,0,3,254,0,0, + // 0x0175 ŵ + 30,29,232,30,0,0,0,0,0,21,64,0,0,0,0,0,0,255,224,0,0,0,0,0,2,255,244,0,0,0,0,0,7,251,252,0,0,0,0,0,31,224,191,0,0,0,0,0,63,64,47,192,0,0,0,0,104,0,6,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,128,0,127,192,0,47,208,63,192,0,191,224,0,63,192,63,192,0,255,240,0,63,192,47,208,0,255,240,0,127,64,31,224,2,251,244,0,191,0,15,240,3,246,248,0,255,0,15,240,3,241,252,0,254,0,11,244,7,240,253,1,253,0,7,248,11,224,254,2,252,0,3,252,15,208,191,3,252,0,2,252,31,192,127,7,248,0,1,253,47,192,63,75,240,0,0,254,63,128,63,139,240,0,0,255,63,0,31,207,224,0,0,191,127,0,15,223,208,0,0,127,190,0,15,239,192,0,0,63,253,0,11,255,192,0,0,63,252,0,7,255,128,0,0,31,248,0,3,255,64,0,0,15,244,0,2,255,0,0, + // 0x0176 Ŷ + 21,35,210,22,0,0,0,0,21,64,0,0,0,0,255,208,0,0,0,2,255,240,0,0,0,11,251,252,0,0,0,31,208,255,0,0,0,127,64,47,192,0,0,168,0,6,144,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x0177 ŷ + 20,38,190,20,0,247,0,0,85,0,0,0,3,255,64,0,0,11,255,192,0,0,47,239,240,0,0,127,67,252,0,1,253,0,191,0,2,160,0,26,64,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x0178 Ÿ + 21,33,198,22,0,0,0,31,192,127,0,0,0,47,192,191,0,0,0,47,192,127,0,0,0,10,64,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x0179 Ź + 19,35,175,21,1,0,0,0,1,85,0,0,0,3,254,0,0,0,15,248,0,0,0,31,224,0,0,0,63,128,0,0,0,254,0,0,0,0,164,0,0,0,0,0,0,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x017a ź + 16,29,116,18,1,0,0,0,21,80,0,0,63,224,0,0,255,128,0,1,254,0,0,3,248,0,0,15,224,0,0,10,64,0,0,0,0,0,0,0,0,0,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x017b Ż + 19,34,170,21,1,0,0,0,20,0,0,0,0,254,0,0,0,1,255,0,0,0,1,255,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x017c ż + 16,28,112,18,1,0,0,1,64,0,0,15,224,0,0,31,240,0,0,31,240,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x017d Ž + 19,35,175,21,1,0,1,80,0,5,0,2,252,0,127,0,0,191,2,253,0,0,47,219,244,0,0,15,255,208,0,0,3,255,128,0,0,1,170,0,0,0,0,0,0,0,21,85,85,85,84,127,255,255,255,248,127,255,255,255,248,127,255,255,255,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,3,252,0,0,0,15,248,0,0,0,47,240,0,0,0,63,192,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,229,85,85,84,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252, + // 0x017e ž + 16,29,116,18,1,0,21,0,0,80,47,192,7,240,11,240,47,208,2,253,191,64,0,255,253,0,0,63,248,0,0,26,160,0,0,0,0,0,0,0,0,0,63,255,255,252,63,255,255,252,63,255,255,252,0,0,15,244,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,240,0,0,47,208,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,253,191,255,255,253,191,255,255,253, + // 0x017f ſ + 11,29,87,13,3,0,0,5,0,2,255,248,31,255,248,63,255,240,127,208,16,191,64,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Simplified_Chinese_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Simplified_Chinese_27.cpp new file mode 100644 index 000000000000..7228cff311de --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Simplified_Chinese_27.cpp @@ -0,0 +1,778 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Simplified Chinese 37pt, capital 'A' height: 27px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +extern const uint8_t NotoSans_Medium_Simplified_Chinese_27[24699] = { + 162,27,28,32,26,255,35,247, // unifont_t + // 0x201c “ + 28,32,14,10,40,14,0,17,0,80,1,80,3,240,7,224,3,240,15,208,11,240,31,192,15,224,47,192,31,208,63,128,47,192,127,64,63,192,255,64,127,192,255,0,106,64,170,0, + // 0x201d ” + 29,32,14,10,40,14,0,17,5,80,5,80,15,244,47,224,15,240,47,208,15,224,63,192,31,208,63,128,47,192,127,64,63,128,191,0,63,0,254,0,127,0,252,0,105,0,164,0, + // 0x22bf ⊿ + 191,34,29,30,240,37,3,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,2,192,0,0,0,0,0,0,11,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,192,0,0,0,0,0,47,239,192,0,0,0,0,0,191,143,192,0,0,0,0,2,254,15,192,0,0,0,0,11,248,15,192,0,0,0,0,47,224,15,192,0,0,0,0,191,128,15,192,0,0,0,2,254,0,15,192,0,0,0,11,248,0,15,192,0,0,0,31,224,0,15,192,0,0,0,127,128,0,15,192,0,0,1,255,0,0,15,192,0,0,7,252,0,0,15,192,0,0,31,240,0,0,15,192,0,0,127,192,0,0,15,192,0,1,255,0,0,0,15,192,0,7,252,0,0,0,15,192,0,31,240,0,0,0,15,192,0,127,192,0,0,0,15,192,1,255,0,0,0,0,15,192,7,255,255,255,255,255,255,192,31,255,255,255,255,255,255,192,127,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0x4e00 一 + 0,78,35,4,36,37,1,13,63,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244, + // 0x4e09 三 + 9,78,33,30,14,37,2,255,1,85,85,85,85,85,85,80,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,254,0,0,0,63,255,255,255,255,254,0,0,0,63,255,255,255,255,254,0,0,0,26,170,170,170,170,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,21,85,85,85,85,85,85,85,0, + // 0x4e0a 上 + 10,78,33,33,41,37,2,255,0,0,0,5,64,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,255,255,255,248,0,0,0,0,47,255,255,255,248,0,0,0,0,47,255,255,255,248,0,0,0,0,47,229,85,85,80,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,85,85,85,127,229,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x4e0b 下 + 11,78,33,32,32,37,2,253,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,106,170,170,175,250,170,170,170,64,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,232,0,0,0,0,0,0,0,15,255,128,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,15,255,255,64,0,0,0,0,0,15,231,255,240,0,0,0,0,0,15,224,191,254,0,0,0,0,0,15,224,15,255,192,0,0,0,0,15,224,1,255,248,0,0,0,0,15,224,0,63,248,0,0,0,0,15,224,0,11,240,0,0,0,0,15,224,0,1,192,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,208,0,0,0,0, + // 0x4e0d 不 + 13,78,33,33,41,37,2,253,21,85,85,85,85,85,85,85,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,2,255,244,176,0,0,0,0,0,7,255,246,253,0,0,0,0,0,31,255,251,255,128,0,0,0,0,127,247,244,191,240,0,0,0,2,255,199,244,31,253,0,0,0,11,255,7,244,7,255,128,0,0,63,252,7,244,0,255,224,0,1,255,240,7,244,0,47,252,0,15,255,128,7,244,0,11,255,0,191,253,0,7,244,0,2,255,192,255,240,0,7,244,0,0,127,192,63,128,0,7,244,0,0,47,0,28,0,0,7,244,0,0,4,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0, + // 0x4e13 专 + 19,78,33,36,68,37,2,252,0,0,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,0,0,0,0,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,1,85,87,253,85,85,85,64,0,0,0,3,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,11,240,0,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,85,85,127,213,85,85,85,85,0,0,0,63,64,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,1,0,0,0,1,255,255,255,255,255,192,0,0,2,255,255,255,255,255,224,0,0,3,255,255,255,255,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,255,192,0,0,0,0,126,64,3,255,0,0,0,0,0,255,253,15,252,0,0,0,0,0,191,255,255,240,0,0,0,0,0,2,255,255,192,0,0,0,0,0,0,27,255,253,0,0,0,0,0,0,0,127,255,208,0,0,0,0,0,0,6,255,240,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,2,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x4e1d 丝 + 29,78,33,33,41,37,2,255,0,0,80,0,0,0,128,0,0,0,0,253,0,0,2,252,0,0,0,1,253,0,0,3,248,0,0,0,3,252,0,0,7,240,0,0,0,3,244,0,0,15,224,0,0,0,11,240,0,0,31,192,0,0,0,15,208,0,0,63,128,0,0,0,47,192,45,0,127,0,36,0,0,63,64,63,128,254,0,127,0,0,190,0,191,1,252,0,255,0,1,252,1,254,3,244,2,253,0,3,248,3,252,11,240,3,248,0,11,240,7,244,47,192,15,240,0,47,255,255,224,191,255,255,208,0,47,255,255,192,127,255,255,128,0,31,255,255,64,63,255,255,0,0,9,65,254,0,20,2,252,0,0,0,3,252,0,0,11,244,0,0,0,11,240,0,0,31,208,0,0,0,47,208,0,0,63,128,0,0,0,127,64,0,0,254,0,0,0,1,253,0,0,3,252,0,0,0,7,254,175,254,31,250,175,255,0,31,255,255,254,127,255,255,255,0,15,255,255,253,63,255,255,255,0,11,250,149,0,47,234,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x4e2a 个 + 42,78,35,34,50,37,1,253,0,0,0,3,253,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,224,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,255,3,254,0,0,0,0,0,15,252,1,255,128,0,0,0,0,47,244,0,127,224,0,0,0,0,255,208,0,31,248,0,0,0,3,255,64,0,7,255,0,0,0,31,253,0,0,1,255,208,0,0,127,240,0,0,0,63,248,0,3,255,192,1,252,0,11,255,128,31,254,0,1,252,0,2,255,244,255,244,0,1,252,0,0,127,252,127,192,0,1,252,0,0,11,244,45,0,0,1,252,0,0,1,224,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0, + // 0x4e2d 中 + 45,78,31,35,24,37,3,253,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,21,85,85,111,213,85,85,80,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,85,85,111,213,85,87,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x4e3a 为 + 58,78,32,35,24,37,2,253,0,0,0,63,64,0,0,0,0,24,0,63,64,0,0,0,0,255,0,63,64,0,0,0,0,127,128,63,64,0,0,0,0,63,208,63,64,0,0,0,0,15,240,63,64,0,0,0,0,7,244,63,64,0,0,0,0,3,128,63,0,0,0,0,0,0,0,127,0,0,0,0,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,21,85,85,255,85,85,86,253,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,1,253,0,0,1,252,0,0,2,252,0,0,2,252,0,0,3,252,46,0,2,252,0,0,3,248,191,64,2,252,0,0,11,240,63,192,2,252,0,0,15,240,15,240,2,252,0,0,47,208,7,248,3,252,0,0,63,192,3,252,3,252,0,0,191,128,0,254,3,248,0,1,255,0,0,184,3,248,0,3,253,0,0,0,3,248,0,15,252,0,0,0,3,244,0,63,240,0,0,0,7,244,0,255,192,0,0,0,11,240,3,255,64,0,0,0,15,240,31,253,0,0,0,0,47,240,191,244,0,0,3,255,255,208,63,192,0,0,2,255,255,192,14,0,0,0,1,255,255,0,0,0,0,0,0,85,80,0, + // 0x4e3b 主 + 59,78,33,34,50,37,2,254,0,0,0,24,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,0,191,192,0,0,0,5,85,85,85,127,85,85,84,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,85,85,91,249,85,85,64,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,85,85,85,85,85,64, + // 0x4e49 义 + 73,78,34,35,59,37,1,253,0,0,0,2,192,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,3,248,0,1,228,0,0,0,0,2,252,0,2,253,0,0,111,0,0,253,0,3,252,0,0,127,64,0,191,0,7,248,0,0,63,128,0,127,64,11,240,0,0,47,192,0,63,128,15,224,0,0,15,224,0,41,0,47,208,0,0,11,240,0,0,0,63,192,0,0,3,248,0,0,0,191,64,0,0,2,252,0,0,0,255,0,0,0,0,255,0,0,2,253,0,0,0,0,191,64,0,7,252,0,0,0,0,63,192,0,15,240,0,0,0,0,31,240,0,47,224,0,0,0,0,11,248,0,127,192,0,0,0,0,3,254,1,255,0,0,0,0,0,1,255,67,253,0,0,0,0,0,0,127,223,248,0,0,0,0,0,0,47,255,224,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,31,255,224,0,0,0,0,0,0,191,255,253,0,0,0,0,0,7,255,139,255,128,0,0,0,0,63,253,1,255,244,0,0,0,7,255,224,0,63,255,64,0,0,127,255,64,0,7,255,248,0,27,255,248,0,0,0,191,255,208,127,255,128,0,0,0,11,255,240,47,244,0,0,0,0,0,191,208,14,64,0,0,0,0,0,7,128,0,0,0,0,0,0,0,0,0, + // 0x4e4b 之 + 75,78,35,35,59,37,1,253,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,1,85,85,86,253,85,85,84,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,128,0,0,0,2,0,0,3,254,0,0,0,0,11,240,0,31,248,0,0,0,0,15,240,0,127,224,0,0,0,0,31,224,1,255,128,0,0,0,0,63,224,11,254,0,0,0,0,0,127,240,63,248,0,0,0,0,0,255,253,255,208,0,0,0,0,1,255,255,255,0,0,0,0,0,3,252,191,252,0,0,0,0,0,7,248,63,249,0,0,0,0,0,15,240,11,255,233,64,0,0,0,63,224,1,255,255,255,255,255,244,191,192,0,47,255,255,255,255,240,47,64,0,1,111,255,255,255,224,6,0,0,0,0,5,85,85,64, + // 0x4e86 了 + 134,78,29,32,0,37,4,253,255,255,255,255,255,255,253,0,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,64,85,85,85,85,85,95,254,0,0,0,0,0,0,47,248,0,0,0,0,0,0,191,224,0,0,0,0,0,2,255,128,0,0,0,0,0,15,254,0,0,0,0,0,0,63,244,0,0,0,0,0,1,255,208,0,0,0,0,0,63,255,0,0,0,0,0,0,63,248,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,21,85,191,64,0,0,0,0,31,255,255,0,0,0,0,0,15,255,254,0,0,0,0,0,11,255,228,0,0,0,0, + // 0x4e8c 二 + 140,78,33,26,234,37,2,1,1,170,170,170,170,170,170,160,0,2,255,255,255,255,255,255,224,0,2,255,255,255,255,255,255,224,0,2,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192, + // 0x4e8e 于 + 142,78,33,33,41,37,2,253,1,85,85,85,85,85,85,80,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,87,253,85,85,85,64,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,1,255,255,248,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,255,208,0,0,0,0,0,0,42,148,0,0,0,0,0, + // 0x4ea4 交 + 164,78,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,85,85,85,91,249,85,85,85,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,61,0,0,15,128,0,0,0,0,255,128,0,63,240,0,0,0,3,255,0,0,31,253,0,0,0,15,252,0,0,7,255,128,0,0,63,240,0,0,0,255,224,0,1,255,192,0,0,0,47,248,0,11,255,1,0,0,20,11,255,0,127,252,63,0,0,63,130,255,128,127,224,63,128,0,191,64,191,64,15,64,47,192,0,255,0,44,0,4,0,15,224,2,253,0,0,0,0,0,11,244,7,252,0,0,0,0,0,3,252,15,244,0,0,0,0,0,1,255,63,224,0,0,0,0,0,0,191,255,192,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,31,253,0,0,0,0,0,0,0,127,255,64,0,0,0,0,0,2,255,255,240,0,0,0,0,0,47,255,127,254,0,0,0,0,6,255,248,11,255,228,0,0,1,191,255,208,1,255,255,144,0,191,255,253,0,0,47,255,255,128,255,255,208,0,0,2,255,255,192,63,248,0,0,0,0,27,255,0,46,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,213,85,85,85,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,213,85,85,85,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,170,170,170,170,170,170,191,64,126,0,0,0,0,0,0,63,64,126,0,31,192,7,244,0,63,64,126,0,31,192,7,244,0,63,64,126,0,47,192,7,244,0,63,64,0,0,63,192,7,244,0,0,0,0,0,63,128,7,244,0,0,0,0,0,191,64,7,244,0,0,0,0,0,255,0,7,244,0,13,0,0,3,253,0,7,244,0,15,192,0,47,252,0,7,244,0,31,192,6,255,240,0,3,248,0,47,192,255,255,128,0,3,255,255,255,64,191,248,0,0,2,255,255,255,0,62,64,0,0,0,191,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x4ece 从 + 206,78,35,33,41,37,1,253,0,0,191,0,0,15,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,31,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,208,0,0,0,0,254,0,0,47,208,0,0,0,1,253,0,0,63,224,0,0,0,1,253,0,0,63,240,0,0,0,2,252,0,0,63,240,0,0,0,2,252,0,0,127,240,0,0,0,3,253,0,0,127,244,0,0,0,3,255,0,0,191,248,0,0,0,3,255,192,0,255,252,0,0,0,7,255,224,0,255,252,0,0,0,11,255,248,1,254,253,0,0,0,15,247,253,2,252,254,0,0,0,15,242,255,3,252,191,0,0,0,31,224,255,135,248,127,64,0,0,47,208,63,207,240,63,192,0,0,63,192,47,159,240,47,208,0,0,127,128,14,63,208,15,240,0,0,255,64,4,191,192,15,244,0,1,255,0,0,255,64,7,252,0,3,254,0,3,255,0,3,255,0,7,252,0,15,252,0,0,255,192,15,248,0,63,248,0,0,191,240,63,240,0,255,224,0,0,63,244,127,208,0,127,192,0,0,15,224,11,128,0,15,0,0,0,3,192,1,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,35,35,59,37,1,253,0,0,0,3,253,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,254,3,255,0,0,0,0,0,15,252,0,255,192,0,0,0,0,63,240,0,63,240,0,0,0,1,255,192,0,15,253,0,0,0,11,255,0,0,3,255,128,0,0,47,248,0,0,0,191,240,0,1,255,255,255,255,255,239,253,0,11,255,79,255,255,255,199,255,208,127,253,15,255,255,255,193,255,248,63,240,0,0,0,0,0,63,240,31,128,0,0,0,0,0,11,208,9,0,0,0,0,0,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,11,240,0,0,0,0,63,128,47,255,240,0,0,0,0,63,128,15,255,224,0,0,0,0,63,128,15,255,128,0,0,0,0,63,128,1,64,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0, + // 0x4ee5 以 + 229,78,35,32,32,37,1,253,0,127,64,0,0,0,3,248,0,0,127,64,0,0,0,3,252,0,0,127,64,1,0,0,3,248,0,0,63,64,47,64,0,7,244,0,0,63,64,127,192,0,7,244,0,0,63,64,31,240,0,11,240,0,0,63,64,11,248,0,11,240,0,0,63,64,3,252,0,15,240,0,0,63,128,1,255,0,15,224,0,0,63,128,0,255,64,31,208,0,0,63,128,0,127,192,47,192,0,0,63,128,0,63,128,63,192,0,0,63,128,0,24,0,63,128,0,0,63,128,0,0,0,127,64,0,0,63,128,0,0,0,255,0,0,0,63,128,0,0,0,255,0,0,0,63,128,0,0,2,253,0,0,0,63,192,0,0,3,252,0,0,0,63,192,9,0,11,248,0,0,0,47,192,190,0,31,248,0,0,0,47,223,255,0,63,253,0,0,0,47,255,255,0,191,255,64,0,0,127,255,224,2,255,255,208,0,11,255,254,0,11,254,63,240,0,127,255,208,0,47,248,15,252,0,63,249,0,0,255,240,3,255,0,63,128,0,7,255,192,0,255,192,20,0,0,127,254,0,0,127,224,0,0,7,255,244,0,0,47,244,0,0,15,255,192,0,0,11,244,0,0,3,253,0,0,0,3,208,0,0,0,208,0,0,0,1,64, + // 0x4ef6 件 + 246,78,35,35,59,37,1,253,0,0,80,0,0,21,0,0,0,0,0,254,0,0,63,64,0,0,0,1,253,7,144,63,64,0,0,0,2,252,11,240,63,64,0,0,0,3,248,15,224,63,64,0,0,0,11,240,15,208,63,64,0,0,0,15,224,15,192,63,64,0,0,0,47,192,47,213,127,149,85,0,0,63,128,63,255,255,255,255,128,0,255,0,63,255,255,255,255,128,2,255,0,191,255,255,255,255,128,3,255,0,254,0,63,64,0,0,15,255,1,252,0,63,64,0,0,47,255,3,252,0,63,64,0,0,191,255,7,244,0,63,64,0,0,127,127,1,240,0,63,64,0,0,62,63,0,0,0,63,64,0,0,28,63,0,0,0,63,64,0,0,0,63,1,85,85,127,149,85,80,0,63,3,255,255,255,255,255,244,0,63,3,255,255,255,255,255,244,0,63,3,255,255,255,255,255,244,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0, + // 0x4efd 份 + 253,78,35,35,59,37,1,253,0,0,160,0,0,0,0,0,0,0,0,253,0,31,255,255,0,0,0,2,252,0,31,255,255,0,0,0,3,248,0,31,255,255,64,0,0,7,244,2,64,0,47,192,0,0,15,240,7,240,0,31,192,0,0,31,208,11,240,0,15,224,0,0,63,192,15,208,0,15,240,0,0,191,64,47,192,0,7,244,0,1,255,0,63,128,0,3,252,0,3,255,0,191,0,0,1,254,0,11,255,1,253,0,0,0,255,64,31,255,3,252,0,0,0,127,192,127,255,11,240,0,0,0,47,244,255,255,31,224,0,0,0,15,248,255,127,63,255,255,255,255,251,240,124,63,15,47,255,255,255,244,192,32,63,0,47,255,255,255,244,0,0,63,0,0,31,208,3,244,0,0,63,0,0,31,192,3,244,0,0,63,0,0,31,192,3,244,0,0,63,0,0,47,128,3,240,0,0,63,0,0,63,128,7,240,0,0,63,0,0,63,64,7,240,0,0,63,0,0,127,0,7,240,0,0,63,0,0,254,0,7,240,0,0,63,0,1,252,0,7,240,0,0,63,0,3,252,0,11,240,0,0,63,0,11,244,0,11,240,0,0,63,0,31,240,0,15,224,0,0,63,0,191,192,0,31,224,0,0,63,3,255,0,47,255,208,0,0,63,3,252,0,15,255,192,0,0,63,1,240,0,15,255,0,0,0,42,0,64,0,1,64,0,0, + // 0x4f11 休 + 17,79,35,35,59,37,1,253,0,0,20,0,0,21,0,0,0,0,0,63,128,0,127,0,0,0,0,0,127,64,0,127,0,0,0,0,0,255,0,0,127,0,0,0,0,1,254,0,0,127,0,0,0,0,3,252,0,0,127,0,0,0,0,7,248,0,0,127,0,0,0,0,15,240,0,0,127,0,0,0,0,47,224,0,0,127,0,0,0,0,127,193,85,85,191,85,85,80,0,255,199,255,255,255,255,255,240,2,255,199,255,255,255,255,255,240,11,255,199,255,255,255,255,255,240,47,255,192,0,7,255,240,0,0,127,255,192,0,11,255,244,0,0,255,223,192,0,15,255,252,0,0,127,31,192,0,47,255,253,0,0,60,31,192,0,63,255,191,0,0,16,31,192,0,191,191,63,64,0,0,31,192,0,253,127,47,192,0,0,31,192,3,252,127,15,208,0,0,31,192,7,244,127,11,240,0,0,31,192,15,240,127,3,252,0,0,31,192,63,208,127,2,254,0,0,31,192,191,128,127,0,255,64,0,31,194,255,0,127,0,127,208,0,31,203,252,0,127,0,47,240,0,31,239,244,0,127,0,15,252,0,31,207,224,0,127,0,3,240,0,31,195,128,0,127,0,0,192,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0, + // 0x4f20 传 + 32,79,34,36,68,37,1,252,0,0,164,0,0,164,0,0,0,0,0,254,0,1,252,0,0,0,0,1,252,0,3,248,0,0,0,0,3,248,0,3,244,0,0,0,0,7,244,255,255,255,255,255,64,0,15,240,255,255,255,255,255,64,0,31,208,255,255,255,255,255,64,0,63,192,0,15,224,0,0,0,0,191,64,0,31,192,0,0,0,1,255,0,0,47,192,0,0,0,3,255,0,0,63,128,0,0,0,11,255,15,255,255,255,255,255,240,47,255,15,255,255,255,255,255,240,127,255,15,255,255,255,255,255,240,255,255,0,0,254,0,0,0,0,191,127,0,0,253,0,0,0,0,60,127,0,2,252,0,0,0,0,52,127,0,3,252,0,0,0,0,0,127,0,3,248,0,0,0,0,0,127,0,7,255,255,255,254,0,0,127,0,11,255,255,255,255,64,0,127,0,15,255,255,255,253,0,0,127,0,0,0,0,11,248,0,0,127,0,0,0,0,47,224,0,0,127,0,0,0,0,191,192,0,0,127,0,0,8,1,255,0,0,0,127,0,0,63,135,252,0,0,0,127,0,0,191,255,240,0,0,0,127,0,0,31,255,192,0,0,0,127,0,0,2,255,192,0,0,0,127,0,0,0,127,240,0,0,0,127,0,0,0,15,253,0,0,0,127,0,0,0,3,255,0,0,0,127,0,0,0,0,189,0,0,0,63,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f4d 位 + 77,79,35,35,59,37,1,253,0,0,36,0,0,42,0,0,0,0,0,191,0,0,127,0,0,0,0,0,254,0,0,127,0,0,0,0,2,252,0,0,127,0,0,0,0,3,248,0,0,127,0,0,0,0,11,240,0,0,127,0,0,0,0,15,224,0,0,127,0,0,0,0,63,194,255,255,255,255,255,240,0,127,130,255,255,255,255,255,240,0,255,130,255,255,255,255,255,240,3,255,128,85,85,85,85,85,64,11,255,128,0,0,0,0,0,0,31,255,128,0,64,0,2,144,0,127,255,128,11,224,0,3,252,0,255,175,128,7,240,0,3,248,0,191,47,128,3,240,0,7,244,0,60,47,128,3,244,0,11,240,0,32,47,128,3,248,0,15,240,0,0,47,128,2,252,0,15,224,0,0,47,128,1,252,0,15,208,0,0,47,128,0,252,0,31,192,0,0,47,128,0,253,0,47,192,0,0,47,128,0,253,0,63,128,0,0,47,128,0,254,0,63,64,0,0,47,128,0,191,0,127,0,0,0,47,128,0,127,0,191,0,0,0,47,128,0,127,0,254,0,0,0,47,128,0,127,0,252,0,0,0,47,128,0,16,1,252,0,0,0,47,128,0,0,3,248,0,0,0,47,135,255,255,255,255,255,248,0,47,135,255,255,255,255,255,248,0,47,135,255,255,255,255,255,248,0,47,129,85,85,85,85,85,80,0,47,64,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,35,35,59,37,1,253,0,0,80,0,0,0,0,0,0,0,0,253,0,0,0,0,36,0,0,1,252,0,0,0,27,253,0,0,3,248,0,1,111,255,255,64,0,7,244,122,255,255,255,249,0,0,15,240,127,255,255,249,0,0,0,31,208,127,254,155,240,0,0,0,63,192,127,0,7,240,0,0,0,191,64,127,0,7,240,0,0,0,255,0,127,0,7,240,0,0,3,255,0,127,0,7,240,0,0,11,255,0,127,0,7,240,0,0,31,255,0,127,0,3,240,0,0,63,255,0,127,255,255,255,255,244,255,255,0,127,255,255,255,255,244,255,127,0,127,255,255,255,255,244,124,63,0,127,0,3,248,0,0,52,63,0,127,0,2,252,0,0,0,63,0,127,0,2,252,0,0,0,63,0,127,0,1,252,0,0,0,63,0,127,0,0,252,0,0,0,63,0,127,0,0,253,0,0,0,63,0,127,0,0,254,0,0,0,63,0,127,0,4,191,0,0,0,63,0,127,91,254,127,0,0,0,63,5,255,255,254,63,64,64,0,63,15,255,255,254,63,192,184,0,63,11,255,250,64,31,192,188,0,63,7,229,0,0,15,224,252,0,63,0,0,0,0,11,244,252,0,63,0,0,0,0,3,255,248,0,63,3,255,255,255,245,255,244,0,63,3,255,255,255,244,127,224,0,63,3,255,255,255,244,6,64,0,63,0,0,0,0,0,0,0, + // 0x4f53 体 + 83,79,35,35,59,37,1,253,0,0,144,0,0,189,0,0,0,0,2,252,0,0,254,0,0,0,0,3,248,0,0,254,0,0,0,0,7,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,31,208,0,0,254,0,0,0,0,63,192,0,0,254,0,0,0,0,63,75,255,255,255,255,255,240,0,255,11,255,255,255,255,255,240,1,255,11,255,255,255,255,255,240,3,255,1,85,95,255,245,85,80,11,255,0,0,15,255,240,0,0,31,255,0,0,31,255,244,0,0,63,255,0,0,63,255,252,0,0,255,255,0,0,126,254,252,0,0,127,127,0,0,189,254,126,0,0,61,127,0,1,252,254,63,0,0,24,127,0,3,248,254,47,128,0,0,127,0,7,240,254,15,192,0,0,127,0,15,224,254,11,240,0,0,127,0,47,192,254,3,244,0,0,127,0,63,128,254,2,252,0,0,127,0,255,0,254,0,255,0,0,127,2,253,0,254,0,191,128,0,127,7,248,0,254,0,63,208,0,127,31,247,255,255,255,223,244,0,127,63,215,255,255,255,203,248,0,127,15,71,255,255,255,194,224,0,127,6,0,0,254,0,0,128,0,127,0,0,0,254,0,0,0,0,127,0,0,0,254,0,0,0,0,127,0,0,0,254,0,0,0,0,127,0,0,0,254,0,0,0,0,127,0,0,0,254,0,0,0,0,63,0,0,0,169,0,0,0, + // 0x4f59 余 + 89,79,35,36,68,37,1,252,0,0,0,2,252,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,127,255,240,0,0,0,0,0,1,255,143,252,0,0,0,0,0,7,255,3,255,0,0,0,0,0,47,252,0,255,208,0,0,0,0,191,240,0,63,248,0,0,0,7,255,128,0,15,255,0,0,0,47,254,0,0,2,255,224,0,1,255,244,0,0,0,191,253,0,31,255,208,0,0,0,31,255,208,127,253,255,255,255,255,253,255,244,47,208,255,255,255,255,252,47,240,14,0,255,255,255,255,252,7,192,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,3,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,128,1,85,85,86,253,85,85,85,0,0,0,0,1,252,0,0,0,0,0,0,144,1,252,0,112,0,0,0,2,253,1,252,2,253,0,0,0,7,252,1,252,2,255,128,0,0,31,240,1,252,0,127,224,0,0,191,192,1,252,0,31,248,0,2,255,0,1,252,0,3,255,0,31,252,0,1,252,0,0,255,128,63,240,1,6,252,0,0,63,224,15,128,11,255,252,0,0,31,128,1,0,3,255,248,0,0,5,0,0,0,3,255,144,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,35,35,59,37,1,253,0,0,36,0,5,0,0,0,0,0,0,127,0,15,208,0,0,0,0,0,255,0,31,192,0,0,0,0,1,253,0,63,128,0,0,0,0,3,252,0,127,64,0,0,0,0,7,248,0,255,0,0,0,0,0,15,240,0,255,255,255,255,248,0,31,208,2,255,255,255,255,248,0,63,192,3,255,255,255,255,248,0,191,192,15,245,254,85,85,80,0,255,192,31,208,254,0,0,0,3,255,192,63,192,254,0,0,0,11,255,192,191,64,254,0,0,0,31,255,193,255,0,254,0,0,0,63,255,195,252,0,254,0,0,0,127,255,199,248,0,255,255,255,224,63,47,192,240,0,255,255,255,224,29,47,192,0,0,255,255,255,224,4,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,255,255,255,240,0,47,192,0,0,255,255,255,240,0,47,192,0,0,255,255,255,240,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,128,0,0,254,0,0,0, + // 0x4f7f 使 + 127,79,35,36,68,37,1,252,0,0,56,0,0,42,0,0,0,0,0,191,0,0,63,64,0,0,0,0,254,0,0,63,64,0,0,0,2,252,0,0,63,64,0,0,0,3,251,255,255,255,255,255,244,0,11,243,255,255,255,255,255,244,0,15,227,255,255,255,255,255,244,0,63,192,0,0,127,64,0,0,0,127,128,0,0,63,64,0,0,0,255,128,0,0,63,64,0,0,3,255,128,255,255,255,255,255,208,11,255,128,255,255,255,255,255,208,47,255,128,255,255,255,255,255,208,191,255,128,252,0,63,64,15,208,255,111,128,252,0,63,64,15,208,127,47,128,252,0,63,64,15,208,60,47,128,252,0,63,64,15,208,16,47,128,252,0,63,64,15,208,0,47,128,255,255,255,255,255,208,0,47,128,255,255,255,255,255,208,0,47,128,255,255,255,255,255,208,0,47,128,0,0,127,0,0,0,0,47,128,189,0,190,0,0,0,0,47,128,127,0,254,0,0,0,0,47,128,47,193,253,0,0,0,0,47,128,15,242,252,0,0,0,0,47,128,3,255,248,0,0,0,0,47,128,0,255,240,0,0,0,0,47,128,0,127,248,0,0,0,0,47,128,1,255,255,144,0,0,0,47,128,31,255,255,254,64,0,0,47,130,255,248,31,255,255,148,0,47,143,255,208,1,255,255,244,0,47,131,254,0,0,11,255,224,0,47,130,144,0,0,0,26,192,0,0,0,0,0,0,0,0,0, + // 0x4f9b 供 + 155,79,35,35,59,37,1,253,0,0,96,0,168,0,10,128,0,0,0,254,0,253,0,31,192,0,0,1,253,0,253,0,31,192,0,0,2,252,0,253,0,31,192,0,0,3,248,0,253,0,31,192,0,0,11,240,0,253,0,31,192,0,0,15,224,0,253,0,31,192,0,0,47,192,0,253,0,31,192,0,0,127,129,255,255,255,255,255,240,0,255,1,255,255,255,255,255,240,2,255,1,255,255,255,255,255,240,7,255,0,85,254,85,111,213,80,15,255,0,0,253,0,31,192,0,63,255,0,0,253,0,31,192,0,255,255,0,0,253,0,31,192,0,191,127,0,0,253,0,31,192,0,61,63,0,0,253,0,31,192,0,36,63,0,0,253,0,31,192,0,0,63,0,0,253,0,31,192,0,0,63,1,85,254,85,111,213,80,0,63,7,255,255,255,255,255,244,0,63,7,255,255,255,255,255,244,0,63,7,255,255,255,255,255,244,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,185,0,7,64,0,0,63,0,0,254,0,47,192,0,0,63,0,3,252,0,15,240,0,0,63,0,11,244,0,7,252,0,0,63,0,47,224,0,2,254,0,0,63,0,191,192,0,0,191,64,0,63,2,255,0,0,0,63,192,0,63,11,253,0,0,0,15,240,0,63,2,244,0,0,0,11,208,0,63,0,80,0,0,0,2,0, + // 0x4fb5 侵 + 181,79,35,36,68,37,1,252,0,0,164,0,0,0,0,0,0,0,0,253,42,170,170,170,169,0,0,2,252,63,255,255,255,254,0,0,3,248,63,255,255,255,254,0,0,7,244,0,0,0,0,190,0,0,15,240,0,0,0,0,190,0,0,31,208,10,170,170,170,254,0,0,63,192,15,255,255,255,254,0,0,191,64,15,255,255,255,254,0,0,255,0,0,0,0,0,190,0,3,255,0,0,0,0,0,190,0,11,255,0,106,170,170,170,254,0,31,255,0,127,255,255,255,254,0,63,255,0,127,255,255,255,254,0,255,255,0,0,0,0,0,0,0,255,127,0,0,0,0,0,0,0,125,63,6,170,170,170,170,170,160,52,63,7,255,255,255,255,255,240,0,63,7,255,255,255,255,255,240,0,63,7,224,0,0,0,3,240,0,63,7,224,0,0,0,3,240,0,63,7,250,170,170,170,171,240,0,63,1,111,255,255,255,253,80,0,63,0,47,255,255,255,248,0,0,63,0,1,184,0,11,240,0,0,63,0,2,253,0,47,208,0,0,63,0,0,255,64,191,128,0,0,63,0,0,63,227,254,0,0,0,63,0,0,15,255,248,0,0,0,63,0,0,3,255,240,0,0,0,63,0,0,111,255,255,64,0,0,63,0,111,255,251,255,254,80,0,63,11,255,255,64,127,255,248,0,63,3,255,228,0,6,255,240,0,63,1,228,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x4fdd 保 + 221,79,35,35,59,37,1,253,0,0,32,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,63,255,255,255,255,64,0,1,253,63,255,255,255,255,64,0,3,252,63,255,255,255,255,64,0,7,244,63,64,0,0,63,64,0,15,240,63,64,0,0,63,64,0,47,208,63,64,0,0,63,64,0,63,192,63,64,0,0,63,64,0,255,128,63,64,0,0,63,64,2,255,128,63,64,0,0,63,64,7,255,128,63,255,255,255,255,64,15,255,128,63,255,255,255,255,64,63,255,128,63,255,255,255,255,64,255,239,128,0,0,63,64,0,0,127,47,128,0,0,63,64,0,0,61,47,128,0,0,63,64,0,0,20,47,128,0,0,63,64,0,0,0,47,135,255,255,255,255,255,240,0,47,135,255,255,255,255,255,240,0,47,135,255,255,255,255,255,240,0,47,128,0,7,255,244,0,0,0,47,128,0,15,255,252,0,0,0,47,128,0,47,255,254,0,0,0,47,128,0,191,191,127,128,0,0,47,128,1,254,63,111,208,0,0,47,128,7,252,63,79,244,0,0,47,128,47,240,63,67,253,0,0,47,128,191,208,63,65,255,64,0,47,135,255,64,63,64,127,224,0,47,159,253,0,63,64,31,252,0,47,139,244,0,63,64,7,244,0,47,131,192,0,63,64,1,208,0,47,128,0,0,63,64,0,0,0,47,64,0,0,63,0,0,0, + // 0x4fe1 信 + 225,79,35,35,59,37,1,253,0,0,32,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,11,255,255,255,252,0,0,1,253,11,255,255,255,252,0,0,3,252,11,255,255,255,252,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,211,255,255,255,255,255,248,0,63,131,255,255,255,255,255,248,0,255,131,255,255,255,255,255,244,2,255,128,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,31,255,128,15,255,255,255,254,0,63,255,128,15,255,255,255,255,0,255,239,128,15,255,255,255,255,0,191,47,128,0,0,0,0,0,0,61,47,128,0,0,0,0,0,0,56,47,128,0,0,0,0,0,0,0,47,128,15,255,255,255,254,0,0,47,128,15,255,255,255,254,0,0,47,128,10,170,170,170,170,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,234,170,170,255,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,128,0,0,63,0,0,26,64,47,128,0,0,42,0, + // 0x503c 值 + 60,80,35,35,59,37,1,253,0,0,80,0,0,58,64,0,0,0,0,253,0,0,63,64,0,0,0,1,252,0,0,127,0,0,0,0,3,248,0,0,127,0,0,0,0,3,246,255,255,255,255,255,208,0,11,242,255,255,255,255,255,208,0,15,210,255,255,255,255,255,208,0,47,192,0,0,252,0,0,0,0,127,64,0,1,252,0,0,0,0,255,0,0,1,248,0,0,0,2,255,0,63,255,255,255,253,0,3,255,0,63,255,255,255,253,0,15,255,0,63,170,170,170,253,0,47,255,0,63,0,0,0,253,0,127,255,0,63,0,0,0,253,0,191,191,0,63,149,85,85,253,0,62,127,0,63,255,255,255,253,0,28,127,0,63,255,255,255,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,149,85,85,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,149,85,85,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,31,255,255,255,255,255,244,0,127,31,255,255,255,255,255,244,0,127,31,255,255,255,255,255,244,0,127,0,0,0,0,0,0,0, + // 0x503e 倾 + 62,80,35,36,68,37,1,252,0,6,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,192,0,47,255,255,255,244,0,31,192,0,47,255,255,255,244,0,63,139,208,47,255,255,255,244,0,63,11,208,0,0,254,0,0,0,191,11,208,0,0,253,0,0,0,254,11,208,0,1,252,0,0,1,253,11,208,0,2,248,0,0,3,252,11,208,3,255,255,255,192,7,252,11,208,3,255,255,255,192,15,252,11,255,227,255,255,255,192,47,252,11,255,227,240,0,31,192,63,252,11,255,227,240,84,31,192,255,252,11,208,3,240,188,31,192,254,252,11,208,3,240,188,31,192,188,252,11,208,3,240,188,31,192,52,252,11,208,3,240,188,31,192,16,252,11,208,3,240,188,31,192,0,252,11,208,3,240,188,31,192,0,252,11,208,3,240,188,31,192,0,252,11,208,3,240,188,31,192,0,252,11,208,147,240,252,31,192,0,252,11,219,211,240,252,31,192,0,252,15,255,211,240,252,31,192,0,252,31,255,67,241,248,31,192,0,252,47,248,2,146,244,5,64,0,252,15,128,0,3,242,64,0,0,252,9,0,0,15,231,224,0,0,252,0,0,0,47,203,252,0,0,252,0,0,0,191,65,255,64,0,252,0,0,3,254,0,127,208,0,252,0,0,47,244,0,15,244,0,252,0,0,127,192,0,3,224,0,252,0,0,29,0,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,35,35,59,37,1,253,0,1,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,243,255,255,255,255,255,244,0,11,227,255,255,255,255,255,244,0,15,211,255,255,255,255,255,244,0,47,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,0,106,170,170,170,170,128,0,255,0,191,255,255,255,255,192,1,254,0,191,255,255,255,255,192,3,254,0,189,0,0,0,31,192,11,254,0,189,0,0,0,31,192,31,254,0,189,0,0,0,31,192,63,254,0,191,170,170,170,191,192,191,254,0,191,255,255,255,255,192,255,190,0,191,255,255,255,255,192,188,190,0,253,0,0,0,0,0,52,190,0,253,0,0,0,0,0,16,190,0,255,170,170,170,170,144,0,190,0,255,255,255,255,255,224,0,190,0,255,255,255,255,255,224,0,190,0,255,208,244,46,7,224,0,190,1,255,208,244,46,7,224,0,190,2,255,208,244,46,7,224,0,190,3,255,208,244,46,7,224,0,190,3,251,255,255,255,255,224,0,190,7,251,255,255,255,255,224,0,190,11,235,250,254,191,175,224,0,190,15,219,208,244,46,7,224,0,190,47,203,208,244,46,7,224,0,190,127,75,208,244,46,7,224,0,190,191,11,208,244,46,7,224,0,190,45,11,208,244,46,191,224,0,190,4,11,208,244,46,127,208,0,126,0,11,192,164,41,62,64, + // 0x505c 停 + 92,80,35,35,59,37,1,253,0,0,80,0,0,42,0,0,0,0,0,253,0,0,127,0,0,0,0,1,252,0,0,127,0,0,0,0,3,252,0,0,127,0,0,0,0,7,247,255,255,255,255,255,244,0,15,243,255,255,255,255,255,244,0,31,211,255,255,255,255,255,244,0,63,192,0,0,0,0,0,0,0,127,64,5,85,85,85,84,0,0,255,0,31,255,255,255,254,0,3,255,0,31,255,255,255,254,0,7,255,0,31,128,0,0,254,0,31,255,0,31,128,0,0,254,0,63,255,0,31,213,85,85,254,0,255,255,0,31,255,255,255,254,0,255,127,0,31,255,255,255,254,0,124,63,0,0,0,0,0,0,0,52,63,0,0,0,0,0,0,0,0,63,15,255,255,255,255,255,248,0,63,15,255,255,255,255,255,248,0,63,15,250,170,170,170,171,248,0,63,15,192,0,0,0,1,248,0,63,15,192,0,0,0,1,248,0,63,15,195,255,255,255,245,248,0,63,15,195,255,255,255,245,248,0,63,0,3,255,255,255,240,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,1,255,255,0,0,0,0,63,0,0,255,254,0,0,0,0,63,0,0,191,244,0,0,0, + // 0x50a8 储 + 168,80,35,35,59,37,1,253,0,11,64,0,0,15,192,0,0,0,15,208,0,0,15,192,3,144,0,15,193,0,0,15,192,11,240,0,31,143,192,0,15,192,15,208,0,63,79,240,31,255,255,223,192,0,63,3,252,47,255,255,255,128,0,190,0,254,47,255,255,255,0,0,252,0,127,0,15,192,253,0,1,252,0,40,0,15,194,252,0,3,252,0,0,0,15,199,244,0,7,252,0,0,0,15,207,224,0,15,252,0,0,191,255,255,255,244,47,252,255,248,191,255,255,255,244,127,252,255,248,191,255,255,255,244,255,252,255,248,0,11,248,0,0,189,252,22,248,0,47,240,0,0,56,252,1,248,0,191,192,0,0,32,252,1,248,2,255,64,0,0,0,252,1,248,15,255,255,255,128,0,252,1,248,191,255,255,255,192,0,252,1,249,255,255,255,255,192,0,252,1,248,191,248,0,15,192,0,252,1,248,56,248,0,15,192,0,252,1,248,0,248,0,15,192,0,252,1,248,0,254,170,175,192,0,252,1,248,0,255,255,255,192,0,252,1,248,16,255,255,255,192,0,252,1,249,240,248,0,15,192,0,252,1,255,244,248,0,15,192,0,252,3,255,224,248,0,15,192,0,252,11,255,0,255,255,255,192,0,252,7,244,0,255,255,255,192,0,252,3,192,0,255,255,255,192,0,252,0,0,0,248,0,15,192,0,248,0,0,0,248,0,10,128, + // 0x50cf 像 + 207,80,35,35,59,37,1,253,0,2,64,0,228,0,0,0,0,0,3,244,2,252,0,0,0,0,0,7,240,3,254,170,160,0,0,0,15,224,15,255,255,253,0,0,0,15,208,47,255,255,253,0,0,0,47,192,127,64,3,248,0,0,0,63,129,254,0,15,240,0,0,0,127,7,253,85,111,229,85,64,0,255,47,255,255,255,255,255,192,2,254,63,255,255,255,255,255,192,3,254,11,248,0,190,0,15,192,11,254,2,248,0,190,0,15,192,31,254,2,248,0,190,0,15,192,63,254,2,249,85,190,85,95,192,255,254,2,255,255,255,255,255,192,255,190,2,255,255,255,255,255,192,188,190,0,0,127,227,240,0,0,52,190,0,3,255,66,244,2,64,16,190,0,127,255,192,252,11,224,0,190,11,255,159,240,252,47,240,0,190,15,253,7,248,190,255,128,0,190,3,128,47,252,127,253,0,0,190,0,1,255,190,63,240,0,0,190,0,31,248,63,47,192,0,0,190,2,255,208,63,79,208,0,0,190,15,253,1,255,139,240,0,0,190,7,208,11,255,195,248,0,0,190,1,0,127,239,194,253,0,0,190,0,2,255,79,192,255,64,0,190,0,47,248,15,192,127,208,0,190,6,255,208,47,192,47,244,0,190,47,254,0,127,64,11,240,0,190,15,224,255,255,0,1,192,0,190,5,0,127,252,0,0,0,0,126,0,0,127,160,0,0,0, + // 0x5145 充 + 69,81,34,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,244,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,11,244,0,4,0,0,0,0,0,15,240,0,63,0,0,0,0,0,47,192,0,191,192,0,0,0,0,63,128,0,47,244,0,0,0,0,191,0,0,11,253,0,0,0,0,254,0,0,1,255,64,0,10,171,255,175,255,255,255,208,0,31,255,255,255,255,255,255,244,0,15,255,255,255,255,255,255,252,0,15,255,254,170,149,80,2,255,0,0,0,0,0,0,0,0,253,0,0,0,15,208,2,252,0,48,0,0,0,31,208,2,252,0,0,0,0,0,31,208,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,127,64,2,252,0,4,0,0,0,255,0,2,252,0,11,128,0,1,255,0,2,252,0,11,208,0,3,253,0,2,252,0,15,208,0,31,248,0,2,252,0,15,208,0,191,240,0,2,252,0,15,192,27,255,192,0,1,253,64,111,192,255,254,0,0,1,255,255,255,128,127,224,0,0,0,255,255,255,0,62,0,0,0,0,47,255,249,0,0,0,0,0,0,0,0,0,0, + // 0x5148 先 + 72,81,33,36,68,37,2,252,0,0,0,3,240,0,0,0,0,0,7,224,3,244,0,0,0,0,0,11,240,3,244,0,0,0,0,0,15,224,3,244,0,0,0,0,0,15,208,3,244,0,0,0,0,0,47,213,87,245,85,85,80,0,0,63,255,255,255,255,255,240,0,0,127,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,1,253,0,3,244,0,0,0,0,3,252,0,3,244,0,0,0,0,7,248,0,3,244,0,0,0,0,15,240,0,3,244,0,0,0,0,7,208,0,3,244,0,0,0,0,0,64,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,21,85,111,213,87,253,85,85,64,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,63,128,2,252,0,0,0,0,0,63,64,2,252,0,0,0,0,0,191,0,2,252,0,0,0,0,0,255,0,2,252,0,0,0,0,2,253,0,2,252,0,14,64,0,3,252,0,2,252,0,15,192,0,15,244,0,2,252,0,15,192,0,127,240,0,2,252,0,31,192,2,255,192,0,2,252,0,47,128,111,255,0,0,1,255,255,255,128,255,248,0,0,0,255,255,255,0,63,208,0,0,0,127,255,253,0,29,0,0,0,0,0,85,64,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,35,36,68,37,1,252,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,64,0,0,109,0,1,252,0,2,248,0,0,191,0,1,252,0,3,252,0,0,63,128,1,252,0,7,248,0,0,47,192,1,252,0,15,240,0,0,15,224,1,252,0,15,224,0,0,11,240,1,252,0,47,192,0,0,3,248,1,252,0,63,128,0,0,3,252,1,252,0,255,0,0,0,1,253,1,252,1,253,0,0,0,0,228,1,252,0,104,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,21,85,91,245,85,255,85,85,80,0,0,11,240,0,191,0,0,0,0,0,11,240,0,191,0,0,0,0,0,15,240,0,191,0,0,0,0,0,15,224,0,191,0,0,0,0,0,15,208,0,191,0,0,0,0,0,31,208,0,191,0,0,0,0,0,63,192,0,191,0,0,0,0,0,63,128,0,191,0,1,0,0,0,255,64,0,191,0,2,208,0,1,255,0,0,191,0,3,244,0,7,253,0,0,191,0,3,244,0,31,248,0,0,191,0,3,244,0,255,240,0,0,191,0,3,240,27,255,192,0,0,191,64,11,240,127,254,0,0,0,127,255,255,224,47,240,0,0,0,63,255,255,192,14,0,0,0,0,11,255,254,64,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,34,33,41,37,2,253,0,1,85,85,84,0,0,0,0,0,7,255,255,252,0,0,0,0,0,7,255,255,252,0,0,0,0,0,7,255,255,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,10,253,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,47,255,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,64,0,0,0,0,0,0,191,191,128,0,0,0,0,0,0,255,47,192,0,0,0,0,0,0,255,31,208,0,0,0,0,0,2,253,15,240,0,0,0,0,0,3,252,11,244,0,0,0,0,0,11,248,7,248,0,0,0,0,0,15,240,3,253,0,0,0,0,0,47,224,1,255,0,0,0,0,0,127,192,0,255,128,0,0,0,0,255,64,0,127,208,0,0,0,2,255,0,0,47,240,0,0,0,11,253,0,0,15,252,0,0,0,47,248,0,0,3,255,0,0,0,191,224,0,0,1,255,192,0,2,255,192,0,0,0,127,244,0,31,255,0,0,0,0,47,254,0,191,252,0,0,0,0,7,255,208,255,224,0,0,0,0,1,255,192,63,64,0,0,0,0,0,63,0,8,0,0,0,0,0,0,8,0, + // 0x5168 全 + 104,81,35,34,50,37,1,254,0,0,0,3,253,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,255,3,254,0,0,0,0,0,15,252,1,255,128,0,0,0,0,63,240,0,127,240,0,0,0,0,255,208,0,31,252,0,0,0,7,255,64,0,7,255,64,0,0,31,253,0,0,0,255,224,0,0,191,240,0,0,0,63,253,0,7,255,192,0,0,0,11,255,192,63,254,0,0,0,0,2,255,244,127,247,255,255,255,255,255,175,240,31,71,255,255,255,255,255,71,208,8,7,255,255,255,255,255,64,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,253,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192, + // 0x5171 共 + 113,81,33,35,59,37,2,253,0,0,169,0,0,26,128,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,5,85,255,85,85,127,213,85,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,85,85,255,85,85,127,213,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,45,0,0,0,0,0,191,192,0,255,128,0,0,0,2,255,64,0,127,240,0,0,0,15,253,0,0,15,253,0,0,0,63,244,0,0,3,255,128,0,1,255,208,0,0,0,191,240,0,15,255,0,0,0,0,31,252,0,127,248,0,0,0,0,7,255,0,47,208,0,0,0,0,0,254,0,6,0,0,0,0,0,0,48,0, + // 0x5173 关 + 115,81,26,36,252,37,5,252,0,4,0,0,1,144,0,0,125,0,0,3,252,0,0,255,0,0,3,252,0,0,63,192,0,11,244,0,0,47,208,0,15,224,0,0,15,240,0,47,192,0,0,7,244,0,63,64,0,0,3,224,0,47,0,0,1,86,85,85,85,85,0,7,255,255,255,255,255,64,7,255,255,255,255,255,64,7,255,255,255,255,255,64,0,0,1,252,0,0,0,0,0,1,252,0,0,0,0,0,1,252,0,0,0,0,0,1,252,0,0,0,0,0,1,252,0,0,0,0,0,2,253,0,0,0,47,255,255,255,255,255,224,47,255,255,255,255,255,224,47,255,255,255,255,255,224,0,0,3,255,0,0,0,0,0,7,255,128,0,0,0,0,11,255,192,0,0,0,0,15,255,224,0,0,0,0,47,219,240,0,0,0,0,127,195,252,0,0,0,0,255,66,255,0,0,0,7,254,0,255,192,0,0,31,248,0,63,244,0,1,255,224,0,15,254,0,27,255,128,0,3,255,224,191,253,0,0,0,255,240,63,224,0,0,0,31,208,14,0,0,0,0,1,128,0,0,0,0,0,0,0, + // 0x5177 具 + 119,81,33,34,50,37,2,253,0,26,170,170,170,170,170,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,234,170,170,170,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,234,170,170,170,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,234,170,170,170,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,47,64,0,62,0,0,0,0,2,255,224,1,255,228,0,0,0,111,255,128,0,191,255,128,0,11,255,248,0,0,7,255,248,0,191,255,128,0,0,0,111,255,128,63,244,0,0,0,0,2,255,0,14,0,0,0,0,0,0,56,0, + // 0x5197 冗 + 151,81,34,33,41,37,2,253,21,85,85,85,85,85,85,85,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,42,64,191,255,255,255,128,106,0,0,0,191,255,255,255,128,0,0,0,0,191,255,255,255,128,0,0,0,0,191,0,0,127,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,1,253,0,0,63,128,4,0,0,3,252,0,0,63,128,15,64,0,7,248,0,0,63,128,15,224,0,15,240,0,0,63,128,15,208,0,63,224,0,0,63,128,15,208,1,255,192,0,0,63,128,15,192,11,255,0,0,0,63,192,31,192,191,252,0,0,0,63,255,255,192,255,240,0,0,0,47,255,255,64,63,64,0,0,0,15,255,254,0,36,0,0,0,0,0,85,80,0, + // 0x51b7 冷 + 183,81,35,35,59,37,1,253,0,0,0,0,2,248,0,0,0,0,0,0,0,7,254,0,0,0,7,0,0,0,15,255,64,0,0,15,208,0,0,47,255,208,0,0,63,248,0,0,191,143,240,0,0,11,255,0,1,255,7,252,0,0,2,255,192,3,252,2,255,0,0,0,127,208,15,244,0,191,208,0,0,31,128,127,208,0,47,244,0,0,6,1,255,128,0,11,254,0,0,0,7,254,0,0,2,255,208,0,0,47,251,255,255,254,127,248,0,1,255,227,255,255,254,31,244,0,0,255,67,255,255,254,3,224,0,0,124,0,0,0,0,0,128,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,66,255,255,255,255,255,0,0,7,210,255,255,255,255,255,0,0,15,242,255,255,255,255,255,0,0,47,208,0,31,208,0,191,0,0,63,192,0,31,192,0,191,0,0,255,64,0,31,192,0,191,0,1,254,0,0,31,192,0,191,0,3,252,0,0,31,192,0,191,0,11,248,0,0,31,192,0,191,0,31,240,0,0,31,192,0,191,0,63,208,0,0,31,192,255,254,0,127,192,0,0,31,192,191,253,0,31,64,0,0,31,192,127,248,0,6,0,0,0,31,192,20,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0, + // 0x51c6 准 + 198,81,35,35,59,37,1,253,0,0,0,0,164,0,25,0,0,0,0,0,0,254,0,63,192,0,2,0,0,1,252,0,63,64,0,11,224,0,3,248,0,127,0,0,31,252,0,7,244,0,254,0,0,7,255,64,15,240,0,252,0,0,0,255,208,31,208,2,252,0,0,0,47,240,63,255,255,255,255,224,0,11,192,127,255,255,255,255,224,0,2,64,255,255,255,255,255,224,0,0,2,255,192,7,240,0,0,0,0,7,255,128,7,240,0,0,0,0,15,255,128,7,240,0,0,0,0,63,255,128,7,240,0,0,0,0,191,239,192,7,240,0,0,0,0,63,111,255,255,255,255,192,0,0,14,47,255,255,255,255,192,0,0,0,47,255,255,255,255,192,0,0,0,47,128,7,240,0,0,0,3,0,47,128,7,240,0,0,0,11,192,47,128,7,240,0,0,0,31,224,47,128,7,240,0,0,0,63,192,47,255,255,255,255,192,0,191,64,47,255,255,255,255,192,0,255,0,47,255,255,255,255,192,3,253,0,47,192,7,240,0,0,7,248,0,47,128,7,240,0,0,15,240,0,47,128,7,240,0,0,63,208,0,47,128,7,240,0,0,127,192,0,47,128,7,240,0,0,47,64,0,47,255,255,255,255,244,10,0,0,47,255,255,255,255,244,0,0,0,47,255,255,255,255,244,0,0,0,47,192,0,0,0,0,0,0,0,31,128,0,0,0,0, + // 0x51fa 出 + 250,81,29,35,24,37,4,253,0,0,0,106,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,5,64,0,127,0,0,84,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,213,85,191,85,85,254,0,31,255,255,255,255,255,254,0,31,255,255,255,255,255,254,0,31,255,255,255,255,255,254,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,189,0,0,127,0,0,31,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,85,85,85,85,85,111,192,254,0,0,0,0,0,47,192,190,0,0,0,0,0,31,192, + // 0x51fb 击 + 251,81,33,35,59,37,2,253,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,85,85,87,249,85,85,80,0,3,255,255,255,255,255,255,244,0,3,255,255,255,255,255,255,244,0,3,255,255,255,255,255,255,244,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,85,85,85,87,249,85,85,85,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,84,0,3,244,0,5,64,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,252,0,3,244,0,15,224,0,2,253,85,87,249,85,95,224,0,2,255,255,255,255,255,255,224,0,2,255,255,255,255,255,255,224,0,2,255,255,255,255,255,255,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0, + // 0x5206 分 + 6,82,35,35,59,37,1,252,0,0,11,208,0,27,128,0,0,0,0,15,240,0,63,192,0,0,0,0,47,224,0,31,224,0,0,0,0,63,192,0,15,244,0,0,0,0,191,128,0,7,252,0,0,0,1,255,0,0,2,255,0,0,0,3,254,0,0,0,255,128,0,0,11,252,0,0,0,127,208,0,0,31,240,0,0,0,47,244,0,0,127,224,0,0,0,15,252,0,1,255,128,0,0,0,3,255,0,7,255,0,0,0,0,1,255,208,47,252,0,0,0,0,0,127,244,191,255,255,255,255,255,255,239,248,127,207,255,255,255,255,255,203,224,31,15,255,255,255,255,255,194,128,4,5,85,127,213,85,127,192,0,0,0,0,63,128,0,47,192,0,0,0,0,127,64,0,47,192,0,0,0,0,191,0,0,63,192,0,0,0,0,191,0,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,1,254,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,7,252,0,0,63,64,0,0,0,15,244,0,0,63,64,0,0,0,47,240,0,0,127,64,0,0,0,191,192,0,0,127,0,0,0,3,255,64,0,0,191,0,0,0,31,254,0,0,0,255,0,0,1,255,248,0,37,87,254,0,0,15,255,208,0,47,255,253,0,0,3,254,0,0,31,255,248,0,0,1,224,0,0,15,255,144,0,0,0,0,0,0,0,0,0,0,0, + // 0x5207 切 + 7,82,34,34,50,37,1,253,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,15,255,255,255,255,240,0,191,0,15,255,255,255,255,224,0,191,0,15,255,255,255,255,224,0,191,0,5,85,254,85,95,224,0,191,0,0,0,253,0,15,224,0,191,0,5,0,252,0,15,224,0,191,22,255,0,252,0,15,224,0,191,255,255,1,252,0,15,224,111,255,255,255,1,252,0,15,224,191,255,254,64,1,252,0,15,224,191,255,64,0,1,252,0,15,224,121,191,0,0,1,252,0,15,208,0,191,0,0,2,252,0,15,208,0,191,0,0,2,248,0,15,208,0,191,0,0,3,248,0,15,208,0,191,0,0,3,244,0,15,208,0,191,0,96,3,244,0,31,208,0,191,0,125,7,240,0,31,192,0,191,0,190,11,240,0,31,192,0,191,0,189,15,224,0,31,192,0,127,0,253,31,208,0,31,192,0,127,255,252,63,192,0,47,192,0,63,255,248,127,128,0,47,192,0,31,255,240,255,0,0,63,192,0,0,85,2,254,0,0,63,128,0,0,0,7,252,0,0,63,128,0,0,0,15,244,0,0,127,64,0,0,0,127,224,0,0,255,0,0,0,2,255,192,11,255,255,0,0,0,3,255,0,3,255,253,0,0,0,0,248,0,3,255,248,0,0,0,0,96,0,1,85,64,0, + // 0x521b 创 + 27,82,33,35,59,37,1,253,0,0,10,0,0,0,0,5,64,0,0,31,208,0,0,0,47,192,0,0,63,192,0,0,0,47,192,0,0,127,208,0,0,0,47,192,0,0,255,244,0,6,144,47,192,0,2,255,253,0,11,224,47,192,0,3,252,255,0,11,224,47,192,0,15,240,63,192,11,224,47,192,0,47,208,31,240,11,224,47,192,0,191,128,11,248,11,224,47,192,2,255,0,2,253,11,224,47,192,11,252,0,0,255,11,224,47,192,47,244,0,0,127,203,224,47,192,191,208,0,0,47,11,224,47,192,63,255,255,255,248,11,224,47,192,12,191,255,255,240,11,224,47,192,0,191,255,255,240,11,224,47,192,0,190,0,7,240,11,224,47,192,0,190,0,7,240,11,224,47,192,0,190,0,11,224,11,224,47,192,0,190,0,11,224,11,224,47,192,0,190,0,15,224,11,224,47,192,0,190,0,15,208,11,224,47,192,0,190,15,191,192,11,224,47,192,0,190,15,255,128,11,224,47,192,0,190,11,254,0,1,64,47,192,0,190,0,0,20,0,0,47,192,0,190,0,0,47,64,0,47,192,0,190,0,0,47,64,0,47,192,0,190,0,0,63,64,0,47,192,0,191,0,0,127,0,0,47,192,0,127,255,255,255,1,80,127,192,0,63,255,255,253,3,255,255,128,0,11,255,255,228,1,255,255,0,0,0,0,0,0,0,255,232,0, + // 0x521d 初 + 29,82,34,35,59,37,1,253,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,11,255,255,255,255,224,0,15,208,11,255,255,255,255,224,0,15,208,11,255,255,255,255,224,0,15,224,1,85,255,85,95,224,63,255,255,224,0,254,0,15,224,63,255,255,244,0,254,0,15,224,63,255,255,240,0,254,0,15,224,0,0,15,208,0,253,0,15,224,0,0,47,192,0,253,0,15,224,0,0,63,64,0,253,0,15,224,0,0,255,0,0,253,0,15,224,0,1,252,40,1,252,0,15,208,0,3,248,126,1,252,0,15,208,0,15,240,253,1,252,0,15,208,0,47,250,244,2,252,0,15,208,0,191,255,208,3,248,0,15,208,2,255,255,192,3,248,0,15,208,11,255,255,224,3,244,0,15,208,47,255,219,248,7,240,0,31,192,191,223,210,252,15,240,0,31,192,127,79,208,244,15,224,0,31,192,45,15,208,32,47,192,0,31,192,0,15,208,0,63,192,0,47,192,0,15,208,0,191,64,0,47,192,0,15,208,0,255,0,0,63,192,0,15,208,3,253,0,0,63,128,0,15,208,11,252,0,0,63,64,0,15,208,47,240,0,0,255,64,0,15,208,255,208,11,255,255,0,0,15,208,255,128,3,255,253,0,0,15,208,62,0,3,255,248,0,0,15,208,4,0,1,85,64,0, + // 0x522b 别 + 43,82,33,35,59,37,1,252,0,0,0,0,0,0,0,47,192,11,255,255,255,208,0,0,47,192,11,255,255,255,208,0,0,47,192,11,255,255,255,208,0,0,47,192,11,224,0,15,208,31,192,47,192,11,224,0,15,208,31,192,47,192,11,224,0,15,208,31,192,47,192,11,224,0,15,208,31,192,47,192,11,224,0,15,208,31,192,47,192,11,224,0,15,208,31,192,47,192,11,255,255,255,208,31,192,47,192,11,255,255,255,208,31,192,47,192,11,255,255,255,208,31,192,47,192,0,0,0,0,0,31,192,47,192,0,2,248,0,0,31,192,47,192,0,2,244,0,0,31,192,47,192,0,3,244,0,0,31,192,47,192,63,255,255,255,240,31,192,47,192,63,255,255,255,240,31,192,47,192,63,255,255,255,240,31,192,47,192,0,7,240,11,240,31,192,47,192,0,7,240,11,240,31,192,47,192,0,11,224,11,240,31,192,47,192,0,15,224,11,224,31,192,47,192,0,15,208,11,224,5,64,47,192,0,31,192,15,224,0,0,47,192,0,63,128,15,224,0,0,47,192,0,127,0,15,208,0,0,47,192,0,255,0,15,208,0,0,47,192,3,252,0,47,192,0,0,47,192,15,244,63,255,192,0,85,127,128,127,224,31,255,64,0,255,255,128,63,128,15,253,0,0,255,255,0,13,0,0,0,0,0,191,248,0,0,0,0,0,0,0,0,0,0, + // 0x5230 到 + 48,82,33,34,50,37,1,253,0,0,0,0,0,0,0,26,128,0,0,0,0,0,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,63,64,31,192,0,15,240,0,0,63,64,31,192,0,15,224,4,0,63,64,31,192,0,31,192,127,0,63,64,31,192,0,47,192,63,128,63,64,31,192,0,63,64,31,208,63,64,31,192,0,127,0,11,240,63,64,31,192,21,255,255,255,252,63,64,31,192,63,255,255,255,253,63,64,31,192,63,255,255,255,255,63,64,31,192,63,169,84,0,63,63,64,31,192,0,0,127,0,24,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,15,255,255,255,248,63,64,31,192,15,255,255,255,248,63,64,31,192,15,255,255,255,248,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,21,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,22,190,0,0,31,192,0,5,191,255,255,0,0,31,192,111,255,255,255,255,0,0,31,192,127,255,255,255,233,0,149,127,192,63,255,250,80,0,0,255,255,192,62,148,0,0,0,0,255,255,64,0,0,0,0,0,0,191,248,0, + // 0x5236 制 + 54,82,34,35,59,37,1,253,0,0,31,128,0,0,0,5,64,0,248,47,128,0,0,0,15,208,2,252,47,128,0,0,0,15,208,3,248,47,128,0,1,248,15,208,3,244,47,128,0,2,248,15,208,7,255,255,255,254,2,248,15,208,11,255,255,255,254,2,248,15,208,15,255,255,255,254,2,248,15,208,47,192,47,128,0,2,248,15,208,63,128,47,128,0,2,248,15,208,127,0,47,128,0,2,248,15,208,10,0,47,128,0,2,248,15,208,127,255,255,255,255,194,248,15,208,127,255,255,255,255,194,248,15,208,127,255,255,255,255,194,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,11,255,255,255,255,2,248,15,208,11,255,255,255,255,2,248,15,208,11,255,255,255,255,2,248,15,208,11,208,47,128,63,2,248,15,208,11,208,47,128,63,2,248,15,208,11,208,47,128,63,1,164,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,143,255,0,0,15,208,11,208,47,143,254,0,0,15,208,11,208,47,139,248,0,21,111,192,0,0,47,128,0,0,63,255,192,0,0,47,128,0,0,63,255,128,0,0,31,128,0,0,47,249,0, + // 0x5237 刷 + 55,82,33,35,59,37,1,253,0,0,0,0,0,0,0,5,64,0,0,0,0,0,0,0,15,192,3,255,255,255,255,0,0,15,192,3,255,255,255,255,1,64,15,192,3,255,255,255,255,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,255,255,255,255,7,224,15,192,3,255,255,255,255,7,224,15,192,3,255,255,255,255,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,251,255,255,255,71,224,15,192,3,255,255,255,255,71,224,15,192,7,255,255,255,255,71,224,15,192,7,239,193,248,31,71,224,15,192,7,239,193,248,31,71,224,15,192,7,239,193,248,31,71,224,15,192,11,239,193,248,31,71,224,15,192,11,223,193,248,31,71,224,15,192,15,223,193,248,31,71,224,15,192,15,207,193,248,31,65,80,15,192,15,207,193,248,31,64,0,15,192,31,207,193,248,31,64,0,15,192,31,143,193,251,255,64,0,15,192,63,79,193,249,255,0,0,15,192,63,15,193,248,164,0,0,15,192,190,0,1,248,0,0,85,111,192,189,0,1,248,0,0,127,255,192,28,0,1,248,0,0,63,255,64,0,0,1,248,0,0,47,249,0, + // 0x5272 割 + 114,82,32,35,24,37,2,253,0,0,252,0,0,0,0,21,0,0,252,0,0,0,0,63,0,0,252,0,0,0,0,63,170,170,255,170,168,0,0,63,255,255,255,255,253,47,128,63,255,255,255,255,253,47,128,63,252,0,0,0,253,47,128,63,252,0,252,0,253,47,128,63,252,0,252,0,253,47,128,63,254,170,254,170,253,47,128,63,15,255,255,255,208,47,128,63,15,255,255,255,208,47,128,63,0,0,252,0,0,47,128,63,0,0,252,0,0,47,128,63,15,255,255,255,192,47,128,63,15,255,255,255,192,47,128,63,5,85,254,85,64,47,128,63,0,0,252,0,0,47,128,63,0,0,252,0,0,47,128,63,255,255,255,255,252,47,128,63,255,255,255,255,252,47,128,63,170,170,170,170,168,47,128,63,0,0,0,0,0,47,128,63,6,170,170,170,128,47,128,63,15,255,255,255,208,47,128,63,15,255,255,255,208,0,0,63,15,192,0,15,208,0,0,63,15,192,0,15,208,0,0,63,15,192,0,15,208,0,0,63,15,192,0,15,208,0,0,63,15,234,170,175,208,0,0,63,15,255,255,255,208,2,170,255,15,255,255,255,208,2,255,255,15,192,0,15,208,1,255,253,11,192,0,5,64,0,255,228, + // 0x529b 力 + 155,82,32,35,24,37,2,253,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,63,255,255,255,255,255,255,254,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,26,170,170,191,170,170,170,253,0,0,0,191,0,0,0,253,0,0,0,191,0,0,1,253,0,0,0,255,0,0,1,252,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,1,253,0,0,2,252,0,0,3,252,0,0,2,252,0,0,3,252,0,0,2,252,0,0,11,248,0,0,3,252,0,0,15,240,0,0,3,248,0,0,31,224,0,0,3,248,0,0,63,208,0,0,3,248,0,0,191,192,0,0,3,244,0,1,255,0,0,0,7,244,0,7,254,0,0,0,11,240,0,15,252,0,0,0,11,240,0,63,240,0,0,0,15,240,1,255,208,0,0,0,31,224,11,255,64,0,0,0,63,208,63,253,0,0,15,255,255,192,191,240,0,0,7,255,255,64,47,128,0,0,3,255,253,0,9,0,0,0,1,85,64,0, + // 0x529f 功 + 159,82,34,34,50,37,1,253,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,63,255,255,244,0,127,0,0,0,63,255,255,244,0,127,0,0,0,63,255,255,244,0,127,0,0,0,0,15,208,1,85,191,85,85,64,0,15,208,3,255,255,255,255,224,0,15,208,3,255,255,255,255,224,0,15,208,3,255,255,255,255,224,0,15,208,0,0,191,0,15,224,0,15,208,0,0,254,0,15,208,0,15,208,0,0,254,0,15,208,0,15,208,0,0,253,0,15,208,0,15,208,0,0,253,0,15,208,0,15,208,0,0,252,0,15,208,0,15,208,0,1,252,0,15,208,0,15,208,0,2,252,0,15,192,0,15,208,0,3,248,0,15,192,0,15,209,188,3,244,0,31,192,0,15,255,252,7,240,0,31,192,0,111,255,253,15,240,0,31,192,111,255,255,228,31,224,0,47,192,127,255,244,0,63,192,0,47,192,63,249,0,0,191,128,0,47,192,61,0,0,1,255,0,0,63,128,0,0,0,3,254,0,0,63,128,0,0,0,15,252,0,0,127,64,0,0,0,127,240,0,0,255,0,0,0,3,255,192,15,255,255,0,0,0,3,255,0,7,255,253,0,0,0,0,248,0,3,255,240,0,0,0,0,80,0,0,20,0,0, + // 0x52a0 加 + 160,82,33,36,68,37,1,252,0,5,64,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,85,85,85,64,0,15,208,0,0,255,255,255,192,0,15,208,0,0,255,255,255,192,63,255,255,255,208,255,255,255,192,63,255,255,255,208,252,0,47,192,63,255,255,255,208,252,0,47,192,21,111,213,95,208,252,0,47,192,0,31,192,15,208,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,47,192,15,192,252,0,47,192,0,47,128,15,192,252,0,47,192,0,63,128,15,192,252,0,47,192,0,63,64,31,192,252,0,47,192,0,63,64,31,192,252,0,47,192,0,63,0,31,192,252,0,47,192,0,127,0,31,192,252,0,47,192,0,191,0,31,192,252,0,47,192,0,254,0,31,192,252,0,47,192,1,253,0,47,192,252,0,47,192,2,252,0,47,192,252,0,47,192,3,252,0,47,128,252,0,47,192,7,244,0,63,128,255,255,255,192,15,240,0,63,64,255,255,255,192,31,224,0,191,64,255,255,255,192,63,192,255,255,0,253,85,127,192,191,128,191,254,0,252,0,47,192,47,0,191,248,0,252,0,47,128,8,0,21,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x52a8 动 + 168,82,33,35,59,37,2,253,0,0,0,0,0,5,64,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,47,255,255,254,0,31,192,0,0,47,255,255,254,0,31,192,0,0,47,255,255,254,0,31,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,21,111,213,85,0,0,0,0,0,127,255,255,255,192,0,0,0,0,127,255,255,255,192,0,0,0,0,127,255,255,255,192,255,255,255,255,0,47,128,47,192,255,255,255,255,0,63,128,47,128,255,255,255,255,0,63,64,47,128,0,127,64,0,0,63,64,47,128,0,127,0,0,0,63,64,47,128,0,191,0,0,0,63,0,63,128,0,253,1,160,0,127,0,63,128,0,252,3,240,0,191,0,63,128,1,252,2,244,0,190,0,63,64,3,248,1,252,0,254,0,63,64,3,240,0,253,0,253,0,63,64,7,240,0,190,1,252,0,63,64,15,208,6,255,2,252,0,63,0,31,219,255,255,67,248,0,63,0,63,255,255,255,139,244,0,127,0,127,255,254,95,207,240,0,127,0,63,254,64,15,95,208,0,191,0,62,64,0,0,63,192,0,254,0,0,0,0,0,255,128,1,254,0,0,0,0,2,255,15,255,252,0,0,0,0,3,253,7,255,248,0,0,0,0,0,180,3,255,224,0,0,0,0,0,16,0,20,0,0, + // 0x5316 化 + 22,83,35,34,50,37,1,253,0,0,15,128,63,64,0,0,0,0,0,47,192,63,64,0,0,0,0,0,63,192,63,64,0,0,0,0,0,191,64,63,64,0,0,0,0,0,255,0,63,64,0,0,0,0,3,253,0,63,64,0,0,0,0,7,248,0,63,64,0,8,0,0,15,240,0,63,64,0,62,0,0,63,224,0,63,64,0,255,64,0,191,224,0,63,64,7,255,128,1,255,224,0,63,64,63,253,0,3,255,224,0,63,65,255,240,0,15,255,224,0,63,79,255,64,0,63,255,224,0,63,255,248,0,0,255,223,224,0,63,255,192,0,0,191,79,224,0,63,253,0,0,0,62,15,224,0,63,208,0,0,0,40,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,1,0,0,15,224,0,63,64,0,2,228,0,15,224,0,63,64,0,2,248,0,15,224,0,63,64,0,2,248,0,15,224,0,63,64,0,3,244,0,15,224,0,63,64,0,3,244,0,15,224,0,63,192,0,11,240,0,15,224,0,63,255,255,255,224,0,15,224,0,31,255,255,255,192,0,15,224,0,7,255,255,255,64,0,10,144,0,0,0,0,0,0, + // 0x5347 升 + 71,83,33,35,59,37,2,253,0,0,0,0,0,5,64,0,0,0,0,0,11,192,15,208,0,0,0,0,1,191,240,15,208,0,0,0,0,47,255,240,15,208,0,0,0,27,255,255,64,15,208,0,0,6,255,255,224,0,15,208,0,0,191,255,254,0,0,15,208,0,0,63,254,253,0,0,15,208,0,0,62,64,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,0,0,253,0,0,15,208,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,254,85,85,95,229,85,64,0,0,253,0,0,15,208,0,0,0,1,252,0,0,15,208,0,0,0,1,252,0,0,15,208,0,0,0,2,252,0,0,15,208,0,0,0,3,248,0,0,15,208,0,0,0,7,244,0,0,15,208,0,0,0,15,240,0,0,15,208,0,0,0,31,224,0,0,15,208,0,0,0,63,208,0,0,15,208,0,0,0,255,128,0,0,15,208,0,0,2,255,0,0,0,15,208,0,0,15,253,0,0,0,15,208,0,0,127,244,0,0,0,15,208,0,0,255,208,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,24,0,0,0,0,15,208,0,0, + // 0x534a 半 + 74,83,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,104,0,7,240,0,15,64,0,1,253,0,7,240,0,31,224,0,0,255,0,7,240,0,63,192,0,0,127,128,7,240,0,127,128,0,0,63,192,7,240,0,255,0,0,0,31,224,7,240,1,254,0,0,0,15,240,7,240,3,252,0,0,0,7,244,7,240,7,244,0,0,0,3,224,7,240,7,240,0,0,0,1,0,7,240,0,64,0,0,0,0,0,7,240,0,0,0,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,5,85,85,91,249,85,85,84,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,91,249,85,85,85,64,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x534f 协 + 79,83,34,35,59,37,2,253,1,252,0,0,10,128,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,255,255,255,255,192,0,1,252,0,255,255,255,255,192,0,255,255,252,255,255,255,255,192,0,255,255,252,85,95,213,111,192,0,255,255,252,0,15,192,47,128,0,1,252,0,0,31,192,47,128,0,1,252,0,0,31,192,47,128,0,1,252,1,248,47,192,47,238,0,1,252,2,248,47,128,47,255,0,1,252,3,244,63,128,47,191,0,1,252,3,240,63,64,47,175,64,1,252,7,240,63,0,47,159,128,1,252,11,224,127,0,63,143,192,1,252,15,208,254,0,63,79,192,1,252,47,192,253,0,63,75,208,1,252,63,65,252,0,63,75,224,1,252,47,3,252,0,63,71,224,1,252,5,7,244,0,63,67,224,1,252,0,15,240,0,63,0,0,1,252,0,47,208,0,63,0,0,1,252,0,63,192,0,127,0,0,1,252,0,255,64,0,127,0,0,1,252,3,254,0,0,191,0,0,1,252,11,252,0,1,254,0,0,1,252,63,240,11,255,253,0,0,1,252,127,208,7,255,252,0,0,1,252,15,64,3,255,224,0,0,0,168,1,0,0,0,0,0,0, + // 0x5355 单 + 85,83,33,35,59,37,2,253,0,0,16,0,0,0,64,0,0,0,2,244,0,0,3,248,0,0,0,3,252,0,0,3,252,0,0,0,1,255,0,0,11,244,0,0,0,0,191,64,0,31,240,0,0,0,0,63,192,0,63,192,0,0,0,0,31,128,0,127,64,0,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,252,0,7,240,0,11,240,0,2,252,0,7,240,0,11,240,0,2,252,0,7,240,0,11,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,254,170,175,254,170,175,240,0,2,252,0,7,240,0,11,240,0,2,252,0,7,240,0,11,240,0,2,252,0,7,240,0,11,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,1,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x5361 卡 + 97,83,33,35,59,37,2,253,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,192,0,0,0,0,15,255,255,255,192,0,0,0,0,15,255,255,255,192,0,0,0,0,15,229,85,85,64,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,85,85,85,95,229,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,144,0,0,0,0,0,0,15,255,254,64,0,0,0,0,0,15,255,255,248,0,0,0,0,0,15,226,255,255,208,0,0,0,0,15,224,27,255,244,0,0,0,0,15,224,0,127,240,0,0,0,0,15,224,0,6,208,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,208,0,0,0,0, + // 0x5370 印 + 112,83,30,35,24,37,4,253,0,0,9,0,0,0,0,0,0,1,191,64,0,0,0,0,0,31,255,209,85,85,85,80,134,255,255,131,255,255,255,240,255,255,244,3,255,255,255,240,255,254,0,3,255,255,255,240,255,128,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,255,255,255,195,248,0,7,240,255,255,255,195,248,0,7,240,255,255,255,195,248,0,7,240,254,85,85,67,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,255,255,255,195,248,26,175,240,255,255,255,195,248,15,255,240,255,255,255,195,248,11,255,208,253,85,85,67,248,7,254,64,253,0,0,3,248,0,0,0,253,0,0,3,248,0,0,0,84,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,2,164,0,0,0, + // 0x5371 危 + 113,83,35,36,68,37,1,252,0,0,15,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,63,255,255,253,0,0,0,0,0,191,255,255,255,128,0,0,0,1,255,255,255,255,64,0,0,0,3,252,0,1,255,0,0,0,0,15,244,0,3,253,0,0,0,0,47,240,0,7,252,0,0,0,0,191,192,0,11,240,0,0,0,1,255,255,255,255,255,255,255,224,11,255,255,255,255,255,255,255,224,63,255,255,255,255,255,255,255,224,127,255,128,0,0,0,0,0,0,31,127,128,0,0,0,0,0,0,4,63,128,0,0,0,0,0,0,0,63,128,255,255,255,255,192,0,0,63,128,255,255,255,255,192,0,0,63,128,255,255,255,255,192,0,0,63,64,253,0,0,47,192,0,0,63,64,253,0,0,47,192,0,0,63,64,253,0,0,47,128,0,0,63,0,253,0,0,63,128,0,0,127,0,253,0,0,63,64,0,0,127,0,253,0,0,127,64,0,0,191,0,253,0,255,255,0,0,0,254,0,253,0,191,254,0,0,0,253,0,253,0,127,228,3,128,2,252,0,253,0,0,0,3,244,3,252,0,253,0,0,0,3,244,7,244,0,253,0,0,0,3,240,15,240,0,253,0,0,0,7,240,47,208,0,255,64,0,0,31,240,127,192,0,191,255,255,255,255,208,127,64,0,63,255,255,255,255,128,14,0,0,11,255,255,255,253,0,0,0,0,0,0,0,0,0,0, + // 0x5374 却 + 116,83,33,35,59,37,1,253,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,255,255,255,192,0,0,253,0,0,255,255,255,192,0,0,253,0,0,255,255,255,192,0,0,254,0,0,253,85,111,192,15,255,255,255,208,253,0,31,192,15,255,255,255,208,253,0,31,192,15,255,255,255,208,253,0,31,192,0,0,253,0,0,253,0,31,192,0,0,253,0,0,253,0,31,192,0,0,253,0,0,253,0,31,192,0,0,253,0,0,253,0,31,192,0,0,253,0,0,253,0,31,192,0,0,254,0,0,253,0,31,192,127,255,255,255,248,253,0,31,192,127,255,255,255,248,253,0,31,192,127,255,255,255,248,253,0,31,192,0,15,240,0,0,253,0,31,192,0,31,224,0,0,253,0,31,192,0,47,192,0,0,253,0,31,192,0,63,192,36,0,253,0,31,192,0,63,65,252,0,253,0,31,192,0,127,0,254,0,253,0,31,192,0,254,0,127,0,253,0,47,192,0,253,0,63,128,253,47,255,192,2,252,0,111,208,253,15,255,128,7,255,255,255,224,253,15,254,0,127,255,255,255,240,253,6,80,0,127,255,255,251,248,253,0,0,0,63,250,80,2,252,253,0,0,0,16,0,0,0,248,253,0,0,0,0,0,0,0,64,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,252,0,0,0, + // 0x5378 卸 + 120,83,33,35,59,37,1,253,0,46,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,127,0,0,0,255,255,255,192,0,190,0,0,0,255,255,255,192,0,255,255,255,240,255,255,255,192,2,255,255,255,240,254,0,31,192,3,255,255,255,240,253,0,15,192,11,240,127,0,0,253,0,15,192,31,208,63,0,0,253,0,15,192,63,192,63,0,0,253,0,15,192,15,0,63,0,0,253,0,15,192,0,0,63,0,0,253,0,15,192,63,255,255,255,252,253,0,15,192,63,255,255,255,252,253,0,15,192,63,255,255,255,252,253,0,15,192,0,0,127,0,0,253,0,15,192,0,0,63,0,0,253,0,15,192,1,80,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,10,175,192,3,240,63,0,20,253,15,255,192,3,240,63,111,252,253,11,255,128,3,246,255,255,252,253,7,249,0,111,255,255,255,252,253,0,0,0,191,255,255,249,0,253,0,0,0,127,255,148,0,0,253,0,0,0,122,64,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0, + // 0x538b 压 + 139,83,35,33,41,37,1,253,2,255,255,255,255,255,255,255,244,2,255,255,255,255,255,255,255,244,2,255,255,255,255,255,255,255,244,2,249,85,85,85,85,85,85,80,2,244,0,0,0,0,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,2,244,0,0,11,240,0,0,0,3,244,0,0,11,240,0,0,0,3,244,127,255,255,255,255,255,64,3,244,127,255,255,255,255,255,64,3,244,127,255,255,255,255,255,64,3,244,0,0,11,240,0,0,0,3,244,0,0,11,240,0,0,0,3,244,0,0,11,240,8,0,0,3,240,0,0,11,240,127,0,0,3,240,0,0,11,240,63,192,0,3,240,0,0,11,240,15,240,0,7,240,0,0,11,240,3,252,0,11,224,0,0,11,240,1,254,0,11,224,0,0,11,240,0,120,0,15,208,0,0,11,240,0,16,0,15,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,63,139,255,255,255,255,255,255,240,127,75,255,255,255,255,255,255,240,191,11,255,255,255,255,255,255,240,46,1,85,85,85,85,85,85,80,4,0,0,0,0,0,0,0,0, + // 0x539f 原 + 159,83,34,33,41,37,1,253,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,252,0,0,15,244,0,0,0,1,252,0,0,15,240,0,0,0,1,252,0,0,31,224,0,0,0,1,252,10,170,191,250,170,168,0,1,252,15,255,255,255,255,252,0,1,252,15,255,255,255,255,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,1,252,15,255,255,255,255,252,0,1,252,15,255,255,255,255,252,0,1,252,15,234,170,170,171,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,2,252,15,250,170,170,171,252,0,2,248,15,255,255,255,255,252,0,2,248,15,255,255,255,255,252,0,3,248,0,0,7,240,0,0,0,3,244,0,0,7,240,0,0,0,3,244,0,249,7,240,31,64,0,7,240,2,253,7,240,63,208,0,11,240,7,248,7,240,15,244,0,11,224,15,240,7,240,3,253,0,15,224,63,208,7,240,0,255,64,31,208,255,128,7,240,0,63,192,47,199,254,0,7,240,0,31,240,63,143,248,0,7,240,0,11,240,127,66,224,15,255,240,0,3,128,127,0,0,11,255,224,0,0,0,5,0,0,7,255,64,0,0,0, + // 0x53cc 双 + 204,83,34,33,41,37,1,252,47,255,255,253,63,255,255,255,128,47,255,255,254,63,255,255,255,192,47,255,255,254,63,255,255,255,192,5,85,85,254,31,213,85,127,128,0,0,0,253,15,208,0,63,64,0,0,0,253,15,224,0,63,64,0,0,1,252,11,224,0,127,0,3,128,2,252,7,240,0,191,0,15,208,2,248,7,240,0,254,0,15,244,3,248,3,244,0,253,0,3,252,3,244,3,244,1,252,0,1,255,11,240,2,252,2,252,0,0,191,143,240,1,252,3,248,0,0,63,239,224,0,253,7,244,0,0,15,255,208,0,254,11,240,0,0,7,255,192,0,127,15,224,0,0,2,255,128,0,63,111,192,0,0,0,255,64,0,63,255,192,0,0,0,255,192,0,31,255,64,0,0,1,255,224,0,15,255,0,0,0,3,255,244,0,11,253,0,0,0,7,255,252,0,11,252,0,0,0,15,242,253,0,31,254,0,0,0,47,224,255,0,127,255,0,0,0,127,192,191,65,255,255,192,0,0,255,64,61,7,254,47,240,0,3,254,0,20,47,252,15,252,0,15,252,0,0,255,240,3,255,64,63,240,0,11,255,192,1,255,224,127,208,0,11,254,0,0,127,240,31,64,0,3,244,0,0,15,192,9,0,0,0,128,0,0,2,64,0,0,0,0,0,0,0,0,0, + // 0x53cd 反 + 205,83,33,33,41,37,2,253,0,85,85,85,85,85,85,84,0,0,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,253,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,192,0,0,254,111,229,85,85,127,192,0,0,254,15,240,0,0,191,64,0,0,253,11,244,0,0,255,0,0,0,253,3,252,0,2,254,0,0,0,253,2,253,0,3,252,0,0,0,252,0,255,0,11,248,0,0,1,252,0,191,128,31,240,0,0,1,252,0,63,208,63,208,0,0,2,252,0,31,240,255,128,0,0,3,248,0,11,255,255,0,0,0,3,244,0,3,255,252,0,0,0,7,240,0,0,255,244,0,0,0,11,240,0,2,255,248,0,0,0,15,224,0,31,255,255,64,0,0,31,208,0,191,254,255,244,0,0,63,192,47,255,208,127,255,144,0,127,71,255,254,0,11,255,255,64,255,7,255,240,0,1,255,255,64,61,2,254,0,0,0,11,254,0,8,0,208,0,0,0,0,108,0, + // 0x53d6 取 + 214,83,35,33,41,37,1,253,63,255,255,255,252,0,0,0,0,63,255,255,255,252,0,0,0,0,63,255,255,255,252,0,0,0,0,2,252,0,63,143,255,255,255,208,1,252,0,63,143,255,255,255,208,1,252,0,63,143,255,255,255,208,1,252,0,63,133,165,85,111,192,1,252,0,63,135,240,0,31,192,1,255,255,255,135,240,0,47,192,1,255,255,255,131,244,0,63,128,1,255,255,255,131,248,0,63,64,1,252,0,63,130,252,0,127,0,1,252,0,63,129,252,0,191,0,1,252,0,63,128,253,0,254,0,1,252,0,63,128,191,0,253,0,1,252,0,63,128,127,2,252,0,1,255,255,255,128,63,67,252,0,1,255,255,255,128,47,199,244,0,1,255,255,255,128,31,223,240,0,1,252,0,63,128,15,255,224,0,1,252,0,63,128,7,255,192,0,1,252,0,63,128,3,255,128,0,1,252,0,63,128,2,255,0,0,1,252,26,255,128,2,255,64,0,6,255,255,255,128,11,255,192,0,255,255,255,255,128,31,255,240,0,191,255,254,127,128,127,239,252,0,127,233,0,63,129,255,131,255,0,16,0,0,63,139,254,0,255,208,0,0,0,63,255,248,0,127,248,0,0,0,63,191,208,0,15,244,0,0,0,63,143,0,0,2,208,0,0,0,47,64,0,0,0,64, + // 0x53d8 变 + 216,83,33,36,68,37,2,252,0,0,0,11,208,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,3,252,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,11,240,3,244,0,0,0,0,8,11,240,3,244,16,0,0,0,63,139,240,3,244,188,0,0,0,127,75,240,3,245,255,0,0,0,255,11,240,3,244,127,192,0,2,252,11,240,3,244,31,240,0,7,248,11,240,3,244,7,252,0,31,240,11,240,3,244,2,254,0,31,192,11,240,3,244,0,190,0,3,0,11,240,3,244,0,52,0,0,0,11,240,3,244,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,253,0,0,3,255,255,255,255,255,255,128,0,3,255,255,255,255,255,255,0,0,0,15,240,0,0,3,253,0,0,0,3,252,0,0,15,248,0,0,0,0,255,0,0,63,224,0,0,0,0,127,224,1,255,128,0,0,0,0,15,253,15,253,0,0,0,0,0,2,255,255,244,0,0,0,0,0,0,191,255,128,0,0,0,0,0,6,255,255,228,0,0,0,0,1,255,255,255,255,144,0,0,26,255,255,249,31,255,255,233,0,255,255,254,64,0,191,255,255,192,63,255,144,0,0,1,191,255,0,46,64,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0, + // 0x53f0 台 + 240,83,33,35,59,37,2,253,0,0,1,228,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,31,240,0,6,0,0,0,0,0,63,208,0,47,192,0,0,0,0,127,128,0,63,244,0,0,0,0,255,0,0,11,253,0,0,0,2,253,0,0,2,255,64,0,0,3,252,0,0,0,191,208,0,0,11,249,106,171,255,255,240,0,127,255,255,255,255,255,255,252,0,127,255,255,255,255,255,255,255,0,127,255,255,255,250,169,85,255,128,37,84,0,0,0,0,0,127,192,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,0,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,85,85,85,85,191,64,0,0,127,0,0,0,0,127,64,0, + // 0x5403 吃 + 3,84,33,35,59,37,3,253,0,0,0,0,164,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,85,85,80,2,252,0,0,0,0,255,255,240,3,248,0,0,0,0,255,255,240,11,244,0,0,0,0,255,255,240,15,255,255,255,255,0,252,3,240,31,255,255,255,255,0,252,3,240,63,255,255,255,255,0,252,3,240,191,64,0,0,0,0,252,3,241,255,0,0,0,0,0,252,3,243,253,0,0,0,0,0,252,3,255,248,0,0,0,0,0,252,3,243,240,0,0,0,0,0,252,3,240,139,255,255,255,208,0,252,3,240,11,255,255,255,240,0,252,3,240,11,255,255,255,128,0,252,3,240,0,0,11,253,0,0,252,3,240,0,0,63,244,0,0,252,3,240,0,0,255,192,0,0,252,3,240,0,3,254,0,0,0,252,3,240,0,31,248,0,0,0,255,255,240,0,127,208,0,0,0,255,255,240,1,255,64,0,0,0,255,255,240,7,253,0,0,0,0,253,85,80,15,240,0,0,20,0,252,0,0,63,192,0,0,31,128,252,0,0,127,64,0,0,47,128,168,0,0,255,0,0,0,47,128,0,0,0,254,0,0,0,63,64,0,0,0,255,64,0,0,127,0,0,0,0,255,255,255,255,255,0,0,0,0,63,255,255,255,253,0,0,0,0,11,255,255,255,248,0,0,0,0,0,21,85,85,0,0, + // 0x5408 合 + 8,84,35,35,59,37,1,253,0,0,0,2,253,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,255,3,255,0,0,0,0,0,15,252,0,255,192,0,0,0,0,63,240,0,63,240,0,0,0,1,255,192,0,15,253,0,0,0,7,255,0,0,3,255,128,0,0,47,252,0,0,0,191,244,0,1,255,224,0,0,0,31,254,0,15,255,255,255,255,255,255,255,224,127,254,191,255,255,255,248,191,248,63,244,191,255,255,255,248,31,240,31,64,0,0,0,0,0,3,208,4,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,224,0,0,0,47,192,0,0,11,208,0,0,0,31,192,0, + // 0x540d 名 + 13,84,32,35,24,37,1,253,0,0,0,185,0,0,0,0,0,0,1,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,255,255,255,244,0,0,0,127,255,255,255,252,0,0,0,255,255,255,255,244,0,0,7,254,0,0,15,240,0,0,31,248,0,0,47,208,0,0,191,240,0,0,63,192,0,3,255,252,0,0,255,64,0,31,255,255,64,1,254,0,0,127,244,255,224,7,252,0,0,31,192,47,248,15,244,0,0,10,0,11,254,63,224,0,0,0,0,2,255,255,192,0,0,0,0,0,191,255,0,0,0,0,0,0,63,252,0,0,0,0,0,0,191,244,0,0,0,0,0,3,255,255,255,255,255,0,0,47,255,255,255,255,255,0,1,255,255,255,255,255,255,0,31,255,244,0,0,0,191,6,255,255,244,0,0,0,191,127,255,211,244,0,0,0,191,63,253,3,244,0,0,0,191,31,128,3,244,0,0,0,191,4,0,3,244,0,0,0,191,0,0,3,244,0,0,0,191,0,0,3,244,0,0,0,191,0,0,3,255,255,255,255,255,0,0,3,255,255,255,255,255,0,0,3,255,255,255,255,255,0,0,3,244,0,0,0,191,0,0,2,160,0,0,0,190, + // 0x540e 后 + 14,84,35,35,59,37,1,253,0,0,0,0,0,0,1,128,0,0,0,0,0,0,6,191,240,0,0,0,0,1,107,255,255,252,0,0,186,175,255,255,255,255,228,0,0,191,255,255,255,255,164,0,0,0,191,255,255,233,64,0,0,0,0,191,165,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,85,85,85,85,85,85,80,0,191,255,255,255,255,255,255,248,0,191,255,255,255,255,255,255,248,0,191,255,255,255,255,255,255,248,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,7,255,255,255,255,253,0,0,254,7,255,255,255,255,253,0,0,253,7,255,255,255,255,253,0,0,253,7,240,0,0,0,253,0,1,252,7,240,0,0,0,253,0,2,252,7,240,0,0,0,253,0,3,252,7,240,0,0,0,253,0,3,248,7,240,0,0,0,253,0,7,244,7,240,0,0,0,253,0,11,240,7,240,0,0,0,253,0,15,224,7,240,0,0,0,253,0,47,208,7,255,255,255,255,253,0,63,192,7,255,255,255,255,253,0,191,64,7,255,255,255,255,253,0,31,0,7,240,0,0,0,253,0,8,0,7,240,0,0,0,253,0, + // 0x5411 向 + 17,84,31,35,24,37,3,253,0,0,0,122,64,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,252,0,0,0,0,21,85,87,253,85,85,85,80,127,255,255,255,255,255,255,248,127,255,255,255,255,255,255,248,127,255,255,255,255,255,255,248,127,0,0,0,0,0,3,248,127,0,0,0,0,0,3,248,127,0,0,0,0,0,3,248,127,0,0,0,0,0,3,248,127,0,191,255,255,248,3,248,127,0,191,255,255,248,3,248,127,0,191,255,255,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,189,0,2,248,3,248,127,0,191,255,255,248,3,248,127,0,191,255,255,248,3,248,127,0,191,255,255,248,3,248,127,0,189,0,0,0,3,248,127,0,189,0,0,0,3,248,127,0,189,0,0,0,3,248,127,0,0,0,0,0,3,248,127,0,0,0,0,21,91,244,127,0,0,0,0,63,255,244,127,0,0,0,0,63,255,240,127,0,0,0,0,31,254,64, + // 0x5426 否 + 38,84,34,33,41,37,1,253,31,255,255,255,255,255,255,255,208,31,255,255,255,255,255,255,255,208,31,255,255,255,255,255,255,255,208,0,0,0,0,191,224,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,252,15,128,0,0,0,0,7,255,252,63,248,0,0,0,0,127,254,252,47,255,64,0,0,2,255,241,252,2,255,240,0,0,47,255,65,252,0,127,254,0,7,255,252,1,252,0,7,255,192,127,255,208,1,252,0,0,191,240,63,254,0,1,252,0,0,31,224,15,224,0,1,252,0,0,3,192,5,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,192,0,0,0,15,240,0,0,31,192,0,0,0,10,160,0, + // 0x542f 启 + 47,84,31,35,24,37,2,253,0,0,0,0,0,0,88,0,0,0,0,0,1,175,255,0,0,0,5,107,255,255,255,192,2,175,255,255,255,255,228,0,3,255,255,255,254,144,0,0,3,255,250,148,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,255,255,255,255,255,255,244,3,255,255,255,255,255,255,244,3,255,255,255,255,255,255,244,3,248,0,0,0,0,3,244,3,248,0,0,0,0,3,244,3,248,0,0,0,0,3,244,3,248,0,0,0,0,3,244,3,255,255,255,255,255,255,244,3,255,255,255,255,255,255,244,3,255,255,255,255,255,255,244,3,248,0,0,0,0,0,0,3,244,0,0,0,0,0,0,3,244,0,0,0,0,0,0,3,244,0,0,0,0,0,0,7,240,255,255,255,255,255,248,7,240,255,255,255,255,255,248,11,240,255,255,255,255,255,248,15,224,253,0,0,0,2,248,15,208,253,0,0,0,2,248,31,192,253,0,0,0,2,248,63,192,253,0,0,0,2,248,63,128,253,0,0,0,2,248,191,0,255,255,255,255,255,248,255,0,255,255,255,255,255,248,189,0,255,255,255,255,255,248,40,0,253,0,0,0,2,248,0,0,168,0,0,0,1,164, + // 0x544a 告 + 74,84,33,36,68,37,2,252,0,2,64,1,252,0,0,0,0,0,11,240,1,252,0,0,0,0,0,15,224,1,252,0,0,0,0,0,31,208,1,252,0,0,0,0,0,63,192,1,252,0,0,0,0,0,127,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,7,252,0,2,253,0,0,0,0,15,240,0,1,252,0,0,0,0,63,224,0,1,252,0,0,0,0,63,192,0,1,252,0,0,0,0,7,0,0,1,252,0,0,0,0,1,0,0,2,253,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0, + // 0x5468 周 + 104,84,32,34,16,37,1,252,0,191,255,255,255,255,255,254,0,191,255,255,255,255,255,254,0,191,255,255,255,255,255,254,0,191,0,0,85,0,0,254,0,190,0,0,253,0,0,190,0,190,0,0,253,0,0,190,0,190,0,0,253,0,0,190,0,190,15,255,255,255,224,190,0,190,15,255,255,255,224,190,0,190,10,170,255,170,144,190,0,190,0,0,253,0,0,190,0,190,0,0,253,0,0,190,0,190,0,0,253,0,0,190,0,190,63,255,255,255,248,190,0,254,63,255,255,255,248,190,0,254,47,255,255,255,244,190,0,254,0,0,0,0,0,190,0,254,0,0,0,0,0,190,0,253,2,170,170,170,128,190,0,253,7,255,255,255,192,190,0,252,7,255,255,255,192,190,1,252,7,240,0,31,192,190,2,252,7,240,0,31,192,190,3,248,7,240,0,31,192,190,3,244,7,240,0,31,192,190,7,240,7,250,170,191,192,190,11,240,7,255,255,255,192,190,15,224,7,255,255,255,192,190,31,208,7,240,0,0,0,190,63,192,7,240,0,0,0,254,127,128,2,144,0,7,255,254,63,0,0,0,0,3,255,252,13,0,0,0,0,2,255,224,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,35,36,68,37,1,252,0,0,0,3,253,0,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,47,255,208,0,0,0,0,0,0,191,239,244,0,0,0,0,0,2,255,75,254,0,0,0,0,0,11,254,2,255,128,0,0,0,0,47,248,0,191,240,0,0,0,0,255,208,0,47,253,0,0,0,11,255,64,0,7,255,192,0,0,63,253,0,0,1,255,248,0,2,255,223,255,255,255,223,255,128,47,255,15,255,255,255,194,255,248,255,248,15,255,255,255,192,127,252,127,192,0,0,0,0,0,11,240,45,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,255,255,254,11,255,255,253,0,0,255,255,254,11,255,255,253,0,0,255,255,254,11,255,255,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,255,255,254,11,224,0,253,0,0,255,255,254,11,224,0,253,0,0,255,255,254,11,224,255,253,0,0,252,0,0,11,224,255,252,0,0,252,0,0,11,224,191,224,0,0,252,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,33,35,59,37,1,253,0,0,0,4,0,0,0,0,0,0,0,1,190,0,0,0,0,0,0,1,191,255,128,0,0,0,0,22,255,255,255,129,85,85,85,0,47,255,255,144,11,255,255,255,64,15,255,253,0,11,255,255,255,64,4,0,253,0,11,255,255,255,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,63,255,255,255,203,224,0,63,64,63,255,255,255,203,224,0,63,64,63,255,255,255,203,224,0,63,64,0,7,253,0,11,224,0,63,64,0,11,254,0,11,224,0,63,64,0,15,255,128,11,224,0,63,64,0,31,255,208,11,224,0,63,64,0,63,255,244,11,224,0,63,64,0,127,255,252,11,224,0,63,64,0,253,253,255,11,224,0,63,64,1,252,253,63,139,224,0,63,64,3,244,253,31,203,224,0,63,64,11,240,253,15,75,224,0,63,64,31,208,253,2,11,224,0,63,64,63,192,253,0,11,224,0,63,64,191,64,253,0,11,245,85,127,64,126,0,253,0,11,255,255,255,64,60,0,253,0,11,255,255,255,64,0,0,253,0,11,255,255,255,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0, + // 0x54cd 响 + 205,84,32,36,32,37,3,252,0,0,0,0,2,232,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,244,0,0,255,255,208,0,11,240,0,0,255,255,208,0,15,224,0,0,255,255,209,255,255,255,255,254,252,11,209,255,255,255,255,254,252,11,209,255,255,255,255,254,252,11,209,252,0,0,0,254,252,11,209,252,0,0,0,254,252,11,209,252,0,0,0,254,252,11,209,252,0,0,0,254,252,11,209,252,31,255,224,254,252,11,209,252,31,255,224,254,252,11,209,252,31,87,224,254,252,11,209,252,31,2,224,254,252,11,209,252,31,2,224,254,252,11,209,252,31,2,224,254,252,11,209,252,31,2,224,254,252,11,209,252,31,2,224,254,252,11,209,252,31,2,224,254,255,255,209,252,31,2,224,254,255,255,209,252,31,87,224,254,255,255,209,252,31,255,224,254,252,0,1,252,31,255,224,254,252,0,1,252,31,0,0,254,252,0,1,252,31,0,0,254,164,0,1,252,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,191,253,0,0,1,252,0,0,63,252,0,0,1,252,0,0,63,224,0,0,0,0,0,0,0,0, + // 0x55b7 喷 + 183,85,34,35,59,37,2,253,0,0,0,0,0,169,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,191,255,255,255,254,0,127,255,208,255,255,255,255,254,0,127,255,208,255,255,255,255,254,0,127,255,208,0,0,253,0,0,0,125,7,208,0,0,253,0,0,0,125,7,208,7,240,189,15,192,0,125,7,208,7,240,0,15,192,0,125,7,215,255,255,255,255,255,192,125,7,215,255,255,255,255,255,192,125,7,215,255,255,255,255,255,192,125,7,208,7,240,0,15,192,0,125,7,208,7,240,0,15,192,0,125,7,208,0,0,0,0,0,0,125,7,208,63,255,255,255,248,0,125,7,208,63,255,255,255,248,0,125,7,208,63,255,255,255,248,0,125,7,208,63,0,0,1,248,0,125,7,208,63,0,0,1,248,0,125,7,208,63,0,189,1,248,0,127,255,208,63,0,253,1,248,0,127,255,208,63,0,253,1,248,0,127,255,208,63,0,253,1,248,0,125,0,0,63,0,253,1,248,0,125,0,0,63,0,252,1,248,0,125,0,0,63,1,252,1,248,0,40,0,0,21,7,248,164,0,0,0,0,0,0,47,242,255,64,0,0,0,0,2,255,192,191,244,0,0,0,1,191,254,0,11,255,64,0,0,47,255,224,0,0,191,224,0,0,15,253,0,0,0,31,192,0,0,2,64,0,0,0,1,128, + // 0x5634 嘴 + 52,86,34,36,68,37,2,252,0,0,0,1,244,3,224,0,0,0,0,0,1,244,3,224,0,0,0,0,1,145,244,3,224,24,0,127,255,210,241,244,3,225,255,0,127,255,210,241,255,243,255,253,0,127,255,210,241,255,243,255,208,0,125,7,210,241,249,83,253,0,0,125,7,210,241,244,3,224,0,0,125,7,210,241,244,3,224,3,64,125,7,210,241,245,103,224,3,208,125,7,210,251,255,247,240,7,208,125,7,239,255,255,243,255,255,192,125,7,239,255,254,2,255,255,128,125,7,223,149,252,0,90,165,0,125,7,208,3,255,255,224,0,0,125,7,208,11,255,255,244,0,0,125,7,208,47,213,95,224,0,0,125,7,208,191,64,47,192,0,0,125,7,211,255,255,255,255,253,0,125,7,255,255,255,255,255,253,0,125,7,255,255,85,190,85,253,0,127,255,219,127,0,125,0,189,0,127,255,208,63,0,125,0,189,0,127,255,208,63,255,255,255,253,0,125,0,0,63,255,255,255,253,0,125,0,0,63,0,125,0,189,0,125,0,0,127,0,125,0,189,0,0,0,0,191,255,255,255,253,0,0,0,0,255,255,255,255,253,0,0,0,1,253,85,85,85,253,0,0,0,3,248,0,0,0,189,0,0,0,15,240,0,0,0,189,0,0,0,63,224,0,0,150,253,0,0,0,127,128,0,0,255,252,0,0,0,14,0,0,0,191,228,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,35,34,50,37,1,252,2,255,255,254,2,255,255,254,0,2,255,255,254,2,255,255,254,0,2,255,255,254,2,255,255,254,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,254,170,254,2,254,170,254,0,2,255,255,254,2,255,255,254,0,2,255,255,255,226,255,255,254,0,0,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,224,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,47,244,0,127,192,0,0,0,1,255,224,0,47,244,0,0,0,11,255,128,0,11,255,0,0,0,191,253,0,0,1,255,224,0,11,255,240,0,0,0,127,255,64,191,255,255,255,3,255,255,255,248,63,255,255,255,3,255,255,255,244,30,255,255,255,3,255,255,255,224,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,255,255,255,3,255,255,252,0,0,255,255,255,3,255,255,252,0,0,255,255,255,3,255,255,252,0,0,252,0,127,3,240,0,252,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,33,36,68,37,3,252,0,0,0,0,1,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,2,255,255,255,255,252,0,255,255,194,255,255,255,255,252,0,255,255,193,85,86,253,85,84,0,255,255,192,10,130,248,42,0,0,248,15,192,15,194,248,63,0,0,248,11,192,15,192,0,63,0,0,248,11,223,255,255,255,255,255,128,248,11,223,255,255,255,255,255,128,248,11,213,95,213,85,127,85,0,248,11,192,15,192,0,63,0,0,248,11,192,5,64,0,21,0,0,248,11,192,255,255,255,255,240,0,248,11,192,255,255,255,255,240,0,248,11,192,252,0,0,3,240,0,248,11,192,252,0,0,3,240,0,248,11,192,255,255,255,255,240,0,248,11,192,255,255,255,255,240,0,248,11,192,252,0,0,3,240,0,255,255,192,252,0,0,3,240,0,255,255,192,252,0,0,3,240,0,255,255,192,255,255,255,255,240,0,248,0,0,255,255,255,255,240,0,248,0,0,252,0,0,3,240,0,248,0,0,252,0,0,3,240,0,0,0,0,255,255,255,255,240,0,0,0,0,255,255,255,255,240,0,0,0,0,3,224,1,244,0,0,0,0,0,47,248,3,255,64,0,0,0,11,255,208,0,191,244,0,0,1,255,253,0,0,11,254,0,0,0,191,208,0,0,1,255,64,0,0,45,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,31,34,16,37,3,253,85,85,85,85,85,85,85,84,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,3,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252, + // 0x56e0 因 + 224,86,31,34,16,37,3,253,85,85,85,85,85,85,85,84,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,0,0,0,2,252,253,0,0,10,128,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,128,0,2,252,253,47,255,255,255,255,226,252,253,47,255,255,255,255,226,252,253,47,255,255,255,255,226,252,253,0,0,63,224,0,2,252,253,0,0,63,240,0,2,252,253,0,0,191,244,0,2,252,253,0,0,255,248,0,2,252,253,0,1,253,252,0,2,252,253,0,3,252,191,0,2,252,253,0,7,244,63,128,2,252,253,0,31,240,47,208,2,252,253,0,127,192,15,248,2,252,253,2,255,64,7,255,66,252,253,47,253,0,1,255,242,252,253,47,244,0,0,127,210,252,253,15,128,0,0,11,130,252,253,0,0,0,0,0,2,252,253,0,0,0,0,0,2,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,85,85,85,85,85,86,252,253,0,0,0,0,0,2,252, + // 0x56fa 固 + 250,86,31,33,8,37,3,253,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,10,128,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,15,255,255,255,255,210,252,254,31,255,255,255,255,226,252,254,31,255,255,255,255,226,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,255,255,255,253,2,252,254,0,255,255,255,253,2,252,254,0,254,170,170,253,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,254,170,170,253,2,252,254,0,255,255,255,253,2,252,254,0,255,255,255,253,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,3,252,254,0,0,0,0,0,2,252, + // 0x56fe 图 + 254,86,31,33,8,37,3,253,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,64,0,0,2,252,253,0,2,248,0,0,2,252,253,0,7,244,0,0,2,252,253,0,31,250,170,169,2,252,253,0,127,255,255,255,130,252,253,1,255,255,255,255,2,252,253,11,255,0,1,253,2,252,253,63,255,192,11,244,2,252,253,63,75,248,127,208,2,252,253,13,1,255,255,0,2,252,253,0,0,191,252,0,2,252,253,0,11,255,255,144,2,252,253,6,255,253,191,254,66,252,254,255,255,208,11,255,254,252,253,191,249,144,0,111,242,252,253,62,66,255,64,0,146,252,253,0,2,255,253,0,2,252,253,0,0,6,255,128,2,252,253,0,0,0,31,0,2,252,253,0,255,164,0,0,2,252,253,2,255,255,228,0,2,252,253,0,91,255,255,228,2,252,253,0,0,6,255,252,2,252,253,0,0,0,6,248,2,252,253,0,0,0,0,0,2,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,0,0,0,2,252,169,0,0,0,0,0,1,168, + // 0x5728 在 + 40,87,34,35,59,37,1,253,0,0,0,57,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,5,85,86,253,85,85,85,85,64,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,31,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,64,0,63,64,0,0,0,0,255,0,0,63,64,0,0,0,2,253,0,0,63,64,0,0,0,7,252,0,0,63,64,0,0,0,15,240,0,0,63,64,0,0,0,63,224,0,0,63,64,0,0,0,255,208,0,0,127,64,0,0,3,255,208,63,255,255,255,255,0,15,255,208,63,255,255,255,255,0,127,255,208,63,255,255,255,255,0,127,223,208,0,0,63,64,0,0,47,15,208,0,0,63,64,0,0,8,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,127,64,0,0,0,15,209,255,255,255,255,255,224,0,15,209,255,255,255,255,255,224,0,15,209,255,255,255,255,255,224,0,15,208,0,0,0,0,0,0, + // 0x574f 坏 + 79,87,35,34,50,37,1,253,0,47,64,0,0,0,0,0,0,0,47,64,0,0,0,0,0,0,0,47,64,255,255,255,255,255,244,0,47,64,255,255,255,255,255,244,0,47,64,255,255,255,255,255,244,0,47,64,0,0,7,248,0,0,0,47,64,0,0,15,240,0,0,0,47,64,0,0,47,208,0,0,63,255,255,0,0,127,192,0,0,63,255,255,0,0,255,64,0,0,63,255,255,0,3,255,72,0,0,21,127,149,0,15,255,191,0,0,0,47,64,0,63,255,255,208,0,0,47,64,0,255,255,111,244,0,0,47,64,3,255,63,71,254,0,0,47,64,47,252,63,65,255,128,0,47,65,255,240,63,64,63,224,0,47,67,255,192,63,64,15,248,0,47,66,253,0,63,64,3,244,0,47,64,176,0,63,64,0,208,0,47,64,64,0,63,64,0,0,0,47,159,128,0,63,64,0,0,0,47,255,192,0,63,64,0,0,1,191,255,192,0,63,64,0,0,111,255,253,0,0,63,64,0,0,127,255,128,0,0,63,64,0,0,63,244,0,0,0,63,64,0,0,62,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0, + // 0x5757 块 + 87,87,34,35,59,37,1,253,0,21,0,0,0,168,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,15,255,255,255,254,0,0,63,64,15,255,255,255,254,0,0,63,64,15,255,255,255,254,0,63,255,255,64,0,253,0,254,0,63,255,255,64,0,253,0,190,0,63,255,255,64,0,253,0,190,0,21,127,149,0,0,253,0,190,0,0,63,64,0,0,253,0,190,0,0,63,64,0,0,253,0,190,0,0,63,64,0,0,253,0,190,0,0,63,64,0,0,252,0,190,0,0,63,64,63,255,255,255,255,240,0,63,64,63,255,255,255,255,240,0,63,64,63,255,255,255,255,240,0,63,66,85,87,255,213,85,80,0,63,191,64,3,255,224,0,0,0,63,255,192,7,251,240,0,0,0,191,255,64,11,243,244,0,0,31,255,244,0,15,226,252,0,0,127,255,64,0,63,208,254,0,0,63,244,0,0,127,128,191,64,0,47,64,0,0,255,0,63,192,0,4,0,0,3,254,0,31,240,0,0,0,0,31,252,0,15,252,0,0,0,0,191,240,0,3,255,64,0,0,7,255,192,0,0,255,240,0,0,15,254,0,0,0,127,240,0,0,7,244,0,0,0,15,192,0,0,2,128,0,0,0,1,128, + // 0x578b 型 + 139,87,33,34,50,37,2,254,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,252,0,31,255,255,255,244,63,0,252,0,31,255,255,255,244,63,0,252,0,31,255,255,255,244,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,191,255,255,255,252,63,0,252,0,191,255,255,255,252,63,0,252,0,191,255,255,255,252,63,0,252,0,0,191,0,253,0,63,0,252,0,0,254,0,253,0,63,0,252,0,0,253,0,253,0,63,0,252,0,3,252,0,253,0,0,0,252,0,11,244,0,253,0,0,0,252,0,47,240,0,253,0,0,1,252,0,191,192,0,253,0,3,255,252,0,63,0,0,254,160,1,255,248,0,8,0,0,3,244,0,255,144,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,0,0,7,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x57ab 垫 + 171,87,34,34,50,37,2,254,0,31,128,0,3,240,0,0,0,0,31,192,0,3,240,0,0,0,0,31,192,0,3,240,0,0,0,0,31,192,0,3,240,0,0,0,191,255,255,207,255,255,255,208,0,191,255,255,207,255,255,255,208,0,191,255,255,207,255,255,255,208,0,0,31,192,0,7,240,11,208,0,0,31,192,0,11,224,11,208,0,0,31,192,67,139,208,11,208,0,0,31,255,219,255,208,11,208,0,6,255,255,219,255,192,11,208,0,255,255,255,208,255,224,11,208,0,255,255,229,0,63,253,11,208,0,191,255,192,0,127,255,139,208,0,84,31,192,0,255,127,215,226,208,0,31,192,2,252,15,199,226,240,0,31,192,15,248,2,3,243,240,0,31,192,127,224,0,3,255,224,31,255,128,63,128,0,0,255,192,15,255,64,31,80,0,0,127,64,15,249,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,1,255,255,255,255,255,255,224,0,1,255,255,255,255,255,255,224,0,1,255,255,255,255,255,255,208,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x586b 填 + 107,88,35,35,59,37,1,253,0,21,0,0,0,63,64,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,7,255,255,255,253,0,63,255,255,7,255,255,255,253,0,63,255,255,7,240,0,0,253,0,63,255,255,7,240,0,0,253,0,21,127,84,7,255,255,255,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,75,71,255,255,255,253,0,0,63,255,135,255,255,255,253,0,0,127,255,128,0,0,0,0,0,7,255,253,0,0,0,0,0,0,127,255,211,255,255,255,255,255,248,127,253,3,255,255,255,255,255,248,63,128,3,255,255,255,255,255,244,40,0,0,0,41,0,10,0,0,0,0,0,0,255,128,63,208,0,0,0,0,11,254,0,31,252,0,0,0,1,191,244,0,2,255,64,0,0,15,255,128,0,0,127,224,0,0,3,253,0,0,0,15,244,0,0,0,208,0,0,0,2,64, + // 0x58f3 壳 + 243,88,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,106,170,170,175,250,170,170,170,64,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,2,255,255,255,255,255,255,224,0,2,255,255,255,255,255,255,224,0,1,170,170,170,170,170,170,144,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,170,170,170,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,0,0,0,0,0,0,127,0,63,0,0,0,0,0,0,127,0,63,15,255,255,255,255,252,127,0,63,15,255,255,255,255,252,127,0,0,5,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,64,0,0,0,2,255,255,255,255,128,0,0,0,2,255,255,255,255,128,0,0,0,2,252,0,0,63,128,0,0,0,2,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,244,0,0,63,128,8,0,0,15,240,0,0,63,128,31,128,0,63,224,0,0,63,128,31,128,2,255,192,0,0,63,128,47,128,111,255,0,0,0,47,255,255,64,127,248,0,0,0,31,255,255,0,47,208,0,0,0,11,255,252,0,8,0,0,0,0,0,0,0,0, + // 0x5907 备 + 7,89,35,36,68,37,1,252,0,0,0,250,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,31,255,255,255,255,0,0,0,0,127,255,255,255,255,192,0,0,2,255,255,255,255,255,0,0,0,15,254,0,0,3,253,0,0,0,191,255,192,0,31,248,0,0,7,255,191,244,0,191,224,0,0,11,253,11,254,7,255,64,0,0,2,224,1,255,255,252,0,0,0,0,64,0,63,255,224,0,0,0,0,0,1,191,255,249,0,0,0,0,0,111,255,255,255,249,0,0,1,111,255,255,71,255,255,254,144,191,255,255,224,0,47,255,255,248,63,255,249,0,0,0,111,255,240,63,249,0,0,0,0,0,107,192,21,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,128,1,252,0,15,224,0,0,63,128,1,252,0,15,224,0,0,63,128,1,252,0,15,224,0,0,63,234,171,254,170,175,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,128,1,252,0,15,224,0,0,63,128,1,252,0,15,224,0,0,63,128,1,252,0,15,224,0,0,63,128,1,252,0,15,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,128,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x590d 复 + 13,89,24,36,216,37,6,252,0,6,64,0,0,0,0,15,240,0,0,0,0,31,208,0,0,0,0,63,192,0,0,0,0,191,255,255,255,248,0,255,255,255,255,248,3,255,255,255,255,248,15,248,0,0,0,0,63,245,85,85,85,0,255,255,255,255,255,192,127,191,255,255,255,192,28,126,0,0,31,192,0,126,0,0,31,192,0,127,255,255,255,192,0,127,255,255,255,192,0,126,0,0,47,192,0,126,0,0,31,192,0,127,0,0,47,192,0,127,255,255,255,192,0,127,255,255,255,192,0,0,255,0,0,0,0,2,253,0,0,0,0,11,255,255,255,64,0,47,255,255,255,192,0,255,213,85,255,64,11,255,224,1,254,0,127,251,248,7,252,0,63,193,255,47,240,0,14,0,127,255,192,0,0,0,31,255,0,0,0,1,255,255,244,0,1,191,255,191,255,228,63,255,244,7,255,255,47,254,64,0,47,253,14,64,0,0,0,120,0,0,0,0,0,0, + // 0x5916 外 + 22,89,35,35,59,37,1,253,0,0,121,0,0,1,252,0,0,0,0,191,0,0,1,252,0,0,0,0,254,0,0,1,252,0,0,0,1,253,0,0,1,252,0,0,0,2,252,0,0,1,252,0,0,0,3,252,0,80,1,252,0,0,0,7,255,255,253,1,252,0,0,0,15,255,255,253,1,252,0,0,0,31,255,255,253,1,252,0,0,0,47,192,1,254,129,252,0,0,0,127,128,2,255,209,252,0,0,0,255,0,3,255,241,252,0,0,1,254,0,3,251,249,252,0,0,3,252,0,7,241,255,252,0,0,15,254,0,11,240,191,252,0,0,63,255,208,15,224,63,252,0,0,191,255,248,31,192,31,252,0,0,127,75,255,47,192,7,253,0,0,13,1,255,255,128,2,255,64,0,0,0,63,255,0,1,255,224,0,0,0,11,254,0,1,255,248,0,0,0,3,252,0,1,255,255,64,0,0,3,248,0,1,254,255,244,0,0,15,240,0,1,252,127,252,0,0,47,224,0,1,252,15,240,0,0,127,192,0,1,252,1,208,0,0,255,64,0,1,252,0,0,0,3,254,0,0,1,252,0,0,0,15,252,0,0,1,252,0,0,0,127,240,0,0,1,252,0,0,2,255,192,0,0,1,252,0,0,31,255,0,0,0,1,252,0,0,47,248,0,0,0,1,252,0,0,7,208,0,0,0,1,252,0,0,1,0,0,0,0,1,252,0,0, + // 0x591a 多 + 26,89,33,35,59,37,2,253,0,0,0,15,144,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,7,255,255,255,240,0,0,0,0,47,255,255,255,252,0,0,0,1,255,255,255,255,248,0,0,0,31,254,0,0,15,240,0,0,1,255,253,0,0,63,208,0,0,47,255,255,128,0,255,64,0,0,31,248,127,248,7,253,0,0,0,11,64,11,255,47,244,0,0,0,0,0,0,255,255,192,0,0,0,0,0,0,63,255,64,0,0,0,0,0,1,255,246,254,0,0,0,0,0,47,255,139,252,0,0,0,0,7,255,248,47,240,0,0,0,26,255,255,128,255,255,255,253,0,127,255,244,7,255,255,255,255,64,47,254,0,127,255,255,255,255,0,14,64,2,255,208,0,2,253,0,0,0,111,255,0,0,7,252,0,0,11,255,255,64,0,15,244,0,0,63,255,255,240,0,63,208,0,0,47,244,31,253,0,255,128,0,0,14,0,2,255,135,255,0,0,0,0,0,0,127,255,252,0,0,0,0,0,0,31,255,224,0,0,0,0,0,0,15,255,128,0,0,0,0,0,1,255,252,0,0,0,0,0,0,111,255,224,0,0,0,0,0,91,255,254,0,0,0,0,1,175,255,255,224,0,0,0,0,1,255,255,249,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,121,64,0,0,0,0,0,0, + // 0x5927 大 + 39,89,33,35,59,37,2,253,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,240,0,0,0,0,106,170,170,175,250,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,47,253,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,191,191,128,0,0,0,0,0,0,255,63,192,0,0,0,0,0,0,254,31,208,0,0,0,0,0,2,253,15,240,0,0,0,0,0,3,252,11,248,0,0,0,0,0,11,248,3,253,0,0,0,0,0,31,240,2,255,0,0,0,0,0,63,224,0,255,128,0,0,0,0,255,192,0,127,208,0,0,0,2,255,64,0,47,244,0,0,0,11,254,0,0,15,253,0,0,0,63,248,0,0,3,255,64,0,1,255,224,0,0,0,255,224,0,11,255,128,0,0,0,63,253,0,191,254,0,0,0,0,31,255,192,191,244,0,0,0,0,3,255,128,47,128,0,0,0,0,0,190,0,8,0,0,0,0,0,0,8,0, + // 0x5929 天 + 41,89,34,33,41,37,2,252,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,106,170,170,175,250,170,170,170,64,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,21,85,85,95,245,85,85,85,0,47,255,255,255,255,255,255,254,0,47,255,255,255,255,255,255,254,0,47,255,255,255,255,255,255,254,0,0,0,0,15,252,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,191,127,192,0,0,0,0,0,1,255,31,224,0,0,0,0,0,3,254,15,248,0,0,0,0,0,15,252,7,253,0,0,0,0,0,63,244,2,255,0,0,0,0,0,255,224,0,255,208,0,0,0,7,255,128,0,63,248,0,0,0,127,254,0,0,15,255,64,0,6,255,244,0,0,3,255,244,0,191,255,192,0,0,0,191,255,208,255,253,0,0,0,0,31,255,192,127,208,0,0,0,0,2,255,64,41,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0, + // 0x592a 太 + 42,89,34,35,59,37,2,253,0,0,0,11,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,106,170,170,191,255,170,170,170,64,0,0,0,63,255,0,0,0,0,0,0,0,63,255,64,0,0,0,0,0,0,127,191,128,0,0,0,0,0,0,191,47,192,0,0,0,0,0,0,255,31,208,0,0,0,0,0,1,254,15,240,0,0,0,0,0,3,252,7,244,0,0,0,0,0,7,252,3,252,0,0,0,0,0,15,244,2,254,0,0,0,0,0,31,240,0,255,64,0,0,0,0,63,208,0,127,192,0,0,0,0,255,159,0,63,224,0,0,0,3,255,191,192,15,248,0,0,0,15,253,127,240,11,254,0,0,0,63,244,15,252,2,255,128,0,1,255,224,3,255,0,255,240,0,11,255,128,0,255,192,63,253,0,191,253,0,0,127,240,15,255,208,255,240,0,0,31,192,2,255,192,63,64,0,0,11,0,0,127,64,24,0,0,0,0,0,0,10,0, + // 0x5931 失 + 49,89,34,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,47,208,7,240,0,0,0,0,0,63,192,7,240,0,0,0,0,0,127,128,7,240,0,0,0,0,0,191,149,91,249,85,85,80,0,0,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,11,244,0,7,240,0,0,0,0,31,240,0,7,240,0,0,0,0,63,208,0,11,240,0,0,0,0,191,192,0,11,240,0,0,0,0,31,0,0,11,240,0,0,0,0,1,0,0,11,240,0,0,0,0,0,0,0,15,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,127,255,85,85,85,64,0,0,0,63,255,0,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,255,47,192,0,0,0,0,0,3,254,15,240,0,0,0,0,0,11,252,11,252,0,0,0,0,0,47,244,3,255,0,0,0,0,0,255,224,0,255,192,0,0,0,7,255,128,0,127,244,0,0,0,47,254,0,0,31,255,0,0,2,255,244,0,0,7,255,228,0,127,255,192,0,0,0,191,255,208,255,253,0,0,0,0,31,255,208,63,208,0,0,0,0,1,255,128,40,0,0,0,0,0,0,27,0, + // 0x5934 头 + 52,89,33,35,59,37,2,253,0,0,0,0,26,128,0,0,0,0,0,0,0,47,192,0,0,0,0,15,208,0,47,192,0,0,0,0,47,253,0,47,192,0,0,0,0,27,255,208,47,192,0,0,0,0,0,191,248,47,192,0,0,0,0,0,11,252,63,192,0,0,0,0,0,1,240,63,192,0,0,0,1,0,0,16,63,128,0,0,0,7,224,0,0,63,128,0,0,0,15,255,64,0,63,128,0,0,0,7,255,224,0,63,128,0,0,0,0,127,253,0,63,128,0,0,0,0,7,254,0,63,64,0,0,0,0,0,188,0,63,64,0,0,0,0,0,16,0,127,0,0,0,0,0,0,0,0,191,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,31,241,0,0,0,0,0,0,0,63,211,224,0,0,0,0,0,0,255,143,254,0,0,0,0,0,3,255,7,255,208,0,0,0,0,15,252,0,127,253,0,0,0,0,191,244,0,7,255,128,0,0,7,255,192,0,0,191,244,0,0,191,254,0,0,0,31,254,0,111,255,244,0,0,0,3,255,128,127,255,64,0,0,0,0,191,64,47,228,0,0,0,0,0,29,0,9,0,0,0,0,0,0,0,0, + // 0x597d 好 + 125,89,35,36,68,37,1,252,0,14,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,1,255,255,255,255,64,0,47,128,1,255,255,255,255,224,0,63,64,1,255,255,255,255,192,0,63,64,0,0,0,0,255,64,0,63,0,0,0,0,2,254,0,0,127,0,0,0,0,7,248,0,127,255,255,248,0,0,31,240,0,127,255,255,248,0,0,127,192,0,127,255,255,244,0,2,255,0,0,0,252,3,244,0,7,252,0,0,1,252,3,244,0,7,240,0,0,2,248,3,240,0,7,240,0,0,3,244,7,240,0,7,240,0,0,3,240,7,251,255,255,255,255,248,7,240,11,235,255,255,255,255,248,11,224,15,235,255,255,255,255,248,15,208,15,209,85,91,245,85,80,15,192,31,192,0,7,240,0,0,31,240,47,192,0,7,240,0,0,47,253,63,64,0,7,240,0,0,63,255,255,0,0,7,240,0,0,31,191,255,0,0,7,240,0,0,2,15,254,0,0,7,240,0,0,0,3,255,64,0,7,240,0,0,0,7,255,208,0,7,240,0,0,0,15,255,244,0,7,240,0,0,0,47,215,253,0,7,240,0,0,0,127,193,252,0,7,240,0,0,1,255,0,180,0,7,240,0,0,11,253,0,16,21,91,240,0,0,63,244,0,0,47,255,240,0,0,15,208,0,0,15,255,208,0,0,7,0,0,0,15,254,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x59cb 始 + 203,89,35,35,59,37,1,253,0,15,128,0,0,42,64,0,0,0,31,192,0,0,63,192,0,0,0,31,192,0,0,63,128,0,0,0,47,128,0,0,127,64,0,0,0,63,64,0,0,191,0,0,0,0,63,0,0,0,254,0,0,0,0,63,0,0,0,253,0,160,0,0,191,0,0,2,252,3,244,0,127,255,255,248,3,248,2,252,0,127,255,255,248,3,240,0,254,0,127,255,255,244,11,240,0,127,64,1,252,3,244,15,208,0,63,192,1,248,3,240,31,214,171,255,208,2,248,3,247,255,255,255,255,240,3,244,7,243,255,255,255,255,244,3,240,7,243,255,255,170,87,252,7,240,11,225,64,0,0,1,248,11,224,15,208,0,0,0,0,128,15,208,15,208,0,0,0,0,0,15,192,31,192,0,0,0,0,0,31,208,47,192,63,255,255,255,192,47,248,63,128,63,255,255,255,192,63,255,191,0,63,255,255,255,192,63,255,255,0,63,64,0,31,192,6,31,254,0,63,64,0,31,192,0,3,255,64,63,64,0,31,192,0,7,255,208,63,64,0,31,192,0,15,255,248,63,64,0,31,192,0,63,215,253,63,64,0,31,192,0,191,128,252,63,64,0,31,192,3,255,0,112,63,255,255,255,192,31,252,0,0,63,255,255,255,192,47,240,0,0,63,255,255,255,192,15,128,0,0,63,64,0,31,192,6,0,0,0,63,64,0,26,128, + // 0x5b50 子 + 80,91,33,34,50,37,2,252,0,85,85,85,85,85,85,0,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,240,0,1,255,255,255,255,255,255,192,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,11,255,64,0,0,0,0,0,1,127,252,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,1,149,95,244,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,255,224,0,0,0,0,0,0,127,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,35,35,59,37,1,253,0,0,0,57,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,5,85,95,245,85,85,85,85,64,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,1,255,7,255,255,255,248,0,0,3,253,7,255,255,255,255,0,0,11,248,7,255,255,255,252,0,0,31,240,0,0,0,31,244,0,0,63,208,0,0,0,127,208,0,0,255,208,0,0,1,255,64,0,3,255,208,0,0,27,252,0,0,15,255,208,0,0,31,240,0,0,127,255,208,0,0,31,192,0,0,127,223,208,0,0,47,192,0,0,63,15,209,255,255,255,255,255,244,28,15,209,255,255,255,255,255,244,0,15,209,255,255,255,255,255,244,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,64,47,192,0,0,0,15,208,0,255,255,192,0,0,0,15,208,0,191,255,64,0,0,0,15,208,0,127,249,0,0,0, + // 0x5b89 安 + 137,91,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,244,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,128,0,0,0,0,0,191,0,63,128,0,36,0,0,0,191,0,63,128,0,127,128,0,0,191,0,63,128,0,255,0,0,0,191,0,63,128,1,254,0,0,0,191,0,0,0,3,252,0,0,0,0,0,0,0,7,248,0,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,21,85,191,149,85,95,245,85,0,0,0,255,0,0,15,240,0,0,0,1,254,0,0,31,224,0,0,0,3,252,0,0,47,208,0,0,0,7,248,0,0,63,192,0,0,0,15,240,0,0,255,64,0,0,0,47,254,64,2,255,0,0,0,0,63,255,249,7,252,0,0,0,0,191,255,255,239,244,0,0,0,0,27,6,255,255,224,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,47,255,255,128,0,0,0,0,6,255,251,255,248,0,0,0,1,191,255,128,127,255,128,0,26,255,255,248,0,7,255,244,0,31,255,255,128,0,0,127,248,0,11,255,224,0,0,0,11,240,0,3,148,0,0,0,0,1,128,0, + // 0x5b8c 完 + 140,91,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,149,85,85,85,85,85,255,0,63,64,0,0,0,0,0,191,0,63,64,0,0,0,0,0,191,0,63,64,0,0,0,0,0,191,0,63,71,255,255,255,255,240,191,0,21,7,255,255,255,255,240,85,0,0,7,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,47,192,3,244,0,0,0,0,0,63,192,3,244,0,0,0,0,0,63,128,3,244,0,0,0,0,0,127,64,3,244,0,0,0,0,0,191,0,3,244,0,0,0,0,0,255,0,3,244,0,4,0,0,3,253,0,3,244,0,15,128,0,11,252,0,3,244,0,15,192,0,63,240,0,3,244,0,15,192,2,255,208,0,3,248,0,47,192,191,255,64,0,3,255,255,255,128,255,252,0,0,2,255,255,255,0,127,208,0,0,0,191,255,253,0,56,0,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,34,36,68,37,1,252,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,229,85,85,85,85,85,111,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,85,85,85,85,85,47,192,15,211,255,255,255,255,255,47,192,0,3,255,255,255,255,255,0,0,0,3,255,255,255,255,255,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,3,244,1,252,0,0,0,0,0,7,244,1,252,0,0,0,0,0,7,240,1,253,0,0,0,0,0,11,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,31,244,1,252,0,0,0,0,0,63,252,1,252,0,0,0,0,0,63,254,1,252,0,0,0,0,0,191,255,65,252,0,0,0,0,0,254,63,225,252,0,0,0,0,3,252,15,254,252,0,0,0,0,11,248,3,255,253,0,0,0,0,47,240,0,255,255,255,255,255,240,127,208,0,31,255,255,255,255,224,47,128,0,0,111,255,255,255,208,10,0,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,35,36,68,37,1,252,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,208,0,20,0,0,0,31,192,15,208,0,255,64,0,0,31,192,15,208,2,254,0,0,0,31,192,15,208,11,254,170,170,160,31,192,15,208,47,255,255,255,253,31,192,0,0,191,255,255,255,252,0,0,0,7,255,128,0,15,244,0,0,0,47,255,240,0,63,224,0,0,2,255,235,252,1,255,128,0,0,3,255,66,255,75,254,0,0,0,0,248,0,127,255,244,0,0,0,0,0,0,31,255,208,0,0,0,0,0,0,111,255,248,0,0,0,0,0,7,255,255,255,224,0,0,0,1,191,255,139,255,255,164,0,1,191,255,248,0,191,255,255,244,127,255,255,64,0,6,255,255,224,63,255,255,255,255,255,255,255,192,31,231,255,255,255,255,255,6,64,4,2,255,255,255,255,255,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,2,248,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0, + // 0x5bab 宫 + 171,91,31,36,32,37,3,252,0,0,0,47,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,63,192,0,0,0,0,0,0,31,224,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,85,85,85,85,85,86,252,253,0,0,0,0,0,2,252,253,0,0,0,0,0,2,252,253,63,255,255,255,255,242,252,253,63,255,255,255,255,242,252,0,63,255,255,255,255,240,0,0,63,0,0,0,7,240,0,0,63,0,0,0,7,240,0,0,63,0,0,0,7,240,0,0,63,0,0,0,7,240,0,0,63,255,255,255,255,240,0,0,63,255,255,255,255,240,0,0,63,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,255,128,3,255,255,255,255,255,255,128,3,255,255,255,255,255,255,128,3,240,0,0,0,0,63,128,3,240,0,0,0,0,63,128,3,240,0,0,0,0,63,128,3,240,0,0,0,0,63,128,3,240,0,0,0,0,63,128,3,255,255,255,255,255,255,128,3,255,255,255,255,255,255,128,3,255,255,255,255,255,255,128,3,240,0,0,0,0,63,128,0,0,0,0,0,0,0,0, + // 0x5bf9 对 + 249,91,34,35,59,37,2,253,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,127,255,255,248,0,0,15,192,0,127,255,255,252,0,0,15,192,0,127,255,255,252,0,0,15,192,0,21,85,86,252,0,0,15,192,0,0,0,3,248,255,255,255,255,208,0,0,3,248,255,255,255,255,208,0,0,3,244,255,255,255,255,208,0,0,7,240,85,85,95,213,64,7,64,11,240,0,0,15,192,0,31,208,15,240,0,0,15,192,0,31,244,15,224,0,0,15,192,0,7,253,31,208,29,0,15,192,0,1,255,111,192,191,0,15,192,0,0,127,255,128,63,128,15,192,0,0,31,255,64,47,192,15,192,0,0,7,255,0,15,224,15,192,0,0,2,255,0,7,240,15,192,0,0,2,255,192,3,248,15,192,0,0,3,255,224,2,252,15,192,0,0,11,255,248,1,244,15,192,0,0,31,247,252,0,64,15,192,0,0,63,210,255,0,0,15,192,0,0,191,128,255,64,0,15,192,0,1,255,0,63,0,0,15,192,0,7,253,0,40,0,0,15,192,0,31,248,0,0,0,0,15,192,0,191,224,0,0,0,170,191,192,0,255,192,0,0,0,127,255,192,0,62,0,0,0,0,63,255,64,0,24,0,0,0,0,63,248,0,0, + // 0x5c06 将 + 6,92,35,35,59,37,1,253,0,3,244,0,0,0,0,180,0,0,3,244,0,0,1,191,253,0,0,3,244,0,90,255,255,255,0,0,3,244,191,255,255,255,228,0,0,3,244,255,255,255,144,0,0,30,3,244,191,165,0,0,0,0,127,3,244,0,0,108,0,15,128,63,131,244,5,0,252,0,31,224,31,211,244,63,0,254,0,63,192,15,243,244,63,64,127,0,191,64,7,243,244,31,192,63,1,254,0,3,251,244,15,208,63,67,252,0,2,255,244,11,224,63,75,240,0,0,211,244,7,240,16,31,208,0,0,3,244,3,144,0,63,128,0,0,3,244,0,0,0,31,208,0,0,3,244,0,0,0,15,224,0,0,3,244,0,0,0,15,224,0,0,3,244,255,255,255,255,255,244,0,3,244,255,255,255,255,255,244,0,7,244,255,255,255,255,255,244,0,63,244,0,0,0,15,224,0,2,255,244,0,80,0,15,224,0,31,255,244,3,244,0,15,224,0,191,251,244,3,252,0,15,224,0,191,211,244,1,255,0,15,224,0,63,3,244,0,127,128,15,224,0,40,3,244,0,63,192,15,224,0,0,3,244,0,15,240,15,224,0,0,3,244,0,11,128,15,224,0,0,3,244,0,1,0,15,224,0,0,3,244,0,0,21,95,224,0,0,3,244,0,0,63,255,208,0,0,3,244,0,0,47,255,192,0,0,3,244,0,0,31,254,0,0, + // 0x5c0f 小 + 15,92,35,36,68,37,1,252,0,0,0,0,84,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,9,0,0,253,0,7,0,0,0,15,240,0,253,0,63,128,0,0,31,224,0,253,0,63,208,0,0,31,208,0,253,0,31,240,0,0,47,192,0,253,0,15,244,0,0,63,192,0,253,0,7,252,0,0,127,128,0,253,0,3,253,0,0,191,64,0,253,0,1,254,0,0,255,0,0,253,0,0,255,0,1,254,0,0,253,0,0,191,128,3,253,0,0,253,0,0,63,192,3,252,0,0,253,0,0,63,208,11,244,0,0,253,0,0,31,224,15,240,0,0,253,0,0,15,240,63,224,0,0,253,0,0,11,244,127,192,0,0,253,0,0,7,248,47,64,0,0,253,0,0,3,252,2,0,0,0,253,0,0,3,224,0,0,0,0,253,0,0,1,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,42,91,253,0,0,0,0,0,0,63,255,252,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,15,255,144,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c31 就 + 49,92,35,35,59,37,1,253,0,0,254,0,0,3,244,0,0,0,0,254,0,0,3,244,36,0,0,0,254,0,0,3,245,252,0,0,0,254,0,0,3,244,255,0,0,0,254,0,0,3,244,63,128,63,255,255,255,248,3,244,31,192,63,255,255,255,248,3,244,15,240,63,255,255,255,248,3,244,3,224,0,0,0,0,0,3,244,1,0,0,0,0,0,0,3,248,0,0,3,255,255,255,203,255,255,255,244,3,255,255,255,203,255,255,255,244,3,255,255,255,203,255,255,255,244,3,240,0,31,192,3,244,0,0,3,240,0,31,192,3,244,0,0,3,240,0,31,192,3,255,128,0,3,240,0,31,192,7,255,128,0,3,240,0,31,192,7,255,128,0,3,255,255,255,192,11,255,128,0,3,255,255,255,192,15,255,128,0,3,255,255,255,192,15,255,128,0,0,0,190,0,0,31,239,128,0,0,0,190,6,0,47,239,128,0,3,244,190,63,64,63,175,128,0,3,240,190,31,128,127,111,128,0,7,240,190,15,192,191,47,128,0,15,208,190,11,224,253,47,128,224,15,192,190,7,243,252,47,128,252,47,192,190,3,247,248,47,128,248,63,64,190,2,79,240,47,128,248,191,0,190,0,47,208,47,129,248,29,0,254,0,191,192,47,255,248,0,127,253,2,255,0,31,255,240,0,63,252,0,253,0,11,255,208,0,47,224,0,36,0,0,84,0, + // 0x5c4f 屏 + 79,92,34,34,50,37,1,252,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,254,0,0,0,0,0,191,0,0,254,0,0,0,0,0,191,0,0,254,0,0,0,0,0,191,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,254,0,109,0,0,31,128,0,0,254,0,191,0,0,63,192,0,0,254,0,63,128,0,127,64,0,0,254,0,47,192,0,254,0,0,0,254,0,15,192,0,252,0,0,0,254,127,255,255,255,255,255,192,0,253,127,255,255,255,255,255,192,0,253,63,255,255,255,255,255,192,0,253,0,15,208,1,252,0,0,0,252,0,15,208,1,252,0,0,1,252,0,15,208,1,252,0,0,1,252,0,15,208,1,252,0,0,2,253,255,255,255,255,255,255,240,3,249,255,255,255,255,255,255,240,3,249,255,255,255,255,255,255,240,3,244,0,47,192,1,252,0,0,7,240,0,63,128,1,252,0,0,11,240,0,255,0,1,252,0,0,15,224,2,254,0,1,252,0,0,31,208,11,252,0,1,252,0,0,63,192,127,244,0,1,252,0,0,127,65,255,208,0,1,252,0,0,47,0,127,64,0,1,252,0,0,5,0,40,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0, + // 0x5de5 工 + 229,93,33,28,252,37,2,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,10,170,170,175,250,170,170,168,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x5dee 差 + 238,93,34,35,59,37,1,253,0,0,24,0,0,0,228,0,0,0,0,254,0,0,2,253,0,0,0,0,191,0,0,3,252,0,0,0,0,63,192,0,11,240,0,0,0,0,31,192,0,15,208,0,0,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,244,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,253,255,255,255,255,248,0,0,3,249,255,255,255,255,248,0,0,11,245,255,255,255,255,248,0,0,15,240,0,3,240,0,0,0,0,31,208,0,3,240,0,0,0,0,63,192,0,3,240,0,0,0,0,255,128,0,3,240,0,0,0,2,255,0,0,3,240,0,0,0,7,252,0,0,3,240,0,0,0,47,248,191,255,255,255,255,255,192,127,224,191,255,255,255,255,255,192,31,128,191,255,255,255,255,255,192,2,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,32,32,0,37,3,254,21,85,85,85,85,85,84,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,6,160,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,255,255,255,255,255,254,0,11,255,255,255,255,255,254,0,11,255,255,255,255,255,254,0,11,245,85,85,85,85,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,121,11,240,0,0,0,0,0,127,11,240,0,0,0,0,0,191,11,240,0,0,0,0,0,255,11,240,0,0,0,0,0,254,11,244,0,0,0,0,2,253,7,254,85,85,85,85,111,252,3,255,255,255,255,255,255,248,0,255,255,255,255,255,255,224,0,27,255,255,255,255,254,0, + // 0x5e73 平 + 115,94,33,33,41,37,2,253,5,85,85,85,85,85,85,84,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,20,0,0,0,127,0,7,240,0,63,128,0,0,63,64,7,240,0,127,128,0,0,63,192,7,240,0,191,0,0,0,31,208,7,240,0,254,0,0,0,15,224,7,240,2,252,0,0,0,11,240,7,240,3,248,0,0,0,7,244,7,240,7,240,0,0,0,3,248,7,240,15,224,0,0,0,2,128,7,240,6,192,0,0,0,0,0,7,240,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x5e76 并 + 118,94,33,36,68,37,2,252,0,1,208,0,0,1,228,0,0,0,15,240,0,0,3,253,0,0,0,7,248,0,0,7,252,0,0,0,2,253,0,0,15,240,0,0,0,0,255,0,0,47,208,0,0,0,0,191,64,0,63,192,0,0,0,0,63,128,0,191,0,0,0,0,0,45,0,0,30,0,0,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,85,85,255,85,85,127,213,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,253,0,0,63,128,0,0,0,1,253,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,11,244,0,0,63,128,0,0,0,15,240,0,0,63,128,0,0,0,63,224,0,0,63,128,0,0,0,191,192,0,0,63,128,0,0,2,255,64,0,0,63,128,0,0,31,253,0,0,0,63,128,0,0,191,244,0,0,0,63,128,0,0,63,192,0,0,0,63,128,0,0,14,0,0,0,0,47,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e8a 床 + 138,94,35,35,59,37,1,253,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,85,85,85,127,149,85,85,80,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,252,0,0,0,0,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,7,248,0,0,0,2,252,127,255,255,255,255,255,240,2,252,127,255,255,255,255,255,240,2,252,127,255,255,255,255,255,240,2,252,0,0,47,255,0,0,0,2,252,0,0,127,255,128,0,0,2,248,0,0,255,255,208,0,0,3,248,0,2,255,255,240,0,0,3,244,0,7,251,251,252,0,0,3,244,0,31,243,245,255,0,0,3,244,0,63,195,244,191,192,0,7,240,0,255,67,244,47,240,0,11,240,3,254,3,244,15,252,0,15,224,31,252,3,244,3,255,64,15,208,191,240,3,244,0,255,224,31,195,255,192,3,244,0,63,244,63,193,254,0,3,244,0,11,224,63,128,116,0,3,244,0,1,192,191,0,0,0,3,244,0,0,0,46,0,0,0,3,244,0,0,0,5,0,0,0,3,244,0,0,0, + // 0x5e94 应 + 148,94,35,36,68,37,1,252,0,0,0,0,111,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,224,0,0,0,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,5,0,0,100,0,2,252,0,0,127,0,0,191,0,2,252,6,0,63,0,0,255,0,2,252,63,0,63,64,0,255,0,2,252,63,128,47,128,1,253,0,2,252,31,192,31,192,2,252,0,2,252,15,208,15,208,3,252,0,2,252,15,224,15,224,7,244,0,2,252,7,240,11,240,11,240,0,2,252,3,244,7,240,15,224,0,2,248,3,248,3,240,31,208,0,3,248,2,252,3,244,47,192,0,3,248,1,253,3,248,63,64,0,3,244,0,254,2,224,191,0,0,3,244,0,191,0,0,254,0,0,7,240,0,184,0,1,252,0,0,7,240,0,0,0,3,248,0,0,11,240,0,0,0,11,240,0,0,15,224,0,0,0,15,208,0,0,15,208,0,0,0,47,192,0,0,47,195,255,255,255,255,255,255,244,63,195,255,255,255,255,255,255,244,127,67,255,255,255,255,255,255,244,63,1,85,85,85,85,85,85,80,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e9f 废 + 159,94,34,36,68,37,1,252,0,0,0,0,111,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,224,0,0,0,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,248,0,0,0,0,0,0,0,3,248,2,164,11,240,9,0,0,3,248,3,248,15,224,63,0,0,3,248,7,244,15,208,63,192,0,3,248,11,240,31,192,15,240,0,3,248,15,224,47,192,3,248,0,3,248,47,192,63,128,1,224,0,3,248,127,255,255,255,255,255,192,3,248,63,255,255,255,255,255,192,3,248,63,255,255,255,255,255,192,3,248,20,0,253,0,0,0,0,3,248,0,2,252,0,0,0,0,3,248,0,3,248,0,0,0,0,3,244,0,11,255,255,255,224,0,3,244,0,15,255,255,255,248,0,3,244,0,63,255,255,255,240,0,7,240,0,191,224,0,47,208,0,7,240,1,255,248,0,127,192,0,11,240,7,254,254,1,255,0,0,15,240,31,244,191,199,252,0,0,15,224,127,208,47,255,244,0,0,15,210,255,128,11,255,208,0,0,31,223,254,0,27,255,244,0,0,63,199,244,1,255,255,255,128,0,63,130,192,111,255,215,255,254,64,127,64,3,255,253,0,127,255,224,47,0,1,255,208,0,6,255,192,6,0,0,184,0,0,0,27,64,0,0,0,0,0,0,0,0,0, + // 0x5ea6 度 + 166,94,34,35,59,37,1,253,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,127,64,0,0,0,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,252,0,0,0,0,0,0,0,2,252,0,47,128,0,127,0,0,2,252,0,47,128,0,127,0,0,2,252,0,47,128,0,127,0,0,2,252,255,255,255,255,255,255,224,2,252,255,255,255,255,255,255,224,2,252,255,255,255,255,255,255,208,2,252,0,47,128,0,127,0,0,2,248,0,47,128,0,127,0,0,2,248,0,47,128,0,127,0,0,2,248,0,47,255,255,255,0,0,2,248,0,47,255,255,255,0,0,2,248,0,26,170,170,170,0,0,3,248,0,0,0,0,0,0,0,3,244,191,255,255,255,255,224,0,3,244,191,255,255,255,255,252,0,3,240,191,255,255,255,255,248,0,3,240,0,127,0,0,15,240,0,7,240,0,63,192,0,63,208,0,11,224,0,15,244,1,255,64,0,15,208,0,7,254,15,253,0,0,15,208,0,0,255,255,240,0,0,31,192,0,0,63,255,192,0,0,63,192,0,27,255,255,249,0,0,63,64,107,255,255,255,255,254,80,191,3,255,255,244,6,255,255,240,46,1,255,253,0,0,31,255,208,4,0,233,0,0,0,0,27,128, + // 0x5f00 开 + 0,95,33,33,41,37,2,252,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,0,0,127,0,0,31,192,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,255,85,85,111,213,85,64,0,0,254,0,0,31,192,0,0,0,0,253,0,0,31,192,0,0,0,1,253,0,0,31,192,0,0,0,2,252,0,0,31,192,0,0,0,3,252,0,0,31,192,0,0,0,11,248,0,0,31,192,0,0,0,15,240,0,0,31,192,0,0,0,47,224,0,0,31,192,0,0,0,127,192,0,0,31,192,0,0,1,255,128,0,0,31,192,0,0,7,255,0,0,0,31,192,0,0,47,252,0,0,0,31,192,0,0,191,240,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,14,0,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f03 弃 + 3,95,34,36,68,37,1,252,0,0,0,0,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,224,63,255,255,255,255,255,255,255,224,63,255,255,255,255,255,255,255,224,0,0,1,254,0,0,0,0,0,0,0,3,252,0,3,192,0,0,0,0,7,244,0,15,248,0,0,0,0,15,224,0,7,255,0,0,0,0,47,192,0,0,191,208,0,1,85,127,235,255,255,255,248,0,15,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,255,128,11,254,170,149,84,0,0,63,208,0,0,0,0,0,5,64,15,64,0,0,47,128,0,15,224,0,0,0,0,47,128,0,15,224,0,0,0,0,47,128,0,15,224,0,0,0,0,47,128,0,15,224,0,0,0,0,63,128,0,15,224,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,127,0,0,15,224,0,0,0,0,255,0,0,15,224,0,0,0,1,254,0,0,15,224,0,0,0,3,252,0,0,15,224,0,0,0,15,248,0,0,15,224,0,0,0,191,240,0,0,15,224,0,0,7,255,192,0,0,15,224,0,0,127,254,0,0,0,15,224,0,0,47,240,0,0,0,15,224,0,0,14,64,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f0f 式 + 15,95,34,35,59,37,2,253,0,0,0,0,6,160,4,0,0,0,0,0,0,7,240,63,0,0,0,0,0,0,7,244,127,208,0,0,0,0,0,7,244,31,244,0,0,0,0,0,7,244,3,253,0,0,0,0,0,7,244,0,252,0,0,0,0,0,7,244,0,32,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,85,87,249,85,85,64,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,252,0,0,0,5,85,85,85,66,252,0,0,0,47,255,255,255,226,252,0,0,0,47,255,255,255,225,253,0,0,0,47,255,255,255,224,253,0,0,0,0,1,252,0,0,254,0,0,0,0,1,252,0,0,255,0,0,0,0,1,252,0,0,191,0,0,0,0,1,252,0,0,191,0,0,0,0,1,252,0,0,127,64,0,0,0,1,252,0,0,63,128,0,0,0,1,252,0,0,63,192,7,0,0,1,252,0,0,31,208,7,224,0,1,252,6,248,15,224,11,224,0,1,255,255,248,15,240,11,224,0,107,255,255,248,7,248,15,208,127,255,255,254,144,3,254,15,192,127,255,254,64,0,1,255,255,192,63,250,64,0,0,0,191,255,128,41,0,0,0,0,0,47,255,0,0,0,0,0,0,0,6,248,0, + // 0x5f15 引 + 21,95,29,36,32,37,3,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,63,64,127,255,255,254,0,0,63,64,127,255,255,254,0,0,63,64,127,255,255,254,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,31,255,255,254,0,0,63,64,31,255,255,254,0,0,63,64,47,255,255,254,0,0,63,64,47,192,0,0,0,0,63,64,63,128,0,0,0,0,63,64,63,64,0,0,0,0,63,64,63,0,0,0,0,0,63,64,127,0,0,0,0,0,63,64,191,255,255,255,0,0,63,64,255,255,255,255,0,0,63,64,255,255,255,254,0,0,63,64,253,0,0,254,0,0,63,64,188,0,0,254,0,0,63,64,0,0,0,253,0,0,63,64,0,0,0,253,0,0,63,64,0,0,0,253,0,0,63,64,0,0,1,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,3,248,0,0,63,64,0,0,7,248,0,0,63,64,2,165,111,244,0,0,63,64,1,255,255,240,0,0,63,64,0,255,255,208,0,0,63,64,0,255,254,0,0,0,63,64,0,0,0,0,0,0,0,0, + // 0x5f39 弹 + 57,95,34,36,68,37,2,252,0,0,0,0,16,0,2,64,0,0,0,0,2,240,0,7,244,0,191,255,252,3,252,0,11,240,0,191,255,252,0,253,0,15,224,0,191,255,252,0,191,0,47,192,0,0,1,252,0,63,128,63,64,0,0,1,252,0,31,64,191,0,0,0,1,252,0,8,0,253,0,0,0,1,252,42,170,171,254,170,0,0,1,252,63,255,255,255,255,0,63,255,252,63,255,255,255,255,0,63,255,252,63,64,127,64,127,0,63,255,252,63,64,127,64,127,0,62,0,0,63,64,127,64,127,0,62,0,0,63,255,255,255,255,0,126,0,0,63,255,255,255,255,0,126,0,0,63,170,191,170,191,0,126,0,0,63,64,127,64,127,0,126,0,0,63,64,127,64,127,0,127,255,252,63,234,255,234,255,0,191,255,248,63,255,255,255,255,0,191,255,248,63,255,255,255,255,0,0,2,248,0,0,127,64,0,0,0,2,248,0,0,127,64,0,0,0,2,244,0,0,127,64,0,0,0,2,247,255,255,255,255,255,208,0,3,247,255,255,255,255,255,208,0,3,247,255,255,255,255,255,208,0,3,240,0,0,127,64,0,0,0,3,240,0,0,127,64,0,0,0,7,240,0,0,127,64,0,0,16,31,224,0,0,127,64,0,0,63,255,208,0,0,127,64,0,0,31,255,192,0,0,127,64,0,0,15,254,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f52 归 + 82,95,31,36,32,37,3,252,0,1,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,252,31,255,255,255,252,105,2,252,31,255,255,255,252,254,2,252,31,255,255,255,252,254,2,252,5,85,85,87,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,0,0,0,2,252,254,2,252,1,85,85,87,252,254,2,252,7,255,255,255,252,254,2,252,7,255,255,255,252,254,2,248,7,255,255,255,252,254,2,248,0,0,0,2,252,254,3,248,0,0,0,2,252,254,3,248,0,0,0,2,252,254,3,244,0,0,0,2,252,85,7,244,0,0,0,2,252,0,11,240,0,0,0,2,252,0,15,240,0,0,0,2,252,0,15,224,0,0,0,2,252,0,47,192,0,0,0,2,252,0,63,192,21,85,85,87,252,0,255,64,127,255,255,255,252,2,255,0,127,255,255,255,252,11,252,0,127,255,255,255,252,47,244,0,0,0,0,2,252,15,224,0,0,0,0,2,252,3,64,0,0,0,0,1,164,0,0,0,0,0,0,0,0, + // 0x5f84 径 + 132,95,35,35,59,37,1,253,0,0,144,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,11,252,63,255,255,255,254,0,0,31,240,63,255,255,255,255,64,0,127,192,63,255,255,255,255,0,2,255,64,0,184,0,1,254,0,11,253,0,0,253,0,3,252,0,63,244,0,0,191,0,11,244,0,127,208,61,0,63,192,31,224,0,47,0,191,64,31,240,127,192,0,8,1,254,0,11,253,255,0,0,0,3,252,0,2,255,252,0,0,0,15,244,0,0,255,244,0,0,0,47,224,0,2,255,253,0,0,0,191,192,0,47,255,255,208,0,2,255,192,6,255,244,255,254,64,11,255,193,191,255,64,31,255,248,63,255,194,255,248,0,2,255,244,255,239,192,254,64,26,128,27,224,127,95,192,80,0,47,192,0,64,61,31,192,0,0,47,192,0,0,20,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,31,255,255,255,255,64,0,31,192,31,255,255,255,255,64,0,31,192,31,255,255,255,255,64,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,195,255,255,255,255,255,244,0,31,195,255,255,255,255,255,244,0,31,195,255,255,255,255,255,244,0,31,192,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,35,35,59,37,1,253,0,0,144,0,0,42,64,0,0,0,2,252,0,0,63,128,0,0,0,7,252,0,0,63,128,0,0,0,31,240,0,0,63,128,0,0,0,127,208,0,0,63,128,0,0,1,255,64,47,255,255,255,255,128,11,253,0,47,255,255,255,255,128,63,244,0,47,255,255,255,255,128,63,192,16,0,0,63,128,0,0,31,0,189,0,0,63,128,0,0,4,1,253,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,15,243,255,255,255,255,255,248,0,47,211,255,255,255,255,255,248,0,191,195,255,255,255,255,255,248,2,255,192,0,0,0,15,224,0,11,255,192,0,0,0,15,224,0,47,255,192,0,0,0,15,224,0,191,255,192,0,0,0,15,224,0,127,159,193,255,255,255,255,255,240,61,31,193,255,255,255,255,255,240,20,31,193,255,255,255,255,255,240,0,31,192,0,0,0,15,224,0,0,31,192,1,208,0,15,224,0,0,31,192,11,240,0,15,224,0,0,31,192,3,252,0,15,224,0,0,31,192,2,254,0,15,224,0,0,31,192,0,255,0,15,224,0,0,31,192,0,63,192,15,224,0,0,31,192,0,47,192,15,224,0,0,31,192,0,14,0,15,224,0,0,31,192,0,0,16,31,224,0,0,31,192,0,0,63,255,208,0,0,31,192,0,0,47,255,192,0,0,31,192,0,0,15,254,0,0, + // 0x5faa 循 + 170,95,35,35,59,37,1,253,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,6,253,0,0,15,240,0,0,91,255,255,64,0,63,208,126,255,255,255,249,0,0,191,64,127,255,255,253,0,0,2,254,0,127,250,82,248,0,0,11,248,0,127,0,2,248,0,0,63,224,0,126,0,2,248,0,0,127,128,144,126,0,2,248,0,0,45,1,253,127,255,255,255,255,244,4,3,252,127,255,255,255,255,244,0,11,240,127,255,255,255,255,244,0,31,224,126,0,3,244,0,0,0,63,192,126,0,3,240,0,0,0,255,128,126,0,3,240,0,0,3,255,128,126,31,255,255,255,128,31,255,128,126,31,255,255,255,192,127,255,128,126,31,255,255,255,192,255,175,128,190,31,128,0,31,192,62,47,128,190,31,128,0,31,192,40,47,128,189,31,149,85,111,192,0,47,128,253,31,255,255,255,192,0,47,128,253,31,255,255,255,192,0,47,128,252,31,128,0,31,192,0,47,128,252,31,128,0,31,192,0,47,129,252,31,128,0,31,192,0,47,130,248,31,255,255,255,192,0,47,130,248,31,255,255,255,192,0,47,131,244,31,149,85,111,192,0,47,135,240,31,128,0,31,192,0,47,139,240,31,128,0,31,192,0,47,143,208,31,255,255,255,192,0,47,159,192,31,255,255,255,192,0,47,131,128,31,149,85,111,192,0,47,128,0,31,128,0,10,128, + // 0x5fae 微 + 174,95,35,35,59,37,1,253,0,14,0,11,192,0,58,0,0,0,47,192,11,192,0,63,0,0,0,127,64,11,192,0,127,0,0,0,255,15,11,194,224,190,0,0,3,252,15,11,194,240,253,0,0,15,244,15,11,194,240,252,0,0,63,208,15,11,194,240,252,0,0,191,64,15,11,194,241,255,255,244,61,7,223,11,194,243,255,255,244,20,15,239,11,194,243,255,255,244,0,47,207,255,255,247,240,15,192,0,63,79,255,255,255,240,15,128,0,191,15,255,255,255,240,31,128,1,254,0,0,0,47,244,31,64,3,253,0,0,0,63,248,47,64,11,253,0,0,0,191,248,47,0,31,253,0,0,0,60,188,63,0,127,253,47,255,255,244,124,63,0,255,253,47,255,255,240,61,62,0,189,189,47,255,255,240,62,125,0,56,189,1,244,63,0,63,188,0,16,189,1,244,63,0,47,252,0,0,189,1,244,63,0,15,248,0,0,189,1,244,63,0,15,240,0,0,189,2,244,63,0,11,240,0,0,189,2,240,63,0,15,240,0,0,189,3,240,63,188,47,244,0,0,189,7,240,63,253,127,252,0,0,189,11,208,255,248,255,254,0,0,189,15,192,255,66,252,127,64,0,189,63,128,96,11,244,63,208,0,189,191,0,0,63,224,15,244,0,189,61,0,0,191,128,7,248,0,189,8,0,0,62,0,1,240,0,189,0,0,0,4,0,0,64, + // 0x5fc3 心 + 195,95,35,35,59,37,1,253,0,0,0,80,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,1,255,255,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,80,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,2,64,0,0,64,15,240,0,0,31,192,0,0,252,15,240,0,0,31,240,0,1,252,15,240,0,0,11,248,0,1,252,15,240,0,0,3,252,0,2,252,15,240,0,0,1,254,0,3,248,15,240,0,0,0,255,0,3,244,15,240,0,0,0,127,128,7,240,15,240,0,0,0,63,192,11,240,15,240,0,0,0,31,224,15,240,15,240,0,0,0,15,240,31,208,15,240,0,0,0,11,244,63,192,15,240,0,0,116,7,248,127,192,15,240,0,0,127,3,252,255,64,15,240,0,0,127,2,224,47,0,15,240,0,0,190,0,0,4,0,15,240,0,0,190,0,0,0,0,11,240,0,0,253,0,0,0,0,11,244,0,2,252,0,0,0,0,7,255,255,255,252,0,0,0,0,3,255,255,255,244,0,0,0,0,0,191,255,255,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x5ffd 忽 + 253,95,34,35,59,37,2,253,0,0,57,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,1,255,64,255,1,253,7,240,0,7,253,2,252,2,252,3,240,0,47,244,7,248,3,244,7,240,0,191,208,15,240,15,240,7,240,0,127,64,63,192,31,208,7,240,0,13,0,255,64,63,192,11,240,0,0,3,253,0,255,0,11,240,0,0,31,248,2,253,0,15,224,0,0,191,208,11,248,0,15,208,0,7,255,64,47,240,0,31,208,0,15,252,0,191,192,0,63,192,0,3,224,3,255,0,255,255,192,0,0,64,47,252,0,127,255,64,0,0,0,31,224,0,63,248,0,0,0,0,7,139,128,0,0,0,0,0,0,0,47,244,0,0,0,0,0,64,5,11,254,0,13,0,0,0,253,63,129,255,192,191,64,0,0,252,63,128,63,128,63,208,0,2,252,63,128,10,0,15,240,0,3,248,63,128,0,2,7,252,0,15,240,63,128,0,7,225,254,0,47,224,63,128,0,7,224,191,64,127,192,47,192,0,15,224,63,192,255,64,47,255,255,255,208,31,208,61,0,15,255,255,255,192,14,0,0,0,6,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6027 性 + 39,96,34,35,59,37,1,253,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,2,248,15,192,0,0,0,63,128,2,248,15,192,0,0,0,63,128,3,248,15,192,0,0,0,63,128,3,244,15,192,0,0,0,63,136,3,240,15,192,0,0,9,63,253,7,240,15,192,0,0,15,127,191,15,255,255,255,255,192,31,63,175,79,255,255,255,255,192,31,63,159,159,255,255,255,255,192,47,63,143,239,213,95,213,85,64,63,63,139,255,64,15,192,0,0,62,63,129,191,0,15,192,0,0,62,63,128,255,0,15,192,0,0,125,63,128,253,0,15,192,0,0,188,63,128,44,0,15,192,0,0,188,63,128,0,0,15,192,0,0,0,63,128,0,0,31,208,0,0,0,63,128,15,255,255,255,255,64,0,63,128,15,255,255,255,255,64,0,63,128,15,255,255,255,255,64,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,130,255,255,255,255,255,240,0,63,130,255,255,255,255,255,240,0,63,130,255,255,255,255,255,240,0,63,128,85,85,85,85,85,80,0,42,64,0,0,0,0,0,0, + // 0x603b 总 + 59,96,34,35,59,37,2,253,0,0,20,0,0,6,0,0,0,0,1,252,0,0,15,224,0,0,0,0,255,0,0,15,240,0,0,0,0,191,64,0,47,208,0,0,0,0,63,192,0,63,192,0,0,0,0,31,224,0,191,0,0,0,0,0,15,240,0,254,0,0,0,0,0,11,144,2,253,0,0,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,64,0,0,0,127,64,0,0,127,64,0,0,0,127,64,0,0,127,64,0,0,0,127,64,0,0,127,64,0,0,0,127,64,0,0,127,64,0,0,0,127,64,0,0,127,128,0,0,0,127,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,0,0,2,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,106,15,252,0,2,192,0,7,144,191,2,255,64,15,224,0,11,240,191,0,127,208,11,244,0,15,224,191,0,31,240,3,252,0,15,208,191,0,7,192,0,254,0,47,192,191,0,1,0,64,127,64,63,192,191,0,0,0,248,63,192,127,64,191,0,0,0,252,31,208,255,0,191,64,0,2,252,15,192,125,0,127,255,255,255,248,5,0,4,0,63,255,255,255,240,0,0,0,0,11,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,35,35,59,37,1,253,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,167,255,255,255,255,255,244,9,63,252,31,192,0,0,0,0,15,63,188,15,192,0,252,0,0,31,63,126,15,192,0,252,0,0,31,63,95,15,192,0,252,0,0,31,63,79,79,192,0,252,0,0,47,63,79,79,192,0,252,2,144,62,63,75,79,199,192,252,3,240,61,63,64,15,199,192,252,7,224,124,63,64,15,203,192,252,11,208,188,63,64,15,203,192,252,15,192,116,63,64,31,207,128,252,31,128,0,63,64,31,143,65,252,47,0,0,63,64,31,159,1,252,63,0,0,63,64,47,127,2,252,125,0,0,63,64,47,93,3,253,4,0,0,63,64,63,0,3,254,0,0,0,63,64,63,0,7,255,0,0,0,63,64,127,0,15,239,64,0,0,63,64,190,0,31,143,192,0,0,63,64,253,0,63,79,208,0,0,63,64,252,0,191,7,240,0,0,63,66,252,1,253,3,252,0,0,63,67,248,7,248,1,254,0,0,63,71,240,31,240,0,191,128,0,63,79,224,191,192,0,63,244,0,63,95,194,255,64,0,15,248,0,63,75,128,252,0,0,3,240,0,63,65,0,96,0,0,0,144, + // 0x606f 息 + 111,96,35,35,59,37,1,253,0,0,0,1,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,250,170,170,170,191,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,250,170,170,170,175,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,250,170,170,170,175,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,6,170,170,170,170,170,128,0,0,0,0,2,208,0,0,0,0,0,0,0,15,244,0,0,0,0,0,80,0,3,253,0,2,192,0,0,190,15,208,255,64,15,240,0,0,253,15,208,63,208,15,252,0,1,252,15,208,15,208,3,254,0,3,248,15,208,7,0,0,255,64,11,240,15,208,0,2,224,63,208,31,240,15,208,0,3,244,31,240,127,192,15,224,0,7,244,11,244,63,64,15,255,255,255,240,3,244,6,0,7,255,255,255,224,1,128,0,0,1,191,255,255,64,0,0, + // 0x611f 感 + 31,97,35,35,59,37,1,253,0,0,0,0,3,240,61,0,0,0,0,0,0,3,244,191,208,0,0,0,0,0,3,244,47,248,0,0,0,0,0,3,244,2,244,0,1,255,255,255,255,255,255,255,224,1,255,255,255,255,255,255,255,224,1,255,255,255,255,255,255,255,208,1,252,0,0,0,252,0,0,0,1,252,85,85,84,253,1,144,0,1,252,255,255,252,190,3,248,0,1,252,255,255,252,190,7,240,0,1,248,0,0,0,127,11,240,0,1,248,0,0,0,63,79,208,0,2,248,21,85,80,47,175,192,0,2,244,191,255,248,31,255,64,0,3,244,191,255,248,15,255,0,0,3,240,188,1,248,11,252,0,64,7,240,188,1,248,11,248,0,240,11,224,188,1,248,63,252,0,248,15,208,191,255,249,255,255,1,244,31,192,191,255,255,254,63,211,240,63,128,21,86,87,248,31,255,240,191,0,0,11,128,208,7,255,208,46,0,0,47,244,0,0,191,64,8,0,5,75,254,0,1,128,0,0,61,15,208,255,192,15,224,0,0,127,15,208,47,128,15,248,0,0,254,15,208,10,1,3,254,0,1,253,15,208,0,2,224,255,64,3,252,15,208,0,3,244,63,192,15,240,15,224,0,3,240,31,240,63,224,15,255,255,255,240,11,244,47,128,7,255,255,255,208,3,208,2,0,1,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x620f 戏 + 15,98,35,36,68,37,1,252,0,0,0,0,3,244,2,0,0,0,0,0,0,3,248,31,192,0,0,0,0,0,3,248,47,240,0,0,0,0,0,3,248,7,252,0,63,255,255,248,3,248,1,255,0,63,255,255,252,3,252,0,191,0,63,255,255,248,2,252,0,40,0,0,0,3,244,2,252,0,0,0,0,0,3,244,2,252,0,22,144,2,0,7,240,2,254,191,255,224,15,128,7,242,255,255,255,255,240,47,208,11,227,255,255,255,254,144,15,240,15,227,255,255,148,0,0,3,248,31,194,149,253,0,0,0,2,253,47,192,0,253,0,62,0,0,255,63,128,0,254,0,63,64,0,63,255,64,0,254,0,191,0,0,31,255,0,0,191,0,254,0,0,15,254,0,0,191,2,252,0,0,3,253,0,0,127,7,248,0,0,3,254,0,0,127,79,240,0,0,11,255,64,0,63,175,208,0,0,15,255,192,0,63,255,128,0,0,47,255,224,0,47,255,0,0,0,127,207,240,0,31,253,0,0,0,255,71,252,0,15,248,2,64,3,254,2,253,0,63,240,2,240,15,252,0,248,0,255,248,3,244,63,240,0,160,3,255,252,3,240,191,208,0,0,31,255,255,3,240,47,64,0,0,255,240,255,219,224,13,0,0,3,255,192,191,255,208,0,0,0,0,253,0,47,255,192,0,0,0,0,32,0,11,255,128,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,35,36,68,37,1,252,0,0,0,0,7,240,40,0,0,0,0,0,0,7,244,191,64,0,0,0,0,0,7,244,191,240,0,0,0,0,0,7,244,15,253,0,0,0,0,0,7,244,2,254,0,0,0,0,0,3,244,0,60,0,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,253,85,85,87,249,85,85,80,1,252,0,0,3,248,0,0,0,1,252,0,0,3,252,0,0,0,1,252,0,0,2,252,0,185,0,1,252,0,0,2,252,0,255,0,1,255,255,255,65,252,1,253,0,1,255,255,255,65,252,3,252,0,1,255,255,255,64,253,3,248,0,1,253,0,63,64,254,11,240,0,1,252,0,63,64,255,15,224,0,1,252,0,63,64,191,47,208,0,2,252,0,63,64,127,127,128,0,2,252,0,63,64,127,255,0,0,2,252,0,63,0,63,253,0,0,3,252,0,63,0,47,252,0,0,3,248,0,127,0,31,240,1,64,3,248,0,191,0,63,224,2,224,7,244,255,255,0,255,240,2,244,11,240,191,253,3,255,244,3,244,15,240,191,244,15,255,252,3,240,15,224,0,0,127,241,254,3,240,47,208,0,2,255,208,255,139,240,63,192,0,15,255,64,127,255,208,127,128,0,11,252,0,31,255,192,47,0,0,3,224,0,7,255,64,6,0,0,0,64,0,0,84,0,0,0,0,0,0,0,0,0,0, + // 0x6237 户 + 55,98,31,36,32,37,1,252,0,0,0,1,184,0,0,0,0,0,0,2,252,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,64,0,0,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,128,0,0,0,3,244,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,255,255,255,255,255,244,0,63,64,0,0,0,7,244,0,127,0,0,0,0,3,244,0,127,0,0,0,0,1,80,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,253,0,0,0,0,0,0,1,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,11,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,63,64,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,35,34,50,37,1,253,0,0,0,0,0,0,0,111,64,47,255,255,255,208,0,7,255,208,47,255,255,255,209,2,255,255,208,47,255,255,255,215,255,255,248,0,0,0,0,0,7,255,254,64,0,0,0,0,0,7,255,64,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,7,255,255,255,71,240,0,0,0,7,255,255,255,71,240,0,0,0,7,255,255,255,71,240,0,0,0,7,240,0,63,71,240,0,0,0,7,240,0,63,71,255,255,255,248,7,240,0,63,71,255,255,255,248,7,240,0,63,71,255,255,255,248,7,240,0,63,71,245,86,253,80,7,240,0,63,71,240,2,252,0,7,255,255,255,71,240,2,252,0,7,255,255,255,75,240,2,252,0,7,255,255,255,79,224,2,252,0,7,240,0,0,15,224,2,252,0,11,224,0,0,15,208,2,252,0,11,224,0,0,15,192,2,252,0,11,224,0,0,47,192,2,252,0,15,208,0,0,63,128,2,252,0,15,208,0,0,63,64,2,252,0,15,192,0,0,191,0,2,252,0,31,192,0,0,254,0,2,252,0,47,128,0,2,252,0,2,252,0,63,64,0,7,248,0,2,252,0,191,0,0,15,240,0,2,252,0,254,0,0,47,224,0,2,252,0,125,0,0,11,128,0,2,252,0,8,0,0,2,0,0,1,252,0, + // 0x6247 扇 + 71,98,33,33,41,37,1,253,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,191,170,170,170,170,170,252,0,0,190,0,0,0,0,0,252,0,0,190,0,0,0,0,0,252,0,0,191,170,170,170,170,170,252,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,170,170,164,170,170,169,0,0,253,255,255,248,255,255,254,0,0,253,255,255,248,255,255,254,0,0,253,4,2,248,4,0,126,0,0,252,46,2,248,47,0,126,0,1,252,63,130,248,47,192,126,0,1,252,15,210,248,11,240,126,0,2,252,7,242,248,3,240,126,0,3,248,2,130,248,0,128,126,0,7,244,0,22,248,0,26,126,0,11,240,2,250,248,2,254,126,0,15,224,127,254,248,111,254,126,0,31,211,255,210,249,255,224,126,0,63,195,253,2,248,253,0,126,0,127,130,208,2,248,144,0,190,0,255,0,0,171,244,0,59,254,0,45,0,0,255,240,0,63,253,0,4,0,0,191,144,0,31,228,0, + // 0x624b 手 + 75,98,33,36,68,37,2,252,0,0,0,0,0,0,110,0,0,0,0,0,0,6,191,255,128,0,0,5,106,255,255,255,255,208,0,11,255,255,255,255,255,233,0,0,7,255,255,255,254,148,0,0,0,3,255,170,87,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,85,85,87,249,85,85,84,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,1,85,91,244,0,0,0,0,0,2,255,255,240,0,0,0,0,0,0,255,255,224,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,34,35,59,37,2,253,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,31,255,255,255,255,224,0,63,128,31,255,255,255,255,224,0,63,128,31,255,255,255,255,224,0,63,128,5,85,86,254,85,64,0,63,128,0,0,1,252,0,0,255,255,255,192,0,1,252,0,0,255,255,255,192,0,1,252,0,0,255,255,255,192,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,135,208,0,1,252,0,0,0,63,255,208,0,1,252,0,0,1,191,255,224,0,1,252,0,0,191,255,255,144,0,1,252,0,0,255,255,208,0,0,1,252,0,0,255,255,128,0,0,1,252,0,0,180,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,2,252,0,0,63,255,64,0,63,255,252,0,0,47,255,0,0,63,255,252,0,0,31,248,0,0,31,255,240,0,0,0,0,0,0,10,169,0,0,0, + // 0x6267 执 + 103,98,35,36,68,37,1,252,0,47,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,128,0,15,224,0,0,0,63,255,255,63,255,255,255,224,0,63,255,255,63,255,255,255,224,0,63,255,255,63,255,255,255,224,0,0,63,64,0,15,208,15,224,0,0,63,64,0,15,192,15,208,0,0,63,64,0,15,192,15,208,0,0,63,64,0,15,192,15,208,0,0,63,64,4,31,192,15,208,0,0,63,70,31,95,192,15,208,0,0,63,255,127,255,192,15,208,0,0,127,255,111,255,128,15,208,0,27,255,255,67,255,208,15,208,0,191,255,224,0,127,248,15,208,0,127,255,64,0,127,255,79,208,0,62,63,64,0,191,255,239,208,0,0,63,64,0,254,47,239,208,0,0,63,64,1,252,7,207,208,0,0,63,64,3,252,1,79,208,0,0,63,64,7,248,0,15,208,0,0,63,64,15,240,0,11,208,192,0,63,64,47,224,0,11,224,244,0,63,64,127,192,0,7,225,248,0,63,65,255,64,0,3,241,244,5,127,75,254,0,0,3,251,240,31,255,95,252,0,0,2,255,240,15,255,11,224,0,0,0,255,208,15,244,3,128,0,0,0,63,64,0,0,0,0,0,0,0,0,0, + // 0x6279 批 + 121,98,35,35,59,37,1,253,0,63,0,5,64,1,164,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,127,255,255,47,192,2,248,0,0,127,255,255,47,192,2,248,2,0,127,255,255,47,192,2,248,11,192,0,63,0,47,192,2,248,63,240,0,63,0,47,255,242,249,255,192,0,63,0,47,255,242,255,254,0,0,63,0,47,255,242,255,244,0,0,63,0,47,213,82,255,128,0,0,63,94,47,192,2,252,0,0,0,63,254,47,192,2,248,0,0,6,255,255,47,192,2,248,0,0,191,255,249,47,192,2,248,0,0,191,255,64,47,192,2,248,0,0,127,127,0,47,192,2,248,0,0,16,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,1,208,0,63,0,47,192,2,248,1,248,0,63,0,47,192,98,248,2,248,0,63,0,47,219,242,248,2,244,0,63,10,255,255,246,252,3,240,0,127,15,255,255,225,255,255,240,47,255,11,255,144,0,255,255,224,31,254,3,144,0,0,127,255,128,15,228,0,0,0,0,0,0,0, + // 0x6296 抖 + 150,98,35,36,68,37,1,252,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,45,0,15,224,0,0,31,192,0,127,192,15,224,0,0,31,192,0,127,244,15,224,0,0,31,192,0,11,254,15,224,0,0,31,192,0,1,255,79,224,0,63,255,255,208,0,63,15,224,0,63,255,255,208,0,12,15,224,0,63,255,255,208,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,128,0,15,224,0,0,31,192,2,248,0,15,224,0,0,31,192,7,255,128,15,224,0,0,31,192,1,255,240,15,224,0,0,31,192,64,31,252,15,224,0,0,31,223,208,3,244,15,224,0,0,47,255,224,0,176,15,224,0,27,255,255,224,0,0,15,224,0,127,255,249,0,0,0,15,224,0,63,255,192,0,0,0,15,251,244,63,111,192,0,0,6,191,255,244,0,31,192,0,107,255,255,255,248,0,31,192,47,255,255,255,250,64,0,31,192,31,255,255,175,224,0,0,31,192,31,250,64,15,224,0,0,31,192,5,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,31,255,192,0,0,0,15,224,0,15,255,64,0,0,0,15,224,0,15,249,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x62a5 报 + 165,98,34,36,68,37,1,252,0,10,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,7,255,255,255,255,64,0,31,192,7,255,255,255,255,64,0,31,192,7,255,255,255,255,0,0,31,192,7,240,0,0,127,0,0,31,192,7,240,0,0,127,0,21,111,213,71,240,0,0,191,0,63,255,255,199,240,0,0,255,0,63,255,255,199,240,46,170,254,0,63,255,255,199,240,15,255,252,0,0,31,192,7,240,15,255,240,0,0,31,192,7,240,0,0,0,0,0,31,192,7,240,0,0,0,0,0,31,192,7,255,255,255,255,128,0,31,192,7,255,255,255,255,192,0,31,214,199,255,255,255,255,192,0,31,255,199,247,240,0,63,128,6,255,255,215,243,248,0,63,64,191,255,255,135,241,252,0,127,0,127,255,224,7,240,253,0,255,0,63,255,192,7,240,191,0,253,0,57,31,192,7,240,63,130,252,0,0,31,192,7,240,47,195,248,0,0,31,192,7,240,15,255,240,0,0,31,192,7,240,7,255,224,0,0,31,192,7,240,3,255,192,0,0,31,192,7,240,1,255,128,0,0,31,192,7,240,3,255,208,0,0,31,192,7,240,15,255,248,0,0,31,192,7,240,63,255,254,0,16,47,192,7,242,255,194,255,224,63,255,192,7,255,255,0,191,240,47,255,128,7,247,248,0,31,208,31,249,0,7,242,192,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x62ac 抬 + 172,98,35,36,68,37,1,252,0,31,192,0,0,228,0,0,0,0,31,192,0,1,254,0,0,0,0,31,192,0,3,252,0,0,0,0,31,192,0,3,252,0,0,0,0,31,192,0,7,244,0,0,0,0,31,192,0,11,240,0,0,0,0,31,192,0,15,224,1,64,0,0,31,192,0,31,208,15,208,0,127,255,255,192,47,192,15,240,0,127,255,255,192,63,64,7,248,0,127,255,255,192,127,0,1,253,0,0,31,192,0,254,0,0,191,0,0,31,192,1,254,106,191,255,192,0,31,192,127,255,255,255,255,208,0,31,192,127,255,255,255,255,240,0,31,192,63,255,250,149,71,248,0,31,193,165,0,0,0,3,248,0,31,239,208,0,0,0,1,192,0,47,255,208,0,0,0,0,0,27,255,255,208,0,0,0,0,0,191,255,249,3,255,255,255,255,0,127,255,192,3,255,255,255,255,0,62,95,192,3,255,255,255,255,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,240,0,0,191,0,0,31,192,3,255,255,255,255,0,0,31,192,3,255,255,255,255,0,31,255,192,3,255,255,255,255,0,15,255,128,3,240,0,0,191,0,11,253,0,3,240,0,0,106,0,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,34,36,68,37,1,252,0,31,128,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,127,255,255,133,85,95,213,85,64,127,255,255,159,255,255,255,255,240,127,255,255,159,255,255,255,255,240,0,47,192,31,255,255,255,255,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,95,192,15,192,11,240,0,47,239,159,192,15,192,11,240,0,47,255,223,192,15,208,11,240,27,255,255,223,255,255,255,255,240,191,255,248,31,255,255,255,255,240,127,255,192,31,255,255,255,255,240,62,111,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,213,95,213,95,240,0,47,192,31,255,255,255,255,240,0,47,192,31,255,255,255,255,240,0,47,128,31,255,255,255,255,240,47,255,128,31,192,0,0,11,240,15,255,64,31,192,0,0,11,240,15,249,0,15,192,0,0,6,144,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,35,36,68,37,1,252,0,31,128,0,11,208,4,0,0,0,47,192,0,15,224,47,64,0,0,47,192,0,15,208,63,224,0,0,47,192,0,15,208,15,253,0,0,47,192,0,15,208,2,255,128,0,47,192,0,15,208,0,127,128,0,47,192,0,15,208,0,15,0,0,47,192,0,15,208,0,0,0,127,255,255,191,255,255,255,255,240,127,255,255,191,255,255,255,255,240,106,191,234,127,255,255,255,255,240,0,47,192,0,15,208,0,0,0,0,47,192,0,15,208,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,240,0,253,0,0,47,192,0,47,240,0,253,0,0,47,193,64,47,244,1,252,0,0,47,255,128,63,248,2,252,0,0,127,255,192,63,252,2,248,0,111,255,255,128,127,253,3,244,0,191,255,228,0,191,127,7,240,0,127,255,192,0,254,63,75,240,0,62,47,192,0,253,47,207,208,0,0,47,192,1,252,15,239,192,0,0,47,192,2,252,11,255,128,0,0,47,192,3,244,3,255,0,0,0,47,192,11,240,2,254,0,0,0,47,192,15,224,3,255,64,0,0,47,192,47,192,11,255,208,0,0,47,192,127,128,47,255,244,0,0,47,192,255,0,191,199,254,0,0,47,131,253,3,255,1,255,208,47,255,143,248,31,252,0,127,248,15,255,71,240,15,240,0,11,240,15,249,1,192,3,128,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x62e9 择 + 233,98,35,36,68,37,1,252,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,15,255,255,255,254,0,0,47,128,15,255,255,255,255,64,0,47,128,15,255,255,255,255,0,0,47,128,0,190,0,1,253,0,0,47,128,0,63,64,7,248,0,0,47,128,0,31,192,15,240,0,63,255,255,192,15,240,63,192,0,63,255,255,192,3,253,255,64,0,63,255,255,192,0,255,253,0,0,0,47,128,0,0,191,244,0,0,0,47,128,0,7,255,255,64,0,0,47,128,0,191,253,255,244,0,0,47,128,111,255,208,31,255,228,0,47,128,191,253,0,2,255,244,0,47,155,127,64,31,192,27,224,0,47,255,128,0,31,192,0,64,6,255,255,128,0,31,192,0,0,191,255,249,11,255,255,255,255,0,127,255,128,11,255,255,255,255,0,63,127,128,11,255,255,255,255,0,16,47,128,0,0,31,192,0,0,0,47,128,0,0,31,192,0,0,0,47,128,0,0,31,192,0,0,0,47,128,0,0,31,192,0,0,0,47,128,127,255,255,255,255,244,0,47,128,127,255,255,255,255,244,0,47,128,127,255,255,255,255,244,0,47,128,0,0,31,192,0,0,0,47,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,31,255,128,0,0,31,192,0,0,15,255,0,0,0,31,192,0,0,11,248,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,35,36,68,37,1,252,0,31,128,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,63,255,255,255,255,240,0,47,192,63,255,255,255,255,240,0,47,192,63,255,255,255,255,240,127,255,255,191,128,0,0,7,240,127,255,255,191,64,0,0,7,240,127,255,255,191,64,254,0,7,240,0,47,192,63,64,253,0,7,240,0,47,192,21,2,252,0,1,80,0,47,192,0,3,248,0,0,0,0,47,192,0,3,244,0,0,0,0,47,192,63,255,255,255,255,248,0,47,193,191,255,255,255,255,248,0,47,255,255,255,255,255,255,248,1,191,255,192,47,192,2,252,0,127,255,255,128,63,128,3,248,0,191,255,208,0,127,0,3,248,0,127,255,192,0,191,0,7,240,0,57,47,192,0,254,0,15,240,0,0,47,192,1,254,0,31,224,0,0,47,192,2,255,244,63,192,0,0,47,192,3,255,255,191,128,0,0,47,192,2,247,255,255,0,0,0,47,192,0,0,127,255,64,0,0,47,192,0,0,31,255,224,0,0,47,192,0,0,191,255,253,0,0,47,192,0,27,255,75,255,128,0,47,128,22,255,252,1,255,224,47,255,128,255,255,208,0,47,240,15,255,64,127,249,0,0,7,208,15,249,0,62,64,0,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x6321 挡 + 33,99,33,36,68,37,1,252,0,47,128,0,0,10,128,0,0,0,47,128,0,0,15,192,0,0,0,47,128,0,0,15,192,0,0,0,47,128,11,192,15,192,15,128,0,47,128,15,208,15,192,31,192,0,47,128,11,224,15,192,47,192,0,47,128,7,240,15,192,63,64,0,63,192,3,244,15,192,127,0,63,255,255,194,248,15,192,190,0,63,255,255,193,252,15,192,253,0,63,255,255,192,253,15,193,252,0,0,47,128,0,184,15,195,244,0,0,47,128,0,0,15,192,96,0,0,47,128,0,0,15,192,0,0,0,47,128,31,255,255,255,255,192,0,47,128,31,255,255,255,255,192,0,47,130,95,255,255,255,255,192,0,47,255,133,85,85,85,111,192,0,127,255,192,0,0,0,47,192,47,255,255,192,0,0,0,47,192,191,255,248,0,0,0,0,47,192,127,255,128,0,0,0,0,47,192,127,127,128,15,255,255,255,255,192,16,47,128,15,255,255,255,255,192,0,47,128,15,255,255,255,255,192,0,47,128,0,0,0,0,47,192,0,47,128,0,0,0,0,47,192,0,47,128,0,0,0,0,47,192,0,47,128,0,0,0,0,47,192,0,47,128,127,255,255,255,255,192,0,47,128,127,255,255,255,255,192,0,63,128,127,255,255,255,255,192,47,255,128,21,85,85,85,111,192,15,255,0,0,0,0,0,47,192,15,248,0,0,0,0,0,5,64,0,0,0,0,0,0,0,0,0, + // 0x6324 挤 + 36,99,35,35,59,37,1,253,0,127,0,0,0,108,0,0,0,0,127,0,0,0,254,0,0,0,0,127,0,0,0,191,0,0,0,0,127,0,0,0,63,128,0,0,0,127,0,255,255,255,255,255,240,0,127,0,255,255,255,255,255,240,0,127,0,255,255,255,255,255,240,0,127,0,1,252,0,7,244,0,63,255,253,0,253,0,15,240,0,63,255,253,0,127,0,31,208,0,63,255,253,0,63,192,63,192,0,0,127,0,0,15,240,255,0,0,0,127,0,0,7,255,253,0,0,0,127,0,0,1,255,244,0,0,0,127,0,0,2,255,249,0,0,0,127,0,0,191,255,255,228,0,0,127,108,191,255,246,255,255,244,0,127,252,255,254,64,47,255,240,0,191,252,191,224,0,1,191,224,47,255,248,36,85,0,5,64,64,127,255,64,0,254,0,15,208,0,63,255,0,0,254,0,15,208,0,57,127,0,0,254,0,15,208,0,0,127,0,0,254,0,15,208,0,0,127,0,0,254,0,15,208,0,0,127,0,0,253,0,15,208,0,0,127,0,0,253,0,15,208,0,0,127,0,2,252,0,15,208,0,0,127,0,3,248,0,15,208,0,0,127,0,15,244,0,15,208,0,0,127,0,63,224,0,15,208,0,63,255,2,255,192,0,15,208,0,31,254,7,254,0,0,15,208,0,15,248,0,244,0,0,15,208,0,5,0,0,0,0,0,5,64,0, + // 0x635f 损 + 95,99,35,36,68,37,1,252,0,63,64,0,0,0,0,0,0,0,63,64,2,170,170,170,168,0,0,63,64,3,255,255,255,252,0,0,63,64,3,255,255,255,252,0,0,63,64,3,244,0,1,252,0,0,63,64,3,244,0,1,252,0,0,63,64,3,244,0,1,252,0,0,63,64,3,244,0,1,252,0,127,255,255,67,250,170,171,252,0,127,255,255,67,255,255,255,252,0,127,255,255,67,255,255,255,252,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,10,170,170,170,170,0,0,63,64,15,255,255,255,255,0,0,63,64,15,255,255,255,255,0,0,63,64,15,192,0,0,63,0,0,63,175,79,192,0,0,63,0,0,63,255,143,192,21,64,63,0,6,255,255,143,192,47,128,63,0,191,255,248,15,192,47,128,63,0,191,255,128,15,192,47,128,63,0,127,191,64,15,192,47,128,63,0,32,63,64,15,192,63,128,63,0,0,63,64,15,192,63,128,63,0,0,63,64,15,192,63,64,63,0,0,63,64,15,192,191,0,63,0,0,63,64,5,65,254,8,0,0,0,63,64,0,11,252,47,64,0,0,63,64,0,63,244,127,224,0,0,63,64,2,255,208,31,253,0,21,127,64,127,255,0,2,255,128,47,255,3,255,248,0,0,127,244,31,254,1,255,128,0,0,15,240,15,228,0,164,0,0,0,2,208,0,0,0,0,0,0,0,0,0, + // 0x6362 换 + 98,99,35,36,68,37,1,252,0,63,0,0,11,160,0,0,0,0,63,0,0,15,224,0,0,0,0,63,0,0,47,192,0,0,0,0,63,0,0,63,255,255,224,0,0,63,0,0,255,255,255,248,0,0,63,0,2,255,255,255,244,0,0,63,0,7,248,0,31,224,0,0,127,64,15,240,0,63,192,0,63,255,253,63,192,0,191,0,0,63,255,254,255,234,171,255,170,0,63,255,254,255,255,255,255,255,0,0,63,0,63,255,255,255,255,0,0,63,0,31,192,47,128,191,0,0,63,0,15,192,47,128,191,0,0,63,0,15,192,47,128,191,0,0,63,0,15,192,47,128,191,0,0,63,0,15,192,47,128,191,0,0,63,174,15,192,47,128,191,0,0,127,255,15,192,47,128,191,0,27,255,255,15,192,63,64,191,0,191,255,228,15,192,63,64,191,0,127,255,2,255,255,255,255,255,240,62,127,2,255,255,255,255,255,240,0,63,2,255,255,255,255,255,240,0,63,0,0,1,255,192,0,0,0,63,0,0,3,255,240,0,0,0,63,0,0,11,247,248,0,0,0,63,0,0,47,225,253,0,0,0,63,0,0,191,192,191,64,0,0,63,0,3,255,0,63,224,0,0,63,0,31,252,0,15,253,0,5,191,0,191,224,0,3,255,144,31,255,11,255,64,0,0,191,248,15,254,11,248,0,0,0,31,240,15,228,3,208,0,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,35,36,68,37,1,252,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,127,255,255,0,0,63,64,0,0,127,255,255,63,255,255,255,255,0,127,255,255,63,255,255,255,255,0,0,63,64,63,234,170,170,255,0,0,63,64,63,64,0,0,63,0,0,63,64,63,64,0,0,63,0,0,63,64,63,170,170,170,191,0,0,63,64,63,255,255,255,255,0,0,63,91,63,255,255,255,255,0,0,63,255,63,64,0,0,63,0,1,191,255,63,64,0,0,63,0,111,255,255,63,64,0,0,63,0,127,255,208,63,234,170,170,191,0,63,255,64,63,255,255,255,255,0,57,63,64,63,255,255,255,255,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,127,64,0,0,63,64,0,0,63,255,0,0,0,63,64,0,0,63,255,0,0,0,63,64,0,0,47,248,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,35,35,59,37,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,63,255,255,255,255,224,0,63,0,63,255,255,255,255,240,0,63,0,63,255,255,255,255,240,0,63,0,62,0,0,0,7,240,0,63,0,62,11,224,189,7,240,0,63,0,62,11,208,189,7,240,127,255,255,62,15,208,189,3,224,127,255,255,0,15,192,189,0,0,127,255,255,0,31,192,189,0,128,0,63,0,0,63,128,189,1,244,0,63,0,0,255,0,190,1,244,0,63,0,7,254,0,191,171,240,0,63,0,191,248,0,127,255,240,0,63,0,63,208,21,95,255,192,0,63,26,41,0,47,128,0,0,0,63,254,0,0,47,128,0,0,1,191,255,0,0,47,128,0,0,111,255,254,0,0,47,128,0,0,191,255,144,191,255,255,255,255,240,127,255,0,191,255,255,255,255,240,56,63,0,191,255,255,255,255,240,0,63,0,0,3,255,252,0,0,0,63,0,0,15,255,255,0,0,0,63,0,0,47,255,255,128,0,0,63,0,0,191,111,159,224,0,0,63,0,2,254,47,135,248,0,0,63,0,11,252,47,130,254,0,0,63,0,127,240,47,128,255,208,0,63,2,255,192,47,128,63,248,0,127,7,254,0,47,128,15,244,47,255,1,244,0,47,128,2,208,31,254,0,64,0,47,128,0,0,15,228,0,0,0,47,128,0,0, + // 0x63a5 接 + 165,99,35,36,68,37,1,252,0,31,128,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,63,255,255,255,255,208,0,47,192,63,255,255,255,255,208,0,47,192,63,255,255,255,255,208,0,47,192,0,190,0,7,240,0,63,255,255,0,127,0,11,224,0,63,255,255,0,63,0,15,208,0,63,255,255,0,63,64,15,192,0,0,47,192,0,47,128,47,128,0,0,47,192,0,47,128,63,64,0,0,47,193,255,255,255,255,255,244,0,47,193,255,255,255,255,255,244,0,47,193,255,255,255,255,255,244,0,47,192,0,2,252,0,0,0,0,47,239,0,3,244,0,0,0,0,127,255,0,11,240,0,0,0,111,255,255,255,255,255,255,255,244,191,255,229,255,255,255,255,255,244,191,255,192,255,255,255,255,255,244,125,47,192,0,127,0,11,240,0,0,47,192,0,254,0,15,224,0,0,47,192,1,252,0,31,192,0,0,47,192,3,252,0,63,192,0,0,47,192,7,255,208,127,64,0,0,47,192,15,255,255,255,0,0,0,47,192,1,203,255,253,0,0,0,47,192,0,0,127,255,128,0,0,47,192,0,6,255,255,248,0,5,127,128,5,191,254,47,255,64,31,255,131,255,255,228,2,255,208,15,255,2,255,253,0,0,47,192,15,248,0,249,64,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,35,35,59,37,1,253,0,63,0,0,0,47,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,252,11,208,189,3,240,127,255,254,252,15,208,189,3,240,127,255,254,252,15,192,189,3,240,127,255,254,252,15,192,189,0,0,0,63,0,0,47,192,189,1,0,0,63,0,0,63,128,189,2,240,0,63,0,0,191,0,190,2,240,0,63,0,7,253,0,191,255,240,0,63,25,191,248,0,127,255,224,0,63,254,127,208,0,31,255,128,0,191,255,61,0,0,0,0,0,31,255,253,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,191,255,0,31,255,255,255,255,128,125,63,0,31,255,255,255,255,128,0,63,0,31,255,255,255,255,128,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,127,3,255,255,255,255,255,244,47,255,3,255,255,255,255,255,244,31,254,3,255,255,255,255,255,244,15,228,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,35,35,59,37,1,253,0,42,0,0,0,0,0,0,0,0,63,0,6,170,170,170,169,0,0,63,0,15,255,255,255,255,0,0,63,0,15,255,255,255,255,0,0,63,0,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,63,0,15,229,85,85,191,0,127,255,255,15,255,255,255,255,0,127,255,255,15,255,255,255,255,0,127,255,255,15,208,0,0,127,0,0,127,0,15,208,0,0,127,0,0,63,0,15,234,170,170,191,0,0,63,0,15,255,255,255,255,0,0,63,0,15,255,255,255,255,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,5,127,255,255,255,255,224,0,63,254,191,255,255,255,255,240,1,191,255,191,255,255,255,255,240,127,255,254,0,0,47,128,0,0,191,255,144,1,64,47,128,0,0,127,255,0,7,224,47,128,0,0,56,63,0,11,224,47,128,0,0,0,63,0,15,208,47,255,255,0,0,63,0,15,192,47,255,255,0,0,63,0,31,208,47,234,170,0,0,63,0,47,240,47,128,0,0,0,63,0,63,248,47,128,0,0,0,63,0,191,189,47,128,0,0,0,63,0,253,63,191,128,0,0,0,63,2,252,31,255,128,0,0,63,255,11,244,7,255,255,255,248,47,254,31,224,0,255,255,255,244,31,244,7,192,0,6,255,255,240,0,0,0,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,34,35,59,37,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,5,190,0,0,63,0,0,86,175,255,255,64,0,63,0,63,255,255,255,255,128,0,63,0,63,255,255,250,80,0,0,63,0,26,165,111,128,0,0,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,127,255,255,0,0,47,128,0,0,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,0,63,0,0,31,47,128,0,0,0,63,0,57,255,255,143,255,208,0,63,110,63,255,191,143,255,208,0,63,254,63,244,47,143,255,208,11,255,255,63,0,47,128,15,208,191,255,248,63,0,47,128,15,208,191,255,64,63,0,47,128,15,208,127,191,0,63,0,47,128,15,208,16,63,0,63,255,47,143,255,208,0,63,0,63,255,47,143,255,208,0,63,0,63,255,47,143,255,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,255,255,255,255,208,0,127,0,63,255,255,255,255,208,47,255,0,63,255,255,255,255,208,31,254,0,63,0,0,0,15,208,15,228,0,63,0,0,0,11,192, + // 0x6536 收 + 54,101,35,36,68,37,1,252,0,0,10,144,1,228,0,0,0,0,0,15,208,2,252,0,0,0,0,0,15,208,3,252,0,0,0,0,0,15,208,3,248,0,0,0,1,80,15,208,7,240,0,0,0,7,240,15,208,11,240,0,0,0,7,240,15,208,15,224,0,0,0,7,240,15,208,31,255,255,255,248,7,240,15,208,63,255,255,255,248,7,240,15,208,63,255,255,255,248,7,240,15,208,191,213,85,127,144,7,240,15,208,255,192,0,127,0,7,240,15,210,255,192,0,191,0,7,240,15,215,255,208,0,254,0,7,240,15,239,255,240,0,253,0,7,240,15,255,231,240,1,252,0,7,240,15,239,195,244,3,252,0,7,240,15,215,66,252,3,244,0,7,240,15,208,1,252,11,240,0,7,240,15,208,0,254,15,224,0,7,240,15,208,0,191,47,208,0,7,240,15,208,0,63,191,192,0,7,246,255,208,0,47,255,64,0,11,255,255,208,0,15,254,0,0,191,255,255,208,0,11,252,0,0,127,255,79,208,0,15,252,0,0,63,144,15,208,0,63,255,0,0,20,0,15,208,0,191,255,128,0,0,0,15,208,3,255,127,224,0,0,0,15,208,31,252,15,252,0,0,0,15,208,191,240,7,255,64,0,0,15,235,255,192,1,255,244,0,0,15,223,254,0,0,127,248,0,0,15,215,240,0,0,11,224,0,0,15,210,64,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x653e 放 + 62,101,35,36,68,37,1,252,0,3,244,0,0,58,0,0,0,0,3,244,0,0,63,64,0,0,0,3,244,0,0,127,0,0,0,0,3,244,0,0,191,0,0,0,0,3,244,0,0,255,0,0,0,0,3,244,0,0,254,0,0,0,127,255,255,255,193,253,0,0,0,127,255,255,255,194,255,255,255,248,127,255,255,255,195,255,255,255,248,0,127,0,0,3,255,255,255,248,0,63,0,0,11,244,0,191,0,0,63,0,0,15,244,0,254,0,0,63,0,0,31,248,0,253,0,0,63,0,0,63,252,0,252,0,0,63,255,254,127,252,1,252,0,0,63,255,254,255,253,2,252,0,0,63,255,255,254,190,3,248,0,0,127,0,254,252,127,7,244,0,0,127,0,253,40,63,75,240,0,0,127,0,253,0,63,143,224,0,0,127,0,253,0,31,223,208,0,0,127,0,253,0,15,255,192,0,0,190,0,253,0,11,255,64,0,0,254,0,253,0,7,255,0,0,0,253,0,252,0,3,254,0,0,0,252,0,252,0,3,254,0,0,2,252,0,252,0,15,255,64,0,3,248,0,252,0,47,255,192,0,7,244,0,252,0,191,239,240,0,15,240,1,252,2,255,15,252,0,31,224,2,252,31,252,3,255,64,63,192,3,248,191,240,0,255,224,255,67,255,251,255,192,0,127,244,126,1,255,241,254,0,0,15,224,12,1,255,128,240,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x6570 数 + 112,101,35,36,68,37,1,252,0,0,253,0,0,14,128,0,0,2,128,253,7,128,31,208,0,0,15,208,253,15,224,31,192,0,0,7,240,253,31,192,47,192,0,0,3,244,253,63,64,63,128,0,0,1,248,253,126,0,63,64,0,0,0,208,253,24,0,127,64,0,0,63,255,255,255,248,191,255,255,244,63,255,255,255,248,255,255,255,244,63,255,255,255,244,255,255,255,244,0,7,255,128,2,253,85,127,80,0,31,255,244,3,253,0,127,0,0,191,254,255,7,254,0,191,0,2,253,253,63,223,255,0,254,0,31,244,253,15,223,255,0,254,0,127,208,253,2,127,255,64,253,0,47,0,253,0,191,175,129,252,0,4,3,248,0,127,31,195,252,0,0,7,240,0,29,15,195,248,0,0,15,224,0,4,15,231,244,0,191,255,255,255,248,11,255,240,0,191,255,255,255,248,3,255,224,0,127,255,255,255,248,3,255,192,0,0,254,0,253,0,1,255,128,0,1,252,0,252,0,0,255,0,0,3,252,2,252,0,2,255,64,0,11,255,131,244,0,7,255,192,0,15,255,255,240,0,31,255,224,0,2,139,255,224,0,127,239,248,0,0,1,255,248,1,255,131,254,0,0,11,255,255,11,254,1,255,128,6,255,249,255,255,252,0,191,244,63,255,208,63,255,224,0,47,244,47,249,0,10,63,64,0,7,208,14,64,0,0,40,0,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x6572 敲 + 114,101,35,36,68,37,1,252,0,0,252,0,0,3,244,0,0,0,0,252,0,0,3,244,0,0,0,0,252,0,0,3,244,0,0,0,0,252,0,0,3,244,0,0,63,255,255,255,244,3,244,0,0,127,255,255,255,244,3,255,255,240,127,255,255,255,244,3,255,255,240,0,0,0,0,0,3,255,255,240,0,85,85,84,0,3,244,0,0,1,255,255,253,0,3,244,0,0,1,255,255,253,0,3,244,0,0,1,248,0,189,0,3,244,0,0,1,248,0,189,0,3,244,0,0,1,248,0,189,31,255,255,255,192,1,255,255,253,31,255,255,255,192,1,255,255,253,31,255,255,255,192,0,85,85,84,0,96,0,63,128,0,0,0,0,2,248,0,63,64,10,170,170,170,129,252,0,127,0,31,255,255,255,208,253,0,255,0,31,255,255,255,208,190,0,253,0,31,64,0,7,208,63,2,252,0,31,64,0,7,208,63,131,248,0,31,79,255,199,208,31,203,240,0,31,79,255,199,208,15,255,224,0,31,79,3,199,208,7,255,192,0,31,79,3,199,208,2,255,64,0,31,79,3,199,208,2,255,64,0,31,79,255,199,208,15,255,208,0,31,79,255,199,208,63,255,248,0,31,79,0,7,209,255,203,255,0,31,79,0,7,239,255,66,255,224,31,64,1,91,255,252,0,191,248,31,64,1,255,223,224,0,31,240,31,64,0,255,71,64,0,2,192,0,0,0,0,0,0,0,0,0, + // 0x6574 整 + 116,101,34,34,50,37,2,254,0,2,240,0,0,41,0,0,0,0,3,240,0,0,63,64,0,0,85,87,245,85,64,127,0,0,0,255,255,255,255,192,254,0,0,0,255,255,255,255,193,255,170,170,128,0,3,240,0,3,255,255,255,192,63,255,255,255,75,255,255,255,192,63,255,255,255,111,240,3,244,0,63,3,244,47,255,252,3,240,0,63,3,240,31,255,189,11,224,0,63,3,240,31,108,63,31,192,0,63,255,255,255,68,31,255,128,0,63,255,255,255,64,15,255,0,0,0,47,254,0,0,7,253,0,0,0,191,255,208,0,31,255,64,0,2,255,255,253,0,191,255,224,0,31,243,241,255,75,255,95,254,0,255,195,240,46,191,252,3,255,208,190,3,240,4,127,208,0,191,192,52,3,240,0,45,0,0,11,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,10,170,170,175,254,170,170,168,0,0,0,0,3,240,0,0,0,0,0,31,192,3,240,0,0,0,0,0,31,192,3,255,255,255,64,0,0,31,192,3,255,255,255,64,0,0,31,192,3,250,170,170,0,0,0,31,192,3,240,0,0,0,0,0,31,192,3,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x6599 料 + 153,101,35,35,59,37,1,253,0,6,160,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,4,7,224,16,0,0,3,240,0,62,7,224,126,3,192,3,240,0,47,7,224,189,15,244,3,240,0,31,7,224,252,7,254,3,240,0,15,135,224,248,0,255,131,240,0,15,199,225,244,0,47,195,240,0,11,199,226,240,0,11,131,240,0,11,199,227,224,0,2,3,240,0,7,215,227,208,0,0,3,240,0,2,71,226,192,0,0,3,240,0,0,11,240,0,20,0,3,240,0,63,255,255,253,62,0,3,240,0,63,255,255,253,191,208,3,240,0,63,255,255,253,47,248,3,240,0,0,47,240,0,7,254,3,240,0,0,63,248,0,0,188,3,240,0,0,127,253,0,0,40,3,240,0,0,255,255,0,0,0,3,240,0,1,255,255,192,0,0,3,240,80,2,251,235,224,0,0,7,255,244,3,231,227,248,0,22,255,255,248,11,215,225,252,107,255,255,255,244,31,199,224,246,255,255,255,244,0,63,135,224,97,255,254,151,240,0,191,7,224,0,249,64,3,240,0,190,7,224,0,0,0,3,240,0,60,7,224,0,0,0,3,240,0,36,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0, + // 0x659c 斜 + 156,101,35,35,59,37,1,253,0,1,254,0,0,0,0,252,0,0,3,255,128,0,0,0,252,0,0,7,255,224,0,0,0,252,0,0,15,255,252,0,60,0,252,0,0,31,211,255,0,255,0,252,0,0,63,192,255,192,127,192,252,0,0,255,0,63,224,31,240,252,0,2,253,0,31,244,7,253,252,0,11,248,0,7,224,1,253,252,0,47,240,0,2,128,0,160,252,0,191,255,255,255,0,0,0,252,0,255,255,255,255,0,0,0,252,0,61,255,255,255,0,208,0,252,0,0,0,190,0,3,248,0,252,0,0,0,190,0,3,255,0,252,0,0,0,190,0,0,255,192,252,0,0,0,190,0,0,47,240,252,0,63,255,255,255,240,11,244,252,0,63,255,255,255,240,2,208,252,0,63,255,255,255,240,0,0,252,0,0,0,190,0,0,0,0,252,16,0,0,190,0,0,0,1,255,244,2,224,190,47,0,1,111,255,248,3,240,190,47,65,191,255,255,248,7,240,190,31,207,255,255,253,0,11,224,190,15,219,255,229,252,0,15,192,190,7,247,228,0,252,0,31,192,190,3,240,0,0,252,0,63,64,190,2,244,0,0,252,0,191,0,190,1,244,0,0,252,0,61,0,190,0,0,0,0,252,0,4,0,190,0,0,0,0,252,0,0,127,253,0,0,0,0,252,0,0,63,252,0,0,0,0,252,0,0,47,224,0,0,0,0,252,0, + // 0x65ad 断 + 173,101,33,36,68,37,3,252,0,0,41,0,0,0,0,0,0,168,0,126,0,0,0,1,244,0,252,0,126,0,0,0,111,253,0,252,180,126,31,72,31,255,254,0,252,184,126,47,15,255,255,144,0,252,124,126,63,15,255,228,0,0,252,61,126,61,15,228,0,0,0,252,62,126,124,15,192,0,0,0,252,62,126,184,15,192,0,0,0,252,45,126,176,15,192,0,0,0,252,0,126,0,15,192,0,0,0,252,255,255,255,79,192,0,0,0,253,255,255,255,79,192,0,0,0,253,255,255,255,79,255,255,255,128,252,0,254,0,15,255,255,255,128,252,1,255,0,15,255,255,255,128,252,3,255,192,15,192,31,192,0,252,7,255,240,31,192,31,192,0,252,15,255,252,31,192,31,192,0,252,47,254,191,31,192,31,192,0,252,127,126,63,31,192,31,192,0,252,253,126,12,31,192,31,192,0,255,248,126,0,47,128,31,192,0,253,240,126,0,63,64,31,192,0,252,192,126,0,63,64,31,192,0,252,0,126,0,63,0,31,192,0,252,0,126,0,127,0,31,192,0,252,0,0,0,254,0,31,192,0,255,255,255,255,253,0,31,192,0,255,255,255,255,252,0,31,192,0,255,255,255,255,248,0,31,192,0,252,0,0,15,240,0,31,192,0,252,0,0,47,208,0,31,192,0,168,0,0,15,192,0,31,192,0,0,0,0,3,0,0,31,192,0,0,0,0,0,0,0,0,0,0, + // 0x65b0 新 + 176,101,35,36,68,37,1,252,0,0,168,0,0,0,0,1,0,0,0,252,0,0,0,0,111,64,0,0,252,0,0,0,27,255,208,0,0,252,0,2,70,255,255,208,47,255,255,255,227,255,255,244,0,47,255,255,255,227,255,249,0,0,47,255,255,255,227,249,0,0,0,1,244,0,189,3,244,0,0,0,1,248,0,253,3,244,0,0,0,0,252,1,252,3,244,0,0,0,0,189,2,244,3,244,0,0,0,0,125,2,240,3,244,0,0,0,63,255,255,255,243,248,0,0,0,63,255,255,255,243,255,255,255,244,63,255,255,255,243,255,255,255,244,0,0,252,0,3,255,255,255,244,0,0,252,0,3,244,2,248,0,0,0,252,0,3,244,2,248,0,0,0,252,0,3,244,2,248,0,63,255,255,255,227,244,2,248,0,63,255,255,255,227,244,2,248,0,63,255,255,255,227,240,2,248,0,0,3,252,0,3,240,2,248,0,0,15,255,64,7,240,2,248,0,0,47,255,224,11,224,2,248,0,0,127,255,248,15,224,2,248,0,0,254,253,255,15,208,2,248,0,3,248,252,127,95,192,2,248,0,31,240,252,30,63,128,2,248,0,127,192,252,4,127,64,2,248,0,127,64,252,0,255,0,2,248,0,29,0,252,2,253,0,2,248,0,0,0,252,7,248,0,2,248,0,0,0,252,2,240,0,2,248,0,0,0,252,0,128,0,2,164,0,0,0,0,0,0,0,0,0,0, + // 0x65b9 方 + 185,101,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,85,85,85,91,245,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,11,255,255,255,255,128,0,0,0,15,255,255,255,255,128,0,0,0,15,255,255,255,255,128,0,0,0,15,224,0,0,63,64,0,0,0,31,208,0,0,63,64,0,0,0,63,192,0,0,63,64,0,0,0,63,192,0,0,127,0,0,0,0,191,64,0,0,127,0,0,0,0,255,0,0,0,127,0,0,0,2,254,0,0,0,191,0,0,0,7,252,0,0,0,191,0,0,0,15,248,0,0,0,254,0,0,0,63,240,0,0,0,254,0,0,0,255,208,0,0,1,253,0,0,3,255,64,0,0,2,252,0,0,47,253,0,1,64,7,252,0,0,255,244,0,2,255,255,244,0,0,127,192,0,1,255,255,240,0,0,45,0,0,0,255,255,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x65e0 无 + 224,101,34,32,32,37,2,253,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,31,208,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,47,192,0,0,0,0,0,0,0,63,149,0,0,0,0,0,0,0,63,191,64,0,0,0,0,0,0,191,127,64,0,0,0,0,0,0,255,63,64,0,0,0,0,0,1,254,63,64,0,0,0,0,0,3,252,63,64,0,0,0,0,0,7,248,63,64,0,0,0,0,0,15,240,63,64,0,4,0,0,0,63,208,63,64,0,11,128,0,0,255,192,63,64,0,15,224,0,7,255,0,63,64,0,15,208,0,63,252,0,63,64,0,15,208,2,255,240,0,63,128,0,47,192,127,255,128,0,63,255,255,255,192,255,252,0,0,47,255,255,255,64,63,208,0,0,11,255,255,254,0,40,0,0,0,0,85,85,80,0, + // 0x65f6 时 + 246,101,33,35,59,37,3,253,0,0,0,0,0,0,42,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,253,0,127,0,0,0,63,64,0,252,0,127,5,85,85,127,149,0,252,0,127,47,255,255,255,255,128,252,0,127,47,255,255,255,255,128,252,0,127,47,255,255,255,255,128,252,0,127,0,0,0,63,64,0,252,0,127,0,0,0,63,64,0,252,0,127,0,0,0,63,64,0,255,255,255,1,224,0,63,64,0,255,255,255,7,244,0,63,64,0,255,255,255,3,252,0,63,64,0,252,0,127,1,254,0,63,64,0,252,0,127,0,191,64,63,64,0,252,0,127,0,63,192,63,64,0,252,0,127,0,31,224,63,64,0,252,0,127,0,15,240,63,64,0,252,0,127,0,3,244,63,64,0,252,0,127,0,2,192,63,64,0,252,0,127,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,255,255,255,0,0,0,63,64,0,252,0,0,0,0,0,63,64,0,252,0,0,0,0,0,63,64,0,252,0,0,0,0,0,127,64,0,0,0,0,0,15,255,255,0,0,0,0,0,0,11,255,255,0,0,0,0,0,0,7,255,248,0,0,0,0,0,0,1,85,0,0,0, + // 0x660e 明 + 14,102,32,34,16,37,3,252,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,253,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,252,0,0,253,252,0,63,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,255,255,255,253,253,0,63,67,255,255,255,253,255,255,255,71,255,255,255,253,255,255,255,75,240,0,0,253,255,255,255,79,224,0,0,253,252,0,0,15,208,0,0,253,252,0,0,47,192,0,0,253,252,0,0,63,128,0,0,253,84,0,0,191,64,0,0,253,0,0,0,255,0,0,0,253,0,0,3,253,0,0,0,253,0,0,15,248,0,5,86,253,0,0,63,240,0,11,255,252,0,0,47,192,0,7,255,248,0,0,11,0,0,3,255,144,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,35,34,50,37,1,253,0,42,170,170,170,170,170,144,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,149,85,85,85,95,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,170,170,170,170,175,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,0,0,254,0,0,0,0,0,2,148,0,254,0,0,0,0,0,3,248,0,254,0,0,0,0,0,7,244,0,254,0,0,0,0,0,11,240,0,255,255,255,253,0,0,15,240,0,255,255,255,253,0,0,31,244,0,255,255,255,253,0,0,47,252,0,254,0,0,0,0,0,63,255,0,254,0,0,0,0,0,255,191,128,254,0,0,0,0,2,254,47,244,254,0,0,0,0,7,252,15,255,254,0,0,0,0,31,244,2,255,255,255,255,255,244,127,224,0,127,255,255,255,255,240,47,64,0,1,191,255,255,255,224,9,0,0,0,0,0,0,0,0, + // 0x6682 暂 + 130,102,33,35,59,37,2,253,0,10,64,0,0,0,0,4,0,0,31,224,0,0,0,26,253,0,170,191,234,170,130,191,255,255,0,255,255,255,255,195,255,255,249,0,255,255,255,255,195,254,148,0,0,2,252,0,0,3,240,0,0,0,3,240,41,0,3,240,0,0,0,15,224,127,0,3,240,0,0,0,47,192,127,0,3,250,170,170,128,191,255,255,255,211,255,255,255,192,63,255,255,255,215,255,255,255,192,63,170,255,170,135,224,15,192,0,0,0,127,0,11,224,15,192,0,0,0,127,0,75,208,15,192,0,0,21,191,255,207,192,15,192,0,255,255,255,255,223,192,15,192,0,255,255,255,165,47,128,15,192,0,186,148,127,0,127,64,15,192,0,0,0,127,0,191,0,15,192,0,0,0,127,0,29,0,15,192,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,128,0,0,191,255,255,255,255,255,128,0,0,191,170,170,170,170,191,128,0,0,190,0,0,0,0,47,128,0,0,190,0,0,0,0,47,128,0,0,191,255,255,255,255,255,128,0,0,191,255,255,255,255,255,128,0,0,191,85,85,85,85,127,128,0,0,190,0,0,0,0,47,128,0,0,190,0,0,0,0,47,128,0,0,191,255,255,255,255,255,128,0,0,191,255,255,255,255,255,128,0,0,191,170,170,170,170,191,128,0,0,190,0,0,0,0,47,128,0, + // 0x66ab 暫 + 171,102,33,35,59,37,2,253,0,3,240,0,0,0,0,96,0,0,3,240,0,0,0,27,252,0,191,255,255,255,203,175,255,254,0,191,255,255,255,203,255,255,144,0,0,3,244,0,11,254,144,0,0,0,3,240,0,11,208,0,0,0,47,255,255,255,11,208,0,0,0,47,171,250,191,11,208,0,0,0,47,3,240,47,15,250,170,170,128,47,255,255,255,15,255,255,255,192,47,171,250,191,15,255,255,255,192,47,3,240,47,15,192,31,192,0,47,171,250,191,15,192,31,192,0,47,255,255,255,47,128,31,192,0,0,3,240,0,63,64,31,192,0,255,255,255,255,255,0,31,192,0,255,255,255,255,253,0,31,192,0,0,3,240,3,252,0,31,192,0,0,3,240,1,240,0,31,192,0,0,1,80,0,64,0,6,64,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,234,170,170,170,255,0,0,0,63,64,0,0,0,191,0,0,0,63,64,0,0,0,191,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,149,85,85,85,191,0,0,0,63,64,0,0,0,191,0,0,0,63,64,0,0,0,191,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,234,170,170,170,255,0,0,0,63,64,0,0,0,127,0,0, + // 0x66f4 更 + 244,102,34,33,41,37,2,253,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,170,171,254,170,171,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,11,0,15,240,0,0,0,0,0,63,192,31,208,0,0,0,0,0,31,240,63,192,0,0,0,0,0,11,253,191,128,0,0,0,0,0,2,255,255,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,1,255,255,228,0,0,0,0,0,111,255,255,255,249,84,0,0,175,255,253,31,255,255,255,255,224,191,255,144,0,191,255,255,255,192,63,244,0,0,0,107,255,255,128,9,0,0,0,0,0,0,21,0, + // 0x6700 最 + 0,103,33,34,50,37,2,253,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,127,85,85,85,85,127,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,21,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,2,244,0,190,0,0,0,0,0,2,244,0,190,0,0,0,0,0,2,249,85,254,42,170,170,164,0,2,255,255,254,127,255,255,253,0,2,255,255,254,127,255,255,252,0,2,244,0,190,7,192,3,248,0,2,244,0,190,11,224,7,240,0,2,255,255,254,3,244,15,224,0,2,255,255,254,2,252,63,192,0,2,249,85,254,0,255,191,64,0,2,244,0,190,0,63,254,0,0,2,244,0,254,0,47,252,0,0,3,255,255,254,0,63,253,0,0,255,255,255,254,2,255,255,192,0,255,255,255,254,111,253,127,253,0,254,148,0,191,255,224,11,255,192,0,0,0,190,127,64,1,191,64,0,0,0,189,32,0,0,6,0, + // 0x6709 有 + 9,103,33,36,68,37,2,252,0,0,0,228,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,63,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,255,255,255,255,255,64,0,0,15,255,255,255,255,255,64,0,0,63,255,255,255,255,255,64,0,0,255,248,0,0,0,63,64,0,2,255,248,0,0,0,63,64,0,11,255,248,0,0,0,63,64,0,63,243,255,255,255,255,255,64,0,255,211,255,255,255,255,255,64,0,255,67,255,255,255,255,255,64,0,60,3,248,0,0,0,63,64,0,16,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,255,255,255,255,255,64,0,0,3,255,255,255,255,255,64,0,0,3,255,255,255,255,255,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,80,127,64,0,0,3,248,0,1,255,255,64,0,0,3,248,0,0,255,255,0,0,0,3,248,0,0,255,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x671f 期 + 31,103,34,35,59,37,1,252,0,252,0,63,0,0,0,0,0,0,252,0,63,0,255,255,255,208,0,252,0,63,0,255,255,255,208,0,252,0,63,0,255,255,255,208,63,255,255,255,248,253,0,15,208,63,255,255,255,248,253,0,15,208,63,255,255,255,248,253,0,15,208,0,252,0,63,0,253,0,15,208,0,252,0,63,0,253,0,15,208,0,252,0,63,0,255,255,255,208,0,255,255,255,0,255,255,255,208,0,255,255,255,0,255,255,255,208,0,254,170,255,0,253,0,15,208,0,252,0,63,0,253,0,15,208,0,252,0,63,0,253,0,15,208,0,252,0,63,0,253,0,15,208,0,255,255,255,0,253,0,15,208,0,255,255,255,0,253,0,15,208,0,254,170,255,0,255,255,255,208,0,252,0,63,0,255,255,255,208,0,252,0,63,0,255,255,255,208,0,252,0,63,0,252,0,15,208,127,255,255,255,248,252,0,15,208,127,255,255,255,249,252,0,15,208,127,255,255,255,250,252,0,15,208,0,0,0,0,3,248,0,15,208,0,63,65,240,3,244,0,15,208,0,191,3,252,3,240,0,15,208,1,253,0,254,11,240,0,15,208,7,252,0,127,79,224,0,15,208,15,240,0,47,223,208,0,31,208,63,208,0,15,127,192,47,255,192,47,128,0,4,31,128,15,255,128,6,0,0,0,3,0,15,253,0,0,0,0,0,0,0,0,0,0, + // 0x673a 机 + 58,103,35,35,59,37,1,253,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,63,255,255,240,0,0,3,240,0,63,255,255,240,0,0,3,240,0,63,255,255,240,0,0,3,240,0,63,149,91,240,0,0,3,240,0,63,128,7,240,0,0,3,240,0,63,128,7,240,0,63,255,255,252,63,128,7,240,0,63,255,255,252,63,128,7,240,0,63,255,255,252,63,128,7,240,0,21,95,245,84,63,128,7,240,0,0,15,240,0,63,128,7,240,0,0,31,240,0,63,128,7,240,0,0,47,244,0,63,128,7,240,0,0,63,253,0,63,128,7,240,0,0,127,255,64,63,128,7,240,0,0,255,255,192,63,64,7,240,0,0,251,251,240,63,64,7,240,0,2,247,243,252,63,64,7,240,0,7,227,240,253,63,0,7,240,0,15,211,240,184,127,0,7,240,0,31,195,240,48,127,0,7,240,0,63,67,240,0,190,0,7,240,0,191,3,240,0,254,0,7,240,0,125,3,240,0,253,0,7,240,120,60,3,240,2,252,0,7,240,124,16,3,240,3,248,0,7,240,124,0,3,240,7,244,0,7,240,124,0,3,240,15,240,0,7,240,188,0,3,240,47,208,0,7,240,252,0,3,240,127,192,0,7,255,252,0,3,240,191,0,0,3,255,244,0,3,240,45,0,0,1,255,224,0,2,160,4,0,0,0,0,0, + // 0x6740 杀 + 64,103,33,35,59,37,2,253,0,0,0,0,0,0,56,0,0,0,52,0,0,0,1,255,0,0,0,255,128,0,0,11,255,0,0,1,255,253,0,0,63,248,0,0,0,31,255,208,2,255,208,0,0,0,1,191,254,31,254,0,0,0,0,0,11,255,255,244,0,0,0,0,0,0,191,255,192,0,0,0,0,0,1,255,255,244,0,0,0,0,0,47,255,255,255,64,0,0,0,6,255,253,7,255,244,0,0,1,191,255,144,0,127,255,0,0,47,255,248,0,0,11,255,224,0,63,255,128,0,0,0,191,224,0,31,228,0,3,244,0,15,192,0,5,0,0,3,244,0,1,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,7,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,3,208,3,244,1,208,0,0,0,11,244,3,244,11,248,0,0,0,47,224,3,244,3,254,0,0,0,127,192,3,244,0,255,128,0,1,255,0,3,244,0,63,224,0,11,253,0,3,244,0,15,248,0,47,244,0,3,244,0,3,254,0,255,208,0,3,244,0,0,255,64,191,64,5,91,244,0,0,127,64,45,0,11,255,244,0,0,40,0,0,0,7,255,240,0,0,0,0,0,0,3,254,64,0,0,0,0, + // 0x675f 束 + 95,103,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,248,0,7,240,0,11,240,0,2,248,0,7,240,0,11,240,0,2,248,0,7,240,0,11,240,0,2,248,0,7,240,0,11,240,0,2,248,0,7,240,0,11,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,0,0,0,191,255,128,0,0,0,0,0,2,255,255,224,0,0,0,0,0,11,255,255,248,0,0,0,0,0,63,247,247,255,0,0,0,0,1,255,199,240,255,208,0,0,0,11,255,7,240,47,248,0,0,0,191,248,7,240,11,255,128,0,7,255,208,7,240,1,255,248,0,191,254,0,7,240,0,63,255,128,255,244,0,7,240,0,7,255,192,63,128,0,7,240,0,0,191,0,24,0,0,7,240,0,0,9,0,0,0,0,7,240,0,0,0,0, + // 0x6761 条 + 97,103,34,35,59,37,2,253,0,0,2,248,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,63,255,255,255,224,0,0,0,0,255,255,255,255,252,0,0,0,7,255,255,255,255,244,0,0,0,31,254,0,0,47,224,0,0,0,191,255,64,0,191,192,0,0,11,255,191,208,1,255,0,0,0,63,253,15,248,11,253,0,0,0,31,224,3,255,127,240,0,0,0,7,64,0,255,255,192,0,0,0,0,0,0,63,255,64,0,0,0,0,0,1,255,255,248,0,0,0,0,0,111,255,255,255,208,0,0,0,27,255,253,11,255,255,228,0,111,255,255,208,0,127,255,255,192,127,255,248,2,160,2,255,255,64,63,254,64,7,240,0,6,255,0,30,64,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,0,2,255,255,224,0,0,0,0,0,11,255,255,248,0,0,0,0,0,63,231,242,255,0,0,0,0,1,255,135,240,191,224,0,0,0,15,254,7,240,47,253,0,0,0,191,244,7,240,7,255,208,0,27,255,192,7,240,0,255,254,0,255,253,0,7,240,0,31,255,208,191,224,0,7,240,0,2,255,64,62,0,0,7,240,0,0,31,0,0,0,0,7,240,0,0,0,0, + // 0x6765 来 + 101,103,35,35,59,37,1,253,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,1,85,85,86,254,85,85,85,0,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,0,0,64,1,253,0,5,0,0,0,11,208,1,253,0,15,224,0,0,15,240,1,253,0,31,224,0,0,7,244,1,253,0,63,192,0,0,3,252,1,253,0,127,64,0,0,1,253,1,253,0,255,0,0,0,0,255,1,253,1,253,0,0,0,0,189,1,253,2,248,0,0,21,85,101,86,254,85,117,85,80,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,0,63,255,240,0,0,0,0,0,0,255,255,252,0,0,0,0,0,2,254,254,254,0,0,0,0,0,11,249,253,191,128,0,0,0,0,47,225,253,47,224,0,0,0,0,255,193,253,15,252,0,0,0,3,255,1,253,3,255,0,0,0,47,252,1,253,0,255,208,0,0,255,240,1,253,0,63,252,0,11,255,128,1,253,0,11,255,128,127,253,0,1,253,0,1,255,244,63,240,0,1,253,0,0,63,240,15,64,0,1,253,0,0,7,192,0,0,0,1,253,0,0,0,64,0,0,0,1,253,0,0,0,0, + // 0x677f 板 + 127,103,35,36,68,37,1,252,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,1,255,255,255,255,240,0,15,208,1,255,255,255,255,240,0,15,208,1,255,255,255,255,240,0,15,208,1,252,0,0,0,0,0,15,208,1,252,0,0,0,0,0,15,208,1,252,0,0,0,0,63,255,255,241,252,0,0,0,0,63,255,255,241,252,0,0,0,0,63,255,255,241,252,0,0,0,0,0,31,224,1,252,0,0,0,0,0,47,208,1,255,255,255,255,208,0,63,208,1,255,255,255,255,208,0,63,240,1,255,255,255,255,192,0,127,248,1,255,240,0,47,192,0,255,253,1,255,240,0,63,128,0,255,255,1,254,248,0,63,64,1,255,255,194,253,252,0,127,0,3,255,223,226,248,253,0,254,0,7,223,211,242,248,191,0,253,0,15,207,210,227,248,63,66,252,0,31,143,208,195,244,63,199,244,0,63,79,208,3,240,15,223,240,0,191,15,208,7,240,11,255,208,0,189,15,208,11,240,3,255,192,0,60,15,208,15,224,2,255,64,0,16,15,208,15,208,2,255,64,0,0,15,208,47,192,15,255,208,0,0,15,208,63,128,63,255,248,0,0,15,208,191,65,255,199,255,0,0,15,208,255,15,255,1,255,224,0,15,210,252,47,248,0,127,244,0,15,208,184,15,208,0,11,224,0,11,208,32,2,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x6797 林 + 151,103,35,35,59,37,1,253,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,63,255,255,254,63,255,255,255,224,63,255,255,254,63,255,255,255,224,63,255,255,254,63,255,255,255,224,5,91,253,84,5,87,255,85,64,0,11,252,0,0,11,255,0,0,0,15,255,0,0,15,255,128,0,0,31,255,192,0,31,255,192,0,0,47,255,240,0,47,255,192,0,0,63,255,248,0,63,255,224,0,0,127,249,254,0,191,255,240,0,0,254,248,255,64,254,254,244,0,1,250,248,63,2,249,253,252,0,3,242,248,29,3,245,252,253,0,11,242,248,4,15,241,252,127,0,15,210,248,0,31,209,252,63,128,63,194,248,0,63,193,252,47,192,191,66,248,0,255,1,252,15,240,127,2,248,3,254,1,252,11,248,60,2,248,7,252,1,252,3,244,20,2,248,2,240,1,252,2,192,0,2,248,0,208,1,252,0,64,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0,0,2,248,0,0,1,252,0,0, + // 0x67f1 柱 + 241,103,35,36,68,37,1,252,0,7,240,0,0,52,0,0,0,0,7,240,0,0,254,0,0,0,0,7,240,0,1,255,192,0,0,0,7,240,0,0,127,244,0,0,0,7,240,0,0,15,253,0,0,0,7,240,0,0,2,255,0,0,0,7,240,0,0,0,191,0,0,0,7,240,0,0,0,125,0,0,63,255,255,253,255,255,255,255,240,63,255,255,253,255,255,255,255,240,63,255,255,253,255,255,255,255,240,21,95,245,80,0,3,248,0,0,0,15,240,0,0,3,248,0,0,0,31,240,0,0,3,248,0,0,0,47,240,0,0,3,248,0,0,0,63,252,0,0,3,248,0,0,0,127,254,0,0,3,248,0,0,0,191,255,64,0,3,248,0,0,0,255,255,208,0,3,248,0,0,2,251,251,240,191,255,255,255,224,3,247,243,252,191,255,255,255,224,11,215,240,252,191,255,255,255,224,15,199,240,176,0,3,248,0,0,47,135,240,16,0,3,248,0,0,127,7,240,0,0,3,248,0,0,190,7,240,0,0,3,248,0,0,60,7,240,0,0,3,248,0,0,40,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,31,255,255,255,255,248,0,7,240,31,255,255,255,255,248,0,7,240,31,255,255,255,255,248,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,35,36,68,37,1,252,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,15,255,255,255,255,240,0,15,208,15,255,255,255,255,240,63,255,255,234,170,170,170,170,160,63,255,255,224,0,0,0,64,0,63,255,255,224,15,128,7,224,0,0,31,208,0,47,192,7,248,0,0,47,208,0,63,128,2,253,0,0,63,208,0,255,0,0,255,64,0,63,240,2,253,0,0,63,192,0,127,248,7,248,0,0,31,224,0,255,253,31,241,0,6,91,240,0,255,255,47,239,192,11,243,244,2,255,239,139,15,192,15,225,128,3,239,223,192,11,224,31,208,0,7,223,215,240,7,240,47,192,0,15,207,211,208,3,252,127,128,0,31,143,209,128,1,253,255,0,0,63,79,208,0,0,255,253,0,0,191,15,208,0,0,63,252,0,0,125,15,208,0,0,47,244,0,0,60,15,208,0,0,47,248,0,0,16,15,208,0,0,191,254,0,0,0,15,208,0,3,255,255,192,0,0,15,208,0,31,252,127,244,0,0,15,208,0,255,240,31,254,0,0,15,208,27,255,128,3,255,224,0,15,208,127,253,0,0,255,244,0,15,208,63,208,0,0,31,208,0,15,208,13,0,0,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x683c 格 + 60,104,35,35,59,37,1,253,0,15,208,0,0,228,0,0,0,0,15,208,0,1,253,0,0,0,0,15,208,0,2,252,0,0,0,0,15,208,0,7,244,0,0,0,0,15,208,0,15,255,255,253,0,0,15,208,0,31,255,255,255,0,0,15,208,0,63,255,255,253,0,0,15,208,0,255,64,2,252,0,63,255,255,242,255,192,3,248,0,63,255,255,251,255,208,11,240,0,63,255,255,255,251,240,31,208,0,0,31,224,127,195,252,63,128,0,0,31,224,31,1,254,255,0,0,0,63,244,5,0,127,253,0,0,0,63,252,0,0,47,248,0,0,0,127,255,0,0,127,252,0,0,0,191,255,128,2,255,255,128,0,0,255,223,208,15,254,191,244,0,1,255,215,240,191,244,31,255,64,3,255,211,219,255,192,3,255,248,7,223,209,255,254,0,0,127,244,15,207,208,191,255,255,255,255,224,31,143,208,62,255,255,255,255,64,63,79,208,0,255,255,255,254,0,191,15,208,0,252,0,0,190,0,125,15,208,0,252,0,0,190,0,56,15,208,0,252,0,0,190,0,16,15,208,0,252,0,0,190,0,0,15,208,0,252,0,0,190,0,0,15,208,0,252,0,0,190,0,0,15,208,0,255,255,255,254,0,0,15,208,0,255,255,255,254,0,0,15,208,0,255,255,255,254,0,0,15,208,0,252,0,0,190,0,0,10,144,0,168,0,0,105,0, + // 0x68af 梯 + 175,104,34,35,59,37,1,253,0,15,208,0,25,0,0,228,0,0,15,208,0,127,0,1,254,0,0,15,208,0,63,64,2,252,0,0,15,208,0,47,192,3,244,0,0,15,208,0,15,192,11,240,0,0,15,208,0,15,128,7,208,0,0,15,208,11,255,255,255,255,192,0,15,208,11,255,255,255,255,192,63,255,255,219,255,255,255,255,192,63,255,255,208,0,15,192,15,192,63,255,255,208,0,15,192,15,192,0,31,208,0,0,15,192,15,192,0,47,208,0,0,15,192,15,192,0,63,224,3,255,255,255,255,192,0,63,240,3,255,255,255,255,192,0,127,252,3,255,255,255,255,192,0,255,254,7,240,15,192,0,0,0,255,255,11,224,15,192,0,0,2,255,223,203,208,15,192,0,0,3,239,219,223,208,15,192,0,0,7,223,211,223,255,255,255,255,240,15,207,210,159,255,255,255,255,240,31,143,208,47,255,255,255,255,240,63,15,208,47,128,191,192,7,240,191,15,208,0,1,255,192,7,240,125,15,208,0,7,255,192,11,224,60,15,208,0,31,255,192,11,224,16,15,208,0,127,207,192,15,224,0,15,208,2,255,15,192,15,208,0,15,208,31,252,15,203,255,192,0,15,208,191,240,15,195,255,192,0,15,208,255,128,15,195,254,0,0,15,208,61,0,15,192,0,0,0,15,208,0,0,15,192,0,0,0,15,208,0,0,15,192,0,0, + // 0x68c0 检 + 192,104,35,35,59,37,1,253,0,47,64,0,0,46,0,0,0,0,47,128,0,0,63,64,0,0,0,47,128,0,0,255,64,0,0,0,47,128,0,1,255,192,0,0,0,47,128,0,3,255,240,0,0,0,47,128,0,15,247,252,0,0,0,47,128,0,63,193,255,0,0,63,255,255,0,191,64,127,192,0,63,255,255,3,254,0,31,244,0,63,255,255,15,252,0,7,254,0,0,63,128,63,240,0,2,255,192,0,63,129,255,192,0,0,191,244,0,127,199,254,191,255,255,223,244,0,191,227,248,191,255,255,195,240,0,255,244,208,191,255,255,192,144,1,255,252,0,0,0,0,0,0,2,255,254,0,0,0,0,0,0,3,255,191,0,0,45,0,30,0,7,255,159,79,128,62,0,63,64,11,239,142,15,192,63,0,63,0,15,175,132,15,192,47,0,126,0,47,111,128,7,208,47,64,252,0,63,47,128,3,240,31,64,252,0,190,47,128,3,240,15,130,244,0,60,47,128,2,240,15,195,240,0,40,47,128,1,244,15,199,208,0,0,47,128,1,244,4,15,192,0,0,47,128,0,64,0,31,128,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,0,126,0,0,0,47,128,255,255,255,255,255,224,0,47,128,255,255,255,255,255,224,0,47,128,255,255,255,255,255,224,0,47,128,0,0,0,0,0,0,0,31,64,0,0,0,0,0,0, + // 0x69fd 槽 + 253,105,35,36,68,37,1,252,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,0,31,192,191,255,255,255,255,248,0,31,192,191,255,255,255,255,248,0,31,192,106,171,250,255,170,164,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,63,255,255,159,255,255,255,255,208,63,255,255,159,255,255,255,255,208,63,255,255,159,150,245,126,91,208,0,63,192,31,66,240,61,7,208,0,63,192,31,130,240,126,11,208,0,63,192,31,255,255,255,255,208,0,127,208,31,255,255,255,255,208,0,255,240,31,66,240,61,7,208,0,255,248,31,66,240,61,7,208,1,255,252,31,150,245,126,91,208,3,255,255,31,255,255,255,255,208,3,255,223,95,255,255,255,255,208,11,223,207,192,0,0,0,0,0,15,159,199,2,170,170,170,170,0,31,95,193,3,255,255,255,255,0,63,31,192,3,255,255,255,255,0,190,31,192,3,244,0,0,127,0,188,31,192,3,244,0,0,127,0,60,31,192,3,249,85,85,191,0,32,31,192,3,255,255,255,255,0,0,31,192,3,255,255,255,255,0,0,31,192,3,244,0,0,127,0,0,31,192,3,244,0,0,127,0,0,31,192,3,250,170,170,191,0,0,31,192,3,255,255,255,255,0,0,31,192,3,255,255,255,255,0,0,31,192,3,244,0,0,127,0,0,0,0,0,0,0,0,0,0, + // 0x6a21 模 + 33,106,35,35,59,37,1,253,0,47,64,0,31,128,15,192,0,0,47,64,0,31,128,15,192,0,0,47,64,0,31,128,15,192,0,0,47,64,127,255,255,255,255,240,0,47,64,127,255,255,255,255,240,0,47,64,127,255,255,255,255,224,0,47,64,0,31,128,15,192,0,63,255,255,0,31,128,15,192,0,63,255,255,0,5,64,5,64,0,63,255,255,15,255,255,255,255,0,0,63,149,15,255,255,255,255,0,0,63,128,15,234,170,170,191,0,0,63,192,15,192,0,0,127,0,0,127,208,15,192,0,0,127,0,0,191,240,15,255,255,255,255,0,0,255,248,15,255,255,255,255,0,1,255,253,15,213,85,85,191,0,2,255,191,15,192,0,0,127,0,3,255,111,143,229,85,85,191,0,7,255,79,143,255,255,255,255,0,15,255,74,15,255,255,255,255,0,31,175,64,0,0,63,64,0,0,63,47,64,0,0,63,64,0,0,127,47,64,0,0,63,0,0,0,190,47,64,255,255,255,255,255,240,60,47,64,255,255,255,255,255,240,40,47,64,255,255,255,255,255,240,0,47,64,0,3,255,252,0,0,0,47,64,0,11,248,254,0,0,0,47,64,0,47,240,127,192,0,0,47,64,1,255,192,47,248,0,0,47,64,111,255,0,11,255,144,0,47,67,255,248,0,1,255,244,0,47,65,255,128,0,0,47,224,0,47,64,164,0,0,0,2,192, + // 0x6a59 橙 + 89,106,35,35,59,37,1,253,0,15,192,0,0,0,20,0,0,0,15,192,10,170,208,252,20,0,0,15,192,31,255,244,252,125,0,0,15,192,31,255,240,191,254,0,0,15,192,0,7,240,63,244,0,0,15,192,4,11,224,63,192,128,0,15,192,47,79,192,31,194,240,0,15,192,63,255,128,15,219,244,63,255,255,203,255,64,11,255,192,63,255,255,194,255,0,3,253,0,63,255,255,193,255,255,255,253,0,0,47,208,7,255,255,255,255,64,0,47,192,15,246,170,170,63,224,0,63,192,127,192,0,0,15,252,0,127,225,255,64,0,0,3,240,0,191,244,254,170,170,170,169,144,0,255,252,34,255,255,255,253,0,0,255,255,2,255,255,255,253,0,2,255,239,130,248,0,0,253,0,3,255,207,210,248,0,0,253,0,7,223,199,194,248,0,0,253,0,15,207,195,66,248,0,0,253,0,31,143,192,2,255,255,255,253,0,63,15,192,2,255,255,255,253,0,191,15,192,1,170,170,171,169,0,189,15,192,0,26,0,7,224,0,60,15,192,0,63,0,11,240,0,16,15,192,0,47,128,15,208,0,0,15,192,0,31,192,31,192,0,0,15,192,0,15,192,47,64,0,0,15,192,0,15,64,47,0,0,0,15,192,255,255,255,255,255,248,0,15,192,255,255,255,255,255,248,0,15,192,255,255,255,255,255,244,0,15,192,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,33,33,41,37,2,255,0,0,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,42,0,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,255,85,85,84,0,0,63,64,0,255,255,255,253,0,0,63,64,0,255,255,255,253,0,0,63,64,0,255,255,255,253,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,85,191,149,85,255,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x6b63 正 + 99,107,33,32,32,37,2,254,21,85,85,85,85,85,85,85,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,21,0,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,254,85,85,80,0,0,63,64,1,255,255,255,244,0,0,63,64,1,255,255,255,244,0,0,63,64,1,255,255,255,244,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,85,85,85,85,85,64, + // 0x6b65 步 + 101,107,33,35,59,37,2,253,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,5,0,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,0,47,192,3,255,255,255,192,0,0,47,192,3,255,255,255,192,0,0,47,192,3,255,255,255,192,0,0,47,192,3,249,85,85,64,0,0,47,192,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,21,85,85,87,245,85,85,85,0,0,2,64,3,244,0,0,0,0,0,7,248,3,244,0,4,0,0,0,15,240,3,244,0,47,128,0,0,63,224,3,244,0,63,192,0,0,255,128,3,244,0,127,128,0,3,255,0,3,244,0,255,0,0,31,252,0,3,244,2,254,0,0,191,240,0,3,244,7,252,0,0,63,192,15,255,240,15,244,0,0,14,0,7,255,240,63,240,0,0,0,0,3,255,128,255,192,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,2,255,240,0,0,0,0,0,0,191,255,128,0,0,0,0,0,111,255,248,0,0,0,0,2,191,255,255,144,0,0,0,0,2,255,255,248,0,0,0,0,0,0,255,249,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,34,35,59,37,2,253,0,106,0,0,6,144,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,124,0,0,191,0,0,15,224,3,255,0,0,191,85,85,15,224,47,255,64,0,191,255,254,15,226,255,248,0,0,191,255,254,15,255,255,128,0,0,191,255,254,15,255,248,0,0,0,191,0,0,15,255,128,0,0,0,191,0,0,15,244,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,7,128,0,191,0,0,15,224,0,11,240,0,191,0,27,143,224,0,11,224,0,191,27,255,143,224,0,11,224,0,255,255,255,207,240,0,15,208,175,255,255,254,75,240,0,31,192,255,255,254,64,7,255,255,255,192,255,254,64,0,3,255,255,255,64,190,64,0,0,1,255,255,254,0,0,0,0,0,0,5,85,64,0, + // 0x6ca1 没 + 161,108,34,34,50,37,2,253,7,208,0,0,0,0,0,0,0,15,252,0,15,255,255,252,0,0,15,255,128,15,255,255,252,0,0,1,255,240,15,255,255,252,0,0,0,31,224,31,192,0,252,0,0,0,3,192,31,192,0,252,0,0,0,0,0,31,192,0,252,0,0,0,0,0,47,192,0,252,3,64,0,0,0,63,128,0,252,7,224,0,0,0,127,64,0,252,7,224,121,0,0,255,0,0,253,11,208,255,208,3,254,0,0,255,255,208,255,248,31,252,0,0,191,255,192,31,255,31,240,0,0,47,254,0,1,253,7,192,0,0,0,0,0,0,60,2,0,0,0,0,64,0,0,0,3,255,255,255,255,244,0,0,0,3,255,255,255,255,244,0,0,0,3,255,255,255,255,240,0,0,1,0,11,192,0,31,224,0,0,7,128,31,208,0,63,192,0,0,15,224,11,240,0,191,128,0,0,31,208,3,252,1,255,0,0,0,63,192,2,255,7,253,0,0,0,127,64,0,191,159,248,0,0,0,255,0,0,63,255,224,0,0,2,253,0,0,15,255,128,0,0,3,252,0,0,47,255,128,0,0,11,244,0,2,255,255,248,0,0,31,240,0,111,255,175,255,144,0,63,208,111,255,253,2,255,255,144,63,128,191,255,208,0,127,255,208,11,0,63,248,0,0,6,255,128,0,0,41,0,0,0,0,27,0, + // 0x6ce2 波 + 226,108,34,36,68,37,1,252,0,64,0,0,0,63,0,0,0,2,248,0,0,0,63,0,0,0,7,255,64,0,0,63,0,0,0,1,255,240,0,0,63,0,0,0,0,47,248,0,0,63,0,0,0,0,3,240,255,255,255,255,255,224,0,0,128,255,255,255,255,255,240,0,0,0,255,255,255,255,255,224,0,0,0,254,0,127,64,31,208,0,0,0,253,0,63,0,31,192,4,0,0,253,0,63,0,63,128,31,64,0,253,0,63,0,63,64,63,240,0,253,0,63,0,127,0,127,254,0,253,0,63,0,9,0,11,255,128,253,0,63,0,0,0,0,191,64,255,255,255,255,253,0,0,30,0,255,255,255,255,254,0,0,0,0,255,255,255,255,253,0,0,0,0,253,252,0,1,252,0,0,0,0,252,190,0,3,252,0,0,0,0,252,63,0,7,244,0,0,3,129,252,47,192,15,240,0,0,11,225,252,15,208,31,208,0,0,15,209,252,11,240,63,192,0,0,47,194,248,3,252,255,64,0,0,63,131,244,1,255,254,0,0,0,191,3,244,0,191,252,0,0,0,254,7,240,0,63,244,0,0,2,253,11,224,0,255,253,0,0,3,252,15,208,7,255,255,192,0,11,244,47,192,127,252,191,248,0,15,240,63,139,255,224,31,255,208,31,208,191,47,255,64,2,255,240,7,192,190,15,244,0,0,47,208,0,0,8,3,64,0,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x6ce8 注 + 232,108,35,35,59,37,1,253,0,80,0,0,13,0,0,0,0,1,253,0,0,63,208,0,0,0,3,255,208,0,191,248,0,0,0,0,191,248,0,31,255,64,0,0,0,15,253,0,2,255,224,0,0,0,1,248,0,0,63,248,0,0,0,0,32,0,0,11,244,0,0,0,0,0,0,0,2,208,0,0,0,0,0,255,255,255,255,255,224,0,0,0,255,255,255,255,255,224,9,0,0,255,255,255,255,255,224,47,208,0,85,85,127,149,85,64,127,253,0,0,0,63,64,0,0,31,255,192,0,0,63,64,0,0,1,255,192,0,0,63,64,0,0,0,47,64,0,0,63,64,0,0,0,6,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,63,255,255,255,255,64,0,0,64,63,255,255,255,255,64,0,0,244,63,255,255,255,255,64,0,1,252,5,85,127,149,85,0,0,3,252,0,0,63,64,0,0,0,7,244,0,0,63,64,0,0,0,15,240,0,0,63,64,0,0,0,47,208,0,0,63,64,0,0,0,63,192,0,0,63,64,0,0,0,191,64,0,0,63,64,0,0,1,255,0,0,0,63,64,0,0,3,252,1,85,85,127,149,85,80,11,248,7,255,255,255,255,255,248,15,240,7,255,255,255,255,255,248,2,208,7,255,255,255,255,255,248,0,64,0,0,0,0,0,0,0, + // 0x6d17 洗 + 23,109,34,35,59,37,2,253,1,0,0,4,0,253,0,0,0,11,192,0,31,192,253,0,0,0,31,248,0,31,192,253,0,0,0,11,255,0,47,192,253,0,0,0,1,255,192,63,128,253,0,0,0,0,47,192,127,64,253,0,0,0,0,11,0,191,255,255,255,255,0,0,0,0,255,255,255,255,255,0,0,0,1,255,255,255,255,255,0,0,0,2,253,1,254,0,0,0,16,0,3,248,0,253,0,0,0,125,0,11,240,0,253,0,0,0,255,192,31,240,0,253,0,0,0,191,248,11,192,0,253,0,0,0,31,254,1,128,0,253,0,0,0,2,253,5,85,85,254,85,85,64,0,120,31,255,255,255,255,255,208,0,0,31,255,255,255,255,255,208,0,0,31,255,255,255,255,255,208,0,0,0,1,252,3,244,0,0,0,4,0,2,252,3,244,0,0,0,15,0,2,252,3,244,0,0,0,47,192,2,248,3,244,0,0,0,63,64,3,248,3,244,0,0,0,191,0,3,244,3,244,0,0,0,254,0,11,240,3,244,0,0,2,252,0,15,240,3,244,3,128,3,248,0,31,208,3,244,3,240,11,240,0,63,192,3,244,3,240,15,224,1,255,64,3,244,3,240,47,192,11,254,0,3,248,7,224,127,128,191,248,0,2,255,255,208,47,64,191,224,0,1,255,255,192,6,0,63,64,0,0,191,255,0,0,0,4,0,0,0,0,0,0, + // 0x6d3b 活 + 59,109,34,35,59,37,2,253,0,0,0,0,0,0,1,144,0,7,208,0,0,0,1,111,248,0,15,252,0,0,6,191,255,253,0,11,255,128,175,255,255,255,228,0,1,255,240,255,255,255,228,0,0,0,47,208,191,254,254,0,0,0,0,3,128,20,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,56,0,15,255,255,255,255,255,208,191,128,15,255,255,255,255,255,208,255,248,15,255,255,255,255,255,208,31,255,5,85,85,254,85,85,64,2,254,0,0,0,190,0,0,0,0,60,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,2,0,127,255,255,255,252,0,0,11,192,127,255,255,255,252,0,0,15,224,127,255,255,255,252,0,0,47,192,126,0,0,0,252,0,0,63,128,126,0,0,0,252,0,0,191,0,126,0,0,0,252,0,0,254,0,126,0,0,0,252,0,3,252,0,126,0,0,0,252,0,7,248,0,126,0,0,0,252,0,15,240,0,126,0,0,0,252,0,47,208,0,127,255,255,255,252,0,127,192,0,127,255,255,255,252,0,63,64,0,127,255,255,255,252,0,10,0,0,126,0,0,0,252,0,0,0,0,126,0,0,0,168,0, + // 0x6d41 流 + 65,109,34,35,59,37,2,253,1,0,0,0,2,252,0,0,0,11,224,0,0,2,252,0,0,0,15,253,0,0,2,252,0,0,0,11,255,192,0,2,252,0,0,0,0,191,240,0,2,252,0,0,0,0,31,207,255,255,255,255,255,192,0,2,79,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,0,0,127,128,0,0,0,0,0,0,0,191,0,30,0,0,16,0,0,0,254,0,127,64,0,125,0,0,1,252,0,47,208,0,255,208,0,3,244,0,11,244,0,191,252,1,91,255,255,255,253,0,31,255,11,255,255,255,255,255,0,1,252,11,255,255,255,255,255,128,0,40,7,250,165,80,0,47,208,0,0,0,0,0,0,0,15,64,0,0,0,63,2,244,31,192,0,0,0,0,63,2,244,31,192,0,0,2,0,63,2,244,31,192,0,0,11,128,63,2,244,31,192,0,0,15,208,63,2,244,31,192,0,0,47,192,63,2,244,31,192,0,0,63,128,63,2,244,31,192,0,0,191,0,127,2,244,31,192,0,0,254,0,190,2,244,31,192,0,3,252,0,253,2,244,31,194,208,7,248,1,252,2,244,31,194,224,15,240,3,252,2,244,31,194,224,31,224,11,244,2,244,31,195,224,63,192,47,240,2,244,31,255,224,63,128,127,192,2,244,15,255,192,11,0,47,0,0,0,7,255,64,0,0,8,0,0,0,0,0,0, + // 0x6d4b 测 + 75,109,34,35,59,37,1,253,0,64,0,0,0,0,0,2,128,3,244,0,0,0,0,0,7,208,15,254,7,255,255,252,0,7,208,3,255,219,255,255,252,26,7,208,0,127,235,234,170,252,31,71,208,0,11,199,192,0,188,31,71,208,0,2,7,192,0,188,31,71,208,0,0,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,4,0,7,194,240,188,31,71,208,47,64,7,194,240,188,31,71,208,127,244,7,194,240,188,31,71,208,47,254,7,194,240,188,31,71,208,3,255,7,194,240,188,31,71,208,0,125,7,194,240,188,31,71,208,0,8,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,0,0,7,194,240,188,31,71,208,0,30,7,194,240,188,31,71,208,0,63,135,194,240,188,31,71,208,0,63,71,195,240,188,31,71,208,0,191,7,195,224,188,31,71,208,0,254,7,195,224,188,31,71,208,1,253,0,7,208,0,5,7,208,2,252,0,15,197,0,0,7,208,3,248,0,31,175,0,0,7,208,7,240,0,63,31,192,0,7,208,15,240,0,254,7,240,0,7,208,31,208,7,248,2,248,0,11,208,47,192,47,240,0,189,15,255,192,7,128,47,128,0,61,11,255,128,0,0,8,0,0,16,7,233,0, + // 0x6d88 消 + 136,109,33,36,68,37,2,252,1,0,0,0,0,253,0,0,0,11,128,0,32,0,253,0,40,0,31,248,2,248,0,253,0,63,64,15,255,2,252,0,253,0,191,0,1,255,208,255,0,253,0,254,0,0,63,192,127,64,253,2,252,0,0,11,64,63,192,253,3,248,0,0,1,0,31,208,253,11,240,0,0,0,0,15,128,253,11,208,0,0,0,0,4,0,253,0,64,0,16,0,0,0,0,254,0,0,0,125,0,0,255,255,255,255,252,0,255,192,0,255,255,255,255,252,0,191,244,0,255,255,255,255,252,0,15,254,0,253,0,0,0,252,0,2,254,0,253,0,0,0,252,0,0,188,0,253,0,0,0,252,0,0,20,0,253,0,0,0,252,0,0,0,0,255,255,255,255,252,0,0,0,0,255,255,255,255,252,0,0,0,0,255,255,255,255,252,0,0,11,0,253,0,0,0,252,0,0,15,192,253,0,0,0,252,0,0,47,192,253,0,0,0,252,0,0,63,64,255,255,255,255,252,0,0,191,0,255,255,255,255,252,0,0,254,0,255,255,255,255,252,0,2,252,0,253,0,0,0,252,0,3,248,0,253,0,0,0,252,0,11,240,0,253,0,0,0,252,0,31,224,0,253,0,0,0,252,0,63,208,0,253,0,0,1,252,0,127,192,0,253,0,3,255,252,0,31,64,0,253,0,2,255,248,0,2,0,0,253,0,1,255,208,0,0,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,35,34,50,37,1,253,0,0,0,0,0,127,0,0,0,1,224,0,0,0,127,0,0,0,7,254,0,6,64,127,0,36,0,3,255,208,15,192,127,0,63,128,0,127,248,31,192,191,0,191,0,0,11,244,63,128,190,1,253,0,0,1,208,127,0,254,3,252,0,0,0,0,254,0,253,7,240,0,0,0,1,252,1,254,15,208,0,0,0,0,36,3,255,209,64,0,4,0,0,0,7,255,252,0,0,31,64,0,0,31,251,255,128,0,127,244,0,0,191,208,191,244,0,47,254,0,7,255,128,31,255,0,2,255,193,255,253,0,2,255,192,0,127,2,255,224,106,0,63,192,0,13,0,254,0,127,0,11,0,0,0,0,0,0,191,0,0,0,0,0,0,9,0,191,0,25,0,0,1,0,31,192,190,0,63,192,0,3,128,47,128,254,0,127,128,0,11,240,63,64,255,0,255,0,0,15,224,191,0,255,66,253,0,0,47,192,254,1,255,131,248,0,0,63,195,252,3,255,207,240,0,0,191,66,244,3,255,246,192,0,0,255,0,16,15,247,248,0,0,2,253,0,0,47,226,254,0,0,7,252,0,0,255,192,255,128,0,15,244,0,27,255,0,63,244,0,31,240,6,255,252,0,15,255,144,15,208,31,255,224,0,2,255,244,2,128,11,254,0,0,0,127,224,0,0,3,144,0,0,0,1,128, + // 0x6df7 混 + 247,109,34,35,59,37,2,253,1,0,0,0,0,0,0,0,0,7,192,0,0,0,0,0,0,0,15,248,3,255,255,255,255,252,0,31,255,67,255,255,255,255,252,0,1,255,211,255,255,255,255,252,0,0,47,195,244,0,0,2,252,0,0,7,3,244,0,0,2,252,0,0,0,3,254,170,170,171,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,16,0,3,244,0,0,2,252,0,126,0,3,244,0,0,2,252,0,255,208,3,244,0,0,2,252,0,191,252,3,255,255,255,255,252,0,11,253,3,255,255,255,255,252,0,1,248,2,255,255,255,255,248,0,0,32,0,0,0,0,0,0,0,0,0,1,84,0,5,64,0,0,0,0,2,248,0,15,192,0,0,0,0,2,248,0,15,192,0,0,0,4,2,248,0,15,192,28,0,0,15,2,248,0,15,192,191,0,0,47,194,255,255,143,199,255,128,0,63,130,255,255,143,255,253,0,0,191,2,255,255,143,255,208,0,0,254,2,248,0,15,249,0,0,2,252,2,248,0,15,192,0,0,3,252,2,248,0,15,192,6,0,11,244,2,248,0,15,192,7,224,15,240,2,249,175,143,192,7,224,47,208,91,255,255,207,192,11,208,63,192,255,255,255,143,255,255,192,127,64,191,254,144,15,255,255,192,15,0,121,64,0,2,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x6e05 清 + 5,110,34,36,68,37,2,252,2,0,0,0,1,252,0,0,0,15,224,0,0,1,252,0,0,0,31,254,1,85,86,253,85,85,0,7,255,195,255,255,255,255,255,64,0,191,211,255,255,255,255,255,64,0,31,192,0,1,252,0,0,0,0,3,64,0,1,252,0,0,0,0,0,1,255,255,255,255,253,0,0,0,1,255,255,255,255,253,0,0,0,0,85,86,253,85,84,0,16,0,0,0,1,252,0,0,0,125,0,10,170,170,254,170,170,144,255,224,31,255,255,255,255,255,224,191,253,31,255,255,255,255,255,224,11,255,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,40,0,63,255,255,255,248,0,0,0,0,63,255,255,255,248,0,0,0,0,63,170,170,171,248,0,0,0,0,63,0,0,2,248,0,0,1,0,63,0,0,2,248,0,0,11,128,63,255,255,255,248,0,0,15,208,63,255,255,255,248,0,0,47,192,63,85,85,86,248,0,0,63,128,63,0,0,2,248,0,0,191,0,63,85,85,86,248,0,0,254,0,63,255,255,255,248,0,2,252,0,63,255,255,255,248,0,7,248,0,63,0,0,2,248,0,15,240,0,63,0,0,2,248,0,31,224,0,63,0,0,2,248,0,63,192,0,63,0,0,2,248,0,63,128,0,63,0,3,255,248,0,15,0,0,63,0,2,255,244,0,1,0,0,63,0,1,255,144,0,0,0,0,0,0,0,0,0,0, + // 0x6e29 温 + 41,110,34,34,50,37,2,253,3,208,0,0,0,0,0,0,0,11,252,0,255,255,255,255,240,0,15,255,128,255,255,255,255,240,0,1,255,240,255,255,255,255,240,0,0,31,224,252,0,0,7,240,0,0,3,192,252,0,0,7,240,0,0,0,0,252,0,0,7,240,0,0,0,0,255,255,255,255,240,0,0,0,0,255,255,255,255,240,0,0,0,0,255,170,170,175,240,0,56,0,0,252,0,0,7,240,0,255,208,0,252,0,0,7,240,0,191,252,0,255,255,255,255,240,0,11,255,0,255,255,255,255,240,0,0,253,0,255,255,255,255,240,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,252,0,0,9,3,255,255,255,255,252,0,0,15,131,255,255,255,255,252,0,0,47,195,240,61,11,192,252,0,0,63,131,240,61,11,192,252,0,0,191,3,240,61,11,192,252,0,0,254,3,240,61,11,192,252,0,2,252,3,240,61,11,192,252,0,3,248,3,240,61,11,192,252,0,11,240,3,240,61,11,192,252,0,15,224,3,240,61,11,192,252,0,63,192,3,240,61,11,192,252,0,127,128,255,255,255,255,255,255,224,63,0,255,255,255,255,255,255,224,10,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6e38 游 + 56,110,35,36,68,37,1,252,0,0,0,31,192,0,164,0,0,3,224,0,31,192,1,252,0,0,11,253,0,31,192,2,252,0,0,7,255,128,31,192,3,248,0,0,0,191,208,31,192,3,244,0,0,0,31,128,31,192,7,255,255,248,0,2,127,255,255,235,255,255,248,0,0,127,255,255,239,255,255,248,0,0,127,255,255,255,213,85,80,0,0,21,253,85,127,192,0,0,0,0,1,252,0,127,64,0,0,30,0,1,252,0,255,0,0,0,63,240,1,252,0,47,255,255,208,127,254,1,248,0,3,255,255,240,7,255,1,255,255,195,255,255,224,0,189,2,255,255,128,0,63,192,0,24,2,255,255,128,0,191,0,0,0,2,248,31,128,6,253,0,0,0,3,244,31,128,11,244,0,0,0,3,244,31,128,11,224,0,0,0,3,240,31,128,11,224,0,0,56,3,240,47,175,255,255,248,0,63,7,240,47,175,255,255,248,0,127,7,224,47,111,255,255,248,0,254,11,208,47,64,11,224,0,0,253,15,192,47,64,11,224,0,2,252,15,192,63,64,11,224,0,3,248,47,128,63,64,11,224,0,7,244,63,64,63,0,11,224,0,11,240,127,0,63,0,11,224,0,15,224,254,0,63,0,11,224,0,47,194,252,0,191,0,11,224,0,63,199,244,127,254,15,255,224,0,11,66,240,63,252,7,255,192,0,0,0,128,63,224,3,254,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,34,35,59,37,2,253,1,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,31,252,11,255,255,255,255,255,192,11,255,75,255,255,255,255,255,192,1,255,203,255,255,255,255,255,192,0,47,75,240,0,31,224,0,0,0,10,11,240,0,31,208,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,128,0,0,0,0,11,241,255,255,255,255,0,16,0,11,241,255,255,255,255,0,125,0,11,241,254,170,170,191,0,255,208,11,241,248,0,0,127,0,191,252,11,241,248,0,0,127,0,11,252,11,225,255,255,255,255,0,0,244,11,225,255,255,255,255,0,0,16,11,225,253,85,85,191,0,0,0,11,225,248,0,0,127,0,0,0,15,225,248,0,0,127,0,0,0,15,209,254,170,170,191,0,0,16,15,209,255,255,255,255,0,0,61,15,193,255,255,255,255,0,0,127,15,192,0,15,192,0,0,0,254,31,192,0,15,192,16,0,1,253,47,192,184,15,193,248,0,2,252,63,128,253,15,194,252,0,3,248,63,66,252,15,192,254,0,11,240,127,3,244,15,192,191,64,15,240,255,11,240,15,192,63,192,31,208,253,31,208,15,192,31,208,63,194,252,63,128,15,192,15,224,127,67,248,63,0,15,192,11,144,191,11,240,5,15,255,192,0,0,30,7,224,0,15,255,128,0,0,0,0,128,0,7,249,0,0,0, + // 0x6ea2 溢 + 162,110,34,35,59,37,2,253,1,0,0,0,0,0,0,0,0,15,208,0,0,31,255,248,0,0,47,252,0,9,31,255,252,0,0,11,255,64,47,223,255,254,0,0,0,255,192,63,128,0,191,64,0,0,47,0,255,0,0,63,192,0,0,9,2,253,0,0,31,240,0,0,0,7,252,0,0,15,253,0,0,0,31,255,255,255,254,255,192,0,0,127,219,255,255,252,191,64,0,0,31,70,170,170,168,29,0,125,0,5,0,0,0,0,0,0,255,208,0,0,0,0,0,0,0,191,248,0,0,31,255,252,0,0,11,252,0,9,31,255,254,0,0,1,244,0,63,223,255,255,0,0,0,16,0,127,64,0,63,128,0,0,0,0,255,0,0,31,208,0,0,0,3,253,0,0,15,240,0,0,0,11,244,0,0,3,252,0,0,0,47,224,0,0,0,255,128,0,52,255,255,255,255,255,255,224,0,191,191,255,255,255,255,255,128,0,254,46,255,255,255,255,246,0,1,253,2,244,61,15,131,240,0,2,252,2,244,61,15,131,240,0,3,248,2,244,61,15,131,240,0,7,240,2,244,61,15,131,240,0,15,240,2,244,61,15,131,240,0,31,208,2,244,61,15,131,240,0,63,192,2,244,61,15,131,240,0,127,128,255,255,255,255,255,255,224,191,0,255,255,255,255,255,255,224,46,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6ed1 滑 + 209,110,34,35,59,37,1,253,0,128,0,0,0,0,0,0,0,2,248,0,10,170,170,170,164,0,7,255,128,15,255,255,255,248,0,1,255,244,15,255,255,255,248,0,0,47,248,15,192,0,2,248,0,0,7,240,15,192,0,2,248,0,0,0,224,15,192,0,3,248,0,0,0,0,15,192,191,255,248,0,0,0,0,15,192,191,255,248,0,0,0,0,15,192,188,2,248,0,4,0,0,15,192,188,2,248,0,47,128,6,175,234,254,171,254,160,127,248,11,255,255,255,255,255,240,31,255,139,255,255,255,255,255,240,1,255,139,224,0,0,0,3,240,0,47,11,224,0,0,0,3,240,0,5,11,234,170,170,170,167,240,0,0,11,239,255,255,255,251,240,0,0,0,15,255,255,255,248,0,0,0,0,15,192,0,2,248,0,0,1,128,15,192,0,2,248,0,0,3,240,15,234,170,171,248,0,0,7,244,15,255,255,255,248,0,0,11,240,15,255,255,255,248,0,0,15,224,15,192,0,2,248,0,0,47,192,15,192,0,2,248,0,0,63,128,15,234,170,171,248,0,0,255,0,15,255,255,255,248,0,1,254,0,15,255,255,255,248,0,3,252,0,15,192,0,2,248,0,7,248,0,15,192,0,2,248,0,15,240,0,15,192,0,2,248,0,15,224,0,15,192,2,171,244,0,3,192,0,15,192,3,255,240,0,0,0,0,15,192,1,255,144,0, + // 0x6f0f 漏 + 15,111,34,35,59,37,1,253,1,64,0,0,0,0,0,0,0,3,240,3,255,255,255,255,255,128,15,254,3,255,255,255,255,255,192,2,255,211,255,255,255,255,255,192,0,127,211,240,0,0,0,31,192,0,15,131,240,0,0,0,31,192,0,2,3,240,0,0,0,31,192,0,0,3,255,255,255,255,255,192,0,0,3,255,255,255,255,255,192,0,0,3,255,255,255,255,255,192,4,0,3,240,0,0,0,0,0,31,64,3,240,0,0,0,0,0,63,224,3,240,0,0,0,0,0,127,253,3,255,255,255,255,255,240,11,255,131,255,255,255,255,255,240,0,255,3,250,170,175,234,170,160,0,29,3,240,0,15,192,0,0,0,0,7,240,0,15,192,0,0,0,0,7,255,255,255,255,255,208,0,0,7,255,255,255,255,255,208,0,0,11,255,234,175,234,175,208,0,45,11,239,128,15,192,7,208,0,63,75,223,141,15,206,7,208,0,127,15,223,175,143,223,199,208,0,191,15,207,139,239,199,247,208,0,253,31,207,129,207,192,199,208,1,252,47,143,128,15,192,7,208,3,252,63,79,140,15,205,7,208,7,244,63,15,191,79,239,135,208,11,240,127,15,143,223,203,231,208,15,224,254,15,131,223,193,199,208,47,193,252,15,128,79,192,7,208,63,195,248,15,128,15,193,91,208,15,65,244,15,128,15,193,255,192,1,0,32,15,128,11,192,255,64, + // 0x6fc0 激 + 192,111,34,36,68,37,2,252,0,0,0,46,64,2,228,0,0,15,128,0,63,192,2,248,0,0,47,244,0,63,64,3,244,0,0,31,254,0,127,0,3,240,0,0,3,255,127,255,255,131,240,0,0,0,127,63,255,255,135,240,0,0,0,28,63,85,111,139,224,0,0,0,0,63,0,31,143,255,255,224,0,0,63,85,111,143,255,255,224,0,0,63,255,255,159,255,255,224,0,0,63,255,255,175,192,127,0,125,0,63,0,31,191,192,126,0,255,128,63,0,31,255,192,190,0,255,244,63,85,111,255,192,189,0,31,252,63,255,255,255,208,253,0,2,244,63,255,255,255,208,252,0,0,96,0,63,64,247,224,252,0,0,0,0,63,64,114,241,252,0,0,0,0,63,64,1,242,248,0,0,1,255,255,255,241,247,244,0,0,1,255,255,255,240,251,240,0,0,53,255,255,255,224,255,240,0,0,190,2,244,0,0,127,224,0,0,254,2,244,0,0,63,208,0,1,252,2,255,255,64,63,192,0,3,252,3,255,255,64,63,128,0,3,244,3,255,255,64,127,192,0,11,240,7,240,63,64,255,240,0,15,224,11,224,63,2,255,244,0,31,208,15,192,63,7,246,252,0,63,192,63,128,63,31,240,255,0,127,64,191,0,127,127,192,127,192,191,2,253,47,255,255,64,47,224,46,7,248,31,253,253,0,11,192,0,1,208,10,144,48,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x706f 灯 + 111,112,34,35,59,37,2,253,0,10,128,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,7,255,255,255,255,224,0,15,192,7,255,255,255,255,224,0,15,192,7,255,255,255,255,224,0,15,192,1,85,86,254,85,64,0,15,192,144,0,0,253,0,0,47,15,193,248,0,0,253,0,0,47,15,195,240,0,0,253,0,0,63,15,195,240,0,0,253,0,0,63,15,199,208,0,0,253,0,0,62,15,203,192,0,0,253,0,0,62,15,207,128,0,0,253,0,0,125,15,239,0,0,0,253,0,0,188,15,198,0,0,0,253,0,0,252,31,192,0,0,0,253,0,0,120,31,192,0,0,0,253,0,0,0,31,192,0,0,0,253,0,0,0,47,192,0,0,0,253,0,0,0,63,128,0,0,0,253,0,0,0,63,192,0,0,0,253,0,0,0,63,240,0,0,0,253,0,0,0,127,252,0,0,0,253,0,0,0,191,255,0,0,0,253,0,0,0,254,63,192,0,0,253,0,0,1,253,31,240,0,0,253,0,0,3,252,11,248,0,0,253,0,0,7,244,2,240,0,0,253,0,0,15,240,0,192,0,0,253,0,0,63,208,0,0,0,1,253,0,0,191,192,0,0,63,255,253,0,0,255,0,0,0,47,255,252,0,0,61,0,0,0,15,255,240,0,0,4,0,0,0,10,169,0,0,0, + // 0x70b9 点 + 185,112,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,254,0,0,0,0,7,255,255,255,254,0,0,0,0,7,255,255,255,254,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,253,0,0,0,0,47,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,1,64,11,192,0,1,253,11,224,15,208,15,224,0,3,252,7,240,11,240,11,244,0,11,244,7,240,3,244,3,252,0,15,240,3,240,3,248,0,254,0,63,208,3,244,1,252,0,191,64,191,128,3,244,0,253,0,63,192,255,0,3,248,0,254,0,47,128,24,0,2,80,0,64,0,4,0, + // 0x70ed 热 + 237,112,34,36,68,37,2,252,0,31,192,0,7,240,0,0,0,0,31,192,0,7,224,0,0,0,0,31,192,0,11,224,0,0,0,0,31,192,0,11,224,0,0,0,0,31,192,0,11,224,0,0,0,191,255,255,207,255,255,255,192,0,191,255,255,207,255,255,255,192,0,191,255,255,207,255,255,255,192,0,0,31,192,0,11,224,15,192,0,0,31,192,0,15,208,15,192,0,0,31,192,0,15,208,15,192,0,0,31,193,128,15,192,15,192,0,0,31,255,193,15,192,15,192,0,0,127,255,207,239,192,15,192,0,111,255,255,175,255,192,15,192,0,255,255,228,7,255,128,15,192,0,255,255,192,0,191,224,15,192,0,185,31,192,0,127,253,15,192,0,0,31,192,0,255,255,143,192,0,0,31,192,2,252,191,207,194,64,0,31,192,7,248,31,79,195,240,0,31,192,31,240,2,11,211,240,31,255,192,191,208,0,7,231,224,15,255,64,255,64,0,3,255,208,11,249,0,61,0,0,2,255,192,0,0,0,16,0,0,0,190,0,0,228,0,0,0,0,2,192,0,1,252,7,240,15,224,15,224,0,3,248,7,240,11,240,11,244,0,11,240,3,240,3,244,3,252,0,15,224,3,244,3,248,1,254,0,63,192,3,244,2,252,0,191,64,191,128,3,244,1,252,0,63,192,255,0,3,248,0,253,0,47,192,29,0,1,80,0,80,0,13,0,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,36,32,37,1,252,0,0,0,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,234,170,171,254,170,170,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,234,170,170,171,252,0,0,127,64,0,0,2,252,0,0,191,0,0,0,2,252,0,0,255,0,0,0,2,252,0,0,254,0,0,0,2,252,0,2,253,0,0,0,2,252,0,3,252,0,0,0,2,252,0,11,248,0,0,0,2,252,0,31,240,0,0,0,2,252,0,63,224,0,0,0,2,252,0,127,192,0,0,0,2,252,0,31,64,0,0,0,2,252,0,6,0,0,0,0,2,252,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,34,35,59,37,1,253,0,3,244,0,11,128,0,0,0,0,3,244,0,15,208,0,0,0,6,67,244,0,15,192,0,0,0,11,211,244,0,31,192,0,0,0,15,195,244,0,47,64,0,0,0,15,195,244,0,63,0,0,0,0,15,195,244,0,127,255,255,255,240,15,195,244,0,255,255,255,255,240,31,255,255,225,255,255,255,255,240,31,255,255,227,248,47,71,247,240,47,255,255,231,240,63,11,211,240,63,3,244,15,224,126,15,199,240,63,3,244,47,192,189,15,199,240,190,3,244,127,128,252,31,135,240,188,3,244,127,2,248,47,135,240,44,3,244,13,3,240,63,71,240,0,3,244,0,7,240,63,11,224,0,3,250,244,15,208,190,11,224,0,3,255,244,47,192,253,11,224,0,111,255,248,63,65,252,15,208,27,255,255,144,255,3,248,15,208,127,255,244,2,252,3,240,15,208,63,251,244,7,248,11,240,15,208,61,3,244,31,240,15,208,15,192,0,3,244,47,192,47,192,15,192,0,3,244,3,0,127,64,31,192,0,3,244,0,0,255,0,47,192,0,3,244,0,2,253,0,47,128,0,3,244,0,7,248,0,63,128,0,3,244,0,31,240,0,127,64,0,3,244,0,127,192,0,255,0,0,3,244,1,255,65,255,255,0,0,3,244,0,189,0,255,252,0,0,3,244,0,36,0,255,244,0,0,3,244,0,0,0,20,0,0, + // 0x7279 特 + 121,114,35,35,59,37,1,253,0,3,244,0,0,11,224,0,0,0,3,244,0,0,15,224,0,0,10,131,244,0,0,15,224,0,0,15,195,244,0,0,15,224,0,0,15,195,244,2,255,255,255,255,192,15,195,244,2,255,255,255,255,192,15,195,244,2,255,255,255,255,192,31,215,249,80,0,15,224,0,0,31,255,255,224,0,15,224,0,0,47,255,255,224,0,15,224,0,0,63,255,255,224,0,15,224,0,0,63,3,244,63,255,255,255,255,244,126,3,244,63,255,255,255,255,244,189,3,244,63,255,255,255,255,244,124,3,244,0,0,0,7,244,0,8,3,244,0,0,0,7,240,0,0,3,244,16,0,0,7,240,0,0,3,250,244,0,0,7,240,0,0,3,255,248,0,0,7,244,0,0,191,255,255,255,255,255,255,240,111,255,254,95,255,255,255,255,240,127,255,244,15,255,255,255,255,240,63,231,244,0,0,0,7,240,0,41,3,244,0,124,0,7,240,0,0,3,244,0,254,0,7,240,0,0,3,244,0,127,128,7,240,0,0,3,244,0,47,208,7,240,0,0,3,244,0,15,240,7,240,0,0,3,244,0,3,244,7,240,0,0,3,244,0,2,192,7,240,0,0,3,244,0,0,0,7,240,0,0,3,244,0,0,21,91,240,0,0,3,244,0,0,31,255,240,0,0,3,244,0,0,15,255,224,0,0,3,244,0,0,15,254,64,0, + // 0x7387 率 + 135,115,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,0,47,192,0,0,0,0,1,0,0,63,64,0,0,224,0,15,192,0,254,2,64,3,253,0,47,248,10,252,7,240,15,248,0,7,255,47,240,15,208,63,208,0,0,255,239,240,63,129,255,64,0,0,47,7,253,190,0,188,0,0,0,4,0,255,252,0,0,0,0,0,0,0,63,242,208,0,0,0,0,1,128,31,199,240,244,0,0,0,31,208,63,2,255,255,64,0,2,255,224,253,85,254,255,224,0,127,255,191,255,255,255,31,253,0,191,228,127,255,255,255,130,255,128,62,0,63,170,164,15,192,127,64,16,0,0,7,240,10,0,28,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x73af 环 + 175,115,34,32,32,37,1,253,127,255,255,47,255,255,255,255,240,127,255,255,47,255,255,255,255,240,127,255,255,47,255,255,255,255,240,0,127,0,0,0,15,240,0,0,0,127,0,0,0,31,224,0,0,0,127,0,0,0,47,192,0,0,0,127,0,0,0,63,128,0,0,0,127,0,0,0,191,64,0,0,0,127,0,0,1,255,64,0,0,0,127,0,0,3,255,173,0,0,63,255,252,0,7,255,255,64,0,63,255,252,0,15,255,191,192,0,63,255,252,0,63,255,95,240,0,0,127,0,0,191,255,75,248,0,0,127,0,1,255,63,67,253,0,0,127,0,3,253,63,64,255,0,0,127,0,15,248,63,64,127,192,0,127,0,127,240,63,64,47,224,0,127,0,191,192,63,64,15,240,0,127,0,47,0,63,64,7,128,0,127,0,13,0,63,64,1,0,0,127,110,0,0,63,64,0,0,0,127,255,0,0,63,64,0,0,6,255,255,0,0,63,64,0,0,127,255,228,0,0,63,64,0,0,127,253,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,36,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0, + // 0x7528 用 + 40,117,32,34,16,37,1,252,0,21,85,85,85,85,85,85,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,254,0,0,191,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,191,255,255,255,255,255,255,0,191,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,254,85,85,254,85,85,191,0,253,0,0,253,0,0,191,1,252,0,0,253,0,0,191,2,252,0,0,253,0,0,191,3,248,0,0,253,0,0,191,3,244,0,0,253,0,0,191,11,240,0,0,253,0,0,191,15,240,0,0,253,0,0,191,47,208,0,0,253,5,65,255,127,192,0,0,253,11,255,254,127,64,0,0,253,7,255,252,14,0,0,0,189,3,255,224,0,0,0,0,0,0,0,0, + // 0x7535 电 + 53,117,32,35,24,37,4,253,0,0,0,106,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,21,85,85,191,85,85,85,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,191,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,0,0,191,0,0,127,0,127,85,85,191,85,85,191,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,191,0,0,0,128,127,0,0,191,0,0,0,253,21,0,0,191,0,0,0,253,0,0,0,191,0,0,0,253,0,0,0,191,0,0,1,252,0,0,0,127,128,0,3,252,0,0,0,127,255,255,255,248,0,0,0,63,255,255,255,240,0,0,0,11,255,255,255,208,0,0,0,0,85,85,85,0, + // 0x7565 略 + 101,117,33,36,68,37,3,252,0,0,0,0,3,144,0,0,0,0,0,0,0,11,240,0,0,0,255,255,255,64,15,224,0,0,0,255,255,255,64,47,192,0,0,0,255,255,255,64,63,255,255,244,0,244,60,31,64,255,255,255,252,0,244,60,31,66,255,255,255,244,0,244,60,31,71,252,0,15,240,0,244,60,31,95,254,0,31,208,0,244,60,31,191,255,64,63,192,0,244,60,31,255,175,192,255,0,0,244,60,31,254,15,242,253,0,0,244,60,31,120,7,255,248,0,0,255,255,255,64,2,255,240,0,0,255,255,255,64,0,255,192,0,0,255,255,255,64,2,255,244,0,0,244,60,31,64,15,255,254,0,0,244,60,31,64,191,242,255,208,0,244,60,31,71,255,128,127,253,0,244,60,31,191,253,0,15,255,192,244,60,31,255,224,0,1,255,64,244,60,31,255,255,255,255,254,0,244,60,31,103,255,255,255,244,0,244,60,31,71,255,255,255,244,0,255,255,255,71,240,0,3,244,0,255,255,255,71,240,0,3,244,0,255,255,255,71,240,0,3,244,0,244,0,0,7,240,0,3,244,0,244,0,0,7,240,0,3,244,0,244,0,0,7,240,0,3,244,0,244,0,0,7,240,0,3,244,0,0,0,0,7,255,255,255,244,0,0,0,0,7,255,255,255,244,0,0,0,0,7,255,255,255,244,0,0,0,0,7,240,0,3,244,0,0,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,27,36,252,37,5,252,0,0,3,228,0,0,0,0,0,7,252,0,0,0,0,0,11,248,0,0,0,0,0,15,240,0,0,0,0,0,31,240,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,254,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,0,0,0,0,0,0,0, + // 0x7684 的 + 132,118,32,35,24,37,3,253,0,30,128,0,7,144,0,0,0,47,192,0,11,240,0,0,0,63,128,0,15,224,0,0,0,63,64,0,15,208,0,0,0,127,0,0,31,192,0,0,0,190,0,0,63,192,0,0,255,255,255,208,63,255,255,253,255,255,255,208,191,255,255,253,255,255,255,208,255,255,255,253,253,0,15,209,253,0,0,253,253,0,15,211,248,0,0,253,253,0,15,219,240,0,0,252,253,0,15,239,224,0,0,252,253,0,15,239,192,0,0,252,253,0,15,210,66,0,0,252,253,0,15,208,31,128,0,252,255,255,255,208,31,208,0,252,255,255,255,208,11,240,0,252,255,255,255,208,3,252,0,252,253,0,15,208,1,254,1,252,253,0,15,208,0,191,1,252,253,0,15,208,0,63,193,252,253,0,15,208,0,47,194,248,253,0,15,208,0,15,66,248,253,0,15,208,0,4,2,248,253,0,15,208,0,0,3,248,253,0,15,208,0,0,3,244,253,0,15,208,0,0,3,244,255,255,255,208,0,0,7,240,255,255,255,208,0,0,11,240,255,255,255,208,0,0,31,224,253,0,0,0,2,255,255,208,253,0,0,0,0,255,255,192,253,0,0,0,0,255,254,0,0,0,0,0,0,0,0,0, + // 0x76d1 监 + 209,118,33,34,50,37,2,254,0,0,31,192,0,164,0,0,0,6,160,31,192,0,254,0,0,0,11,240,31,192,1,252,0,0,0,11,240,31,192,2,252,0,0,0,11,240,31,192,3,248,0,0,0,11,240,31,192,7,255,255,255,192,11,240,31,192,11,255,255,255,192,11,240,31,192,15,255,255,255,192,11,240,31,192,47,192,0,0,0,11,240,31,192,63,128,0,0,0,11,240,31,192,191,2,128,0,0,11,240,31,193,254,15,224,0,0,11,240,31,195,252,15,252,0,0,11,240,31,207,244,3,255,64,0,11,240,31,195,224,0,191,208,0,11,240,31,192,128,0,47,244,0,11,224,31,192,0,0,11,248,0,0,0,31,192,0,0,2,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,0,252,2,244,7,240,15,224,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x76f4 直 + 244,118,33,35,59,37,2,253,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,26,175,250,170,170,64,0,5,80,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,149,85,85,127,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,149,85,85,127,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,170,170,170,191,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0x7701 省 + 1,119,34,35,59,37,1,253,0,0,0,0,252,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,184,0,252,0,61,0,0,0,1,254,0,252,0,255,128,0,0,7,252,0,252,0,63,240,0,0,31,240,0,252,0,15,252,0,0,127,208,0,252,0,2,255,64,2,255,64,0,252,0,224,191,208,31,253,0,1,252,3,253,47,240,47,244,7,255,252,31,248,11,208,7,192,3,255,252,191,224,1,0,1,0,2,255,171,255,64,0,0,0,0,0,1,191,248,0,0,0,0,0,0,111,255,208,0,0,0,0,0,111,255,249,0,0,0,0,5,175,255,255,250,170,170,144,0,127,255,255,255,255,255,255,224,0,47,255,255,255,255,255,255,224,0,15,229,252,0,0,0,15,224,0,0,0,252,0,0,0,15,224,0,0,0,252,0,0,0,15,224,0,0,0,255,255,255,255,255,224,0,0,0,255,255,255,255,255,224,0,0,0,254,85,85,85,95,224,0,0,0,252,0,0,0,15,224,0,0,0,252,0,0,0,15,224,0,0,0,255,255,255,255,255,224,0,0,0,255,255,255,255,255,224,0,0,0,254,85,85,85,95,224,0,0,0,252,0,0,0,15,224,0,0,0,252,0,0,0,15,224,0,0,0,255,255,255,255,255,224,0,0,0,255,255,255,255,255,224,0,0,0,254,170,170,170,175,224,0,0,0,252,0,0,0,11,224,0, + // 0x7720 眠 + 32,119,34,33,41,37,2,253,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,240,0,0,63,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,0,189,11,224,7,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,240,7,244,0,0,127,255,253,11,255,255,255,255,208,127,255,253,11,255,255,255,255,208,127,255,253,11,255,255,255,255,208,127,0,189,11,224,2,248,0,0,127,0,189,11,224,1,252,0,0,127,0,189,11,224,1,252,0,0,127,0,189,11,224,0,252,0,0,127,0,189,11,224,0,253,0,0,127,255,253,11,224,0,190,0,0,127,255,253,11,224,0,127,1,208,127,255,253,11,224,0,63,2,240,127,0,0,11,224,107,127,130,240,127,0,0,11,255,255,95,195,240,63,0,2,255,255,255,79,247,240,0,0,2,255,255,249,7,255,208,0,0,1,255,228,0,2,255,192,0,0,0,144,0,0,0,127,0, + // 0x786e 确 + 110,120,33,36,68,37,1,252,0,0,0,0,1,228,0,0,0,0,0,0,0,2,252,0,0,0,63,255,255,248,3,244,0,0,0,63,255,255,248,11,255,255,64,0,63,255,255,248,15,255,255,224,0,0,63,128,0,31,255,255,208,0,0,63,64,0,63,128,63,192,0,0,63,0,0,191,0,63,64,0,0,127,0,1,254,0,191,0,0,0,190,0,3,252,1,252,0,0,0,253,0,15,255,255,255,255,192,0,252,0,31,255,255,255,255,192,1,252,0,11,255,255,255,255,192,2,255,255,225,252,3,240,15,192,3,255,255,224,252,3,240,15,192,3,255,255,224,252,3,240,15,192,11,248,7,224,255,171,250,175,192,15,248,7,224,255,255,255,255,192,31,248,7,224,255,255,255,255,192,63,248,7,224,252,3,240,15,192,127,248,7,224,252,3,240,15,192,255,248,7,224,252,3,240,15,192,127,248,7,224,252,3,240,15,192,45,248,7,224,255,255,255,255,192,5,248,7,225,255,255,255,255,192,1,248,7,225,255,255,255,255,192,1,248,7,226,248,0,0,15,192,1,255,255,227,244,0,0,15,192,1,255,255,231,240,0,0,15,192,1,255,255,235,240,0,0,15,192,1,248,0,15,224,0,0,15,192,1,248,0,47,192,0,0,31,192,1,248,0,127,128,0,31,255,192,0,0,0,63,0,0,15,255,192,0,0,0,8,0,0,15,254,0,0,0,0,0,0,0,0,0,0, + // 0x79bb 离 + 187,121,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,0,0,64,0,0,0,0,106,1,128,3,240,42,64,0,0,127,3,249,31,208,63,128,0,0,127,7,255,255,64,63,128,0,0,127,0,47,254,0,63,128,0,0,127,0,127,255,208,63,128,0,0,127,11,255,111,244,63,128,0,0,127,47,244,3,240,63,128,0,0,127,11,64,0,144,63,128,0,0,127,170,170,170,170,191,128,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,11,255,255,255,255,255,255,248,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,240,0,254,0,176,3,252,0,11,240,0,253,2,248,3,252,0,11,240,1,252,0,253,3,252,0,11,240,2,248,21,191,3,252,0,11,243,255,255,255,255,131,252,0,11,243,255,255,255,255,211,252,0,11,243,255,234,148,7,227,252,0,11,240,0,0,0,3,67,252,0,11,240,0,0,0,0,3,252,0,11,240,0,0,0,7,255,248,0,11,240,0,0,0,3,255,244,0,11,240,0,0,0,1,255,144,0, + // 0x79fb 移 + 251,121,34,35,59,37,1,253,0,0,1,0,0,15,144,0,0,0,0,111,192,0,47,192,0,0,0,111,255,240,0,127,128,0,0,63,255,255,208,1,255,255,254,0,63,255,244,0,7,255,255,255,128,47,155,240,0,47,255,255,255,0,0,7,240,0,191,192,0,254,0,0,7,240,7,255,192,2,252,0,0,7,240,47,255,240,7,248,0,0,7,240,15,231,253,31,240,0,0,11,240,3,0,255,191,192,0,63,255,255,240,0,63,255,64,0,63,255,255,240,0,15,253,0,0,63,255,255,240,0,191,240,0,0,0,15,240,0,7,255,208,0,0,0,31,240,1,255,255,253,0,0,0,63,248,15,255,227,252,0,0,0,127,254,3,254,11,240,0,0,0,255,255,130,144,47,255,255,224,1,255,255,208,0,191,255,255,240,3,251,247,244,2,255,255,255,240,7,231,242,244,15,248,0,31,208,15,199,240,224,191,240,0,63,192,47,135,240,71,255,253,0,191,64,127,71,240,7,254,255,129,255,0,190,7,240,2,208,127,231,252,0,60,7,240,0,0,15,255,244,0,36,7,240,0,0,2,255,208,0,0,7,240,0,0,7,255,64,0,0,7,240,0,0,127,252,0,0,0,7,240,0,7,255,224,0,0,0,7,240,6,255,255,64,0,0,0,7,240,47,255,244,0,0,0,0,7,240,15,254,0,0,0,0,0,7,240,7,144,0,0,0,0, + // 0x7a7a 空 + 122,122,33,34,50,37,2,254,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,64,11,240,3,240,0,127,0,63,64,11,240,3,240,0,127,0,63,64,15,224,3,240,0,127,0,63,64,15,208,3,240,0,127,0,63,64,47,192,3,240,0,0,0,0,0,63,192,3,240,0,32,0,0,0,255,64,3,240,0,63,0,0,7,254,0,3,244,0,127,0,0,191,248,0,3,255,255,254,0,47,255,224,0,2,255,255,252,0,63,255,64,0,0,191,255,244,0,15,228,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128, + // 0x7aef 端 + 239,122,35,35,59,37,1,253,0,5,0,0,0,15,192,0,0,0,47,64,0,0,15,192,0,0,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,63,255,255,139,255,255,255,255,192,63,255,255,139,255,255,255,255,192,63,255,255,139,255,255,255,255,192,0,0,0,0,0,0,0,0,0,6,0,57,0,0,0,0,0,0,31,64,127,0,0,0,0,0,0,15,128,126,63,255,255,255,255,244,15,128,189,63,255,255,255,255,244,15,192,189,63,255,255,255,255,244,11,192,252,0,0,47,192,0,0,11,192,252,0,0,63,192,0,0,7,208,252,0,0,63,64,0,0,7,209,248,15,255,255,255,255,224,3,225,244,15,255,255,255,255,224,3,226,240,15,255,255,255,255,224,3,211,240,15,193,244,63,7,224,0,3,246,223,193,244,63,7,224,0,7,255,223,193,244,63,7,224,27,255,255,239,193,244,63,7,224,191,255,254,79,193,244,63,7,224,127,254,64,15,193,244,63,7,224,62,64,0,15,193,244,63,7,224,0,0,0,15,193,244,63,7,224,0,0,0,15,193,244,63,7,224,0,0,0,15,193,244,63,111,224,0,0,0,15,193,244,63,127,208,0,0,0,10,128,80,0,63,64, + // 0x7b2c 第 + 44,123,34,35,59,37,1,253,0,46,64,0,0,248,0,0,0,0,63,128,0,1,253,0,0,0,0,127,64,0,3,252,0,0,0,0,255,170,170,135,254,170,170,160,2,255,255,255,207,255,255,255,240,3,255,255,255,239,255,255,255,240,15,241,252,0,191,130,252,0,0,63,208,254,2,255,0,255,0,0,127,128,127,2,252,0,63,64,0,30,0,56,0,112,0,41,0,0,0,255,255,255,255,255,255,248,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,0,0,0,252,0,2,252,0,0,0,0,0,252,0,2,252,0,0,0,0,0,252,0,2,252,0,0,31,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,0,0,252,0,0,0,0,0,127,0,0,252,0,0,0,0,0,191,0,0,252,0,0,0,0,0,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,2,252,0,191,252,0,0,63,128,0,0,3,255,252,0,0,63,128,0,0,47,249,252,0,0,63,64,0,1,255,208,252,0,0,127,64,0,31,255,0,252,0,0,191,0,1,255,248,0,252,3,255,255,0,47,255,128,0,252,1,255,253,0,15,252,0,0,252,0,255,244,0,7,128,0,0,252,0,0,0,0,0,0,0,0,252,0,0,0,0, + // 0x7b49 等 + 73,123,34,35,59,37,1,253,0,30,64,0,0,249,0,0,0,0,63,192,0,1,253,0,0,0,0,127,64,0,2,252,0,0,0,0,255,255,255,199,255,255,255,240,1,255,255,255,207,255,255,255,240,3,255,255,255,239,255,255,255,240,15,240,252,0,191,130,252,0,0,63,208,254,1,255,0,255,0,0,191,128,127,0,253,0,127,64,0,31,0,56,1,252,0,61,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,0,0,124,0,0,3,248,0,0,0,1,255,64,0,3,248,0,0,0,0,191,208,0,3,248,0,0,0,0,31,244,0,3,248,0,0,0,0,7,253,0,3,248,0,0,0,0,1,253,0,7,248,0,0,0,0,0,176,31,255,244,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,11,255,128,0,0, + // 0x7bb1 箱 + 177,123,34,35,59,37,1,253,0,30,0,0,0,228,0,0,0,0,47,192,0,0,254,0,0,0,0,63,128,0,1,252,0,0,0,0,127,64,0,3,252,0,0,0,0,255,255,255,199,255,255,255,240,1,255,255,255,207,255,255,255,240,3,255,255,255,239,255,255,255,240,11,244,253,0,127,194,252,0,0,31,224,191,0,255,0,255,0,0,127,192,63,2,253,0,63,64,0,47,64,62,0,116,0,46,64,0,5,1,252,0,0,0,0,0,0,0,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,2,252,0,47,255,255,255,192,47,255,255,255,111,128,0,47,192,47,255,255,255,111,128,0,47,192,47,255,255,255,111,128,0,47,192,0,7,252,0,47,234,170,191,192,0,15,253,0,47,255,255,255,192,0,31,255,64,47,255,255,255,192,0,63,255,208,47,128,0,47,192,0,127,255,244,47,128,0,47,192,0,255,254,254,47,128,0,47,192,2,253,252,255,111,234,170,191,192,7,245,252,63,47,255,255,255,192,31,225,252,28,47,255,255,255,192,63,193,252,0,47,128,0,47,192,127,65,252,0,47,128,0,47,192,46,1,252,0,47,128,0,47,192,8,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,1,252,0,47,128,0,47,192,0,1,252,0,26,64,0,21,64, + // 0x7c7b 类 + 123,124,34,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,11,0,7,240,0,126,0,0,0,63,192,7,240,0,255,64,0,0,31,240,7,240,2,253,0,0,0,11,248,7,240,7,248,0,0,0,3,252,7,240,15,240,0,0,0,0,248,7,240,31,192,0,0,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,0,0,2,255,255,224,0,0,0,0,0,11,255,255,248,0,0,0,0,0,127,247,243,255,64,0,0,0,2,255,135,240,191,240,0,0,0,111,254,7,240,31,255,64,0,7,255,244,7,240,3,255,254,64,255,255,128,7,240,0,127,255,128,63,248,0,1,80,0,7,255,0,31,128,0,2,160,63,64,29,0,0,0,0,7,240,127,244,0,0,0,0,0,11,240,7,255,0,0,0,0,0,11,240,0,188,0,0,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,0,0,0,127,255,0,0,0,0,0,0,0,255,191,192,0,0,0,0,0,3,254,47,224,0,0,0,0,0,31,252,15,253,0,0,0,0,1,255,244,3,255,208,0,0,0,111,255,208,0,255,254,64,0,175,255,254,0,0,47,255,255,144,255,255,224,0,0,2,255,255,192,63,253,0,0,0,0,31,255,0,42,64,0,0,0,0,0,90,0, + // 0x7d22 索 + 34,125,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,0,0,255,64,0,0,63,64,63,0,3,254,0,16,0,63,64,63,0,15,248,0,188,0,63,64,63,9,63,224,2,255,0,63,64,63,63,255,64,15,252,0,63,64,0,63,253,0,127,224,0,0,0,0,7,255,1,255,129,0,0,0,0,0,191,219,253,11,192,0,0,0,0,31,255,224,31,244,0,0,0,0,7,255,64,7,254,0,0,0,0,31,252,0,0,255,192,0,127,255,255,255,255,255,255,244,0,127,255,255,255,255,255,255,254,0,127,255,255,255,255,250,170,255,64,0,0,64,7,240,0,0,61,0,0,2,248,7,240,11,192,0,0,0,15,252,7,240,47,248,0,0,0,127,240,7,240,7,255,128,0,7,255,128,7,240,0,191,240,0,127,253,0,7,240,0,15,253,0,255,224,0,7,240,0,2,255,64,47,64,0,7,240,0,0,125,0,4,0,0,7,240,0,0,0,0, + // 0x7d2b 紫 + 43,125,34,35,59,37,1,253,0,0,63,0,3,244,0,0,0,0,0,63,0,3,244,0,0,0,0,0,63,0,3,244,0,24,0,3,240,63,0,3,244,1,254,0,3,240,63,255,211,244,111,255,128,3,240,63,255,211,255,255,253,0,3,240,63,255,211,255,254,64,0,3,240,63,0,3,254,64,0,0,3,240,63,0,3,244,0,2,0,3,240,63,0,83,244,0,3,240,3,240,127,255,227,248,0,7,240,27,255,255,255,227,255,255,255,240,127,255,255,255,65,255,255,255,208,127,255,164,31,144,127,255,255,64,41,64,0,127,192,0,0,0,0,0,0,1,255,0,30,0,0,0,0,7,75,252,0,191,208,0,0,0,31,255,224,2,255,64,0,0,0,47,255,128,15,252,0,0,0,0,2,255,224,127,224,40,0,0,0,0,47,254,255,65,255,0,0,0,0,7,255,252,0,191,192,0,0,0,0,255,208,0,31,244,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,208,21,64,0,1,253,0,0,15,240,0,0,16,1,252,0,16,7,128,0,1,254,1,252,2,253,0,0,0,11,254,1,252,7,255,128,0,0,127,244,1,252,0,127,244,0,7,255,192,1,252,0,11,255,0,47,254,0,1,252,0,1,255,208,11,240,0,1,252,0,0,47,128,2,64,0,1,252,0,0,5,0, + // 0x7ea2 红 + 162,126,35,34,50,37,1,254,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,15,240,1,85,85,85,85,64,0,31,224,7,255,255,255,255,224,0,63,192,7,255,255,255,255,224,0,127,128,7,255,255,255,255,224,0,255,0,0,0,11,240,0,0,1,253,3,128,0,11,240,0,0,3,248,7,244,0,11,240,0,0,11,240,15,240,0,11,240,0,0,31,208,47,224,0,11,240,0,0,191,255,255,192,0,11,240,0,0,127,255,255,0,0,11,240,0,0,63,255,253,0,0,11,240,0,0,41,71,248,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,255,64,0,0,11,240,0,0,3,253,0,80,0,11,240,0,0,11,254,191,240,0,11,240,0,0,63,255,255,240,0,11,240,0,0,63,255,255,224,0,11,240,0,0,63,254,144,0,0,11,240,0,0,41,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,27,208,0,11,240,0,0,0,107,255,224,0,11,240,0,0,127,255,255,239,255,255,255,255,244,127,255,254,79,255,255,255,255,244,63,254,64,15,255,255,255,255,244,57,64,0,5,85,85,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x7ea7 级 + 167,126,35,36,68,37,1,252,0,2,64,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,224,15,255,255,255,240,0,0,31,192,15,255,255,255,240,0,0,63,128,15,255,255,255,224,0,0,127,0,0,31,192,15,208,0,0,254,0,0,31,192,31,192,0,1,252,2,0,31,192,47,192,0,3,248,11,192,31,192,63,128,0,7,240,15,224,31,192,63,64,0,15,208,63,192,47,192,127,0,0,63,213,191,64,47,128,190,0,0,191,255,254,0,47,128,255,255,128,127,255,252,0,63,128,255,255,192,63,235,244,0,63,193,255,255,192,16,15,224,0,63,224,0,47,128,0,47,192,0,63,240,0,63,64,0,127,0,0,127,244,0,127,0,0,253,27,192,191,252,0,191,0,3,254,255,192,191,253,0,253,0,15,255,255,192,253,191,2,252,0,127,255,244,0,253,63,131,248,0,127,249,0,1,252,47,203,240,0,62,64,0,2,252,15,255,224,0,16,0,1,211,248,7,255,192,0,0,0,111,231,240,2,255,64,0,0,11,255,255,240,2,255,64,0,1,255,255,159,224,11,255,208,0,47,255,228,47,192,63,255,248,0,63,254,0,127,129,255,199,255,0,63,208,0,255,11,255,1,255,224,40,0,2,254,63,252,0,63,244,0,0,1,252,15,208,0,11,208,0,0,0,36,7,0,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x7ebf 线 + 191,126,34,35,59,37,2,253,0,5,0,0,2,252,0,0,0,0,15,208,0,2,252,61,0,0,0,15,224,0,2,252,191,192,0,0,47,192,0,2,252,47,244,0,0,63,128,0,2,252,3,244,0,0,127,0,0,2,252,0,160,0,0,254,0,0,1,252,0,24,0,1,252,0,0,1,253,191,254,0,3,248,13,0,107,255,255,254,0,7,240,31,143,255,255,255,249,0,15,208,63,203,255,255,164,0,0,63,128,191,11,250,252,0,0,0,191,239,254,0,0,253,0,0,0,255,255,252,0,0,253,0,1,0,191,255,244,0,0,253,6,191,64,122,95,224,0,0,255,255,255,128,0,47,192,0,111,255,255,255,128,0,127,0,47,255,255,254,80,0,0,253,0,47,255,255,64,0,0,3,248,1,31,229,127,0,30,0,15,246,191,64,0,63,64,63,192,63,255,255,64,0,63,64,191,0,255,255,255,0,0,63,130,253,0,127,254,64,0,0,47,203,248,0,62,64,0,0,0,31,255,240,0,0,0,0,0,0,15,255,128,0,0,0,6,64,0,15,254,0,0,0,1,191,128,0,47,248,0,0,1,191,255,192,2,255,248,3,0,111,255,254,0,47,255,252,3,208,255,255,128,6,255,245,254,7,208,191,224,0,127,255,128,191,223,192,116,0,0,63,248,0,63,255,192,0,0,0,31,64,0,15,255,64,0,0,0,4,0,0,2,253,0, + // 0x7ec6 细 + 198,126,34,35,59,37,1,253,0,0,208,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,3,255,255,255,255,208,0,11,244,3,255,255,255,255,208,0,15,240,3,255,255,255,255,208,0,47,192,3,249,95,245,95,208,0,63,128,3,240,11,224,15,208,0,191,0,3,240,11,224,15,208,0,253,0,3,240,11,224,15,208,3,252,2,211,240,11,224,15,208,7,240,3,251,240,11,224,15,208,31,224,15,243,240,11,224,15,208,127,239,255,211,240,11,224,15,208,127,255,255,131,240,11,224,15,208,63,255,255,3,240,11,224,15,208,62,151,252,3,240,11,224,15,208,0,11,244,3,255,255,255,255,208,0,31,208,3,255,255,255,255,208,0,127,128,3,255,255,255,255,208,1,254,0,3,240,11,224,15,208,7,253,175,243,240,11,224,15,208,47,255,255,243,240,11,224,15,208,127,255,255,227,240,11,224,15,208,63,255,148,3,240,11,224,15,208,46,64,0,3,240,11,224,15,208,0,0,0,3,240,11,224,15,208,0,0,0,3,240,11,224,15,208,0,0,1,163,240,11,224,15,208,0,22,255,243,244,11,224,15,208,47,255,255,243,255,255,255,255,208,127,255,255,147,255,255,255,255,208,63,254,64,3,255,255,255,255,208,57,0,0,3,240,0,0,15,208,0,0,0,3,240,0,0,15,208,0,0,0,1,80,0,0,0,0, + // 0x7ec8 终 + 200,126,35,35,59,37,1,253,0,3,64,0,0,165,0,0,0,0,7,240,0,1,253,0,0,0,0,15,240,0,3,252,0,0,0,0,15,224,0,7,248,0,0,0,0,47,192,0,15,255,255,253,0,0,63,128,0,47,255,255,255,64,0,191,0,0,127,255,255,255,0,0,254,0,1,255,128,1,253,0,2,252,6,3,255,208,3,248,0,3,244,15,223,255,240,11,240,0,15,240,31,255,227,252,47,208,0,31,192,63,159,128,255,191,128,0,127,235,255,6,0,127,255,0,0,191,255,253,0,0,47,252,0,0,63,255,248,0,0,63,253,0,0,41,75,240,0,2,255,255,128,0,0,31,208,0,15,254,191,244,0,0,63,128,1,191,244,31,255,64,0,255,0,31,255,192,3,255,244,2,252,0,47,254,0,0,191,248,11,250,191,203,224,57,0,11,224,47,255,255,194,0,191,208,0,128,127,255,255,192,0,191,253,0,0,63,254,144,0,0,11,255,128,0,41,0,0,0,0,0,191,192,0,0,0,0,0,0,0,15,64,0,0,0,0,0,20,0,0,0,0,0,0,6,224,63,144,0,0,0,0,91,255,240,255,254,64,0,0,111,255,255,240,31,255,244,0,0,191,255,254,64,0,191,255,128,0,127,249,0,0,0,6,255,248,0,41,0,0,0,0,0,47,254,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,32,0, + // 0x7ed3 结 + 211,126,34,35,59,37,1,253,0,2,0,0,0,11,240,0,0,0,7,224,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,224,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,63,128,15,255,255,255,255,240,0,191,0,15,255,255,255,255,240,0,254,0,15,255,255,255,255,240,2,252,3,69,85,95,245,85,80,3,248,11,240,0,11,240,0,0,15,240,15,240,0,11,240,0,0,47,208,63,192,0,11,240,0,0,191,255,255,128,0,11,240,0,0,191,255,255,0,0,15,240,0,0,63,255,253,3,255,255,255,255,192,62,91,248,3,255,255,255,255,192,0,15,240,3,255,255,255,255,192,0,63,192,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,253,5,160,0,0,0,0,0,15,255,255,240,255,255,255,255,64,127,255,255,240,255,255,255,255,64,63,255,254,64,255,255,255,255,64,63,249,0,0,253,0,0,63,64,25,0,0,0,253,0,0,63,64,0,0,0,0,253,0,0,63,64,0,0,0,0,253,0,0,63,64,0,0,27,240,253,0,0,63,64,0,111,255,240,253,0,0,63,64,127,255,255,244,253,0,0,63,64,127,255,254,64,255,255,255,255,64,127,250,64,0,255,255,255,255,64,57,0,0,0,255,255,255,255,64,0,0,0,0,253,0,0,63,64,0,0,0,0,253,0,0,42,64, + // 0x7ed9 给 + 217,126,34,36,68,37,1,252,0,3,64,0,0,14,64,0,0,0,7,240,0,0,47,192,0,0,0,15,240,0,0,63,192,0,0,0,15,208,0,0,127,224,0,0,0,47,192,0,0,255,244,0,0,0,63,128,0,1,255,252,0,0,0,191,0,0,3,252,254,0,0,0,253,0,0,11,244,127,64,0,2,252,11,128,31,224,47,208,0,7,244,15,224,63,192,15,244,0,15,224,63,192,255,0,3,253,0,47,213,191,67,253,0,1,255,128,191,255,255,31,255,255,255,255,240,127,255,252,127,255,255,255,239,224,63,255,248,63,239,255,255,199,192,20,15,240,14,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,3,252,22,193,255,255,255,252,0,15,255,255,193,255,255,255,252,0,63,255,255,193,255,255,255,252,0,63,255,249,1,252,0,2,252,0,63,228,0,1,252,0,2,252,0,24,0,0,1,252,0,2,252,0,0,0,0,1,252,0,2,252,0,0,0,0,1,252,0,2,252,0,0,0,27,209,252,0,2,252,0,0,111,255,209,252,0,2,252,0,47,255,255,209,252,0,2,252,0,63,255,249,1,255,255,255,252,0,63,249,0,1,255,255,255,252,0,57,0,0,1,255,255,255,252,0,0,0,0,1,252,0,2,252,0,0,0,0,1,252,0,2,252,0,0,0,0,0,0,0,0,0,0, + // 0x7edf 统 + 223,126,35,35,59,37,1,253,0,3,128,0,0,27,0,0,0,0,7,244,0,0,63,128,0,0,0,15,240,0,0,31,192,0,0,0,31,224,0,0,15,224,0,0,0,47,192,0,0,11,208,0,0,0,63,128,15,255,255,255,255,240,0,191,0,15,255,255,255,255,240,1,254,0,15,255,255,255,255,240,3,252,15,128,1,255,0,0,0,7,244,31,224,3,253,0,64,0,15,224,63,192,11,248,7,224,0,63,213,191,64,31,240,7,244,0,191,255,255,0,63,192,2,252,0,127,255,252,0,255,64,0,254,0,63,255,248,3,255,90,191,255,64,20,15,240,47,255,255,255,255,192,0,47,192,31,255,255,255,255,208,0,127,64,15,255,169,64,11,240,0,254,0,9,26,128,105,3,192,3,253,111,128,31,192,191,0,0,15,255,255,128,31,192,191,0,0,63,255,255,192,47,192,191,0,0,63,255,228,0,47,128,191,0,0,63,228,0,0,63,128,191,0,0,24,0,0,0,63,64,191,0,0,0,0,0,64,127,0,191,0,0,0,0,31,192,191,0,191,1,208,0,7,255,192,254,0,191,2,244,2,255,255,194,253,0,191,2,244,63,255,248,7,252,0,191,2,244,63,254,64,47,244,0,127,3,240,63,208,1,255,224,0,127,255,240,36,0,2,255,128,0,63,255,224,0,0,0,253,0,0,31,255,128,0,0,0,32,0,0,0,0,0, + // 0x7ee7 继 + 231,126,35,33,41,37,1,255,0,6,0,0,0,0,104,0,0,0,11,224,5,64,0,189,0,0,0,15,224,15,192,0,189,0,0,0,31,192,15,194,192,189,7,128,0,63,128,15,195,208,189,11,192,0,63,0,15,195,224,189,15,128,0,191,0,15,193,240,189,31,64,0,253,0,15,192,244,189,47,0,2,252,10,15,192,248,189,61,0,3,240,15,207,192,188,189,124,0,11,224,47,207,192,80,189,20,0,31,192,63,79,192,0,189,0,0,127,234,255,15,207,255,255,255,240,127,255,252,15,207,255,255,255,240,63,255,248,15,207,255,255,255,240,41,75,240,15,192,3,255,0,0,0,31,192,15,192,7,255,192,0,0,63,64,15,192,15,255,224,0,0,254,0,15,192,31,254,248,0,2,252,1,79,192,63,189,189,0,7,250,191,143,192,189,189,63,0,47,255,255,143,193,252,189,31,192,127,255,254,79,195,244,189,15,224,63,249,64,15,203,224,189,3,208,41,0,0,15,199,192,189,2,64,0,0,0,15,194,0,189,0,0,0,0,0,79,192,0,189,0,0,0,0,111,207,192,0,189,0,0,1,175,255,207,192,0,125,0,0,127,255,255,143,192,0,0,0,0,63,255,144,15,255,255,255,255,244,63,144,0,15,255,255,255,255,244,16,0,0,15,255,255,255,255,244, + // 0x7eea 绪 + 234,126,35,35,59,37,1,253,0,3,64,0,0,190,0,0,0,0,7,240,0,0,190,0,0,0,0,15,224,0,0,190,0,11,144,0,15,192,0,0,190,0,31,208,0,47,128,3,255,255,255,127,192,0,63,64,3,255,255,255,255,64,0,191,0,3,255,255,255,255,0,0,253,0,0,0,190,2,253,0,1,252,7,0,0,190,7,248,0,3,244,15,208,0,190,15,240,0,11,224,31,192,0,190,47,208,0,15,192,63,128,0,191,127,192,0,47,214,191,63,255,255,255,255,244,191,255,253,63,255,255,255,255,244,63,255,252,63,255,255,255,255,244,62,155,240,0,0,127,208,0,0,0,15,208,0,2,255,64,0,0,0,63,128,0,31,252,0,0,0,0,191,0,0,191,255,255,255,64,1,252,1,11,255,255,255,255,64,7,250,255,191,255,255,255,255,64,31,255,255,191,255,64,0,63,64,63,255,254,47,127,64,0,63,64,63,249,64,4,63,64,0,63,64,41,0,0,0,63,234,170,191,64,0,0,0,0,63,255,255,255,64,0,0,0,64,63,255,255,255,64,0,0,111,208,63,64,0,63,64,1,111,255,224,63,64,0,63,64,63,255,255,144,63,64,0,63,64,63,255,144,0,63,255,255,255,64,63,144,0,0,63,255,255,255,64,20,0,0,0,63,255,255,255,64,0,0,0,0,63,64,0,63,64,0,0,0,0,26,64,0,21,0, + // 0x7eed 续 + 237,126,34,36,68,37,1,252,0,2,64,0,0,31,192,0,0,0,7,240,0,0,31,192,0,0,0,11,240,0,0,31,192,0,0,0,15,208,2,255,255,255,254,0,0,31,192,3,255,255,255,254,0,0,63,64,3,255,255,255,254,0,0,127,0,0,0,31,192,0,0,0,253,0,0,0,31,192,0,0,1,252,14,0,0,31,192,0,0,3,240,31,207,255,255,255,255,208,11,224,63,79,255,255,255,255,208,15,192,127,15,255,255,255,255,192,127,255,253,0,0,0,0,15,192,127,255,248,0,40,6,144,47,128,63,255,240,0,127,71,240,63,0,41,15,224,0,47,231,240,63,0,0,31,192,1,3,251,240,45,0,0,63,0,11,192,215,240,0,0,0,189,0,11,244,7,224,0,0,1,252,111,1,254,7,224,0,0,7,255,255,0,61,11,224,0,0,31,255,255,0,4,15,208,0,0,63,255,144,63,255,255,255,255,224,63,228,0,63,255,255,255,255,224,24,0,0,63,255,255,255,255,224,0,0,6,0,0,63,64,0,0,0,0,191,64,0,255,8,0,0,0,31,255,64,2,253,63,64,0,6,255,253,0,11,248,63,224,0,127,255,144,0,47,240,11,252,0,63,244,0,1,255,192,2,255,0,62,64,0,15,255,0,0,127,192,16,0,0,127,248,0,0,31,240,0,0,0,47,208,0,0,7,224,0,0,0,13,0,0,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x7eff 绿 + 255,126,35,35,59,37,1,253,0,10,64,0,0,0,0,0,0,0,15,224,2,255,255,255,255,0,0,31,208,2,255,255,255,255,0,0,47,192,2,255,255,255,255,0,0,63,128,0,0,0,0,127,0,0,127,0,0,0,0,0,127,0,0,254,0,0,0,0,0,127,0,1,253,0,0,170,170,170,255,0,2,252,8,0,255,255,255,255,0,3,240,47,64,255,255,255,254,0,11,224,63,128,0,0,0,190,0,31,192,191,0,0,0,0,190,0,127,255,253,0,0,0,0,190,0,127,255,252,15,255,255,255,255,244,63,255,244,15,255,255,255,255,244,41,15,224,15,255,255,255,255,244,0,47,192,0,0,11,224,0,0,0,127,64,0,64,11,224,1,0,0,254,0,3,224,11,224,11,192,2,252,1,7,252,11,224,47,240,11,250,191,1,255,11,224,191,128,47,255,255,0,127,139,242,254,0,127,255,254,0,31,75,255,244,0,63,254,64,0,8,47,255,192,0,45,0,0,0,1,255,255,0,0,0,0,0,0,11,255,255,192,0,0,0,6,0,127,235,235,244,0,0,1,191,2,255,75,227,253,0,0,127,255,95,252,11,224,255,208,47,255,254,63,224,11,224,63,248,63,255,128,31,64,11,224,11,240,63,228,0,4,0,11,224,1,208,41,0,0,0,3,255,208,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,2,254,0,0,0, + // 0x7f16 编 + 22,127,34,35,59,37,1,253,0,10,64,0,0,27,128,0,0,0,15,224,0,0,47,192,0,0,0,15,208,0,0,15,224,0,0,0,47,192,0,0,15,240,0,0,0,63,64,15,255,255,255,255,192,0,127,0,15,255,255,255,255,192,0,254,0,15,255,255,255,255,192,0,252,0,15,208,0,0,15,192,2,244,29,15,208,0,0,15,192,3,240,63,79,208,0,0,15,192,15,208,127,15,255,255,255,255,192,31,192,253,15,255,255,255,255,192,127,255,252,15,255,255,255,255,192,127,255,244,15,208,0,0,0,0,63,255,240,15,208,0,0,0,0,57,79,208,15,192,0,0,0,0,0,47,128,15,255,255,255,255,208,0,63,0,15,255,255,255,255,208,0,253,0,15,255,255,255,255,208,2,252,4,15,254,15,75,131,208,7,250,253,31,254,15,75,131,208,31,255,254,31,254,15,75,131,208,63,255,249,31,190,15,75,131,208,63,249,0,47,190,15,75,131,208,46,0,0,63,127,255,255,255,208,0,0,4,63,63,255,255,255,208,0,0,189,127,63,175,239,239,208,0,27,254,190,62,15,75,131,208,2,255,249,253,62,15,75,131,208,127,255,128,252,62,15,75,131,208,127,244,2,252,62,15,75,131,208,63,64,3,244,62,15,75,135,208,32,0,7,240,62,15,75,191,208,0,0,0,208,62,10,6,111,192,0,0,0,0,41,0,0,5,0, + // 0x7f3a 缺 + 58,127,35,35,59,37,1,253,2,144,0,0,0,15,208,0,0,3,248,0,0,0,15,208,0,0,3,244,0,0,0,15,208,0,0,7,240,0,0,0,15,208,0,0,11,240,0,0,0,15,208,0,0,11,255,255,254,0,15,208,0,0,15,255,255,254,63,255,255,255,0,31,255,255,254,63,255,255,255,0,47,195,240,0,63,255,255,255,0,63,131,240,0,0,15,208,127,0,127,3,240,0,0,15,208,63,0,126,3,240,0,0,15,208,63,0,9,3,240,0,0,15,208,63,0,127,255,255,255,0,15,208,63,0,127,255,255,255,0,15,208,63,0,127,255,255,255,0,15,208,63,0,0,3,240,0,0,15,208,127,0,0,3,240,0,127,255,255,255,248,10,3,240,41,127,255,255,255,248,31,67,240,126,127,255,255,255,248,31,67,240,126,0,47,252,0,0,31,67,240,126,0,63,252,0,0,31,67,240,126,0,63,254,0,0,31,67,240,126,0,127,255,0,0,31,67,240,126,0,191,63,64,0,31,67,240,126,0,254,63,192,0,31,67,240,126,2,253,31,208,0,31,255,255,254,3,252,15,240,0,31,255,255,254,15,244,7,252,0,31,255,255,254,63,224,3,254,0,31,64,0,126,255,192,0,255,128,31,64,0,27,255,0,0,127,244,26,64,0,15,253,0,0,31,244,0,0,0,7,240,0,0,7,224,0,0,0,1,128,0,0,0,128, + // 0x7f51 网 + 81,127,31,33,8,37,3,253,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,190,85,95,213,86,253,86,252,190,0,15,192,1,248,1,252,190,0,15,192,1,248,1,252,190,0,15,192,1,248,1,252,190,0,15,192,2,248,1,252,190,0,15,192,2,244,1,252,190,24,31,195,194,244,1,252,190,63,31,139,246,244,1,252,190,127,239,131,255,240,1,252,190,15,255,64,255,240,1,252,190,3,255,64,63,240,1,252,190,1,255,64,15,240,1,252,190,0,127,128,7,252,1,252,190,0,63,208,7,254,1,252,190,0,127,244,11,255,129,252,190,0,191,252,15,255,209,252,190,0,253,254,15,207,241,252,190,0,252,125,31,131,241,252,190,1,252,40,63,129,193,252,190,3,248,0,63,0,65,252,190,3,240,0,191,0,1,252,190,11,240,0,253,0,1,252,190,31,208,2,252,0,1,252,190,63,192,7,248,0,1,252,190,127,64,15,240,0,1,252,190,30,0,3,208,0,1,252,190,4,0,0,128,5,86,252,190,0,0,0,0,15,255,248,190,0,0,0,0,7,255,244,190,0,0,0,0,3,255,144, + // 0x7f6e 置 + 110,127,34,35,59,37,2,252,5,85,85,85,85,85,85,84,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,224,7,240,3,240,1,252,0,11,224,7,240,3,240,1,252,0,11,224,7,240,3,240,1,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,5,85,85,87,253,85,85,84,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,7,240,0,0,0,0,0,0,0,11,224,0,0,0,0,6,160,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,47,255,255,255,255,224,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,250,170,170,170,170,170,170,128,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,34,34,50,37,1,253,1,85,85,85,85,85,85,85,0,2,255,255,255,255,255,255,255,0,2,255,255,255,255,255,255,255,0,2,244,1,248,0,252,0,127,0,2,244,1,248,0,252,0,127,0,2,244,1,248,0,252,0,127,0,2,255,255,255,255,255,255,255,0,2,255,255,255,255,255,255,255,0,1,85,85,91,245,85,85,85,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,56,0,0,63,255,255,255,255,240,255,0,0,63,255,255,255,255,247,253,0,0,42,170,175,250,170,255,244,0,0,0,0,7,240,1,255,192,0,0,0,0,7,240,15,254,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,224,0,0,0,47,255,192,0,0,0,0,0,7,255,253,0,0,0,0,0,1,191,255,255,255,255,248,0,1,191,255,255,255,255,255,248,0,127,255,255,170,170,170,171,248,0,63,255,191,0,0,0,2,248,0,31,144,63,0,0,0,3,248,0,0,0,63,255,255,255,255,248,0,0,0,63,255,255,255,255,248,0,0,0,63,0,0,0,2,248,0,0,0,63,0,0,0,2,248,0,0,0,63,255,255,255,255,248,0,0,0,63,255,255,255,255,248,0,0,0,63,170,170,170,171,248,0,0,0,42,0,0,0,1,164,0, + // 0x8005 者 + 5,128,34,36,68,37,1,252,0,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,16,0,0,0,0,47,128,0,0,125,0,0,0,0,47,128,0,0,255,0,0,0,0,47,128,0,2,253,0,0,191,255,255,255,255,219,248,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,192,0,0,0,0,47,128,2,255,0,0,0,0,0,47,128,15,252,0,0,0,0,0,47,128,63,224,0,0,0,0,0,47,193,255,128,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,0,15,254,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,63,254,0,0,0,0,0,0,2,255,255,255,255,255,208,0,0,127,255,255,255,255,255,208,0,11,255,255,255,255,255,255,208,0,127,255,255,0,0,0,15,208,0,63,244,127,0,0,0,15,208,0,14,64,127,0,0,0,15,208,0,0,0,127,255,255,255,255,208,0,0,0,127,255,255,255,255,208,0,0,0,127,170,170,170,175,208,0,0,0,127,0,0,0,15,208,0,0,0,127,0,0,0,15,208,0,0,0,127,0,0,0,15,208,0,0,0,127,255,255,255,255,208,0,0,0,127,255,255,255,255,208,0,0,0,127,255,255,255,255,208,0,0,0,127,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0, + // 0x806a 聪 + 106,128,35,35,59,37,1,253,0,0,0,0,2,0,0,144,0,0,0,0,0,47,128,0,252,0,63,255,255,248,31,192,2,252,0,63,255,255,248,15,224,3,248,0,63,255,255,248,7,240,7,240,0,7,224,31,128,3,248,11,224,0,7,224,31,128,1,252,15,192,0,7,224,31,128,0,208,47,128,0,7,224,31,128,255,255,255,255,128,7,250,191,128,255,255,255,255,128,7,255,255,128,255,255,255,255,128,7,255,255,128,252,0,0,47,128,7,224,31,128,252,0,0,47,128,7,224,31,128,252,0,0,47,128,7,224,31,128,252,0,0,47,128,7,224,31,128,252,0,0,47,128,7,224,31,128,255,255,255,255,128,7,250,191,128,255,255,255,255,128,7,255,255,128,255,255,255,255,128,7,255,255,128,0,1,0,0,0,7,224,31,128,0,15,128,0,0,7,224,31,128,0,15,208,0,0,7,224,31,128,3,243,244,5,0,7,224,31,225,227,241,252,47,0,7,225,127,246,243,240,190,31,64,7,255,255,251,243,240,62,15,192,127,255,255,211,227,240,20,11,208,127,255,175,131,227,240,0,67,224,63,144,31,135,211,240,0,247,240,16,0,31,143,195,240,0,245,244,0,0,31,143,195,240,1,244,248,0,0,31,159,67,254,171,240,144,0,0,31,129,2,255,255,224,0,0,0,31,128,0,191,255,128,0,0,0,31,128,0,0,0,0,0, + // 0x80fd 能 + 253,128,35,36,68,37,1,252,0,15,144,0,2,248,0,0,0,0,15,224,0,2,248,0,0,0,0,47,192,16,2,248,0,0,0,0,63,129,248,2,248,0,44,0,0,127,1,253,2,248,6,255,0,0,190,0,191,2,248,127,255,64,0,253,0,63,130,255,255,244,0,22,254,255,255,194,255,254,0,0,127,255,255,255,226,255,128,0,0,127,255,255,255,242,252,0,0,0,63,169,84,3,246,248,0,2,144,0,0,0,2,210,248,0,3,244,0,0,0,0,2,252,0,3,240,7,255,255,255,2,252,0,7,240,7,255,255,255,1,255,255,255,240,7,255,255,255,0,255,255,255,208,7,240,0,127,0,47,255,255,64,7,240,0,127,0,84,0,0,0,7,240,0,127,2,248,0,0,0,7,250,170,191,2,248,0,0,0,7,255,255,255,2,248,0,46,0,7,255,255,255,2,248,2,255,64,7,240,0,127,2,248,111,255,64,7,240,0,127,2,255,255,248,0,7,240,0,127,2,255,255,64,0,7,255,255,255,2,255,224,0,0,7,255,255,255,2,252,0,0,0,7,250,170,191,2,248,0,1,128,7,240,0,127,2,248,0,1,248,7,240,0,127,2,248,0,1,248,7,240,0,127,2,248,0,2,248,7,240,0,127,2,252,0,3,244,7,240,63,255,1,255,255,255,240,7,240,63,254,0,255,255,255,224,7,240,31,228,0,47,255,255,64,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,26,36,252,37,6,252,0,0,11,224,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,0,0,31,208,0,0,0,0,0,47,192,0,0,0,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,254,85,85,85,85,95,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0x81f3 至 + 243,129,33,32,32,37,2,254,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,0,0,11,252,0,0,0,0,0,0,0,15,244,0,29,0,0,0,0,0,31,240,0,191,64,0,0,0,0,63,208,0,191,224,0,0,0,0,127,192,0,47,248,0,0,0,0,255,64,0,11,255,0,0,0,1,255,0,0,1,255,192,0,31,255,255,175,255,255,255,240,0,31,255,255,255,255,255,255,252,0,31,255,255,255,255,255,255,254,0,26,170,170,169,85,80,1,255,64,0,0,0,1,80,0,0,124,0,0,0,0,7,240,0,0,16,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0, + // 0x83dc 菜 + 220,131,34,35,59,37,1,253,0,0,31,192,0,15,208,0,0,0,0,31,192,0,15,208,0,0,0,0,31,192,0,15,208,0,0,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,0,0,31,192,0,15,208,0,0,0,0,31,192,0,15,208,0,0,0,0,10,128,0,6,191,224,0,0,0,85,106,191,255,255,248,0,11,255,255,255,255,255,255,248,0,3,255,255,255,255,254,148,0,0,3,255,250,165,80,0,0,144,0,0,0,0,2,208,0,1,253,0,0,125,0,11,240,0,3,252,0,0,191,0,3,244,0,7,248,0,0,63,192,2,252,0,15,240,0,0,31,208,1,252,0,31,208,0,0,15,240,0,228,0,63,128,0,0,7,208,1,252,0,127,0,0,0,1,0,1,252,0,4,0,0,0,0,0,1,253,0,0,0,0,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,0,0,0,255,255,248,0,0,0,0,0,7,255,254,255,0,0,0,0,0,63,245,252,127,224,0,0,0,2,255,193,252,31,254,0,0,0,111,254,1,252,3,255,224,0,11,255,244,1,252,0,127,255,144,127,255,128,1,252,0,11,255,240,47,248,0,1,252,0,0,191,208,15,64,0,1,252,0,0,7,128,0,0,0,1,252,0,0,0,0, + // 0x84dd 蓝 + 221,132,33,34,50,37,2,254,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,31,192,7,240,0,0,0,3,240,31,192,11,240,0,0,0,3,240,31,192,15,255,255,253,0,3,240,31,192,31,255,255,253,0,3,240,31,192,47,255,255,253,0,3,240,31,192,63,64,128,0,0,3,240,31,192,191,11,224,0,0,3,240,31,193,253,7,244,0,0,3,240,31,195,252,2,252,0,0,3,240,31,194,244,0,254,0,0,3,240,31,192,96,0,127,0,0,2,160,31,192,0,0,63,64,0,0,0,5,64,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,171,254,175,250,175,208,0,0,252,2,244,3,224,15,208,0,0,252,2,244,3,224,15,208,0,0,252,2,244,3,224,15,208,0,0,252,2,244,3,224,15,208,0,0,252,2,244,3,224,15,208,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x86c7 蛇 + 199,134,34,35,59,37,1,253,0,1,64,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,1,255,255,255,255,240,0,7,208,1,255,255,255,255,240,31,255,255,245,255,255,255,255,240,31,255,255,245,248,0,0,3,240,31,255,255,245,248,0,0,3,240,31,3,193,245,248,0,0,3,240,31,3,193,245,248,0,0,3,240,31,3,193,245,255,208,0,3,240,31,3,193,244,11,208,0,0,0,31,3,193,244,11,208,0,4,0,31,3,193,244,11,208,0,61,0,31,3,193,244,11,208,2,255,0,31,3,193,244,11,208,47,255,64,31,255,255,244,11,210,255,248,0,31,255,255,244,11,255,255,64,0,31,255,255,244,11,255,228,0,0,31,11,208,0,11,254,0,0,0,10,11,208,0,11,224,0,0,0,0,11,209,240,11,208,0,0,0,0,11,210,244,11,208,0,0,0,0,11,208,248,11,208,0,0,0,0,11,208,252,11,208,0,2,128,0,11,209,252,11,208,0,3,240,0,31,255,254,11,208,0,3,240,127,255,255,255,11,224,0,3,240,127,255,255,191,11,240,0,11,240,127,250,64,47,7,255,255,255,224,36,0,0,46,3,255,255,255,192,0,0,0,0,0,191,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x884c 行 + 76,136,34,36,68,37,1,252,0,0,180,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,7,252,2,255,255,255,255,192,0,31,240,2,255,255,255,255,192,0,127,208,2,255,255,255,255,192,2,255,64,0,85,85,85,85,64,11,253,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,127,208,14,0,0,0,0,0,0,47,0,63,192,0,0,0,0,0,8,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,253,5,85,85,85,85,80,0,11,248,31,255,255,255,255,240,0,47,240,31,255,255,255,255,240,0,127,208,31,255,255,255,255,240,1,255,208,0,0,0,47,192,0,11,255,208,0,0,0,47,192,0,47,255,208,0,0,0,47,192,0,255,239,208,0,0,0,47,192,0,127,143,208,0,0,0,47,192,0,30,15,208,0,0,0,47,192,0,4,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,1,85,127,192,0,0,15,208,0,2,255,255,128,0,0,15,208,0,1,255,255,64,0,0,15,208,0,0,255,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x88ab 被 + 171,136,35,35,59,37,1,253,0,31,128,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,47,192,3,255,255,255,255,244,63,255,255,195,255,255,255,255,240,63,255,255,211,255,255,255,255,240,63,255,255,195,244,3,244,11,224,0,0,47,131,244,3,244,15,208,0,0,127,3,244,3,244,15,192,0,0,254,3,244,3,244,31,192,0,1,252,3,244,3,244,27,64,0,3,248,147,244,3,244,0,0,0,15,240,251,255,255,255,255,128,0,47,227,243,255,255,255,255,192,0,191,251,211,255,255,255,255,128,1,255,255,131,255,224,0,63,64,7,255,255,3,251,240,0,191,0,47,255,239,195,243,244,0,254,0,255,239,207,227,241,252,1,252,0,127,95,195,231,240,253,3,252,0,60,31,194,135,240,191,11,244,0,16,31,192,11,224,63,223,224,0,0,31,192,15,208,31,255,192,0,0,31,192,15,192,15,255,64,0,0,31,192,31,192,3,255,0,0,0,31,192,47,128,15,255,128,0,0,31,192,63,64,127,255,240,0,0,31,192,191,2,255,239,254,0,0,31,192,254,47,254,7,255,224,0,31,194,252,191,244,0,255,244,0,31,193,244,63,128,0,31,224,0,31,192,32,8,0,0,1,192, + // 0x88c5 装 + 197,136,35,36,68,37,1,252,0,0,42,0,0,10,144,0,0,0,0,127,0,0,15,208,0,0,2,0,127,0,0,15,208,0,0,15,208,127,0,0,15,208,0,0,15,248,127,0,0,15,208,0,0,3,254,127,31,255,255,255,255,240,0,189,127,31,255,255,255,255,240,0,36,127,31,255,255,255,255,240,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,7,127,0,0,15,208,0,0,1,191,191,0,0,15,208,0,0,31,255,191,0,0,15,208,0,0,127,248,127,7,255,255,255,255,192,63,64,127,7,255,255,255,255,192,20,0,127,7,255,255,255,255,192,0,0,127,0,0,0,0,0,0,0,0,42,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,42,170,170,255,255,234,170,170,160,0,0,2,255,95,192,0,56,0,0,0,47,248,11,224,1,255,0,0,7,255,208,3,248,31,253,0,6,255,255,64,1,253,191,224,0,127,255,255,64,0,191,254,0,0,31,244,63,64,0,47,244,0,0,9,0,63,64,1,11,254,0,0,0,0,63,171,255,2,255,208,0,0,26,255,255,255,64,127,255,128,0,63,255,255,250,0,11,255,244,0,63,255,148,0,0,0,191,224,0,21,0,0,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x8981 要 + 129,137,33,34,50,37,2,252,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,11,224,3,240,0,0,0,0,0,11,224,3,240,0,0,0,7,255,255,255,255,255,255,248,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,224,11,224,3,240,1,252,0,11,224,11,224,3,240,1,252,0,11,224,11,224,3,240,1,252,0,11,224,11,224,3,240,1,252,0,11,224,11,224,3,240,1,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,248,0,0,0,2,252,0,0,0,0,0,0,0,11,244,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,1,254,0,0,15,240,0,0,0,3,252,0,0,63,192,0,0,0,11,244,0,0,191,128,0,0,0,31,255,144,2,255,0,0,0,0,63,255,255,155,252,0,0,0,0,47,191,255,255,244,0,0,0,0,1,1,191,255,254,64,0,0,0,0,1,255,255,255,249,0,0,0,90,255,255,230,255,255,228,0,127,255,255,254,0,7,255,254,0,63,255,254,64,0,0,31,252,0,31,169,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0, + // 0x89d2 角 + 210,137,32,36,32,37,1,252,0,0,7,228,0,0,0,0,0,0,15,244,0,0,0,0,0,0,31,255,255,253,0,0,0,0,63,255,255,255,128,0,0,0,255,255,255,255,64,0,0,1,254,0,0,255,0,0,0,7,252,0,2,253,0,0,0,15,244,0,3,248,0,0,0,63,224,0,15,240,0,0,1,255,255,255,255,255,255,253,7,255,255,255,255,255,255,253,47,255,255,255,255,255,255,253,15,239,208,0,63,0,0,253,3,79,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,255,255,255,255,255,253,0,15,255,255,255,255,255,253,0,15,255,255,255,255,255,253,0,15,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,192,0,63,0,0,253,0,15,192,0,63,0,0,253,0,31,192,0,127,0,0,253,0,47,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,127,0,0,0,0,0,253,0,254,0,0,0,0,0,253,2,253,0,0,0,0,0,253,7,248,0,0,0,0,0,253,31,240,0,0,0,20,2,253,127,208,0,0,0,127,255,252,63,128,0,0,0,63,255,248,13,0,0,0,0,47,255,144,0,0,0,0,0,0,0,0, + // 0x8ba1 计 + 161,139,34,35,59,37,2,253,0,0,0,0,0,63,64,0,0,0,176,0,0,0,63,64,0,0,2,253,0,0,0,63,64,0,0,2,255,64,0,0,63,64,0,0,0,127,208,0,0,63,64,0,0,0,31,244,0,0,63,64,0,0,0,7,252,0,0,63,64,0,0,0,1,240,0,0,63,64,0,0,0,0,128,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,255,255,192,170,170,191,234,170,128,255,255,193,255,255,255,255,255,208,255,255,193,255,255,255,255,255,208,85,127,193,255,255,255,255,255,208,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,64,0,63,64,0,0,0,47,194,208,0,63,64,0,0,0,47,207,224,0,63,64,0,0,0,47,255,240,0,63,64,0,0,0,47,255,128,0,63,64,0,0,0,63,253,0,0,63,64,0,0,0,191,240,0,0,63,64,0,0,1,255,128,0,0,63,64,0,0,0,189,0,0,0,63,64,0,0,0,52,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0, + // 0x8bae 议 + 174,139,34,35,59,37,2,252,1,192,0,0,7,192,0,0,0,11,240,0,0,15,224,0,80,0,7,248,0,252,7,240,0,254,0,2,253,0,252,3,248,0,253,0,0,255,0,253,1,252,1,252,0,0,63,192,253,0,254,2,252,0,0,31,0,190,0,191,2,252,0,0,8,0,127,0,127,3,248,0,0,0,0,63,0,52,3,244,0,0,0,0,63,64,0,7,240,0,85,85,0,47,192,0,11,240,0,255,255,0,31,192,0,15,224,0,255,255,0,15,208,0,31,208,0,255,255,0,11,240,0,47,192,0,0,127,0,7,240,0,63,128,0,0,127,0,3,248,0,127,64,0,0,127,0,2,252,0,255,0,0,0,127,0,0,254,1,253,0,0,0,127,0,0,255,3,252,0,0,0,127,0,0,127,135,248,0,0,0,127,0,0,63,223,240,0,0,0,127,0,0,15,255,208,0,0,0,127,0,0,11,255,192,0,0,0,127,0,0,3,255,0,0,0,0,127,7,64,3,255,64,0,0,0,127,47,192,15,255,208,0,0,0,127,255,192,63,255,244,0,0,0,191,254,0,255,223,254,0,0,0,255,244,7,255,2,255,208,0,1,255,192,63,252,0,191,248,0,3,254,2,255,224,0,47,255,144,1,248,15,255,64,0,7,255,224,0,144,11,252,0,0,0,191,128,0,0,3,208,0,0,0,11,0,0,0,0,0,0,0,0,0,0, + // 0x8bbe 设 + 190,139,34,35,59,37,1,252,0,48,0,0,0,0,0,0,0,0,252,0,0,63,255,255,192,0,1,255,64,0,63,255,255,192,0,0,127,208,0,63,255,255,192,0,0,15,244,0,63,0,15,192,0,0,3,252,0,63,0,15,192,0,0,0,244,0,127,0,15,192,0,0,0,80,0,190,0,15,192,0,0,0,0,0,253,0,15,192,0,0,0,0,3,252,0,15,192,0,21,85,0,15,248,0,15,255,240,127,255,192,191,240,0,11,255,240,127,255,192,255,192,0,2,255,240,127,255,192,126,0,0,0,0,0,0,31,192,36,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,63,255,255,255,255,0,0,31,192,63,255,255,255,255,0,0,31,192,63,255,255,255,254,0,0,31,192,7,240,0,1,253,0,0,31,192,3,248,0,3,252,0,0,31,192,1,252,0,11,244,0,0,31,192,0,255,0,15,224,0,0,31,192,64,63,192,63,192,0,0,31,195,192,31,240,255,64,0,0,31,223,208,11,255,254,0,0,0,47,255,208,2,255,248,0,0,0,47,255,64,1,255,240,0,0,0,63,252,0,11,255,254,0,0,0,191,224,1,191,255,255,224,0,0,255,128,111,255,208,191,255,144,0,189,1,255,253,0,31,255,240,0,52,0,255,144,0,1,191,208,0,0,0,100,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x8bd5 试 + 213,139,34,35,59,37,2,253,0,0,0,0,0,6,160,0,0,1,208,0,0,0,7,241,240,0,7,244,0,0,0,7,243,248,0,3,254,0,0,0,7,240,254,0,0,255,128,0,0,7,240,127,0,0,63,208,0,0,7,240,47,128,0,15,240,0,0,7,240,14,0,0,3,193,85,85,87,245,85,64,0,1,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,85,85,0,0,0,3,244,0,0,255,255,0,0,0,3,244,0,0,255,255,0,0,0,3,244,0,0,255,255,0,0,0,3,244,0,0,0,63,0,0,0,3,248,0,0,0,63,0,255,255,243,248,0,0,0,63,0,255,255,242,248,0,0,0,63,0,255,255,242,252,0,0,0,63,0,2,252,2,252,0,0,0,63,0,1,248,1,252,0,0,0,63,0,1,248,1,252,0,0,0,63,0,1,248,0,253,0,0,0,63,0,1,248,0,253,0,0,0,63,0,1,248,0,254,0,0,0,63,1,1,248,0,191,3,64,0,63,31,1,248,104,127,3,224,0,63,191,65,255,252,127,67,224,0,127,255,91,255,252,63,135,208,0,191,250,255,255,228,47,219,192,2,255,208,255,249,0,31,255,192,2,255,0,254,0,0,15,255,128,0,248,0,64,0,0,7,255,0,0,144,0,0,0,0,1,254,0,0,0,0,0,0,0,0,20,0, + // 0x8bef 误 + 239,139,35,35,59,37,1,252,0,80,0,0,0,0,0,0,0,1,248,0,7,255,255,255,255,0,3,254,0,7,255,255,255,255,0,0,255,192,7,255,255,255,255,0,0,63,240,7,224,0,0,63,0,0,15,248,7,224,0,0,63,0,0,3,224,7,224,0,0,63,0,0,0,128,7,224,0,0,63,0,0,0,0,7,255,255,255,255,0,0,0,0,7,255,255,255,255,0,21,85,64,7,255,255,255,255,0,127,255,192,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,0,31,192,31,255,255,255,255,192,0,31,192,31,255,255,255,255,192,0,31,192,31,255,255,255,255,192,0,31,192,0,0,31,192,0,0,0,31,192,0,0,47,128,0,0,0,31,192,0,0,47,128,0,0,0,31,192,0,0,47,128,0,0,0,31,192,127,255,255,255,255,248,0,31,192,127,255,255,255,255,248,0,31,192,127,255,255,255,255,248,0,31,192,64,0,255,240,0,0,0,31,199,192,1,255,244,0,0,0,31,239,192,3,254,252,0,0,0,31,255,192,15,244,255,64,0,0,63,254,0,63,240,127,208,0,0,191,244,1,255,192,31,252,0,0,127,192,111,255,0,7,255,208,0,62,0,255,248,0,1,255,244,0,20,0,127,192,0,0,47,224,0,0,0,56,0,0,0,2,192,0,0,0,0,0,0,0,0,0, + // 0x8bf7 请 + 247,139,35,35,59,37,1,253,0,0,0,0,0,47,128,0,0,0,160,0,0,0,47,192,0,0,2,248,0,0,0,47,192,0,0,3,254,0,63,255,255,255,255,208,0,255,192,63,255,255,255,255,208,0,47,224,26,170,191,234,170,128,0,15,244,0,0,47,192,0,0,0,3,224,5,85,127,213,85,0,0,0,128,15,255,255,255,255,0,0,0,0,15,255,255,255,255,0,0,0,0,0,0,47,192,0,0,21,85,64,0,0,47,192,0,0,127,255,192,255,255,255,255,255,244,127,255,192,255,255,255,255,255,244,127,255,192,170,170,170,170,170,160,0,31,192,0,0,0,0,0,0,0,31,192,6,170,170,170,169,0,0,31,192,7,255,255,255,254,0,0,31,192,7,255,255,255,254,0,0,31,192,7,224,0,0,190,0,0,31,192,7,224,0,0,190,0,0,31,192,7,245,85,85,190,0,0,31,192,7,255,255,255,254,0,0,31,192,7,255,255,255,254,0,0,31,192,7,224,0,0,190,0,0,31,194,199,224,0,0,190,0,0,31,207,199,224,0,0,190,0,0,31,255,215,255,255,255,254,0,0,31,255,135,255,255,255,254,0,0,47,253,7,245,85,85,254,0,0,63,240,7,224,0,0,190,0,0,255,192,7,224,0,0,190,0,0,126,0,7,224,0,255,253,0,0,56,0,7,224,0,191,252,0,0,0,0,7,224,0,127,224,0, + // 0x8bfb 读 + 251,139,34,36,68,37,1,252,0,0,0,0,0,47,128,0,0,0,224,0,0,0,63,128,0,0,3,252,0,0,0,63,128,0,0,2,255,64,15,255,255,255,255,0,0,191,208,15,255,255,255,255,0,0,31,244,15,255,255,255,255,0,0,7,244,0,0,63,128,0,0,0,2,208,0,0,63,128,0,0,0,0,64,0,0,63,128,0,0,0,0,0,127,255,255,255,255,208,0,0,0,127,255,255,255,255,208,21,85,0,127,255,255,255,255,192,127,255,128,0,0,0,0,15,192,127,255,128,0,144,6,144,47,128,127,255,128,2,253,15,208,63,0,0,31,128,0,191,143,208,63,0,0,31,128,4,31,239,208,45,0,0,31,128,62,3,223,208,0,0,0,31,128,63,208,79,208,0,0,0,31,128,11,248,15,208,0,0,0,31,128,1,253,15,208,0,0,0,31,128,0,56,15,192,0,0,0,31,129,255,255,255,255,255,240,0,31,129,255,255,255,255,255,240,0,31,129,255,255,255,255,255,240,0,31,139,0,0,255,0,0,0,0,31,239,64,1,254,28,0,0,0,31,255,128,7,252,127,64,0,0,31,254,0,31,244,127,224,0,0,47,248,0,191,208,15,252,0,0,63,224,3,255,128,2,255,0,0,191,64,127,253,0,0,127,208,0,189,2,255,240,0,0,31,240,0,52,0,255,64,0,0,7,240,0,0,0,120,0,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x8c03 调 + 3,140,33,35,59,37,1,252,0,144,0,0,0,0,0,0,0,2,244,0,63,255,255,255,255,192,3,254,0,63,255,255,255,255,192,0,255,128,63,255,255,255,255,192,0,63,224,63,0,0,0,15,192,0,15,244,63,0,31,64,15,192,0,3,224,63,0,31,64,15,192,0,0,128,63,6,175,170,15,192,0,0,0,63,15,255,255,15,192,0,0,0,63,15,255,255,15,192,21,85,0,63,0,31,64,15,192,127,255,192,63,0,31,64,15,192,127,255,192,63,0,31,64,15,192,127,255,192,63,26,175,170,143,192,0,47,192,63,47,255,255,207,192,0,47,192,63,47,255,255,207,192,0,47,192,63,0,0,0,15,192,0,47,192,63,0,0,0,15,192,0,47,192,63,0,0,0,15,192,0,47,192,63,15,255,255,15,192,0,47,192,63,15,255,255,15,192,0,47,192,62,15,234,191,15,192,0,47,192,126,15,128,63,15,192,0,47,192,126,15,128,63,15,192,0,47,197,189,15,128,63,15,192,0,47,239,252,15,234,191,15,192,0,47,255,252,15,255,255,15,192,0,47,255,248,15,255,255,15,192,0,63,250,244,15,128,0,15,192,0,127,211,240,10,64,0,15,192,1,255,71,240,0,0,0,15,192,0,252,15,208,0,0,31,255,192,0,48,15,192,0,0,15,255,128,0,0,2,64,0,0,11,253,0,0,0,0,0,0,0,0,0,0, + // 0x8d25 败 + 37,141,34,35,59,37,2,253,0,0,0,0,0,16,0,0,0,0,0,0,0,0,127,0,0,0,47,255,255,252,0,190,0,0,0,47,255,255,252,0,253,0,0,0,47,255,255,252,0,252,0,0,0,47,0,0,252,1,252,0,0,0,47,0,0,252,3,248,0,0,0,47,1,64,252,3,255,255,255,192,47,7,224,252,7,255,255,255,192,47,7,224,252,15,255,255,255,192,47,7,224,252,15,192,1,248,0,47,7,224,252,47,192,2,244,0,47,7,224,252,63,64,2,240,0,47,7,224,252,191,64,3,240,0,47,7,224,252,255,128,3,240,0,47,7,224,254,255,192,3,224,0,47,7,224,253,255,208,7,224,0,47,7,224,252,183,224,11,208,0,47,7,208,252,3,240,15,192,0,47,11,208,252,2,248,15,192,0,47,11,208,252,0,252,47,64,0,47,11,208,252,0,254,63,0,0,47,15,192,252,0,127,127,0,0,47,15,192,252,0,63,253,0,0,47,15,192,248,0,15,252,0,0,0,47,128,0,0,11,244,0,0,0,63,14,0,0,11,248,0,0,0,127,63,64,0,31,254,0,0,0,253,31,192,0,63,255,128,0,2,252,11,240,0,255,63,224,0,11,240,3,248,7,252,15,248,0,47,208,1,252,47,240,3,255,64,255,128,0,253,255,192,0,255,208,189,0,0,48,62,0,0,47,128,36,0,0,0,20,0,0,2,0, + // 0x8d2a 贪 + 42,141,34,36,68,37,2,252,0,0,0,0,244,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,47,254,0,0,0,0,0,0,2,255,255,224,0,0,0,0,0,47,254,31,254,64,0,0,0,7,255,241,2,255,248,0,0,1,191,255,75,192,47,255,224,0,111,255,244,15,244,2,255,255,208,255,255,64,3,253,0,31,255,192,127,224,0,0,252,0,1,191,64,41,63,255,255,255,255,244,1,0,0,63,255,255,255,255,254,0,0,0,63,255,255,255,255,252,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,254,0,0,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,63,64,0,0,127,0,7,240,0,63,64,0,0,127,0,7,240,0,63,64,0,0,127,0,7,240,0,63,64,0,0,127,0,7,240,0,63,64,0,0,127,0,11,240,0,63,64,0,0,127,0,15,240,0,63,64,0,0,127,0,63,210,0,63,64,0,0,0,0,255,143,248,0,0,0,0,0,11,255,31,255,224,0,0,0,1,191,248,2,255,254,64,0,0,127,255,208,0,11,255,244,0,47,255,253,0,0,0,127,254,0,15,255,128,0,0,0,2,252,0,3,228,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0, + // 0x8d77 起 + 119,141,35,36,68,37,1,252,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,3,255,255,255,64,0,1,252,0,3,255,255,255,64,15,255,255,255,131,255,255,255,64,15,255,255,255,128,0,0,63,64,15,255,255,255,128,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,64,63,255,255,255,224,0,0,63,64,63,255,255,255,227,255,255,255,64,63,255,255,255,227,255,255,255,64,42,170,255,170,147,255,255,255,64,0,0,190,0,3,244,0,63,64,0,0,190,0,3,244,0,0,0,1,64,190,0,3,244,0,0,0,11,224,190,0,3,244,0,0,0,11,224,190,0,3,244,0,0,0,11,224,191,255,195,244,0,0,0,11,224,191,255,195,244,0,2,208,11,208,191,255,195,244,0,2,244,15,240,190,0,3,244,0,3,244,15,244,190,0,3,248,0,7,240,15,252,190,0,2,255,255,255,240,15,254,190,0,1,255,255,255,208,15,255,254,0,0,127,255,255,64,31,239,254,0,0,0,0,0,0,47,143,255,0,0,0,0,0,0,63,67,255,250,85,85,85,85,84,63,0,255,255,255,255,255,255,244,191,0,31,255,255,255,255,255,240,254,0,0,111,255,255,255,255,224,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8d85 超 + 133,141,35,35,59,37,1,253,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,47,255,255,255,208,0,2,248,0,47,255,255,255,208,31,255,255,255,47,255,255,255,208,31,255,255,255,0,31,192,15,192,31,255,255,255,0,47,128,15,192,0,2,248,0,0,63,64,15,192,0,2,248,0,0,127,0,31,192,0,2,248,0,0,254,0,31,192,0,2,248,0,1,252,0,63,128,0,2,248,0,3,248,63,255,64,63,255,255,255,223,240,63,255,0,63,255,255,255,255,192,47,248,0,63,255,255,255,239,0,0,0,0,0,0,252,0,4,0,0,0,0,0,0,252,0,11,255,255,255,64,11,144,252,0,11,255,255,255,128,11,208,252,0,11,255,255,255,128,11,208,252,0,11,224,0,63,128,11,208,255,255,75,224,0,63,128,11,208,255,255,75,224,0,63,128,15,208,255,255,75,224,0,63,128,15,224,252,0,11,224,0,63,128,15,240,252,0,11,224,0,63,128,15,248,252,0,11,255,255,255,128,15,253,252,0,11,255,255,255,128,31,255,252,0,11,255,255,255,64,31,191,252,0,0,0,0,0,0,47,95,253,0,0,0,0,0,0,63,7,255,250,85,85,85,85,84,127,1,255,255,255,255,255,255,244,190,0,47,255,255,255,255,255,240,189,0,0,111,255,255,255,255,224,8,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,35,33,41,37,1,253,11,255,255,248,63,255,255,255,240,11,255,255,248,63,255,255,255,240,11,255,255,248,63,255,255,255,240,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,255,255,248,63,128,0,0,0,11,255,255,248,63,255,255,255,128,11,255,255,248,63,255,255,255,128,0,2,244,0,63,255,255,255,128,0,2,244,0,63,64,0,63,128,0,2,244,0,63,64,0,63,128,0,2,244,0,63,64,0,63,128,15,194,244,0,63,64,0,63,128,15,194,244,0,63,64,0,63,128,15,194,255,253,63,64,0,63,128,15,194,255,253,63,128,0,63,128,15,194,255,253,63,255,255,255,128,15,194,244,0,63,255,255,255,128,15,194,244,0,63,255,255,255,128,15,194,244,0,63,64,0,0,0,15,194,244,0,63,64,0,0,0,15,194,244,5,63,64,0,0,0,15,194,250,254,63,64,0,0,0,15,215,255,255,63,64,0,0,0,31,255,255,254,63,128,0,0,0,191,255,254,64,63,255,255,255,248,127,254,64,0,63,255,255,255,248,121,64,0,0,63,255,255,255,248,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0, + // 0x8f6c 转 + 108,143,35,36,68,37,1,252,0,11,144,0,0,2,248,0,0,0,15,208,0,0,3,248,0,0,0,15,192,0,0,3,244,0,0,0,31,192,0,0,7,240,0,0,127,255,255,248,255,255,255,255,192,127,255,255,248,255,255,255,255,192,127,255,255,248,255,255,255,255,192,0,127,0,0,0,31,192,0,0,0,189,0,0,0,47,192,0,0,0,252,0,0,0,63,128,0,0,0,248,252,0,0,63,64,0,0,2,244,252,3,255,255,255,255,244,3,240,252,3,255,255,255,255,244,7,224,252,3,255,255,255,255,244,11,208,252,0,1,253,0,0,0,15,192,252,0,2,252,0,0,0,47,255,255,244,3,252,0,0,0,47,255,255,244,3,248,0,0,0,31,255,255,244,7,244,0,4,0,4,1,252,0,11,255,255,255,128,0,0,252,0,15,255,255,255,192,0,0,252,0,31,255,255,255,0,0,0,252,0,0,0,2,253,0,0,0,253,110,0,0,7,248,0,0,107,255,254,0,0,15,240,0,127,255,255,254,0,208,63,192,0,127,255,254,80,3,248,191,64,0,63,250,252,0,7,255,254,0,0,20,0,252,0,0,255,252,0,0,0,0,252,0,0,31,253,0,0,0,0,252,0,0,3,255,128,0,0,0,252,0,0,0,191,240,0,0,0,252,0,0,0,31,248,0,0,0,252,0,0,0,3,240,0,0,0,252,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0, + // 0x8f6f 软 + 111,143,35,35,59,37,1,253,0,1,144,0,0,169,0,0,0,0,2,252,0,0,190,0,0,0,0,3,248,0,0,253,0,0,0,0,3,244,0,0,253,0,0,0,0,11,244,0,0,252,0,0,0,63,255,255,255,129,252,0,0,0,63,255,255,255,130,255,255,255,244,63,255,255,255,131,255,255,255,240,0,47,192,0,3,255,255,255,240,0,63,64,0,11,240,0,7,240,0,127,21,0,15,224,0,11,224,0,190,63,0,31,192,0,15,208,0,253,63,0,63,193,80,15,192,1,252,63,0,127,67,244,15,192,3,244,63,0,255,3,244,31,128,7,240,63,0,125,3,244,47,64,31,255,255,255,72,3,244,1,0,31,255,255,255,64,3,244,0,0,15,255,255,255,64,3,248,0,0,5,0,63,64,0,3,252,0,0,0,0,63,0,0,7,252,0,0,0,0,63,0,0,11,253,0,0,0,0,63,0,0,15,254,0,0,0,0,63,175,192,15,255,0,0,1,107,255,255,192,47,255,64,0,127,255,255,255,192,63,159,192,0,127,255,255,229,0,191,15,208,0,63,254,191,0,0,255,11,240,0,41,0,63,0,3,252,3,252,0,0,0,63,0,11,248,2,254,0,0,0,63,0,47,240,0,255,128,0,0,63,0,191,192,0,63,240,0,0,63,2,255,64,0,31,244,0,0,63,0,189,0,0,7,208,0,0,47,0,36,0,0,0,128, + // 0x8f74 轴 + 116,143,34,36,68,37,1,252,0,14,128,0,0,3,244,0,0,0,15,208,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,63,255,255,244,0,3,244,0,0,63,255,255,244,0,3,244,0,0,63,255,255,244,0,3,244,0,0,0,191,0,0,0,3,244,0,0,0,189,0,0,255,255,255,255,208,0,252,0,0,255,255,255,255,208,0,252,188,0,255,255,255,255,208,1,248,252,0,252,3,244,15,208,3,244,252,0,252,3,244,15,208,3,240,252,0,252,3,244,15,208,7,224,252,0,252,3,244,15,208,15,192,252,0,252,3,244,15,208,47,255,255,244,252,3,244,15,208,47,255,255,244,252,3,244,15,208,15,255,255,244,252,3,244,15,208,4,0,253,0,255,255,255,255,208,0,0,252,0,255,255,255,255,208,0,0,252,0,255,255,255,255,208,0,0,252,0,252,3,244,15,208,0,0,253,104,252,3,244,15,208,0,91,255,248,252,3,244,15,208,127,255,255,252,252,3,244,15,208,63,255,255,144,252,3,244,15,208,63,254,252,0,252,3,244,15,208,41,64,252,0,252,3,244,15,208,0,0,252,0,252,3,244,15,208,0,0,252,0,255,255,255,255,208,0,0,252,0,255,255,255,255,208,0,0,252,0,255,255,255,255,208,0,0,252,0,252,0,0,15,208,0,0,188,0,252,0,0,11,208,0,0,0,0,0,0,0,0,0, + // 0x8f7d 载 + 125,143,34,35,59,37,2,253,0,0,126,0,0,254,0,0,0,0,0,127,0,0,190,11,64,0,0,0,127,0,0,190,47,208,0,15,255,255,255,240,190,15,244,0,15,255,255,255,240,190,3,252,0,10,170,255,170,160,190,0,255,0,0,0,127,0,0,190,0,56,0,0,0,127,0,0,190,0,0,0,170,170,255,170,170,255,170,170,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,7,144,0,0,127,0,0,0,0,11,240,0,0,127,0,0,0,0,15,224,0,0,127,0,96,0,0,15,208,0,0,63,0,253,0,127,255,255,255,253,63,0,252,0,127,255,255,255,253,63,1,252,0,106,255,170,170,169,63,67,244,0,0,253,5,64,0,63,67,240,0,2,248,15,192,0,47,139,240,0,7,240,15,192,0,47,207,208,0,31,255,255,255,248,31,239,192,0,31,255,255,255,248,31,255,64,0,15,255,255,255,248,15,255,0,0,4,0,15,192,0,15,253,0,0,0,0,15,192,0,11,252,0,0,0,0,15,192,4,7,244,3,64,0,0,15,255,253,15,244,3,208,107,255,255,255,253,63,252,7,208,127,255,255,255,233,255,253,11,208,127,255,255,192,3,254,255,79,192,21,0,15,192,31,248,63,255,192,0,0,15,192,63,224,31,255,64,0,0,15,192,15,128,7,254,0,0,0,15,192,5,0,0,0,0, + // 0x8f91 辑 + 145,143,35,35,59,37,1,253,0,10,64,0,0,0,0,0,0,0,15,208,0,42,170,170,169,0,0,31,192,0,127,255,255,255,0,0,31,192,0,127,255,255,255,0,0,47,192,0,126,0,0,127,0,63,255,255,244,126,0,0,127,0,63,255,255,244,126,0,0,127,0,63,255,255,244,127,255,255,255,0,0,190,0,0,127,255,255,255,0,0,252,0,0,42,170,170,170,0,0,252,168,0,0,0,0,0,0,2,248,252,7,255,255,255,255,240,3,240,252,7,255,255,255,255,240,7,240,252,7,255,255,255,255,240,11,224,252,0,63,0,0,190,0,15,192,252,0,63,0,0,190,0,47,255,255,240,63,0,0,190,0,47,255,255,240,63,255,255,254,0,31,255,255,240,63,255,255,254,0,4,0,252,0,63,170,170,254,0,0,0,252,0,63,0,0,190,0,0,0,252,0,63,0,0,190,0,0,0,252,0,63,85,85,190,0,0,0,254,184,63,255,255,254,0,0,107,255,248,63,255,255,254,0,127,255,255,248,63,0,0,190,0,127,255,255,144,63,0,0,190,0,63,255,252,0,63,0,0,191,244,62,64,252,0,127,90,191,255,244,0,0,252,15,255,255,255,255,244,0,0,252,15,255,255,255,254,0,0,0,252,15,250,149,0,190,0,0,0,252,0,0,0,0,190,0,0,0,252,0,0,0,0,190,0,0,0,252,0,0,0,0,190,0, + // 0x8f93 输 + 147,143,35,35,59,37,1,253,0,37,0,0,0,3,128,0,0,0,63,0,0,0,15,240,0,0,0,127,0,0,0,63,224,0,0,0,126,0,0,0,255,244,0,0,0,190,0,0,3,255,254,0,0,127,255,255,128,31,248,191,192,0,127,255,255,128,191,224,47,248,0,127,255,255,135,255,128,7,255,128,1,248,0,127,253,0,1,255,244,2,244,0,255,255,255,255,255,244,3,240,0,63,255,255,255,250,224,3,243,240,4,191,255,255,244,64,7,211,240,0,0,0,0,0,0,11,195,240,0,0,0,0,1,64,15,195,240,10,170,170,0,7,192,31,67,240,15,255,255,15,71,192,63,255,255,143,255,255,15,135,192,63,255,255,143,192,47,15,135,192,47,255,255,143,192,47,15,135,192,20,3,240,15,234,191,15,135,192,0,3,240,15,255,255,15,135,192,0,3,240,15,255,255,15,135,192,0,3,240,15,192,47,15,135,192,0,3,255,143,192,47,15,135,192,6,255,255,143,234,191,15,135,192,127,255,255,79,255,255,15,135,192,63,255,240,15,255,255,15,135,192,63,147,240,15,192,47,15,135,192,0,3,240,15,192,47,15,71,192,0,3,240,15,192,47,0,7,192,0,3,240,15,192,47,0,7,192,0,3,240,15,192,47,0,11,192,0,3,240,15,195,255,7,255,192,0,3,240,15,195,254,3,255,192,0,3,240,11,193,164,2,169,0, + // 0x8fb9 边 + 185,143,35,36,68,37,1,252,0,64,0,0,1,84,0,0,0,2,224,0,0,3,248,0,0,0,11,248,0,0,3,248,0,0,0,3,254,0,0,3,248,0,0,0,0,255,128,0,3,248,0,0,0,0,63,208,0,3,248,0,0,0,0,31,240,85,87,249,85,85,64,0,11,209,255,255,255,255,255,192,0,2,1,255,255,255,255,255,192,0,0,1,255,255,255,255,255,192,0,0,0,0,7,240,0,47,192,0,0,0,0,11,240,0,47,192,21,85,0,0,11,240,0,47,192,127,255,128,0,15,224,0,47,192,127,255,128,0,15,224,0,47,192,127,255,128,0,31,208,0,47,192,0,63,128,0,47,192,0,63,128,0,63,128,0,63,192,0,63,128,0,63,128,0,127,64,0,63,128,0,63,128,0,191,0,0,63,128,0,63,128,0,255,0,0,63,64,0,63,128,3,252,0,0,127,64,0,63,128,11,248,0,0,127,0,0,63,128,31,240,0,0,191,0,0,63,128,191,208,0,1,255,0,0,63,130,255,64,31,255,254,0,0,63,131,254,0,15,255,252,0,0,191,192,244,0,11,255,240,0,3,255,244,0,0,1,85,0,0,15,255,254,0,0,0,0,0,0,63,241,255,249,0,0,0,85,168,255,192,47,255,255,255,255,255,244,127,0,7,255,255,255,255,255,240,45,0,0,111,255,255,255,255,240,8,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fc1 迁 + 193,143,35,35,59,37,1,253,0,0,0,0,0,0,0,16,0,1,244,0,0,0,0,27,248,0,3,255,0,0,1,111,255,254,0,1,255,208,90,255,255,255,249,0,0,47,244,255,255,255,249,0,0,0,11,244,255,255,255,0,0,0,0,1,208,101,0,191,0,0,0,0,0,0,0,0,191,0,0,0,3,64,0,0,0,191,0,0,0,15,224,0,0,0,191,0,0,0,31,253,0,0,0,191,0,0,0,3,255,128,0,0,191,0,0,0,0,127,224,0,0,191,0,0,0,0,15,199,255,255,255,255,255,240,0,2,7,255,255,255,255,255,240,0,0,7,255,255,255,255,255,240,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,63,255,192,0,0,191,0,0,0,63,255,192,0,0,191,0,0,0,63,255,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,15,192,0,0,191,0,0,0,0,47,224,0,0,191,0,0,0,0,255,248,0,0,191,0,0,0,11,255,255,64,0,21,0,0,0,63,248,191,250,80,0,0,21,84,127,224,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x8fd0 运 + 208,143,35,35,59,37,1,253,0,64,0,0,0,0,0,0,0,1,244,0,0,0,0,0,0,0,7,255,0,47,255,255,255,255,0,1,255,208,47,255,255,255,255,0,0,47,244,47,255,255,255,255,0,0,11,240,0,0,0,0,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,64,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,2,255,195,255,255,255,255,255,248,0,127,195,255,255,255,255,255,248,0,15,67,255,255,255,255,255,248,0,1,0,0,31,224,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,7,0,0,0,0,0,0,63,128,63,128,0,63,255,128,0,191,0,31,208,0,63,255,128,0,254,0,11,240,0,63,255,128,1,253,0,3,252,0,0,47,128,2,252,0,1,254,0,0,47,128,3,244,0,85,255,0,0,47,129,175,255,255,255,255,192,0,47,130,255,255,255,255,255,208,0,47,130,255,255,255,234,95,240,0,47,193,254,149,0,0,7,240,0,127,208,0,0,0,0,3,128,2,255,244,0,0,0,0,0,0,11,255,255,0,0,0,0,0,0,127,244,255,249,64,0,0,5,80,127,208,63,255,255,255,255,255,244,63,0,7,255,255,255,255,255,240,28,0,0,43,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x8fd1 近 + 209,143,35,35,59,37,1,253,0,0,0,0,0,0,0,96,0,3,64,0,0,0,0,111,252,0,15,224,0,4,1,175,255,255,0,31,252,0,15,255,255,255,244,0,7,255,0,15,255,255,233,0,0,0,255,192,15,255,148,0,0,0,0,63,224,15,224,0,0,0,0,0,15,208,15,224,0,0,0,0,0,3,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,224,0,254,0,0,63,255,192,15,208,0,254,0,0,63,255,192,15,192,0,254,0,0,63,255,192,31,192,0,254,0,0,0,31,192,47,192,0,254,0,0,0,31,192,63,128,0,254,0,0,0,31,192,63,64,0,254,0,0,0,31,192,191,0,0,254,0,0,0,31,192,254,0,0,254,0,0,0,31,194,253,0,0,254,0,0,0,31,195,252,0,0,254,0,0,0,31,207,244,0,0,254,0,0,0,31,199,224,0,0,254,0,0,0,63,225,192,0,0,254,0,0,1,255,248,0,0,0,254,0,0,11,255,255,64,0,0,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,35,34,50,37,1,253,3,64,0,0,0,0,0,0,0,31,208,0,63,255,255,255,255,192,31,248,0,63,255,255,255,255,192,7,254,0,63,255,255,255,255,192,1,255,128,63,64,0,0,0,0,0,127,208,63,64,0,0,0,0,0,31,192,63,64,0,0,0,0,0,11,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,255,0,0,0,0,63,255,255,255,254,0,0,0,0,63,127,64,1,252,0,0,0,0,63,111,192,3,252,0,63,255,128,63,79,208,7,244,0,63,255,128,63,11,240,15,240,0,63,255,128,127,7,244,31,208,0,0,47,128,127,2,252,63,192,0,0,47,128,190,0,255,255,64,0,0,47,128,253,0,127,254,0,0,0,47,129,252,0,47,252,0,0,0,47,130,252,0,63,252,0,0,0,47,131,248,1,255,255,64,0,0,47,135,240,11,255,255,240,0,0,47,143,224,191,248,47,255,64,0,47,159,195,255,208,7,255,240,0,127,211,129,254,0,0,191,224,2,255,244,0,224,0,0,11,192,11,255,255,64,0,0,0,0,0,127,244,255,250,84,0,5,85,84,127,208,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x8fd8 还 + 216,143,35,36,68,37,1,252,0,64,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,11,248,1,85,85,85,85,85,64,3,254,3,255,255,255,255,255,208,0,255,131,255,255,255,255,255,208,0,63,211,255,255,255,255,255,208,0,31,240,0,0,47,192,0,0,0,11,208,0,0,127,128,0,0,0,2,0,0,0,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,253,0,0,0,21,85,0,0,63,253,28,0,0,127,255,128,0,191,253,191,0,0,127,255,128,2,255,253,191,192,0,127,255,128,11,253,253,47,240,0,0,63,128,47,244,253,11,252,0,0,63,128,191,208,253,3,255,0,0,63,135,255,128,253,0,255,192,0,63,159,253,0,253,0,63,224,0,63,143,244,0,253,0,15,224,0,63,131,192,0,253,0,7,64,0,63,128,0,0,253,0,0,0,0,63,128,0,0,253,0,0,0,0,63,128,0,0,253,0,0,0,0,63,128,0,0,253,0,0,0,0,63,128,0,0,253,0,0,0,0,191,192,0,0,253,0,0,0,3,255,244,0,0,253,0,0,0,15,255,254,0,0,0,0,0,0,63,241,255,249,0,0,0,85,168,255,192,47,255,255,255,255,255,248,127,0,7,255,255,255,255,255,240,45,0,0,111,255,255,255,255,240,8,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fdb 进 + 219,143,35,34,50,37,1,253,2,192,0,0,127,0,63,128,0,11,240,0,0,127,0,63,128,0,7,252,0,0,127,0,63,128,0,1,255,0,0,127,0,63,128,0,0,127,192,0,127,0,63,128,0,0,47,224,85,191,85,127,149,64,0,11,209,255,255,255,255,255,192,0,3,1,255,255,255,255,255,192,0,0,1,255,255,255,255,255,192,0,0,0,0,127,0,63,128,0,0,0,0,0,127,0,63,128,0,0,0,0,0,127,0,63,128,0,0,0,0,0,127,0,63,128,0,63,255,192,0,127,0,63,128,0,63,255,192,0,127,0,63,128,0,63,255,194,255,255,255,255,255,240,0,31,194,255,255,255,255,255,240,0,31,194,255,255,255,255,255,240,0,31,192,85,254,85,127,149,80,0,31,192,1,252,0,63,128,0,0,31,192,2,252,0,63,128,0,0,31,192,3,248,0,63,128,0,0,31,192,11,244,0,63,128,0,0,31,192,31,240,0,63,128,0,0,31,192,63,208,0,63,128,0,0,31,192,255,128,0,63,128,0,0,63,208,63,0,0,63,128,0,2,255,248,12,0,0,42,64,0,11,255,255,64,0,0,0,0,0,47,240,127,254,84,0,85,106,244,127,192,15,255,255,255,255,255,240,63,0,1,255,255,255,255,255,240,13,0,0,6,191,255,255,254,144,0,0,0,0,0,0,0,0,0, + // 0x8fde 连 + 222,143,35,36,68,37,1,252,0,64,0,0,14,0,0,0,0,2,224,0,0,31,208,0,0,0,11,244,0,0,47,192,0,0,0,3,253,0,0,63,192,0,0,0,0,255,3,255,255,255,255,255,192,0,127,195,255,255,255,255,255,192,0,47,211,255,255,255,255,255,192,0,15,208,2,252,0,0,0,0,0,7,0,3,248,5,64,0,0,0,0,0,7,244,15,208,0,0,0,0,0,15,240,15,208,0,0,0,0,0,31,208,15,208,0,0,0,0,0,63,192,15,208,0,0,127,255,128,255,255,255,255,255,0,127,255,128,255,255,255,255,255,0,127,255,128,127,255,255,255,255,0,0,47,128,36,0,31,208,0,0,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,208,0,0,0,47,128,0,0,31,224,0,0,0,47,131,255,255,255,255,255,224,0,47,131,255,255,255,255,255,224,0,47,131,255,255,255,255,255,224,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,208,0,0,0,127,128,0,0,15,208,0,0,2,255,240,0,0,15,208,0,0,15,255,254,0,0,15,208,0,0,63,245,255,249,0,0,0,21,168,191,192,47,255,255,255,255,255,248,127,0,7,255,255,255,255,255,240,46,0,0,111,255,255,255,255,240,8,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0,0, + // 0x8ff7 迷 + 247,143,35,35,59,37,1,253,0,0,0,0,0,84,0,0,0,3,64,0,0,0,254,0,0,0,15,224,0,108,0,254,0,62,64,31,252,0,254,0,254,0,63,128,7,255,0,191,0,254,0,191,0,0,255,192,63,128,254,0,254,0,0,63,224,47,192,254,2,252,0,0,15,192,15,208,254,3,244,0,0,3,0,11,240,254,11,240,0,0,0,0,7,144,254,7,208,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,7,255,255,255,255,255,224,0,0,7,255,255,255,255,255,224,0,0,7,255,255,255,255,255,224,63,255,192,0,15,255,240,0,0,63,255,192,0,31,255,244,0,0,63,255,192,0,63,255,252,0,0,0,31,192,0,255,254,191,0,0,0,31,192,2,252,254,63,128,0,0,31,192,7,248,254,31,224,0,0,31,192,31,240,254,11,248,0,0,31,192,127,192,254,3,254,0,0,31,194,255,64,254,0,255,192,0,31,207,253,0,254,0,63,240,0,31,199,244,0,254,0,15,208,0,31,193,208,0,254,0,3,64,0,63,224,0,0,254,0,0,0,1,255,248,0,0,254,0,0,0,11,255,255,64,0,0,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,35,33,41,37,1,253,7,208,0,31,255,255,255,252,0,31,244,0,31,255,255,255,252,0,11,254,0,31,255,255,255,252,0,1,255,192,31,192,0,1,252,0,0,63,240,31,192,0,1,252,0,0,15,224,31,234,170,171,252,0,0,3,64,31,255,255,255,252,0,0,0,0,31,255,255,255,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,255,255,255,252,0,0,0,0,31,255,255,255,252,0,63,255,192,31,255,255,255,252,0,63,255,192,31,192,63,64,15,64,63,255,192,31,192,47,192,127,208,0,31,192,31,192,15,210,255,64,0,31,192,31,192,11,255,252,0,0,31,192,31,192,7,255,208,0,0,31,192,31,192,2,255,0,0,0,31,192,31,192,0,255,64,0,0,31,192,31,193,174,127,208,0,0,31,192,31,255,255,31,248,0,0,31,193,255,255,255,7,255,144,0,31,194,255,255,144,1,255,240,0,63,225,255,144,0,0,47,192,1,255,248,144,0,0,0,3,64,11,255,255,64,0,0,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9009 选 + 9,144,34,35,59,37,2,253,0,0,0,0,0,169,0,0,0,4,0,0,9,0,253,0,0,0,63,0,0,31,192,253,0,0,0,191,208,0,47,192,253,0,0,0,47,244,0,63,128,253,0,0,0,11,252,0,127,255,255,255,254,0,2,255,0,255,255,255,255,254,0,0,191,65,255,255,255,255,254,0,0,60,3,252,0,253,0,0,0,0,0,15,240,0,253,0,0,0,0,0,7,224,0,253,0,0,0,0,0,0,128,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,255,254,15,255,255,255,255,255,192,255,254,0,0,254,3,244,0,0,255,254,0,0,253,3,244,0,0,0,190,0,1,252,3,244,0,0,0,190,0,2,252,3,244,0,0,0,190,0,3,248,3,244,0,0,0,190,0,11,244,3,244,10,0,0,190,0,15,240,3,244,11,208,0,190,0,63,208,3,244,11,208,0,190,2,255,128,3,244,15,192,0,190,31,254,0,3,255,255,192,0,190,31,248,0,2,255,255,128,0,191,139,192,0,0,255,255,0,2,255,245,0,0,0,0,0,0,15,255,254,0,0,0,0,0,0,63,244,191,229,0,0,0,86,144,255,192,31,255,255,255,255,255,192,255,0,3,255,255,255,255,255,192,60,0,0,27,255,255,255,255,128,20,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,35,35,59,37,1,253,0,0,0,0,0,190,0,0,0,2,64,0,0,0,190,0,0,0,15,208,0,0,0,190,0,0,0,47,248,0,0,0,190,0,0,0,7,254,3,255,255,255,255,255,240,1,255,131,255,255,255,255,255,240,0,63,227,255,255,255,255,255,224,0,15,208,0,0,190,0,0,0,0,3,0,0,0,190,0,0,0,0,0,0,106,170,255,170,170,0,0,0,0,191,255,255,255,255,64,0,0,0,191,255,255,255,255,64,0,0,0,189,0,190,0,63,64,0,0,0,189,0,190,0,63,64,0,0,0,189,0,190,0,63,64,63,255,192,189,0,190,0,63,64,63,255,192,191,170,255,170,191,64,63,255,192,191,255,255,255,255,64,0,31,192,191,255,255,255,255,64,0,31,192,0,11,255,224,0,0,0,31,192,0,47,255,248,0,0,0,31,192,0,127,255,254,0,0,0,31,192,2,253,190,127,128,0,0,31,192,11,248,190,31,244,0,0,31,192,127,224,190,7,254,0,0,31,199,255,128,190,1,255,224,0,31,199,253,0,190,0,63,208,0,63,226,240,0,190,0,11,128,1,255,248,64,0,190,0,1,0,11,255,255,64,0,85,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,35,35,59,37,1,253,0,0,106,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,63,255,255,192,0,0,127,0,0,63,255,255,244,47,255,255,255,252,63,255,255,240,47,255,255,255,252,63,64,31,240,47,255,255,255,252,63,0,31,208,0,0,0,4,0,63,0,47,192,0,252,0,31,192,63,0,63,128,0,252,0,47,128,63,0,127,0,0,189,0,63,64,63,0,254,0,0,126,0,63,0,63,0,253,0,0,63,0,126,0,63,2,252,0,0,63,0,253,0,63,3,244,0,0,36,0,24,0,63,7,240,0,127,255,255,255,254,63,11,240,0,127,255,255,255,254,63,2,252,0,127,255,255,255,254,63,0,255,0,0,0,0,0,0,63,0,63,64,0,0,0,0,0,63,0,47,192,0,0,0,0,0,63,0,15,208,3,255,255,255,224,63,0,11,224,3,255,255,255,224,63,0,7,240,3,255,255,255,224,63,0,7,240,3,240,0,11,224,63,0,7,240,3,240,0,11,224,63,0,11,240,3,240,0,11,224,63,0,31,240,3,240,0,11,224,63,15,255,224,3,240,0,11,224,63,15,255,192,3,240,0,11,224,63,11,255,0,3,255,255,255,224,63,1,80,0,3,255,255,255,224,63,0,0,0,3,255,255,255,224,63,0,0,0,3,240,0,11,224,63,0,0,0,3,240,0,11,224,63,0,0,0, + // 0x914d 配 + 77,145,34,33,41,37,2,253,255,255,255,255,143,255,255,255,64,255,255,255,255,143,255,255,255,64,255,255,255,255,143,255,255,255,64,0,62,47,0,1,85,85,127,64,0,62,47,0,0,0,0,63,64,0,62,47,0,0,0,0,63,64,63,255,255,254,0,0,0,63,64,63,255,255,255,0,0,0,63,64,63,255,255,255,0,0,0,63,64,62,29,60,63,0,0,0,63,64,62,29,60,63,0,0,0,63,64,62,29,60,63,0,0,0,63,64,62,29,60,63,11,255,255,255,64,62,29,60,63,11,255,255,255,64,62,29,60,63,11,255,255,255,64,62,44,60,63,11,224,0,63,64,62,60,60,63,11,224,0,63,64,62,180,47,255,11,224,0,21,0,63,240,31,255,11,224,0,0,0,62,64,0,63,11,224,0,0,0,62,0,0,63,11,224,0,0,0,63,85,85,127,11,224,0,0,0,63,255,255,255,11,224,0,0,0,63,255,255,255,11,224,0,6,0,62,0,0,63,11,224,0,7,224,62,0,0,63,11,224,0,11,224,62,0,0,63,11,224,0,11,224,63,170,170,191,11,224,0,15,208,63,255,255,255,11,240,0,31,192,63,255,255,255,7,255,255,255,192,62,0,0,63,3,255,255,255,64,62,0,0,63,1,255,255,254,0,41,0,0,0,0,0,0,0,0, + // 0x91ca 释 + 202,145,35,35,59,37,1,253,0,0,0,80,0,0,0,0,0,0,1,175,240,0,0,0,0,0,47,255,255,252,255,255,255,255,208,63,255,255,228,255,255,255,255,224,47,175,240,0,255,255,255,255,192,0,7,224,0,15,192,0,63,128,5,7,224,120,7,224,0,255,0,63,7,224,252,3,244,3,252,0,31,135,224,248,1,253,15,240,0,15,199,226,240,0,127,127,192,0,7,215,227,224,0,47,255,0,0,3,231,231,192,0,15,254,0,0,1,7,224,0,0,191,255,208,0,0,7,224,0,7,255,111,254,64,63,255,255,245,191,244,7,255,248,63,255,255,251,255,128,0,191,244,63,255,255,246,248,1,80,11,240,0,15,240,0,64,3,240,0,144,0,47,252,0,0,3,240,0,0,0,63,255,0,0,3,240,0,0,0,191,255,192,191,255,255,255,64,0,255,255,240,191,255,255,255,64,3,251,227,252,191,255,255,255,64,11,231,224,244,0,3,240,0,0,31,199,224,80,0,3,240,0,0,127,135,224,0,0,3,240,0,0,191,7,224,3,255,255,255,255,240,61,7,224,3,255,255,255,255,240,40,7,224,3,255,255,255,255,240,0,7,224,0,0,7,244,0,0,0,7,224,0,0,3,240,0,0,0,7,224,0,0,3,240,0,0,0,7,224,0,0,3,240,0,0,0,7,224,0,0,3,240,0,0,0,7,224,0,0,3,240,0,0, + // 0x91cd 重 + 205,145,33,34,50,37,2,254,0,0,0,0,0,0,90,0,0,0,0,0,5,106,255,255,64,0,2,191,255,255,255,255,255,192,0,2,255,255,255,255,255,233,0,0,1,255,169,91,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,170,170,170,175,254,170,170,170,128,0,0,0,7,240,0,0,0,0,0,85,85,91,245,85,85,64,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,253,0,7,240,0,15,208,0,0,253,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,253,0,11,240,0,31,208,0,0,253,0,7,240,0,15,208,0,0,253,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,85,85,91,245,85,85,64,0,0,0,0,7,240,0,0,0,0,2,170,170,175,250,170,170,164,0,3,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x91cf 量 + 207,145,33,33,41,37,2,254,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,63,64,0,0,127,0,0,0,0,63,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,63,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,170,170,170,170,170,170,170,170,128,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,3,240,0,15,208,0,0,252,0,3,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,3,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,1,85,85,87,245,85,85,80,0,0,0,0,3,240,0,0,0,0,170,170,170,171,250,170,170,170,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x9488 针 + 136,148,34,35,59,37,1,253,0,25,0,0,0,2,164,0,0,0,63,128,0,0,3,248,0,0,0,127,0,0,0,3,248,0,0,0,254,0,0,0,3,248,0,0,1,255,255,248,0,3,248,0,0,3,255,255,248,0,3,248,0,0,15,255,255,248,0,3,248,0,0,47,224,0,0,0,3,248,0,0,127,192,0,0,0,3,248,0,0,191,0,0,0,0,3,248,0,0,61,0,0,0,0,3,248,0,0,43,255,255,224,0,3,248,0,0,3,255,255,226,170,171,254,170,160,3,255,255,231,255,255,255,255,240,0,7,240,7,255,255,255,255,240,0,7,240,7,255,255,255,255,240,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,47,255,255,244,0,3,248,0,0,47,255,255,244,0,3,248,0,0,47,255,255,244,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,44,0,3,248,0,0,0,7,242,252,0,3,248,0,0,0,11,255,253,0,3,248,0,0,0,15,255,244,0,3,248,0,0,0,63,255,64,0,3,248,0,0,0,63,244,0,0,3,248,0,0,0,31,128,0,0,3,248,0,0,0,8,0,0,0,3,244,0,0, + // 0x94ae 钮 + 174,148,35,35,59,37,1,253,0,100,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,252,0,3,255,255,255,255,192,1,252,0,3,255,255,255,255,192,3,255,255,243,255,255,255,255,192,7,255,255,240,0,63,64,47,128,15,255,255,240,0,63,0,47,128,47,213,85,80,0,127,0,47,128,63,128,0,0,0,127,0,63,128,255,0,0,0,0,127,0,63,64,189,0,0,0,0,191,0,63,64,63,255,255,192,0,190,0,63,64,39,255,255,192,0,190,0,63,64,3,255,255,192,0,253,0,63,0,0,15,192,0,0,253,0,63,0,0,15,192,3,255,255,255,255,0,0,15,192,3,255,255,255,255,0,0,15,192,3,255,255,255,255,0,0,15,192,0,86,253,85,191,0,63,255,255,240,2,252,0,190,0,63,255,255,240,2,248,0,190,0,63,255,255,240,3,248,0,190,0,0,15,192,0,3,244,0,254,0,0,15,192,0,3,244,0,253,0,0,15,192,0,3,240,0,253,0,0,15,192,0,7,240,0,252,0,0,15,192,0,7,240,0,252,0,0,15,194,224,11,240,1,252,0,0,15,239,240,11,224,1,252,0,0,15,255,224,15,224,2,252,0,0,31,255,85,95,229,87,253,80,0,63,248,191,255,255,255,255,244,0,191,192,191,255,255,255,255,244,0,61,0,191,255,255,255,255,244,0,16,0,0,0,0,0,0,0, + // 0x9519 错 + 25,149,35,35,59,37,1,253,0,20,0,0,3,224,11,208,0,0,63,0,0,3,240,11,208,0,0,127,0,0,3,240,11,208,0,0,254,0,0,3,240,11,208,0,1,253,0,0,3,240,11,208,0,3,255,255,242,255,255,255,255,224,11,255,255,242,255,255,255,255,224,31,255,255,242,255,255,255,255,224,127,192,0,0,3,240,11,208,0,127,0,0,0,3,240,11,208,0,61,0,0,0,3,240,11,208,0,27,255,255,208,3,240,11,208,0,3,255,255,219,255,255,255,255,244,3,255,255,219,255,255,255,255,244,0,15,208,11,255,255,255,255,244,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,127,255,255,255,0,47,255,255,240,127,255,255,255,0,47,255,255,240,127,255,255,255,0,47,255,255,240,127,0,0,63,0,0,15,208,0,127,0,0,63,0,0,15,208,0,127,0,0,63,0,0,15,208,0,127,170,170,255,0,0,15,208,0,127,255,255,255,0,0,15,208,0,127,255,255,255,0,0,15,208,144,127,0,0,63,0,0,15,235,224,127,0,0,63,0,0,15,255,240,127,0,0,63,0,0,31,255,128,127,255,255,255,0,0,127,253,0,127,255,255,255,0,0,63,208,0,127,255,255,255,0,0,46,0,0,127,0,0,63,0,0,0,0,0,42,0,0,21,0, + // 0x955c 镜 + 92,149,35,36,68,37,1,252,0,40,0,0,0,11,208,0,0,0,63,0,0,0,7,240,0,0,0,191,0,1,255,255,255,255,192,0,253,0,1,255,255,255,255,208,2,255,255,209,255,255,255,255,208,3,255,255,208,2,128,1,144,0,15,255,255,208,11,224,3,244,0,31,208,0,0,3,240,3,240,0,127,192,0,0,3,240,7,224,0,127,0,0,11,255,255,255,255,240,62,0,0,11,255,255,255,255,240,31,255,255,203,255,255,255,255,240,3,255,255,192,0,0,0,0,0,3,255,255,192,0,0,0,0,0,0,15,192,0,255,255,255,255,128,0,15,192,0,255,255,255,255,128,0,15,192,0,253,0,0,47,128,0,15,192,0,252,0,0,47,128,0,15,192,0,255,255,255,255,128,63,255,255,240,255,255,255,255,128,63,255,255,240,252,0,0,47,128,63,255,255,240,252,0,0,47,128,0,15,192,0,253,0,0,47,128,0,15,192,0,255,255,255,255,128,0,15,192,0,255,255,255,255,128,0,15,192,0,2,248,47,128,0,0,15,192,80,3,244,47,128,0,0,15,199,224,3,240,47,128,0,0,15,255,240,11,240,47,128,64,0,31,255,208,15,224,47,128,244,0,63,254,0,63,192,47,128,248,0,255,244,2,255,128,47,129,248,0,191,128,127,254,0,31,255,244,0,61,0,63,244,0,15,255,240,0,16,0,30,64,0,1,170,64,0,0,0,0,0,0,0,0,0, + // 0x957f 长 + 127,149,34,35,59,37,2,253,0,2,164,0,0,0,0,0,0,0,3,244,0,0,0,46,0,0,0,3,244,0,0,0,191,192,0,0,3,244,0,0,2,255,64,0,0,3,244,0,0,15,253,0,0,0,3,244,0,0,127,244,0,0,0,3,244,0,2,255,208,0,0,0,3,244,0,31,255,0,0,0,0,3,244,1,255,248,0,0,0,0,3,244,31,255,208,0,0,0,0,3,244,47,254,0,0,0,0,0,3,244,11,224,0,0,0,0,0,3,244,2,0,0,0,0,0,0,3,244,0,0,0,0,0,0,85,87,249,85,85,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,3,244,0,254,0,0,0,0,0,3,244,0,191,0,0,0,0,0,3,244,0,63,128,0,0,0,0,3,244,0,47,208,0,0,0,0,3,244,0,15,240,0,0,0,0,3,244,0,11,252,0,0,0,0,3,244,0,3,254,0,0,0,0,3,244,0,0,255,128,0,0,0,3,244,0,0,127,240,0,0,0,3,244,0,4,47,253,0,0,0,3,244,6,252,11,255,128,0,0,3,254,255,252,1,255,253,0,0,11,255,255,252,0,127,255,208,0,31,255,255,144,0,11,255,192,0,15,255,144,0,0,0,191,0,0,15,224,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0, + // 0x95ed 闭 + 237,149,31,36,32,37,3,252,1,0,0,0,0,0,0,0,31,64,0,0,0,0,0,0,63,208,15,255,255,255,255,252,15,244,15,255,255,255,255,252,3,252,15,255,255,255,255,252,1,255,0,0,0,0,2,252,0,189,0,0,0,0,1,252,0,32,0,0,26,128,1,252,0,0,0,0,47,192,1,252,254,0,0,0,47,192,1,252,254,0,0,0,47,192,1,252,254,0,0,0,47,192,1,252,254,0,0,0,47,192,1,252,254,15,255,255,255,255,225,252,254,15,255,255,255,255,225,252,254,15,255,255,255,255,225,252,254,0,0,3,255,192,1,252,254,0,0,11,255,192,1,252,254,0,0,31,255,192,1,252,254,0,0,127,239,192,1,252,254,0,1,255,47,192,1,252,254,0,7,253,47,192,1,252,254,0,47,244,47,192,1,252,254,0,255,208,47,192,1,252,254,11,255,64,47,192,1,252,254,63,252,0,47,192,1,252,254,63,224,0,47,192,1,252,254,15,64,0,47,192,1,252,254,0,0,85,127,192,1,252,254,0,0,191,255,192,1,252,254,0,0,127,255,64,1,252,254,0,0,63,249,0,2,252,254,0,0,0,0,2,255,252,254,0,0,0,0,1,255,244,254,0,0,0,0,0,255,144,0,0,0,0,0,0,0,0, + // 0x95f2 闲 + 242,149,31,35,24,37,3,253,1,0,0,0,0,0,0,0,11,192,0,0,0,0,0,0,31,224,11,255,255,255,255,252,11,248,11,255,255,255,255,252,2,253,11,255,255,255,255,252,0,255,64,0,0,0,1,252,0,63,192,0,0,0,1,252,0,31,192,0,0,0,1,252,84,10,0,10,128,0,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,1,252,252,15,255,255,255,255,225,252,252,15,255,255,255,255,225,252,252,15,255,255,255,255,225,252,252,0,0,191,248,0,1,252,252,0,0,255,253,0,1,252,252,0,3,255,255,64,1,252,252,0,11,255,239,208,1,252,252,0,31,207,207,244,1,252,252,0,63,79,195,252,1,252,252,0,255,15,192,255,1,252,252,3,252,15,192,127,129,252,252,31,244,15,192,47,209,252,252,63,208,15,192,15,129,252,252,15,64,15,192,1,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,1,252,252,0,0,15,192,0,2,252,252,0,0,5,64,47,255,252,252,0,0,0,0,31,255,244,252,0,0,0,0,15,255,208,252,0,0,0,0,5,80,0, + // 0x95f4 间 + 244,149,31,36,32,37,3,252,1,0,0,0,0,0,0,0,31,64,0,0,0,0,0,0,63,208,15,255,255,255,255,252,15,244,15,255,255,255,255,252,3,252,15,255,255,255,255,252,1,255,0,0,0,0,2,252,0,188,0,0,0,0,2,252,0,32,0,0,0,0,2,252,0,0,0,0,0,0,2,252,255,0,0,0,0,0,2,252,255,0,0,0,0,0,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,189,0,1,248,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,191,255,255,248,2,252,255,0,0,0,0,0,2,252,255,0,0,0,0,0,2,252,255,0,0,0,0,0,2,252,255,0,0,0,0,0,2,252,255,0,0,0,0,0,255,252,255,0,0,0,0,0,255,244,255,0,0,0,0,0,191,144,0,0,0,0,0,0,0,0, + // 0x9608 阈 + 8,150,31,36,32,37,3,252,2,192,0,0,0,0,0,0,15,240,11,255,255,255,255,248,7,252,11,255,255,255,255,248,2,254,11,255,255,255,255,248,0,191,64,0,0,0,2,248,0,63,192,0,0,0,2,248,0,31,208,0,184,16,2,248,0,11,64,0,252,248,2,248,254,0,0,0,252,190,2,248,254,0,0,0,252,47,2,248,254,0,0,0,252,8,2,248,254,47,255,255,255,255,226,248,254,47,255,255,255,255,226,248,254,26,170,170,254,170,146,248,254,0,0,0,188,0,2,248,254,0,0,0,125,10,66,248,254,11,255,248,125,15,66,248,254,11,255,248,125,31,2,248,254,11,128,184,62,63,2,248,254,11,128,184,62,62,2,248,254,11,128,184,63,188,2,248,254,11,255,248,47,252,2,248,254,11,255,248,31,244,2,248,254,0,0,0,31,240,2,248,254,0,0,0,15,208,162,248,254,0,26,254,31,192,246,248,254,47,255,254,63,224,242,248,254,63,255,233,255,250,242,248,254,47,148,3,249,255,226,248,254,0,0,31,224,191,194,248,254,0,0,15,128,31,66,248,254,0,0,1,0,0,3,248,254,0,0,0,0,31,255,248,254,0,0,0,0,15,255,240,254,0,0,0,0,11,255,128,0,0,0,0,0,0,0,0, + // 0x964d 降 + 77,150,33,35,59,37,3,253,0,0,0,0,11,144,0,0,0,0,0,0,0,15,208,0,0,0,255,255,224,0,63,192,0,0,0,255,255,252,0,191,234,171,128,0,255,255,244,1,255,255,255,240,0,252,3,240,7,255,255,255,208,0,252,7,240,31,248,0,63,192,0,252,11,208,127,253,0,127,0,0,252,15,194,255,191,1,254,0,0,252,31,195,252,63,199,252,0,0,252,47,64,224,15,255,240,0,0,252,63,0,0,3,255,192,0,0,252,126,0,0,3,255,208,0,0,252,126,0,0,47,255,253,0,0,252,63,64,6,255,235,255,228,0,252,15,193,191,255,0,191,255,128,252,11,227,255,244,10,175,255,0,252,3,241,254,64,15,208,125,0,252,3,240,144,0,15,208,0,0,252,2,244,127,255,255,255,252,0,252,2,244,191,255,255,255,252,0,252,2,244,191,255,255,255,252,0,252,3,244,3,240,15,208,0,0,252,255,240,3,240,15,208,0,0,252,191,224,3,240,15,208,0,0,252,191,64,3,240,15,208,0,0,252,0,7,255,255,255,255,255,0,252,0,7,255,255,255,255,255,0,252,0,7,255,255,255,255,255,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0, + // 0x9650 限 + 80,150,32,33,8,37,3,253,255,255,248,47,255,255,255,240,255,255,254,47,255,255,255,240,255,255,253,47,255,255,255,240,253,1,252,47,128,0,3,240,253,2,248,47,128,0,3,240,253,3,244,47,128,0,3,240,253,7,240,47,128,0,3,240,253,11,224,47,255,255,255,240,253,15,192,47,255,255,255,240,253,31,192,47,255,255,255,240,253,47,64,47,128,0,3,240,253,63,0,47,128,0,3,240,253,31,192,47,128,0,3,240,253,11,224,47,128,0,3,240,253,3,240,47,255,255,255,240,253,2,248,47,255,255,255,240,253,0,252,47,255,255,255,240,253,0,252,47,128,189,0,0,253,0,253,47,128,126,0,180,253,0,252,47,128,63,2,253,253,1,252,47,128,63,75,248,253,191,252,47,128,47,255,224,253,127,244,47,128,15,255,64,253,63,144,47,128,11,252,0,253,0,0,47,128,3,248,0,253,0,0,47,128,2,253,0,253,0,0,47,128,20,255,0,253,0,0,47,219,252,127,192,253,0,1,191,255,252,47,244,253,0,31,255,255,248,15,254,253,0,15,255,249,0,3,255,253,0,15,233,0,0,0,189,253,0,0,0,0,0,0,20, + // 0x9664 除 + 100,150,33,35,59,37,3,253,0,0,0,0,2,164,0,0,0,0,0,0,0,11,253,0,0,0,255,255,224,0,15,255,0,0,0,255,255,252,0,63,255,192,0,0,255,255,244,0,191,31,224,0,0,252,3,240,2,254,11,248,0,0,252,7,240,11,248,2,254,0,0,252,11,208,47,240,0,191,192,0,252,15,192,191,192,0,47,240,0,252,31,135,254,0,0,11,254,0,252,47,95,248,0,0,2,255,128,252,63,15,239,255,255,255,191,0,252,126,11,79,255,255,255,13,0,252,127,0,15,255,255,255,0,0,252,47,128,0,2,248,0,0,0,252,15,192,0,2,248,0,0,0,252,11,224,0,2,248,0,0,0,252,3,240,0,2,248,0,0,0,252,3,241,255,255,255,255,252,0,252,2,245,255,255,255,255,252,0,252,2,245,255,255,255,255,252,0,252,2,244,0,2,248,0,0,0,252,3,244,0,2,248,0,0,0,252,255,240,47,66,248,31,0,0,252,191,224,63,2,248,63,128,0,252,191,64,191,2,248,31,208,0,252,0,0,253,2,248,11,240,0,252,0,2,252,2,248,3,244,0,252,0,7,244,2,248,1,252,0,252,0,15,224,2,248,0,254,0,252,0,63,192,2,248,0,127,0,252,0,31,64,3,248,0,62,0,252,0,1,1,255,248,0,16,0,252,0,0,0,255,240,0,0,0,252,0,0,0,255,128,0,0,0, + // 0x9669 险 + 105,150,33,35,59,37,3,253,0,0,0,0,0,224,0,0,0,0,0,0,0,2,252,0,0,0,255,255,240,0,3,252,0,0,0,255,255,252,0,15,254,0,0,0,255,255,244,0,31,255,64,0,0,252,3,240,0,127,175,208,0,0,252,7,240,0,255,15,244,0,0,252,11,208,3,252,3,253,0,0,252,15,192,15,244,0,255,128,0,252,31,128,63,224,0,63,224,0,252,47,64,255,128,0,15,252,0,252,63,7,255,0,0,3,255,128,252,62,31,255,255,255,253,255,192,252,127,15,231,255,255,253,47,0,252,47,135,71,255,255,252,6,0,252,15,192,0,0,0,0,0,0,252,7,224,0,0,0,0,0,0,252,3,240,0,0,160,0,144,0,252,3,244,45,1,244,1,252,0,252,2,244,126,0,248,2,248,0,252,2,248,63,0,252,3,240,0,252,2,244,47,64,252,7,224,0,252,3,244,31,128,188,11,208,0,252,255,240,15,192,125,15,192,0,252,191,224,15,192,125,47,64,0,252,127,64,11,208,62,63,0,0,252,0,0,7,208,16,126,0,0,252,0,0,1,0,0,252,0,0,252,0,0,0,0,1,248,0,0,252,0,0,0,0,3,240,0,0,252,0,3,255,255,255,255,255,0,252,0,3,255,255,255,255,255,0,252,0,3,255,255,255,255,255,0,252,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0, + // 0x96f6 零 + 246,150,34,34,50,37,2,253,2,170,170,170,170,170,170,160,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,21,85,85,87,245,85,85,85,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,0,0,7,240,0,0,63,64,127,0,0,7,240,0,0,63,64,127,47,255,199,241,255,254,63,64,127,47,255,199,241,255,254,63,64,42,0,0,7,240,0,0,42,0,0,0,0,7,240,0,0,0,0,0,127,255,192,1,255,255,64,0,0,127,255,239,249,255,255,64,0,0,0,0,191,255,64,0,0,0,0,0,11,255,127,244,0,0,0,0,0,191,248,15,255,64,0,0,0,27,255,208,1,255,249,0,0,2,255,255,85,85,127,255,228,0,191,255,159,255,255,253,191,255,208,255,248,15,255,255,252,7,255,192,190,64,0,0,0,0,0,31,64,16,0,0,0,0,0,0,0,0,1,255,255,255,255,255,255,0,0,1,255,255,255,255,255,255,0,0,0,85,85,255,85,85,191,0,0,0,0,0,190,0,0,63,0,0,0,0,0,190,0,0,127,0,0,0,0,0,190,0,106,255,0,0,0,0,0,190,0,63,255,0,0,0,0,0,190,0,63,248,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0, + // 0x9700 需 + 0,151,33,34,50,37,2,253,2,170,170,170,170,170,170,160,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,85,85,91,245,85,85,127,64,127,0,0,3,240,0,0,63,64,127,47,255,195,241,255,254,63,64,127,47,255,195,241,255,254,63,64,127,0,0,3,240,0,0,63,64,0,0,0,3,240,0,0,0,0,0,127,255,195,241,255,255,64,0,0,127,255,195,241,255,255,64,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,11,240,0,0,0,0,0,0,0,15,208,0,0,0,0,2,170,170,191,250,170,170,164,0,3,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,2,248,0,3,244,3,244,3,244,255,244,0,3,244,3,244,3,244,127,240,0,2,164,1,160,1,160,62,128,0, + // 0x9752 青 + 82,151,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,6,170,170,175,250,170,170,164,0,7,255,255,255,255,255,255,248,0,7,255,255,255,255,255,255,248,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,170,170,171,250,170,170,128,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,106,170,170,175,250,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,234,170,170,170,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,213,85,85,85,191,0,0,0,47,128,0,0,0,191,0,0,0,47,213,85,85,85,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,3,255,255,0,0,0,47,128,0,2,255,253,0,0,0,47,128,0,0,170,144,0,0, + // 0x975e 非 + 94,151,35,36,68,37,1,252,0,0,2,164,0,169,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,254,0,0,0,15,255,255,248,0,255,255,255,224,15,255,255,248,0,255,255,255,224,15,255,255,248,0,255,255,255,224,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,11,255,255,248,0,255,255,255,192,11,255,255,248,0,255,255,255,192,11,255,255,248,0,255,255,255,192,0,0,3,248,0,254,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,244,0,253,0,0,0,0,0,3,244,0,253,0,0,0,0,0,7,255,208,253,0,0,0,0,22,255,255,208,254,0,0,0,127,255,255,255,208,255,255,255,244,127,255,255,245,0,255,255,255,244,63,254,191,192,0,255,255,255,244,41,0,63,192,0,253,0,0,0,0,0,255,64,0,253,0,0,0,0,2,254,0,0,253,0,0,0,0,11,252,0,0,253,0,0,0,0,47,244,0,0,253,0,0,0,1,255,208,0,0,253,0,0,0,11,255,64,0,0,253,0,0,0,11,252,0,0,0,253,0,0,0,2,208,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9760 靠 + 96,151,34,36,68,37,2,252,0,5,0,3,240,0,0,0,0,0,31,192,3,240,0,0,0,0,0,63,192,7,244,0,0,0,0,0,127,255,255,255,255,255,240,0,1,255,255,255,255,255,255,240,0,7,252,0,3,240,0,0,0,0,23,249,85,91,245,85,85,85,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,3,240,0,0,0,0,0,0,0,5,84,0,0,0,0,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,190,0,0,0,0,15,208,0,0,190,0,0,0,0,15,208,0,0,190,0,0,0,0,15,208,0,0,191,255,255,255,255,255,208,0,0,191,255,255,255,255,255,208,0,0,0,7,240,3,244,0,0,0,0,0,11,240,3,248,0,0,0,63,255,255,240,3,255,255,255,64,63,255,255,240,3,255,255,255,64,0,0,7,240,3,244,0,0,0,0,0,11,240,3,248,0,0,0,31,255,255,240,3,255,255,254,0,31,255,255,240,3,255,255,254,0,0,0,11,224,3,244,0,0,0,0,0,11,224,3,249,85,85,64,191,255,255,208,3,255,255,255,208,255,255,255,192,3,255,255,255,208,165,64,127,128,3,244,0,0,0,0,6,255,0,3,244,0,0,0,1,191,248,0,3,244,0,0,0,3,255,208,0,3,244,0,0,0,0,249,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,33,32,32,37,2,253,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,15,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,192,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,208,31,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,234,171,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,234,171,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,208,31,192,1,252,1,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,192,0,0,0,0,1,252,0,15,192,0,0,0,0,1,252,0, + // 0x9875 页 + 117,152,33,34,50,37,2,252,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,0,0,0,31,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,64,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,0,0,0,0,31,208,0,0,254,0,0,0,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,3,244,0,31,208,0,0,254,0,7,240,0,31,208,0,0,254,0,11,240,0,31,208,0,0,254,0,15,240,0,31,208,0,0,254,0,63,210,224,31,208,0,0,0,0,255,203,254,0,0,0,0,0,7,255,7,255,224,0,0,0,0,127,252,0,127,254,0,0,0,11,255,224,0,7,255,224,0,6,255,255,64,0,0,127,253,0,191,255,244,0,0,0,11,255,64,63,253,0,0,0,0,0,190,0,30,64,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0, + // 0x9879 项 + 121,152,35,33,41,37,1,253,0,0,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,21,85,85,127,255,255,255,255,244,127,255,255,128,0,63,192,0,0,127,255,255,128,0,127,64,0,0,21,127,149,0,0,255,0,0,0,0,63,128,11,255,255,255,255,0,0,63,128,11,255,255,255,255,0,0,63,128,11,255,255,255,255,0,0,63,128,11,224,0,0,127,0,0,63,128,11,224,0,0,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,128,11,224,31,192,127,0,0,63,155,203,224,47,192,127,0,0,63,255,203,224,47,192,127,0,6,255,255,203,224,47,192,127,0,191,255,249,11,224,63,128,127,0,191,254,64,11,224,127,64,42,0,127,208,0,0,0,255,4,0,0,56,0,0,0,2,253,47,64,0,0,0,0,0,11,248,127,224,0,0,0,0,0,127,240,31,252,0,0,0,0,7,255,192,3,255,64,0,0,0,191,254,0,0,191,224,0,0,3,255,244,0,0,31,244,0,0,1,255,64,0,0,3,224,0,0,0,96,0,0,0,0,128, + // 0x9884 预 + 132,152,35,34,50,37,1,252,63,255,255,248,255,255,255,255,244,63,255,255,252,255,255,255,255,244,63,255,255,244,255,255,255,255,244,0,0,15,224,0,2,252,0,0,0,0,47,192,0,3,248,0,0,1,128,191,0,0,3,244,0,0,7,246,253,0,47,255,255,255,192,7,255,244,0,47,255,255,255,192,0,255,224,0,47,255,255,255,192,0,47,248,0,47,128,0,31,192,0,7,255,0,47,64,0,31,192,0,0,255,0,47,65,164,31,192,191,255,255,255,47,66,248,31,192,191,255,255,255,47,66,248,31,192,191,255,255,255,47,66,248,31,192,0,15,224,189,47,66,248,31,192,0,15,208,252,47,66,248,31,192,0,15,208,252,47,66,248,31,192,0,15,209,244,47,66,248,31,192,0,15,211,240,47,66,248,31,192,0,15,209,160,47,66,248,31,192,0,15,208,0,47,67,244,31,192,0,15,208,0,47,67,244,31,192,0,15,208,0,47,71,240,31,192,0,15,208,0,0,15,224,0,0,0,15,208,0,0,47,210,128,0,0,15,208,0,0,127,203,240,0,0,15,208,0,1,255,11,252,0,0,15,208,0,11,253,2,255,64,0,31,208,0,191,240,0,127,208,15,255,208,11,255,128,0,31,244,15,255,192,3,253,0,0,7,240,11,254,0,0,144,0,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x9891 频 + 145,152,35,36,68,37,1,252,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,126,0,15,255,255,255,240,3,224,126,0,15,255,255,255,240,3,240,127,255,143,255,255,255,240,3,240,127,255,128,0,127,0,0,3,240,127,255,128,0,190,0,0,3,240,126,0,0,0,252,0,0,3,240,126,0,0,1,252,0,0,3,240,126,0,3,255,255,255,192,3,240,126,0,3,255,255,255,192,3,240,126,0,3,250,170,175,192,191,255,255,255,227,240,0,15,192,191,255,255,255,227,240,20,15,192,191,255,255,255,227,240,125,15,192,0,0,252,0,3,240,125,15,192,0,0,252,0,3,240,125,15,192,1,224,252,6,3,240,125,15,192,3,240,252,15,211,240,125,15,192,3,240,252,15,195,240,189,15,192,11,208,252,47,195,240,189,15,192,15,192,252,63,67,240,188,15,192,47,128,252,127,3,240,188,15,192,63,0,252,254,3,240,252,15,192,62,0,254,252,3,240,252,15,192,4,0,255,248,3,241,248,15,192,0,0,15,240,2,162,244,6,128,0,0,63,208,0,3,243,64,0,0,0,255,128,0,11,255,224,0,0,7,254,0,0,31,199,252,0,0,47,248,0,0,191,129,255,64,6,255,208,0,7,254,0,63,208,63,254,0,0,191,248,0,15,244,31,244,0,0,191,208,0,3,240,14,0,0,0,57,0,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x989d 额 + 157,152,35,36,68,37,1,252,0,0,96,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,2,252,0,15,255,255,255,240,0,0,253,0,15,255,255,255,240,63,255,255,255,223,255,255,255,240,63,255,255,255,208,0,189,0,0,63,255,255,255,208,0,252,0,0,63,1,0,11,208,1,248,0,0,63,15,208,11,208,2,244,0,0,47,31,192,11,215,255,255,255,192,0,63,255,253,7,255,255,255,192,0,255,255,255,7,250,170,175,192,3,254,170,254,7,208,0,15,192,15,240,2,252,7,208,104,15,192,127,196,11,244,7,208,189,15,192,63,47,175,224,7,208,188,15,192,8,127,255,192,7,208,188,15,192,0,11,255,128,7,208,252,15,192,0,47,255,248,7,208,252,15,192,2,255,239,255,71,208,252,15,192,47,255,65,255,231,208,252,15,192,63,248,0,47,199,208,252,15,192,47,128,0,6,7,208,252,15,192,26,255,255,253,7,209,248,15,192,1,255,255,253,7,210,248,15,192,1,254,170,253,7,211,244,15,192,1,248,0,189,6,131,240,5,64,1,248,0,189,0,11,226,192,0,1,248,0,189,0,15,215,244,0,1,248,0,189,0,63,199,253,0,1,248,0,189,0,255,0,255,128,1,255,255,253,7,253,0,63,224,1,255,255,254,127,244,0,15,248,1,254,170,254,255,192,0,2,244,1,168,0,189,61,0,0,0,160,0,0,0,0,0,0,0,0,0, + // 0x98ce 风 + 206,152,35,35,59,37,1,252,0,21,85,85,85,85,85,80,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,16,11,240,0,0,63,64,0,0,63,11,240,0,0,63,66,128,0,190,11,240,0,0,63,95,224,0,253,11,240,0,0,63,75,244,1,252,11,240,0,0,63,67,252,3,248,11,240,0,0,63,64,255,3,244,11,240,0,0,63,64,127,139,240,7,240,0,0,127,64,47,239,208,7,240,0,0,127,0,15,255,192,7,240,0,0,127,0,3,255,64,7,240,0,0,127,0,1,255,0,7,240,0,0,191,0,1,255,64,7,240,0,0,191,0,3,255,192,7,240,0,0,191,0,15,255,224,7,240,0,0,254,0,47,235,244,7,240,0,0,254,0,127,195,252,3,240,0,1,253,0,255,1,254,3,240,0,2,252,3,253,0,255,67,240,0,3,252,15,248,0,63,195,244,96,3,248,127,240,0,47,227,244,116,7,244,191,192,0,15,210,248,124,15,240,47,0,0,10,1,252,188,15,224,8,0,0,0,0,253,184,63,208,0,0,0,0,0,255,244,127,192,0,0,0,0,0,127,240,47,64,0,0,0,0,0,47,224,6,0,0,0,0,0,0,6,64,0,0,0,0,0,0,0,0,0, + // 0x9971 饱 + 113,153,35,35,59,37,1,253,0,100,0,0,10,64,0,0,0,0,253,0,0,15,192,0,0,0,0,253,0,0,31,192,0,0,0,0,252,0,0,63,64,0,0,0,1,252,0,0,127,255,255,255,128,2,248,0,0,191,255,255,255,128,3,255,255,224,255,255,255,255,128,3,255,255,227,248,0,0,47,128,7,255,255,215,240,0,0,47,128,11,224,15,207,224,0,0,47,64,15,208,31,191,192,0,0,47,64,31,192,63,191,255,255,244,47,64,63,128,127,63,255,255,244,47,64,127,21,109,45,255,255,244,47,64,190,63,64,5,252,2,244,63,64,44,63,64,1,252,2,244,63,64,4,63,64,1,252,2,244,63,64,0,63,64,1,252,2,244,63,64,0,63,64,1,252,2,244,63,64,0,63,64,1,252,2,244,63,64,0,63,64,1,255,255,244,63,64,0,63,64,1,255,255,244,63,0,0,63,64,1,255,255,244,127,0,0,63,64,1,252,0,191,255,0,0,63,64,1,252,0,63,253,0,0,63,66,65,252,0,63,228,0,0,63,79,129,252,0,0,0,0,0,63,191,193,252,0,0,2,144,0,63,255,65,252,0,0,2,244,0,63,252,1,252,0,0,3,244,0,63,240,0,253,0,0,7,240,0,255,128,0,255,255,255,255,224,0,254,0,0,127,255,255,255,192,0,116,0,0,27,255,255,254,0,0,16,0,0,0,0,0,0,0, + // 0x9a6c 马 + 108,154,32,34,16,37,2,252,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,1,85,85,85,85,87,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,248,0,0,15,224,0,0,3,248,0,0,15,224,0,0,3,244,0,0,15,208,0,0,3,244,0,0,15,208,0,0,3,244,0,0,15,208,0,0,7,240,0,0,15,192,0,0,7,240,0,0,31,192,0,0,7,240,0,0,31,192,0,0,11,240,0,0,47,192,0,0,15,240,0,0,47,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,253,255,255,255,255,255,255,64,253,255,255,255,255,255,255,65,252,255,255,255,255,255,255,65,252,21,85,85,85,85,85,2,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,11,244,0,0,0,0,1,0,31,240,0,0,0,0,3,255,255,224,0,0,0,0,1,255,255,192,0,0,0,0,1,255,254,0,0,0,0,0,0,0,0,0, + // 0x9a71 驱 + 113,154,35,33,41,37,1,253,47,255,255,192,255,255,255,255,240,47,255,255,192,255,255,255,255,240,47,255,255,128,255,255,255,255,240,0,0,31,128,252,0,0,0,0,0,0,31,128,252,0,0,0,0,7,144,31,64,252,0,0,41,0,7,224,47,64,252,24,0,63,64,7,208,47,64,252,189,0,127,0,11,208,47,64,252,191,0,190,0,11,208,47,0,252,63,128,253,0,11,208,63,0,252,31,209,252,0,11,192,63,0,252,11,243,248,0,15,192,63,0,252,3,255,244,0,15,192,63,0,252,1,255,240,0,15,192,62,0,252,0,191,208,0,15,192,127,160,252,0,63,192,0,15,255,255,240,252,0,63,208,0,31,255,255,240,252,0,191,240,0,26,170,171,240,252,0,255,248,0,0,0,3,240,252,3,254,252,0,0,0,3,240,252,7,244,255,0,0,0,3,240,252,15,224,127,64,0,27,227,240,252,63,192,63,192,27,255,227,224,252,191,64,15,208,255,255,151,224,253,254,0,11,192,191,144,7,224,252,124,0,2,0,16,0,11,208,252,0,0,0,0,0,0,15,208,252,0,0,0,0,0,0,15,192,255,255,255,255,244,0,0,47,192,255,255,255,255,244,0,127,255,128,255,255,255,255,244,0,63,255,0,0,0,0,0,0,0,42,164,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,80,0,0,0,7,255,255,255,255,244,0,0,0,7,255,255,255,255,244,0,0,0,7,240,0,0,3,244,0,0,0,7,240,0,0,3,244,0,0,0,7,240,0,0,3,244,0,0,0,7,255,255,255,255,244,0,0,0,7,255,255,255,255,244,0,0,0,1,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,208,0,0,0,0,0,252,0,15,208,0,0,0,0,0,252,0,15,208,5,85,85,84,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,149,85,90,2,252,0,15,208,31,64,0,7,255,252,0,15,208,5,0,0,3,255,248,0,15,208,0,0,0,2,255,144,0, + // 0x9ec4 黄 + 196,158,33,36,68,37,2,252,0,0,63,128,0,127,0,0,0,0,0,63,128,0,127,0,0,0,0,0,63,128,0,127,0,0,0,3,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,0,0,63,128,0,127,0,0,0,0,0,63,128,0,127,0,0,0,0,0,63,128,0,127,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,85,91,249,85,111,208,0,0,253,0,7,244,0,15,208,0,0,253,0,7,244,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,85,91,249,85,95,208,0,0,253,0,7,244,0,15,208,0,0,253,0,7,244,0,15,208,0,0,254,85,91,249,85,111,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,9,0,0,36,0,0,0,0,0,127,128,0,191,144,0,0,0,11,255,208,0,255,254,0,0,1,255,254,0,0,11,255,244,0,127,255,224,0,0,0,127,255,64,63,253,0,0,0,0,2,254,0,15,64,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x9ede 點 + 222,158,35,35,59,37,1,253,0,0,0,0,0,1,252,0,0,5,85,85,85,64,1,252,0,0,15,255,255,255,128,1,252,0,0,15,255,255,255,128,1,252,0,0,15,64,244,15,128,1,252,0,0,15,148,244,143,128,1,252,0,0,15,184,244,255,128,1,252,0,0,15,124,245,223,128,1,252,0,0,15,108,246,207,128,1,255,255,248,15,93,247,143,128,1,255,255,248,15,93,251,79,128,1,255,255,248,15,64,245,15,128,1,252,0,0,15,149,249,95,128,1,252,0,0,15,255,255,255,128,1,252,0,0,15,255,255,255,128,1,252,0,0,0,1,248,0,0,1,252,0,0,0,1,248,0,0,1,252,0,0,10,171,254,170,128,1,252,0,0,31,255,255,255,199,255,255,255,192,31,255,255,255,199,255,255,255,192,0,1,248,0,7,255,255,255,192,0,1,248,0,7,224,0,15,192,0,1,254,191,215,224,0,15,192,63,255,255,255,215,224,0,15,192,63,255,255,255,215,224,0,15,192,63,165,80,0,7,224,0,15,192,0,0,5,62,7,224,0,15,192,6,79,31,31,7,224,0,15,192,11,207,79,15,199,224,0,15,192,15,143,139,135,215,224,0,15,192,15,75,135,195,231,255,255,255,192,31,75,195,193,235,255,255,255,192,63,7,195,128,7,255,255,255,192,189,1,64,0,7,224,0,31,192,24,0,0,0,7,224,0,10,128, + // 0x9f50 齐 + 80,159,34,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,3,248,0,0,15,244,0,0,0,1,254,0,0,47,224,0,0,0,0,127,128,0,191,192,0,0,0,0,47,240,2,255,0,0,0,0,0,11,253,15,252,0,0,0,0,0,1,255,255,240,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,191,255,224,0,0,0,0,0,47,255,255,255,144,0,0,0,107,255,254,27,255,255,164,0,191,255,255,208,0,191,255,255,208,255,255,244,0,0,2,255,255,192,63,251,232,0,0,6,182,191,0,20,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,2,252,0,0,7,240,0,0,0,3,252,0,0,7,240,0,0,0,3,248,0,0,7,240,0,0,0,7,244,0,0,7,240,0,0,0,15,240,0,0,7,240,0,0,0,47,240,0,0,7,240,0,0,0,127,208,0,0,7,240,0,0,2,255,128,0,0,7,240,0,0,31,255,0,0,0,7,240,0,0,11,248,0,0,0,7,240,0,0,2,208,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,7,24,48,37,15,2,31,208,63,240,191,248,127,244,63,240,31,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,208,63,240,191,248,191,244,63,240,31,208, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Symbols_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Symbols_27.cpp new file mode 100644 index 000000000000..e07f03b5aa7a --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Symbols_27.cpp @@ -0,0 +1,38 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium_Symbols 37pt, capital 'A' height: 27px, width: 100% +extern const uint8_t NotoSans_Medium_Symbols_27[118] = { + 130,27,8,0,10,0,35,247, // unifont_t + // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 + 21,45,14,25,2,248,0,11,255,253,0,0,0,31,255,255,0,0,0,47,170,191,64,0,0,46,0,31,64,0,0,46,0,31,64,0,0,47,208,31,64,0,0,46,0,31,64,0,0,46,0,31,64,0,0,46,0,31,64,0,0,46,0,31,64,0,0,47,208,31,64,0,0,46,0,31,64,0,0,46,63,31,64,0,0,47,191,31,64,0,0,47,191,31,64,0,0,46,63,31,64,0,0,46,63,31,64,0,0,46,127,31,64,0,0,47,255,31,64,0,0,46,63,31,64,0,0,46,63,31,64,0,0,46,63,31,64,0,0,47,255,31,64,0,0,47,127,31,64,0,0,46,63,31,64,0,0,46,63,31,64,0,0,63,191,31,128,0,1,255,255,31,240,0,7,244,63,7,248,0,31,192,127,64,253,0,63,67,255,244,63,0,126,15,255,254,31,64,189,47,255,255,15,128,252,63,255,255,143,192,252,63,255,255,139,192,252,63,255,255,139,192,252,47,255,255,79,192,189,15,255,255,15,128,127,7,255,252,47,64,63,128,191,224,127,0,15,224,0,1,252,0,7,253,0,11,244,0,1,255,234,255,208,0,0,47,255,255,0,0,0,2,255,224,0,0, + // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° + 12,12,36,16,2,15,1,170,64,15,255,224,63,255,252,190,0,253,252,0,63,248,0,63,248,0,63,252,0,63,190,0,189,63,235,252,31,255,240,1,254,64, + // 0x0a - replacement for 0x2026 used in Greek language files … + 26,6,42,30,2,255,26,64,1,164,0,26,64,63,208,7,252,0,127,192,127,224,7,253,0,191,208,127,208,7,253,0,191,208,63,192,3,252,0,63,192,5,0,0,80,0,5,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Traditional_Chinese_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Traditional_Chinese_27.cpp new file mode 100644 index 000000000000..e43aee93f3c5 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Traditional_Chinese_27.cpp @@ -0,0 +1,646 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Traditional Chinese 37pt, capital 'A' height: 27px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +extern const uint8_t NotoSans_Medium_Traditional_Chinese_27[20513] = { + 162,27,191,34,26,255,35,247, // unifont_t + // 0x22bf ⊿ + 191,34,29,30,240,37,3,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,2,192,0,0,0,0,0,0,11,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,192,0,0,0,0,0,47,239,192,0,0,0,0,0,191,143,192,0,0,0,0,2,254,15,192,0,0,0,0,11,248,15,192,0,0,0,0,47,224,15,192,0,0,0,0,191,128,15,192,0,0,0,2,254,0,15,192,0,0,0,11,248,0,15,192,0,0,0,31,224,0,15,192,0,0,0,127,128,0,15,192,0,0,1,255,0,0,15,192,0,0,7,252,0,0,15,192,0,0,31,240,0,0,15,192,0,0,127,192,0,0,15,192,0,1,255,0,0,0,15,192,0,7,252,0,0,0,15,192,0,31,240,0,0,0,15,192,0,127,192,0,0,0,15,192,1,255,0,0,0,0,15,192,7,255,255,255,255,255,255,192,31,255,255,255,255,255,255,192,127,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0x4e00 一 + 0,78,35,4,36,37,1,13,63,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244,127,255,255,255,255,255,255,255,244, + // 0x4e09 三 + 9,78,33,30,14,37,2,255,1,85,85,85,85,85,85,80,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,7,255,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,254,0,0,0,63,255,255,255,255,254,0,0,0,63,255,255,255,255,254,0,0,0,26,170,170,170,170,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,21,85,85,85,85,85,85,85,0, + // 0x4e0a 上 + 10,78,33,33,41,37,2,255,0,0,0,5,64,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,255,255,255,248,0,0,0,0,47,255,255,255,248,0,0,0,0,47,255,255,255,248,0,0,0,0,47,229,85,85,80,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,85,85,85,127,229,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x4e0b 下 + 11,78,33,32,32,37,2,253,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,106,170,170,175,250,170,170,170,64,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,232,0,0,0,0,0,0,0,15,255,128,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,15,255,255,64,0,0,0,0,0,15,231,255,240,0,0,0,0,0,15,224,191,254,0,0,0,0,0,15,224,15,255,192,0,0,0,0,15,224,1,255,248,0,0,0,0,15,224,0,63,248,0,0,0,0,15,224,0,11,240,0,0,0,0,15,224,0,1,192,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,208,0,0,0,0, + // 0x4e0d 不 + 13,78,33,33,41,37,2,253,21,85,85,85,85,85,85,85,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,2,255,244,176,0,0,0,0,0,7,255,246,253,0,0,0,0,0,31,255,251,255,128,0,0,0,0,127,247,244,191,240,0,0,0,2,255,199,244,31,253,0,0,0,11,255,7,244,7,255,128,0,0,63,252,7,244,0,255,224,0,1,255,240,7,244,0,47,252,0,15,255,128,7,244,0,11,255,0,191,253,0,7,244,0,2,255,192,255,240,0,7,244,0,0,127,192,63,128,0,7,244,0,0,47,0,28,0,0,7,244,0,0,4,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0, + // 0x4e26 並 + 38,78,33,34,50,37,2,254,0,1,128,0,0,0,228,0,0,0,15,240,0,0,2,254,0,0,0,7,244,0,0,3,252,0,0,0,3,252,0,0,11,244,0,0,0,0,254,0,0,15,240,0,0,0,0,255,0,0,47,192,0,0,0,0,126,0,0,63,128,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,21,85,91,249,91,245,85,85,0,0,0,3,240,7,240,0,0,0,0,0,3,240,7,240,0,0,0,0,0,3,240,7,240,1,0,0,2,240,3,240,7,240,3,248,0,3,244,3,240,7,240,7,244,0,2,248,3,240,7,240,11,240,0,1,252,3,240,7,240,15,240,0,0,253,3,240,7,240,15,208,0,0,190,3,240,7,240,31,192,0,0,127,3,240,7,240,63,192,0,0,63,67,240,7,240,63,64,0,0,63,131,240,7,240,127,0,0,0,47,195,240,7,240,255,0,0,0,31,195,240,7,240,253,0,0,0,31,195,240,7,241,252,0,0,0,9,3,240,7,240,20,0,0,0,0,3,240,7,240,0,0,0,0,0,3,240,7,240,0,0,0,0,0,3,240,7,240,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,106,170,170,170,170,170,170,170,64, + // 0x4e2d 中 + 45,78,31,35,24,37,3,253,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,21,85,85,111,213,85,85,80,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,127,85,85,111,213,85,87,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,255,255,255,255,255,255,244,127,0,0,31,192,0,3,244,127,0,0,31,192,0,3,244,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,31,192,0,0,0, + // 0x4e3b 主 + 59,78,33,34,50,37,2,254,0,0,0,24,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,0,191,192,0,0,0,5,85,85,85,127,85,85,84,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,85,85,91,249,85,85,64,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,85,85,85,85,85,64, + // 0x4e4b 之 + 75,78,35,35,59,37,1,253,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,1,85,85,86,253,85,85,84,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,128,0,0,0,2,0,0,3,254,0,0,0,0,11,240,0,31,248,0,0,0,0,15,240,0,127,224,0,0,0,0,31,224,1,255,128,0,0,0,0,63,224,11,254,0,0,0,0,0,127,240,63,248,0,0,0,0,0,255,253,255,208,0,0,0,0,1,255,255,255,0,0,0,0,0,3,252,191,252,0,0,0,0,0,7,248,63,249,0,0,0,0,0,15,240,11,255,233,64,0,0,0,63,224,1,255,255,255,255,255,244,191,192,0,47,255,255,255,255,240,47,64,0,1,111,255,255,255,224,6,0,0,0,0,5,85,85,64, + // 0x4ea4 交 + 164,78,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,85,85,85,91,249,85,85,85,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,61,0,0,15,128,0,0,0,0,255,128,0,63,240,0,0,0,3,255,0,0,31,253,0,0,0,15,252,0,0,7,255,128,0,0,63,240,0,0,0,255,224,0,1,255,192,0,0,0,47,248,0,11,255,1,0,0,20,11,255,0,127,252,63,0,0,63,130,255,128,127,224,63,128,0,191,64,191,64,15,64,47,192,0,255,0,44,0,4,0,15,224,2,253,0,0,0,0,0,11,244,7,252,0,0,0,0,0,3,252,15,244,0,0,0,0,0,1,255,63,224,0,0,0,0,0,0,191,255,192,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,31,253,0,0,0,0,0,0,0,127,255,64,0,0,0,0,0,2,255,255,240,0,0,0,0,0,47,255,127,254,0,0,0,0,6,255,248,11,255,228,0,0,1,191,255,208,1,255,255,144,0,191,255,253,0,0,47,255,255,128,255,255,208,0,0,2,255,255,192,63,248,0,0,0,0,27,255,0,46,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,213,85,85,85,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,213,85,85,85,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,170,170,170,170,170,170,191,64,126,0,0,0,0,0,0,63,64,126,0,31,192,7,244,0,63,64,126,0,31,192,7,244,0,63,64,126,0,47,192,7,244,0,63,64,0,0,63,192,7,244,0,0,0,0,0,63,128,7,244,0,0,0,0,0,191,64,7,244,0,0,0,0,0,255,0,7,244,0,13,0,0,3,253,0,7,244,0,15,192,0,47,252,0,7,244,0,31,192,6,255,240,0,3,248,0,47,192,255,255,128,0,3,255,255,255,64,191,248,0,0,2,255,255,255,0,62,64,0,0,0,191,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,35,35,59,37,1,253,0,0,0,3,253,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,254,3,255,0,0,0,0,0,15,252,0,255,192,0,0,0,0,63,240,0,63,240,0,0,0,1,255,192,0,15,253,0,0,0,11,255,0,0,3,255,128,0,0,47,248,0,0,0,191,240,0,1,255,255,255,255,255,239,253,0,11,255,79,255,255,255,199,255,208,127,253,15,255,255,255,193,255,248,63,240,0,0,0,0,0,63,240,31,128,0,0,0,0,0,11,208,9,0,0,0,0,0,0,1,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,7,240,0,0,0,0,63,128,0,11,240,0,0,0,0,63,128,47,255,240,0,0,0,0,63,128,15,255,224,0,0,0,0,63,128,15,255,128,0,0,0,0,63,128,1,64,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0, + // 0x4ef6 件 + 246,78,35,35,59,37,1,253,0,0,80,0,0,21,0,0,0,0,0,254,0,0,63,64,0,0,0,1,253,7,144,63,64,0,0,0,2,252,11,240,63,64,0,0,0,3,248,15,224,63,64,0,0,0,11,240,15,208,63,64,0,0,0,15,224,15,192,63,64,0,0,0,47,192,47,213,127,149,85,0,0,63,128,63,255,255,255,255,128,0,255,0,63,255,255,255,255,128,2,255,0,191,255,255,255,255,128,3,255,0,254,0,63,64,0,0,15,255,1,252,0,63,64,0,0,47,255,3,252,0,63,64,0,0,191,255,7,244,0,63,64,0,0,127,127,1,240,0,63,64,0,0,62,63,0,0,0,63,64,0,0,28,63,0,0,0,63,64,0,0,0,63,1,85,85,127,149,85,80,0,63,3,255,255,255,255,255,244,0,63,3,255,255,255,255,255,244,0,63,3,255,255,255,255,255,244,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0, + // 0x4efd 份 + 253,78,35,35,59,37,1,253,0,0,160,0,0,0,0,0,0,0,0,253,0,31,255,255,0,0,0,2,252,0,31,255,255,0,0,0,3,248,0,31,255,255,64,0,0,7,244,2,64,0,47,192,0,0,15,240,7,240,0,31,192,0,0,31,208,11,240,0,15,224,0,0,63,192,15,208,0,15,240,0,0,191,64,47,192,0,7,244,0,1,255,0,63,128,0,3,252,0,3,255,0,191,0,0,1,254,0,11,255,1,253,0,0,0,255,64,31,255,3,252,0,0,0,127,192,127,255,11,240,0,0,0,47,244,255,255,31,224,0,0,0,15,248,255,127,63,255,255,255,255,251,240,124,63,15,47,255,255,255,244,192,32,63,0,47,255,255,255,244,0,0,63,0,0,31,208,3,244,0,0,63,0,0,31,192,3,244,0,0,63,0,0,31,192,3,244,0,0,63,0,0,47,128,3,240,0,0,63,0,0,63,128,7,240,0,0,63,0,0,63,64,7,240,0,0,63,0,0,127,0,7,240,0,0,63,0,0,254,0,7,240,0,0,63,0,1,252,0,7,240,0,0,63,0,3,252,0,11,240,0,0,63,0,11,244,0,11,240,0,0,63,0,31,240,0,15,224,0,0,63,0,191,192,0,31,224,0,0,63,3,255,0,47,255,208,0,0,63,3,252,0,15,255,192,0,0,63,1,240,0,15,255,0,0,0,42,0,64,0,1,64,0,0, + // 0x4f11 休 + 17,79,35,35,59,37,1,253,0,0,20,0,0,21,0,0,0,0,0,63,128,0,127,0,0,0,0,0,127,64,0,127,0,0,0,0,0,255,0,0,127,0,0,0,0,1,254,0,0,127,0,0,0,0,3,252,0,0,127,0,0,0,0,7,248,0,0,127,0,0,0,0,15,240,0,0,127,0,0,0,0,47,224,0,0,127,0,0,0,0,127,193,85,85,191,85,85,80,0,255,199,255,255,255,255,255,240,2,255,199,255,255,255,255,255,240,11,255,199,255,255,255,255,255,240,47,255,192,0,7,255,240,0,0,127,255,192,0,11,255,244,0,0,255,223,192,0,15,255,252,0,0,127,31,192,0,47,255,253,0,0,60,31,192,0,63,255,191,0,0,16,31,192,0,191,191,63,64,0,0,31,192,0,253,127,47,192,0,0,31,192,3,252,127,15,208,0,0,31,192,7,244,127,11,240,0,0,31,192,15,240,127,3,252,0,0,31,192,63,208,127,2,254,0,0,31,192,191,128,127,0,255,64,0,31,194,255,0,127,0,127,208,0,31,203,252,0,127,0,47,240,0,31,239,244,0,127,0,15,252,0,31,207,224,0,127,0,3,240,0,31,195,128,0,127,0,0,192,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0, + // 0x4f4d 位 + 77,79,35,35,59,37,1,253,0,0,36,0,0,42,0,0,0,0,0,191,0,0,127,0,0,0,0,0,254,0,0,127,0,0,0,0,2,252,0,0,127,0,0,0,0,3,248,0,0,127,0,0,0,0,11,240,0,0,127,0,0,0,0,15,224,0,0,127,0,0,0,0,63,194,255,255,255,255,255,240,0,127,130,255,255,255,255,255,240,0,255,130,255,255,255,255,255,240,3,255,128,85,85,85,85,85,64,11,255,128,0,0,0,0,0,0,31,255,128,0,64,0,2,144,0,127,255,128,11,224,0,3,252,0,255,175,128,7,240,0,3,248,0,191,47,128,3,240,0,7,244,0,60,47,128,3,244,0,11,240,0,32,47,128,3,248,0,15,240,0,0,47,128,2,252,0,15,224,0,0,47,128,1,252,0,15,208,0,0,47,128,0,252,0,31,192,0,0,47,128,0,253,0,47,192,0,0,47,128,0,253,0,63,128,0,0,47,128,0,254,0,63,64,0,0,47,128,0,191,0,127,0,0,0,47,128,0,127,0,191,0,0,0,47,128,0,127,0,254,0,0,0,47,128,0,127,0,252,0,0,0,47,128,0,16,1,252,0,0,0,47,128,0,0,3,248,0,0,0,47,135,255,255,255,255,255,248,0,47,135,255,255,255,255,255,248,0,47,135,255,255,255,255,255,248,0,47,129,85,85,85,85,85,80,0,47,64,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,35,35,59,37,1,253,0,0,80,0,0,0,0,0,0,0,0,253,0,0,0,0,36,0,0,1,252,0,0,0,27,253,0,0,3,248,0,1,111,255,255,64,0,7,244,122,255,255,255,249,0,0,15,240,127,255,255,249,0,0,0,31,208,127,254,155,240,0,0,0,63,192,127,0,7,240,0,0,0,191,64,127,0,7,240,0,0,0,255,0,127,0,7,240,0,0,3,255,0,127,0,7,240,0,0,11,255,0,127,0,7,240,0,0,31,255,0,127,0,3,240,0,0,63,255,0,127,255,255,255,255,244,255,255,0,127,255,255,255,255,244,255,127,0,127,255,255,255,255,244,124,63,0,127,0,3,248,0,0,52,63,0,127,0,2,252,0,0,0,63,0,127,0,2,252,0,0,0,63,0,127,0,1,252,0,0,0,63,0,127,0,0,252,0,0,0,63,0,127,0,0,253,0,0,0,63,0,127,0,0,254,0,0,0,63,0,127,0,4,191,0,0,0,63,0,127,91,254,127,0,0,0,63,5,255,255,254,63,64,64,0,63,15,255,255,254,63,192,184,0,63,11,255,250,64,31,192,188,0,63,7,229,0,0,15,224,252,0,63,0,0,0,0,11,244,252,0,63,0,0,0,0,3,255,248,0,63,3,255,255,255,245,255,244,0,63,3,255,255,255,244,127,224,0,63,3,255,255,255,244,6,64,0,63,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,35,35,59,37,1,253,0,0,36,0,5,0,0,0,0,0,0,127,0,15,208,0,0,0,0,0,255,0,31,192,0,0,0,0,1,253,0,63,128,0,0,0,0,3,252,0,127,64,0,0,0,0,7,248,0,255,0,0,0,0,0,15,240,0,255,255,255,255,248,0,31,208,2,255,255,255,255,248,0,63,192,3,255,255,255,255,248,0,191,192,15,245,254,85,85,80,0,255,192,31,208,254,0,0,0,3,255,192,63,192,254,0,0,0,11,255,192,191,64,254,0,0,0,31,255,193,255,0,254,0,0,0,63,255,195,252,0,254,0,0,0,127,255,199,248,0,255,255,255,224,63,47,192,240,0,255,255,255,224,29,47,192,0,0,255,255,255,224,4,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,255,255,255,240,0,47,192,0,0,255,255,255,240,0,47,192,0,0,255,255,255,240,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,192,0,0,254,0,0,0,0,47,128,0,0,254,0,0,0, + // 0x4f9b 供 + 155,79,35,35,59,37,1,253,0,0,96,0,168,0,10,128,0,0,0,254,0,253,0,31,192,0,0,1,253,0,253,0,31,192,0,0,2,252,0,253,0,31,192,0,0,3,248,0,253,0,31,192,0,0,11,240,0,253,0,31,192,0,0,15,224,0,253,0,31,192,0,0,47,192,0,253,0,31,192,0,0,127,129,255,255,255,255,255,240,0,255,1,255,255,255,255,255,240,2,255,1,255,255,255,255,255,240,7,255,0,85,254,85,111,213,80,15,255,0,0,253,0,31,192,0,63,255,0,0,253,0,31,192,0,255,255,0,0,253,0,31,192,0,191,127,0,0,253,0,31,192,0,61,63,0,0,253,0,31,192,0,36,63,0,0,253,0,31,192,0,0,63,0,0,253,0,31,192,0,0,63,1,85,254,85,111,213,80,0,63,7,255,255,255,255,255,244,0,63,7,255,255,255,255,255,244,0,63,7,255,255,255,255,255,244,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,185,0,7,64,0,0,63,0,0,254,0,47,192,0,0,63,0,3,252,0,15,240,0,0,63,0,11,244,0,7,252,0,0,63,0,47,224,0,2,254,0,0,63,0,191,192,0,0,191,64,0,63,2,255,0,0,0,63,192,0,63,11,253,0,0,0,15,240,0,63,2,244,0,0,0,11,208,0,63,0,80,0,0,0,2,0, + // 0x4fdd 保 + 221,79,35,35,59,37,1,253,0,0,32,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,63,255,255,255,255,64,0,1,253,63,255,255,255,255,64,0,3,252,63,255,255,255,255,64,0,7,244,63,64,0,0,63,64,0,15,240,63,64,0,0,63,64,0,47,208,63,64,0,0,63,64,0,63,192,63,64,0,0,63,64,0,255,128,63,64,0,0,63,64,2,255,128,63,64,0,0,63,64,7,255,128,63,255,255,255,255,64,15,255,128,63,255,255,255,255,64,63,255,128,63,255,255,255,255,64,255,239,128,0,0,63,64,0,0,127,47,128,0,0,63,64,0,0,61,47,128,0,0,63,64,0,0,20,47,128,0,0,63,64,0,0,0,47,135,255,255,255,255,255,240,0,47,135,255,255,255,255,255,240,0,47,135,255,255,255,255,255,240,0,47,128,0,7,255,244,0,0,0,47,128,0,15,255,252,0,0,0,47,128,0,47,255,254,0,0,0,47,128,0,191,191,127,128,0,0,47,128,1,254,63,111,208,0,0,47,128,7,252,63,79,244,0,0,47,128,47,240,63,67,253,0,0,47,128,191,208,63,65,255,64,0,47,135,255,64,63,64,127,224,0,47,159,253,0,63,64,31,252,0,47,139,244,0,63,64,7,244,0,47,131,192,0,63,64,1,208,0,47,128,0,0,63,64,0,0,0,47,64,0,0,63,0,0,0, + // 0x4fe1 信 + 225,79,35,35,59,37,1,253,0,0,32,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,11,255,255,255,252,0,0,1,253,11,255,255,255,252,0,0,3,252,11,255,255,255,252,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,211,255,255,255,255,255,248,0,63,131,255,255,255,255,255,248,0,255,131,255,255,255,255,255,244,2,255,128,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,31,255,128,15,255,255,255,254,0,63,255,128,15,255,255,255,255,0,255,239,128,15,255,255,255,255,0,191,47,128,0,0,0,0,0,0,61,47,128,0,0,0,0,0,0,56,47,128,0,0,0,0,0,0,0,47,128,15,255,255,255,254,0,0,47,128,15,255,255,255,254,0,0,47,128,10,170,170,170,170,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,234,170,170,255,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,128,0,0,63,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,255,255,255,255,0,0,47,128,47,128,0,0,63,0,0,26,64,47,128,0,0,42,0, + // 0x500b 個 + 11,80,34,36,68,37,1,252,0,2,144,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,241,255,255,255,255,255,208,0,11,241,255,255,255,255,255,208,0,15,209,255,255,255,255,255,208,0,47,193,252,0,0,0,15,208,0,63,129,252,0,63,0,15,208,0,127,1,252,0,63,0,15,208,0,255,1,252,0,63,0,15,208,2,255,1,252,0,63,0,15,208,3,255,1,252,106,191,170,143,208,11,255,1,252,255,255,255,207,208,31,255,1,252,255,255,255,207,208,63,255,1,252,0,63,0,15,208,255,255,1,252,0,63,0,15,208,255,191,1,252,0,63,0,15,208,188,127,1,252,0,63,0,15,208,52,127,1,252,47,255,254,15,208,16,127,1,252,47,255,254,15,208,0,127,1,252,47,85,126,15,208,0,127,1,252,47,0,62,15,208,0,127,1,252,47,0,62,15,208,0,127,1,252,47,0,62,15,208,0,127,1,252,47,0,62,15,208,0,127,1,252,47,85,126,15,208,0,127,1,252,47,255,254,15,208,0,127,1,252,47,255,254,15,208,0,127,1,252,0,0,0,15,208,0,127,1,252,0,0,0,15,208,0,127,1,252,0,0,0,15,208,0,127,1,255,255,255,255,255,208,0,127,1,255,255,255,255,255,208,0,127,1,255,255,255,255,255,208,0,127,1,252,0,0,0,15,208,0,127,1,252,0,0,0,10,128,0,0,0,0,0,0,0,0,0, + // 0x503c 值 + 60,80,35,35,59,37,1,253,0,0,80,0,0,58,64,0,0,0,0,253,0,0,63,64,0,0,0,1,252,0,0,127,0,0,0,0,3,248,0,0,127,0,0,0,0,3,246,255,255,255,255,255,208,0,11,242,255,255,255,255,255,208,0,15,210,255,255,255,255,255,208,0,47,192,0,0,252,0,0,0,0,127,64,0,1,252,0,0,0,0,255,0,0,1,248,0,0,0,2,255,0,63,255,255,255,253,0,3,255,0,63,255,255,255,253,0,15,255,0,63,170,170,170,253,0,47,255,0,63,0,0,0,253,0,127,255,0,63,0,0,0,253,0,191,191,0,63,149,85,85,253,0,62,127,0,63,255,255,255,253,0,28,127,0,63,255,255,255,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,149,85,85,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,255,255,255,253,0,0,127,0,63,149,85,85,253,0,0,127,0,63,0,0,0,253,0,0,127,0,63,0,0,0,253,0,0,127,31,255,255,255,255,255,244,0,127,31,255,255,255,255,255,244,0,127,31,255,255,255,255,255,244,0,127,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,35,35,59,37,1,253,0,1,64,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,243,255,255,255,255,255,244,0,11,227,255,255,255,255,255,244,0,15,211,255,255,255,255,255,244,0,47,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,0,106,170,170,170,170,128,0,255,0,191,255,255,255,255,192,1,254,0,191,255,255,255,255,192,3,254,0,189,0,0,0,31,192,11,254,0,189,0,0,0,31,192,31,254,0,189,0,0,0,31,192,63,254,0,191,170,170,170,191,192,191,254,0,191,255,255,255,255,192,255,190,0,191,255,255,255,255,192,188,190,0,253,0,0,0,0,0,52,190,0,253,0,0,0,0,0,16,190,0,255,170,170,170,170,144,0,190,0,255,255,255,255,255,224,0,190,0,255,255,255,255,255,224,0,190,0,255,208,244,46,7,224,0,190,1,255,208,244,46,7,224,0,190,2,255,208,244,46,7,224,0,190,3,255,208,244,46,7,224,0,190,3,251,255,255,255,255,224,0,190,7,251,255,255,255,255,224,0,190,11,235,250,254,191,175,224,0,190,15,219,208,244,46,7,224,0,190,47,203,208,244,46,7,224,0,190,127,75,208,244,46,7,224,0,190,191,11,208,244,46,7,224,0,190,45,11,208,244,46,191,224,0,190,4,11,208,244,46,127,208,0,126,0,11,192,164,41,62,64, + // 0x505c 停 + 92,80,35,35,59,37,1,253,0,0,80,0,0,42,0,0,0,0,0,253,0,0,127,0,0,0,0,1,252,0,0,127,0,0,0,0,3,252,0,0,127,0,0,0,0,7,247,255,255,255,255,255,244,0,15,243,255,255,255,255,255,244,0,31,211,255,255,255,255,255,244,0,63,192,0,0,0,0,0,0,0,127,64,5,85,85,85,84,0,0,255,0,31,255,255,255,254,0,3,255,0,31,255,255,255,254,0,7,255,0,31,128,0,0,254,0,31,255,0,31,128,0,0,254,0,63,255,0,31,213,85,85,254,0,255,255,0,31,255,255,255,254,0,255,127,0,31,255,255,255,254,0,124,63,0,0,0,0,0,0,0,52,63,0,0,0,0,0,0,0,0,63,15,255,255,255,255,255,248,0,63,15,255,255,255,255,255,248,0,63,15,250,170,170,170,171,248,0,63,15,192,0,0,0,1,248,0,63,15,192,0,0,0,1,248,0,63,15,195,255,255,255,245,248,0,63,15,195,255,255,255,245,248,0,63,0,3,255,255,255,240,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,1,255,255,0,0,0,0,63,0,0,255,254,0,0,0,0,63,0,0,191,244,0,0,0, + // 0x5075 偵 + 117,80,34,36,68,37,1,252,0,0,36,0,0,191,0,0,0,0,0,191,0,0,191,0,0,0,0,0,254,0,0,191,0,0,0,0,1,252,0,0,191,255,255,224,0,3,248,0,0,191,255,255,240,0,11,244,0,0,191,255,255,240,0,15,240,0,0,191,0,0,0,0,47,208,0,0,191,0,0,0,0,127,192,0,0,191,0,0,0,0,255,128,63,255,255,255,255,0,2,255,128,63,255,255,255,255,0,7,255,128,63,170,170,170,255,0,31,255,128,63,0,0,0,127,0,127,255,128,63,0,0,0,127,0,255,175,128,63,255,255,255,255,0,191,47,128,63,255,255,255,255,0,60,47,128,63,170,170,170,191,0,36,47,128,63,0,0,0,127,0,0,47,128,63,0,0,0,127,0,0,47,128,63,149,85,85,191,0,0,47,128,63,255,255,255,255,0,0,47,128,63,255,255,255,255,0,0,47,128,63,0,0,0,127,0,0,47,128,63,0,0,0,127,0,0,47,128,63,0,0,0,127,0,0,47,128,63,255,255,255,255,0,0,47,128,63,255,255,255,255,0,0,47,128,42,170,170,170,170,0,0,47,128,0,36,0,6,0,0,0,47,128,0,255,64,63,208,0,0,47,128,7,255,0,47,252,0,0,47,128,127,248,0,7,255,64,0,47,135,255,208,0,0,191,224,0,47,135,254,0,0,0,31,240,0,47,128,244,0,0,0,7,64,0,0,0,0,0,0,0,0,0, + // 0x5099 備 + 153,80,35,36,68,37,1,252,0,2,144,0,189,0,31,128,0,0,3,244,0,253,0,31,192,0,0,7,240,0,253,0,31,192,0,0,15,231,255,255,255,255,255,244,0,15,199,255,255,255,255,255,244,0,47,199,255,255,255,255,255,244,0,63,64,0,253,0,31,192,0,0,191,0,0,253,0,31,192,0,0,254,0,0,189,0,31,192,0,2,254,0,0,0,0,0,0,0,3,254,3,255,255,255,255,255,248,15,254,3,255,255,255,255,255,248,31,254,3,255,255,255,255,255,248,63,254,3,240,0,0,0,0,0,255,254,3,240,0,0,0,0,0,255,190,3,240,0,0,0,0,0,124,190,3,240,255,255,255,255,224,52,190,3,240,255,255,255,255,224,16,190,3,240,254,171,250,171,224,0,190,3,240,252,2,240,7,224,0,190,3,240,252,2,240,7,224,0,190,3,240,253,87,245,91,224,0,190,3,240,255,255,255,255,224,0,190,3,240,255,255,255,255,224,0,190,7,240,252,2,240,7,224,0,190,7,224,252,2,240,7,224,0,190,11,224,253,87,245,91,224,0,190,15,208,255,255,255,255,224,0,190,15,192,255,255,255,255,224,0,190,31,192,252,2,240,7,224,0,190,47,128,252,2,240,7,224,0,190,63,64,252,2,240,7,224,0,190,191,0,252,2,241,175,224,0,190,61,0,252,2,241,255,208,0,190,8,0,168,1,80,255,64,0,0,0,0,0,0,0,0,0, + // 0x50b3 傳 + 179,80,35,35,59,37,1,253,0,0,80,0,0,42,0,0,0,0,0,253,0,0,63,0,0,0,0,1,252,0,0,63,0,0,0,0,3,251,255,255,255,255,255,240,0,7,247,255,255,255,255,255,240,0,15,226,170,170,191,170,170,160,0,31,192,0,0,63,0,0,0,0,63,128,191,255,255,255,255,192,0,191,0,191,255,255,255,255,192,1,255,0,190,0,127,0,47,192,3,255,0,190,0,63,0,31,192,11,255,0,191,255,255,255,255,192,47,255,0,191,255,255,255,255,192,127,255,0,190,0,63,0,31,192,255,191,0,190,0,63,0,31,192,190,63,0,191,255,255,255,255,192,60,63,0,191,255,255,255,255,192,48,63,0,0,0,127,3,252,0,0,63,0,0,0,63,0,255,0,0,63,1,85,85,191,85,191,128,0,63,3,255,255,255,255,255,224,0,63,3,255,255,255,255,255,244,0,63,1,85,80,0,15,225,240,0,63,0,0,0,0,15,224,64,0,63,15,255,255,255,255,255,248,0,63,15,255,255,255,255,255,248,0,63,10,171,234,170,175,250,164,0,63,0,11,208,0,15,224,0,0,63,0,15,244,0,15,224,0,0,63,0,3,253,0,15,224,0,0,63,0,0,255,0,15,224,0,0,63,0,0,63,64,15,224,0,0,63,0,0,28,47,255,208,0,0,63,0,0,0,31,255,192,0,0,63,0,0,0,15,250,0,0, + // 0x50be 傾 + 190,80,35,36,68,37,1,252,0,1,0,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,15,208,0,63,255,255,255,244,0,31,192,0,63,255,255,255,244,0,47,143,192,63,255,255,255,244,0,63,15,192,0,0,253,0,0,0,127,15,192,0,1,252,0,0,0,253,15,192,6,171,254,170,128,1,253,15,192,11,255,255,255,192,3,253,15,193,203,255,255,255,192,7,253,15,195,251,208,0,15,192,15,253,15,207,255,208,0,15,192,31,253,15,239,219,208,0,15,192,63,253,15,255,11,229,85,95,192,255,253,15,252,11,255,255,255,192,254,253,15,240,11,255,255,255,192,188,253,15,192,11,208,0,15,192,52,253,15,192,11,208,0,15,192,16,253,15,192,11,208,0,15,192,0,253,15,192,11,255,255,255,192,0,253,15,192,11,255,255,255,192,0,253,15,192,219,229,85,95,192,0,253,15,192,255,208,0,15,192,0,253,15,192,255,208,0,15,192,0,253,15,193,255,208,0,15,192,0,253,15,193,255,255,255,255,192,0,253,15,255,251,255,255,255,192,0,253,15,255,230,170,170,170,128,0,253,3,255,128,36,0,32,0,0,253,0,0,0,254,2,252,0,0,253,0,0,7,254,1,255,64,0,253,0,0,127,248,0,127,208,0,253,0,3,255,208,0,15,244,0,253,0,2,254,0,0,3,244,0,253,0,0,224,0,0,0,192,0,0,0,0,0,0,0,0,0, + // 0x5132 儲 + 50,81,35,36,68,37,1,252,0,6,64,0,0,2,244,0,0,0,11,230,170,164,2,244,3,224,0,15,203,255,248,2,244,7,240,0,31,203,255,248,2,244,11,208,0,63,64,0,0,107,254,159,192,0,63,0,0,0,191,255,239,128,0,190,42,170,170,191,255,255,64,0,253,63,255,255,2,244,127,0,2,252,63,255,255,2,244,253,0,3,252,0,0,0,2,245,252,0,11,252,0,0,0,2,247,244,0,31,252,10,170,168,255,255,255,244,63,252,15,255,253,255,255,255,248,191,252,15,255,253,255,255,255,248,255,252,0,0,0,0,191,40,0,188,252,0,0,0,2,252,191,0,52,252,0,0,0,7,244,47,128,16,252,15,255,252,31,208,11,0,0,252,15,255,252,191,255,255,192,0,252,10,170,170,255,255,255,192,0,252,0,0,7,255,255,255,192,0,252,0,0,1,251,208,15,192,0,252,15,255,253,71,208,15,192,0,252,15,255,253,7,208,15,192,0,252,15,234,253,7,250,175,192,0,252,15,128,125,7,255,255,192,0,252,15,128,125,7,255,255,192,0,252,15,128,125,7,208,15,192,0,252,15,128,125,7,208,15,192,0,252,15,128,125,7,208,15,192,0,252,15,255,253,7,208,15,192,0,252,15,255,253,7,255,255,192,0,252,15,234,169,7,255,255,192,0,252,15,128,0,7,255,255,192,0,188,10,64,0,7,208,15,192,0,0,0,0,0,0,0,0,0, + // 0x5145 充 + 69,81,34,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,244,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,11,244,0,4,0,0,0,0,0,15,240,0,63,0,0,0,0,0,47,192,0,191,192,0,0,0,0,63,128,0,47,244,0,0,0,0,191,0,0,11,253,0,0,0,0,254,0,0,1,255,64,0,10,171,255,175,255,255,255,208,0,31,255,255,255,255,255,255,244,0,15,255,255,255,255,255,255,252,0,15,255,254,170,149,80,2,255,0,0,0,0,0,0,0,0,253,0,0,0,15,208,2,252,0,48,0,0,0,31,208,2,252,0,0,0,0,0,31,208,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,127,64,2,252,0,4,0,0,0,255,0,2,252,0,11,128,0,1,255,0,2,252,0,11,208,0,3,253,0,2,252,0,15,208,0,31,248,0,2,252,0,15,208,0,191,240,0,2,252,0,15,192,27,255,192,0,1,253,64,111,192,255,254,0,0,1,255,255,255,128,127,224,0,0,0,255,255,255,0,62,0,0,0,0,47,255,249,0,0,0,0,0,0,0,0,0,0, + // 0x5148 先 + 72,81,33,36,68,37,2,252,0,0,0,3,240,0,0,0,0,0,7,224,3,244,0,0,0,0,0,11,240,3,244,0,0,0,0,0,15,224,3,244,0,0,0,0,0,15,208,3,244,0,0,0,0,0,47,213,87,245,85,85,80,0,0,63,255,255,255,255,255,240,0,0,127,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,1,253,0,3,244,0,0,0,0,3,252,0,3,244,0,0,0,0,7,248,0,3,244,0,0,0,0,15,240,0,3,244,0,0,0,0,7,208,0,3,244,0,0,0,0,0,64,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,21,85,111,213,87,253,85,85,64,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,63,128,2,252,0,0,0,0,0,63,64,2,252,0,0,0,0,0,191,0,2,252,0,0,0,0,0,255,0,2,252,0,0,0,0,2,253,0,2,252,0,14,64,0,3,252,0,2,252,0,15,192,0,15,244,0,2,252,0,15,192,0,127,240,0,2,252,0,31,192,2,255,192,0,2,252,0,47,128,111,255,0,0,1,255,255,255,128,255,248,0,0,0,255,255,255,0,63,208,0,0,0,127,255,253,0,29,0,0,0,0,0,85,64,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,35,36,68,37,1,252,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,64,0,0,109,0,1,252,0,2,248,0,0,191,0,1,252,0,3,252,0,0,63,128,1,252,0,7,248,0,0,47,192,1,252,0,15,240,0,0,15,224,1,252,0,15,224,0,0,11,240,1,252,0,47,192,0,0,3,248,1,252,0,63,128,0,0,3,252,1,252,0,255,0,0,0,1,253,1,252,1,253,0,0,0,0,228,1,252,0,104,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,21,85,91,245,85,255,85,85,80,0,0,11,240,0,191,0,0,0,0,0,11,240,0,191,0,0,0,0,0,15,240,0,191,0,0,0,0,0,15,224,0,191,0,0,0,0,0,15,208,0,191,0,0,0,0,0,31,208,0,191,0,0,0,0,0,63,192,0,191,0,0,0,0,0,63,128,0,191,0,1,0,0,0,255,64,0,191,0,2,208,0,1,255,0,0,191,0,3,244,0,7,253,0,0,191,0,3,244,0,31,248,0,0,191,0,3,244,0,255,240,0,0,191,0,3,240,27,255,192,0,0,191,64,11,240,127,254,0,0,0,127,255,255,224,47,240,0,0,0,63,255,255,192,14,0,0,0,0,11,255,254,64,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,34,33,41,37,2,253,0,1,85,85,84,0,0,0,0,0,7,255,255,252,0,0,0,0,0,7,255,255,252,0,0,0,0,0,7,255,255,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,10,253,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,47,255,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,64,0,0,0,0,0,0,191,191,128,0,0,0,0,0,0,255,47,192,0,0,0,0,0,0,255,31,208,0,0,0,0,0,2,253,15,240,0,0,0,0,0,3,252,11,244,0,0,0,0,0,11,248,7,248,0,0,0,0,0,15,240,3,253,0,0,0,0,0,47,224,1,255,0,0,0,0,0,127,192,0,255,128,0,0,0,0,255,64,0,127,208,0,0,0,2,255,0,0,47,240,0,0,0,11,253,0,0,15,252,0,0,0,47,248,0,0,3,255,0,0,0,191,224,0,0,1,255,192,0,2,255,192,0,0,0,127,244,0,31,255,0,0,0,0,47,254,0,191,252,0,0,0,0,7,255,208,255,224,0,0,0,0,1,255,192,63,64,0,0,0,0,0,63,0,8,0,0,0,0,0,0,8,0, + // 0x5168 全 + 104,81,35,34,50,37,1,254,0,0,0,3,253,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,255,3,254,0,0,0,0,0,15,252,1,255,128,0,0,0,0,63,240,0,127,240,0,0,0,0,255,208,0,31,252,0,0,0,7,255,64,0,7,255,64,0,0,31,253,0,0,0,255,224,0,0,191,240,0,0,0,63,253,0,7,255,192,0,0,0,11,255,192,63,254,0,0,0,0,2,255,244,127,247,255,255,255,255,255,175,240,31,71,255,255,255,255,255,71,208,8,7,255,255,255,255,255,64,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,253,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192, + // 0x5171 共 + 113,81,33,35,59,37,2,253,0,0,169,0,0,26,128,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,5,85,255,85,85,127,213,85,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,85,85,255,85,85,127,213,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,45,0,0,0,0,0,191,192,0,255,128,0,0,0,2,255,64,0,127,240,0,0,0,15,253,0,0,15,253,0,0,0,63,244,0,0,3,255,128,0,1,255,208,0,0,0,191,240,0,15,255,0,0,0,0,31,252,0,127,248,0,0,0,0,7,255,0,47,208,0,0,0,0,0,254,0,6,0,0,0,0,0,0,48,0, + // 0x5177 具 + 119,81,33,34,50,37,2,253,0,26,170,170,170,170,170,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,234,170,170,170,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,234,170,170,170,255,0,0,0,47,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,47,234,170,170,170,255,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,47,64,0,62,0,0,0,0,2,255,224,1,255,228,0,0,0,111,255,128,0,191,255,128,0,11,255,248,0,0,7,255,248,0,191,255,128,0,0,0,111,255,128,63,244,0,0,0,0,2,255,0,14,0,0,0,0,0,0,56,0, + // 0x5197 冗 + 151,81,34,33,41,37,2,253,21,85,85,85,85,85,85,85,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,63,128,0,0,0,0,0,191,0,42,64,191,255,255,255,128,106,0,0,0,191,255,255,255,128,0,0,0,0,191,255,255,255,128,0,0,0,0,191,0,0,127,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,1,253,0,0,63,128,4,0,0,3,252,0,0,63,128,15,64,0,7,248,0,0,63,128,15,224,0,15,240,0,0,63,128,15,208,0,63,224,0,0,63,128,15,208,1,255,192,0,0,63,128,15,192,11,255,0,0,0,63,192,31,192,191,252,0,0,0,63,255,255,192,255,240,0,0,0,47,255,255,64,63,64,0,0,0,15,255,254,0,36,0,0,0,0,0,85,80,0, + // 0x51b7 冷 + 183,81,35,35,59,37,1,253,0,0,0,0,2,248,0,0,0,0,0,0,0,7,254,0,0,0,7,0,0,0,15,255,64,0,0,15,208,0,0,47,255,208,0,0,63,248,0,0,191,143,240,0,0,11,255,0,1,255,7,252,0,0,2,255,192,3,252,2,255,0,0,0,127,208,15,244,0,191,208,0,0,31,128,127,208,0,47,244,0,0,6,1,255,128,0,11,254,0,0,0,7,254,0,0,2,255,208,0,0,47,251,255,255,254,127,248,0,1,255,227,255,255,254,31,244,0,0,255,67,255,255,254,3,224,0,0,124,0,0,0,0,0,128,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,66,255,255,255,255,255,0,0,7,210,255,255,255,255,255,0,0,15,242,255,255,255,255,255,0,0,47,208,0,31,208,0,191,0,0,63,192,0,31,192,0,191,0,0,255,64,0,31,192,0,191,0,1,254,0,0,31,192,0,191,0,3,252,0,0,31,192,0,191,0,11,248,0,0,31,192,0,191,0,31,240,0,0,31,192,0,191,0,63,208,0,0,31,192,255,254,0,127,192,0,0,31,192,191,253,0,31,64,0,0,31,192,127,248,0,6,0,0,0,31,192,20,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0, + // 0x51c6 准 + 198,81,35,35,59,37,1,253,0,0,0,0,164,0,25,0,0,0,0,0,0,254,0,63,192,0,2,0,0,1,252,0,63,64,0,11,224,0,3,248,0,127,0,0,31,252,0,7,244,0,254,0,0,7,255,64,15,240,0,252,0,0,0,255,208,31,208,2,252,0,0,0,47,240,63,255,255,255,255,224,0,11,192,127,255,255,255,255,224,0,2,64,255,255,255,255,255,224,0,0,2,255,192,7,240,0,0,0,0,7,255,128,7,240,0,0,0,0,15,255,128,7,240,0,0,0,0,63,255,128,7,240,0,0,0,0,191,239,192,7,240,0,0,0,0,63,111,255,255,255,255,192,0,0,14,47,255,255,255,255,192,0,0,0,47,255,255,255,255,192,0,0,0,47,128,7,240,0,0,0,3,0,47,128,7,240,0,0,0,11,192,47,128,7,240,0,0,0,31,224,47,128,7,240,0,0,0,63,192,47,255,255,255,255,192,0,191,64,47,255,255,255,255,192,0,255,0,47,255,255,255,255,192,3,253,0,47,192,7,240,0,0,7,248,0,47,128,7,240,0,0,15,240,0,47,128,7,240,0,0,63,208,0,47,128,7,240,0,0,127,192,0,47,128,7,240,0,0,47,64,0,47,255,255,255,255,244,10,0,0,47,255,255,255,255,244,0,0,0,47,255,255,255,255,244,0,0,0,47,192,0,0,0,0,0,0,0,31,128,0,0,0,0, + // 0x51fa 出 + 250,81,29,35,24,37,4,253,0,0,0,106,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,5,64,0,127,0,0,84,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,192,0,127,0,0,254,0,31,213,85,191,85,85,254,0,31,255,255,255,255,255,254,0,31,255,255,255,255,255,254,0,31,255,255,255,255,255,254,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,189,0,0,127,0,0,31,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,254,0,0,127,0,0,47,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,255,85,85,85,85,85,111,192,254,0,0,0,0,0,47,192,190,0,0,0,0,0,31,192, + // 0x5206 分 + 6,82,35,35,59,37,1,252,0,0,11,208,0,27,128,0,0,0,0,15,240,0,63,192,0,0,0,0,47,224,0,31,224,0,0,0,0,63,192,0,15,244,0,0,0,0,191,128,0,7,252,0,0,0,1,255,0,0,2,255,0,0,0,3,254,0,0,0,255,128,0,0,11,252,0,0,0,127,208,0,0,31,240,0,0,0,47,244,0,0,127,224,0,0,0,15,252,0,1,255,128,0,0,0,3,255,0,7,255,0,0,0,0,1,255,208,47,252,0,0,0,0,0,127,244,191,255,255,255,255,255,255,239,248,127,207,255,255,255,255,255,203,224,31,15,255,255,255,255,255,194,128,4,5,85,127,213,85,127,192,0,0,0,0,63,128,0,47,192,0,0,0,0,127,64,0,47,192,0,0,0,0,191,0,0,63,192,0,0,0,0,191,0,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,1,254,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,7,252,0,0,63,64,0,0,0,15,244,0,0,63,64,0,0,0,47,240,0,0,127,64,0,0,0,191,192,0,0,127,0,0,0,3,255,64,0,0,191,0,0,0,31,254,0,0,0,255,0,0,1,255,248,0,37,87,254,0,0,15,255,208,0,47,255,253,0,0,3,254,0,0,31,255,248,0,0,1,224,0,0,15,255,144,0,0,0,0,0,0,0,0,0,0,0, + // 0x5217 列 + 23,82,33,36,68,37,1,252,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,47,192,47,255,255,255,253,0,0,47,192,47,255,255,255,253,0,0,47,192,47,255,255,255,253,63,0,47,192,0,3,252,0,0,127,0,47,192,0,3,244,0,0,127,0,47,192,0,7,240,0,0,127,0,47,192,0,11,240,0,0,127,0,47,192,0,15,224,0,0,127,0,47,192,0,31,255,255,224,127,0,47,192,0,63,255,255,244,127,0,47,192,0,63,255,255,240,127,0,47,192,0,191,0,11,240,127,0,47,192,0,253,0,11,240,127,0,47,192,3,252,0,15,224,127,0,47,192,7,248,0,15,208,127,0,47,192,15,255,0,31,192,127,0,47,192,63,255,224,63,128,127,0,47,192,191,175,252,63,64,127,0,47,192,191,7,255,191,0,127,0,47,192,44,0,255,254,0,127,0,47,192,0,0,47,252,0,127,0,47,192,0,0,7,252,0,127,0,47,192,0,0,11,244,0,127,0,47,192,0,0,31,224,0,0,0,47,192,0,0,63,192,0,0,0,47,192,0,0,191,128,0,0,0,47,192,0,2,255,0,0,0,0,47,192,0,11,252,0,0,0,0,47,192,0,47,240,0,0,0,0,47,192,1,255,208,0,0,1,85,127,192,7,255,64,0,0,1,255,255,128,2,252,0,0,0,0,255,255,0,0,160,0,0,0,0,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x521d 初 + 29,82,34,35,59,37,1,253,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,11,255,255,255,255,224,0,15,208,11,255,255,255,255,224,0,15,208,11,255,255,255,255,224,0,15,224,1,85,255,85,95,224,63,255,255,224,0,254,0,15,224,63,255,255,244,0,254,0,15,224,63,255,255,240,0,254,0,15,224,0,0,15,208,0,253,0,15,224,0,0,47,192,0,253,0,15,224,0,0,63,64,0,253,0,15,224,0,0,255,0,0,253,0,15,224,0,1,252,40,1,252,0,15,208,0,3,248,126,1,252,0,15,208,0,15,240,253,1,252,0,15,208,0,47,250,244,2,252,0,15,208,0,191,255,208,3,248,0,15,208,2,255,255,192,3,248,0,15,208,11,255,255,224,3,244,0,15,208,47,255,219,248,7,240,0,31,192,191,223,210,252,15,240,0,31,192,127,79,208,244,15,224,0,31,192,45,15,208,32,47,192,0,31,192,0,15,208,0,63,192,0,47,192,0,15,208,0,191,64,0,47,192,0,15,208,0,255,0,0,63,192,0,15,208,3,253,0,0,63,128,0,15,208,11,252,0,0,63,64,0,15,208,47,240,0,0,255,64,0,15,208,255,208,11,255,255,0,0,15,208,255,128,3,255,253,0,0,15,208,62,0,3,255,248,0,0,15,208,4,0,1,85,64,0, + // 0x5230 到 + 48,82,33,34,50,37,1,253,0,0,0,0,0,0,0,26,128,0,0,0,0,0,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,0,0,31,192,63,255,255,255,254,63,64,31,192,0,15,240,0,0,63,64,31,192,0,15,224,4,0,63,64,31,192,0,31,192,127,0,63,64,31,192,0,47,192,63,128,63,64,31,192,0,63,64,31,208,63,64,31,192,0,127,0,11,240,63,64,31,192,21,255,255,255,252,63,64,31,192,63,255,255,255,253,63,64,31,192,63,255,255,255,255,63,64,31,192,63,169,84,0,63,63,64,31,192,0,0,127,0,24,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,15,255,255,255,248,63,64,31,192,15,255,255,255,248,63,64,31,192,15,255,255,255,248,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,63,64,31,192,0,0,127,0,0,21,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,0,0,0,0,31,192,0,0,127,22,190,0,0,31,192,0,5,191,255,255,0,0,31,192,111,255,255,255,255,0,0,31,192,127,255,255,255,233,0,149,127,192,63,255,250,80,0,0,255,255,192,62,148,0,0,0,0,255,255,64,0,0,0,0,0,0,191,248,0, + // 0x5236 制 + 54,82,34,35,59,37,1,253,0,0,31,128,0,0,0,5,64,0,248,47,128,0,0,0,15,208,2,252,47,128,0,0,0,15,208,3,248,47,128,0,1,248,15,208,3,244,47,128,0,2,248,15,208,7,255,255,255,254,2,248,15,208,11,255,255,255,254,2,248,15,208,15,255,255,255,254,2,248,15,208,47,192,47,128,0,2,248,15,208,63,128,47,128,0,2,248,15,208,127,0,47,128,0,2,248,15,208,10,0,47,128,0,2,248,15,208,127,255,255,255,255,194,248,15,208,127,255,255,255,255,194,248,15,208,127,255,255,255,255,194,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,0,0,47,128,0,2,248,15,208,11,255,255,255,255,2,248,15,208,11,255,255,255,255,2,248,15,208,11,255,255,255,255,2,248,15,208,11,208,47,128,63,2,248,15,208,11,208,47,128,63,2,248,15,208,11,208,47,128,63,1,164,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,128,63,0,0,15,208,11,208,47,143,255,0,0,15,208,11,208,47,143,254,0,0,15,208,11,208,47,139,248,0,21,111,192,0,0,47,128,0,0,63,255,192,0,0,47,128,0,0,63,255,128,0,0,31,128,0,0,47,249,0, + // 0x5237 刷 + 55,82,33,35,59,37,1,253,0,0,0,0,0,0,0,5,64,0,0,0,0,0,0,0,15,192,3,255,255,255,255,0,0,15,192,3,255,255,255,255,1,64,15,192,3,255,255,255,255,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,240,0,0,63,7,224,15,192,3,255,255,255,255,7,224,15,192,3,255,255,255,255,7,224,15,192,3,255,255,255,255,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,240,1,248,0,7,224,15,192,3,251,255,255,255,71,224,15,192,3,255,255,255,255,71,224,15,192,7,255,255,255,255,71,224,15,192,7,239,193,248,31,71,224,15,192,7,239,193,248,31,71,224,15,192,7,239,193,248,31,71,224,15,192,11,239,193,248,31,71,224,15,192,11,223,193,248,31,71,224,15,192,15,223,193,248,31,71,224,15,192,15,207,193,248,31,65,80,15,192,15,207,193,248,31,64,0,15,192,31,207,193,248,31,64,0,15,192,31,143,193,251,255,64,0,15,192,63,79,193,249,255,0,0,15,192,63,15,193,248,164,0,0,15,192,190,0,1,248,0,0,85,111,192,189,0,1,248,0,0,127,255,192,28,0,1,248,0,0,63,255,64,0,0,1,248,0,0,47,249,0, + // 0x5275 創 + 117,82,33,36,68,37,1,252,0,0,5,64,0,0,0,0,0,0,0,63,240,0,0,0,31,192,0,0,191,252,0,0,0,31,192,0,1,255,255,64,0,0,31,192,0,3,252,127,208,0,0,31,192,0,15,244,31,244,31,192,31,192,0,63,208,7,253,31,192,31,192,0,255,213,86,255,95,192,31,192,7,255,255,255,191,31,192,31,192,63,245,255,255,93,31,192,31,192,127,128,0,0,0,31,192,31,192,13,85,85,85,84,31,192,31,192,0,255,255,255,252,31,192,31,192,0,255,255,255,252,31,192,31,192,0,252,0,0,252,31,192,31,192,0,252,0,0,252,31,192,31,192,0,255,255,255,252,31,192,31,192,0,255,255,255,252,31,192,31,192,0,252,0,1,252,31,192,31,192,0,252,0,0,252,31,192,31,192,0,255,255,255,252,31,192,31,192,0,255,255,255,252,31,192,31,192,1,253,85,85,84,31,192,31,192,1,248,0,0,0,31,192,31,192,2,254,170,170,168,31,192,31,192,3,255,255,255,253,31,192,31,192,3,255,255,255,253,0,0,31,192,7,255,192,0,189,0,0,31,192,15,223,192,0,189,0,0,31,192,15,207,192,0,189,0,0,31,192,63,143,192,0,189,0,0,31,192,127,15,255,255,253,0,85,127,192,62,15,255,255,253,0,255,255,192,12,15,234,170,253,0,191,255,64,0,15,192,0,105,0,127,248,0,0,0,0,0,0,0,0,0,0, + // 0x529b 力 + 155,82,32,35,24,37,2,253,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,63,64,0,0,0,63,255,255,255,255,255,255,254,63,255,255,255,255,255,255,253,63,255,255,255,255,255,255,253,26,170,170,191,170,170,170,253,0,0,0,191,0,0,0,253,0,0,0,191,0,0,1,253,0,0,0,255,0,0,1,252,0,0,0,254,0,0,1,252,0,0,0,254,0,0,1,252,0,0,1,253,0,0,2,252,0,0,3,252,0,0,2,252,0,0,3,252,0,0,2,252,0,0,11,248,0,0,3,252,0,0,15,240,0,0,3,248,0,0,31,224,0,0,3,248,0,0,63,208,0,0,3,248,0,0,191,192,0,0,3,244,0,1,255,0,0,0,7,244,0,7,254,0,0,0,11,240,0,15,252,0,0,0,11,240,0,63,240,0,0,0,15,240,1,255,208,0,0,0,31,224,11,255,64,0,0,0,63,208,63,253,0,0,15,255,255,192,191,240,0,0,7,255,255,64,47,128,0,0,3,255,253,0,9,0,0,0,1,85,64,0, + // 0x52a0 加 + 160,82,33,36,68,37,1,252,0,5,64,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,85,85,85,64,0,15,208,0,0,255,255,255,192,0,15,208,0,0,255,255,255,192,63,255,255,255,208,255,255,255,192,63,255,255,255,208,252,0,47,192,63,255,255,255,208,252,0,47,192,21,111,213,95,208,252,0,47,192,0,31,192,15,208,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,31,192,15,192,252,0,47,192,0,47,192,15,192,252,0,47,192,0,47,128,15,192,252,0,47,192,0,63,128,15,192,252,0,47,192,0,63,64,31,192,252,0,47,192,0,63,64,31,192,252,0,47,192,0,63,0,31,192,252,0,47,192,0,127,0,31,192,252,0,47,192,0,191,0,31,192,252,0,47,192,0,254,0,31,192,252,0,47,192,1,253,0,47,192,252,0,47,192,2,252,0,47,192,252,0,47,192,3,252,0,47,128,252,0,47,192,7,244,0,63,128,255,255,255,192,15,240,0,63,64,255,255,255,192,31,224,0,191,64,255,255,255,192,63,192,255,255,0,253,85,127,192,191,128,191,254,0,252,0,47,192,47,0,191,248,0,252,0,47,128,8,0,21,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x52d5 動 + 213,82,34,36,68,37,1,252,0,0,0,0,64,1,80,0,0,0,0,22,191,208,3,240,0,0,42,255,255,255,240,3,240,0,0,63,255,255,255,144,3,240,0,0,31,250,254,0,0,3,240,0,0,0,0,189,0,0,3,240,0,0,42,170,254,170,164,3,240,0,0,127,255,255,255,252,3,240,0,0,127,255,255,255,253,91,240,0,0,0,0,189,0,3,255,255,255,224,0,0,189,0,3,255,255,255,224,31,255,255,255,251,255,255,255,224,31,255,255,255,244,7,240,11,224,31,149,254,86,244,7,240,11,224,31,64,189,2,244,11,224,15,224,31,128,189,2,244,11,224,15,224,31,255,255,255,244,11,224,15,208,31,255,255,255,244,15,208,15,208,31,64,189,2,244,15,208,15,208,31,64,189,2,244,15,208,15,208,31,255,255,255,244,31,192,15,208,31,255,255,255,244,31,192,15,208,5,85,254,85,80,63,128,15,208,0,0,189,0,0,63,64,15,192,10,170,254,170,160,127,0,15,192,31,255,255,255,244,191,0,15,192,31,255,255,255,245,254,0,31,192,0,0,189,0,3,252,0,31,192,0,0,189,0,7,252,0,31,192,0,0,190,107,255,244,0,47,192,1,90,255,255,255,224,0,63,128,127,255,255,255,255,192,0,127,64,63,255,255,171,255,64,255,255,0,62,149,0,1,253,0,191,254,0,0,0,0,0,116,0,191,248,0,0,0,0,0,0,0,0,0,0, + // 0x5316 化 + 22,83,35,34,50,37,1,253,0,0,15,128,63,64,0,0,0,0,0,47,192,63,64,0,0,0,0,0,63,192,63,64,0,0,0,0,0,191,64,63,64,0,0,0,0,0,255,0,63,64,0,0,0,0,3,253,0,63,64,0,0,0,0,7,248,0,63,64,0,8,0,0,15,240,0,63,64,0,62,0,0,63,224,0,63,64,0,255,64,0,191,224,0,63,64,7,255,128,1,255,224,0,63,64,63,253,0,3,255,224,0,63,65,255,240,0,15,255,224,0,63,79,255,64,0,63,255,224,0,63,255,248,0,0,255,223,224,0,63,255,192,0,0,191,79,224,0,63,253,0,0,0,62,15,224,0,63,208,0,0,0,40,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,1,0,0,15,224,0,63,64,0,2,228,0,15,224,0,63,64,0,2,248,0,15,224,0,63,64,0,2,248,0,15,224,0,63,64,0,3,244,0,15,224,0,63,64,0,3,244,0,15,224,0,63,192,0,11,240,0,15,224,0,63,255,255,255,224,0,15,224,0,31,255,255,255,192,0,15,224,0,7,255,255,255,64,0,10,144,0,0,0,0,0,0, + // 0x534a 半 + 74,83,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,104,0,7,240,0,15,64,0,1,253,0,7,240,0,31,224,0,0,255,0,7,240,0,63,192,0,0,127,128,7,240,0,127,128,0,0,63,192,7,240,0,255,0,0,0,31,224,7,240,1,254,0,0,0,15,240,7,240,3,252,0,0,0,7,244,7,240,7,244,0,0,0,3,224,7,240,7,240,0,0,0,1,0,7,240,0,64,0,0,0,0,0,7,240,0,0,0,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,5,85,85,91,249,85,85,84,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,91,249,85,85,85,64,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x5354 協 + 84,83,34,36,68,37,1,252,0,63,0,0,0,63,0,0,0,0,63,0,0,0,63,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,0,0,127,0,0,0,0,63,0,31,255,255,255,255,128,0,63,0,31,255,255,255,255,128,0,63,0,15,255,255,255,255,64,0,63,0,0,2,248,0,63,64,0,63,0,0,3,244,0,63,64,0,127,0,0,15,240,0,63,0,127,255,255,0,47,192,0,63,0,127,255,255,0,255,64,0,191,0,127,255,255,11,254,0,255,254,0,0,63,0,127,244,0,255,252,0,0,63,0,63,128,0,191,224,0,0,63,0,24,0,0,0,0,0,0,63,0,15,128,0,15,192,0,0,63,0,31,128,0,15,192,0,0,63,0,31,128,0,31,192,0,0,63,0,31,128,0,31,128,0,0,63,15,255,255,235,255,255,240,0,63,15,255,255,235,255,255,240,0,63,10,191,239,230,191,235,240,0,63,0,47,7,208,47,67,240,0,63,0,63,7,208,63,3,240,0,63,0,63,7,208,63,3,240,0,63,0,62,7,208,127,3,240,0,63,0,189,7,208,189,3,224,0,63,0,252,11,208,252,3,224,0,63,1,252,11,193,252,7,224,0,63,3,244,11,195,244,7,224,0,63,11,240,15,203,240,11,208,0,63,31,210,191,239,194,175,192,0,63,31,66,255,95,66,255,192,0,63,6,2,254,5,1,254,0,0,0,0,0,0,0,0,0,0, + // 0x5361 卡 + 97,83,33,35,59,37,2,253,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,192,0,0,0,0,15,255,255,255,192,0,0,0,0,15,255,255,255,192,0,0,0,0,15,229,85,85,64,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,85,85,85,95,229,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,144,0,0,0,0,0,0,15,255,254,64,0,0,0,0,0,15,255,255,248,0,0,0,0,0,15,226,255,255,208,0,0,0,0,15,224,27,255,244,0,0,0,0,15,224,0,127,240,0,0,0,0,15,224,0,6,208,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,208,0,0,0,0, + // 0x5370 印 + 112,83,30,35,24,37,4,253,0,0,9,0,0,0,0,0,0,1,191,64,0,0,0,0,0,31,255,209,85,85,85,80,134,255,255,131,255,255,255,240,255,255,244,3,255,255,255,240,255,254,0,3,255,255,255,240,255,128,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,255,255,255,195,248,0,7,240,255,255,255,195,248,0,7,240,255,255,255,195,248,0,7,240,254,85,85,67,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,253,0,0,3,248,0,7,240,255,255,255,195,248,26,175,240,255,255,255,195,248,15,255,240,255,255,255,195,248,11,255,208,253,85,85,67,248,7,254,64,253,0,0,3,248,0,0,0,253,0,0,3,248,0,0,0,84,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,2,164,0,0,0, + // 0x5378 卸 + 120,83,33,35,59,37,1,253,0,46,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,127,0,0,0,255,255,255,192,0,190,0,0,0,255,255,255,192,0,255,255,255,240,255,255,255,192,2,255,255,255,240,254,0,31,192,3,255,255,255,240,253,0,15,192,11,240,127,0,0,253,0,15,192,31,208,63,0,0,253,0,15,192,63,192,63,0,0,253,0,15,192,15,0,63,0,0,253,0,15,192,0,0,63,0,0,253,0,15,192,63,255,255,255,252,253,0,15,192,63,255,255,255,252,253,0,15,192,63,255,255,255,252,253,0,15,192,0,0,127,0,0,253,0,15,192,0,0,63,0,0,253,0,15,192,1,80,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,255,224,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,0,15,192,3,240,63,0,0,253,10,175,192,3,240,63,0,20,253,15,255,192,3,240,63,111,252,253,11,255,128,3,246,255,255,252,253,7,249,0,111,255,255,255,252,253,0,0,0,191,255,255,249,0,253,0,0,0,127,255,148,0,0,253,0,0,0,122,64,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0, + // 0x537b 卻 + 123,83,33,35,59,37,1,253,0,0,21,0,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,1,255,244,0,255,255,255,192,0,3,255,253,0,255,255,255,192,0,15,245,255,128,255,255,255,192,0,63,208,127,224,254,85,95,192,0,255,64,31,248,254,0,15,192,7,254,0,7,252,254,0,15,192,47,244,0,1,244,254,0,15,192,31,208,21,0,144,254,0,15,192,11,0,191,192,0,254,0,15,192,0,0,255,240,0,254,0,15,192,0,2,255,252,0,254,0,15,192,0,11,250,255,0,254,0,15,192,0,31,240,255,192,254,0,15,192,0,63,192,63,240,254,0,15,192,0,255,64,15,248,254,0,15,192,7,253,0,3,253,254,0,15,192,31,244,0,1,248,254,0,15,192,191,208,0,0,176,254,0,15,192,127,255,255,255,192,254,0,15,192,28,255,255,255,192,254,0,15,192,0,255,255,255,192,254,0,15,192,0,252,0,31,192,254,0,15,192,0,252,0,31,192,254,0,31,192,0,252,0,31,192,254,31,255,192,0,252,0,31,192,254,15,255,192,0,252,0,31,192,254,11,255,0,0,252,0,31,192,254,1,80,0,0,255,255,255,192,254,0,0,0,0,255,255,255,192,254,0,0,0,0,255,255,255,192,254,0,0,0,0,252,0,31,192,254,0,0,0,0,252,0,15,192,254,0,0,0,0,20,0,0,0,189,0,0,0, + // 0x539f 原 + 159,83,34,33,41,37,1,253,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,252,0,0,15,244,0,0,0,1,252,0,0,15,240,0,0,0,1,252,0,0,31,224,0,0,0,1,252,10,170,191,250,170,168,0,1,252,15,255,255,255,255,252,0,1,252,15,255,255,255,255,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,1,252,15,255,255,255,255,252,0,1,252,15,255,255,255,255,252,0,1,252,15,234,170,170,171,252,0,1,252,15,208,0,0,2,252,0,1,252,15,208,0,0,2,252,0,2,252,15,250,170,170,171,252,0,2,248,15,255,255,255,255,252,0,2,248,15,255,255,255,255,252,0,3,248,0,0,7,240,0,0,0,3,244,0,0,7,240,0,0,0,3,244,0,249,7,240,31,64,0,7,240,2,253,7,240,63,208,0,11,240,7,248,7,240,15,244,0,11,224,15,240,7,240,3,253,0,15,224,63,208,7,240,0,255,64,31,208,255,128,7,240,0,63,192,47,199,254,0,7,240,0,31,240,63,143,248,0,7,240,0,11,240,127,66,224,15,255,240,0,3,128,127,0,0,11,255,224,0,0,0,5,0,0,7,255,64,0,0,0, + // 0x53cd 反 + 205,83,33,33,41,37,2,253,0,85,85,85,85,85,85,84,0,0,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,253,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,192,0,0,254,111,229,85,85,127,192,0,0,254,15,240,0,0,191,64,0,0,253,11,244,0,0,255,0,0,0,253,3,252,0,2,254,0,0,0,253,2,253,0,3,252,0,0,0,252,0,255,0,11,248,0,0,1,252,0,191,128,31,240,0,0,1,252,0,63,208,63,208,0,0,2,252,0,31,240,255,128,0,0,3,248,0,11,255,255,0,0,0,3,244,0,3,255,252,0,0,0,7,240,0,0,255,244,0,0,0,11,240,0,2,255,248,0,0,0,15,224,0,31,255,255,64,0,0,31,208,0,191,254,255,244,0,0,63,192,47,255,208,127,255,144,0,127,71,255,254,0,11,255,255,64,255,7,255,240,0,1,255,255,64,61,2,254,0,0,0,11,254,0,8,0,208,0,0,0,0,108,0, + // 0x53d6 取 + 214,83,35,33,41,37,1,253,63,255,255,255,252,0,0,0,0,63,255,255,255,252,0,0,0,0,63,255,255,255,252,0,0,0,0,2,252,0,63,143,255,255,255,208,1,252,0,63,143,255,255,255,208,1,252,0,63,143,255,255,255,208,1,252,0,63,133,165,85,111,192,1,252,0,63,135,240,0,31,192,1,255,255,255,135,240,0,47,192,1,255,255,255,131,244,0,63,128,1,255,255,255,131,248,0,63,64,1,252,0,63,130,252,0,127,0,1,252,0,63,129,252,0,191,0,1,252,0,63,128,253,0,254,0,1,252,0,63,128,191,0,253,0,1,252,0,63,128,127,2,252,0,1,255,255,255,128,63,67,252,0,1,255,255,255,128,47,199,244,0,1,255,255,255,128,31,223,240,0,1,252,0,63,128,15,255,224,0,1,252,0,63,128,7,255,192,0,1,252,0,63,128,3,255,128,0,1,252,0,63,128,2,255,0,0,1,252,26,255,128,2,255,64,0,6,255,255,255,128,11,255,192,0,255,255,255,255,128,31,255,240,0,191,255,254,127,128,127,239,252,0,127,233,0,63,129,255,131,255,0,16,0,0,63,139,254,0,255,208,0,0,0,63,255,248,0,127,248,0,0,0,63,191,208,0,15,244,0,0,0,63,143,0,0,2,208,0,0,0,47,64,0,0,0,64, + // 0x53f0 台 + 240,83,33,35,59,37,2,253,0,0,1,228,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,31,240,0,6,0,0,0,0,0,63,208,0,47,192,0,0,0,0,127,128,0,63,244,0,0,0,0,255,0,0,11,253,0,0,0,2,253,0,0,2,255,64,0,0,3,252,0,0,0,191,208,0,0,11,249,106,171,255,255,240,0,127,255,255,255,255,255,255,252,0,127,255,255,255,255,255,255,255,0,127,255,255,255,250,169,85,255,128,37,84,0,0,0,0,0,127,192,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,0,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,0,0,0,0,127,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,85,85,85,85,191,64,0,0,127,0,0,0,0,127,64,0, + // 0x5408 合 + 8,84,35,35,59,37,1,253,0,0,0,2,253,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,143,248,0,0,0,0,0,3,255,3,255,0,0,0,0,0,15,252,0,255,192,0,0,0,0,63,240,0,63,240,0,0,0,1,255,192,0,15,253,0,0,0,7,255,0,0,3,255,128,0,0,47,252,0,0,0,191,244,0,1,255,224,0,0,0,31,254,0,15,255,255,255,255,255,255,255,224,127,254,191,255,255,255,248,191,248,63,244,191,255,255,255,248,31,240,31,64,0,0,0,0,0,3,208,4,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,255,255,255,255,255,192,0,0,15,224,0,0,0,47,192,0,0,11,208,0,0,0,31,192,0, + // 0x5426 否 + 38,84,34,33,41,37,1,253,31,255,255,255,255,255,255,255,208,31,255,255,255,255,255,255,255,208,31,255,255,255,255,255,255,255,208,0,0,0,0,191,224,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,252,15,128,0,0,0,0,7,255,252,63,248,0,0,0,0,127,254,252,47,255,64,0,0,2,255,241,252,2,255,240,0,0,47,255,65,252,0,127,254,0,7,255,252,1,252,0,7,255,192,127,255,208,1,252,0,0,191,240,63,254,0,1,252,0,0,31,224,15,224,0,1,252,0,0,3,192,5,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,47,192,0,0,0,15,240,0,0,31,192,0,0,0,10,160,0, + // 0x544a 告 + 74,84,33,36,68,37,2,252,0,2,64,1,252,0,0,0,0,0,11,240,1,252,0,0,0,0,0,15,224,1,252,0,0,0,0,0,31,208,1,252,0,0,0,0,0,63,192,1,252,0,0,0,0,0,127,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,7,252,0,2,253,0,0,0,0,15,240,0,1,252,0,0,0,0,63,224,0,1,252,0,0,0,0,63,192,0,1,252,0,0,0,0,7,0,0,1,252,0,0,0,0,1,0,0,2,253,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,255,255,255,255,255,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,35,36,68,37,1,252,0,0,0,3,253,0,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,47,255,208,0,0,0,0,0,0,191,239,244,0,0,0,0,0,2,255,75,254,0,0,0,0,0,11,254,2,255,128,0,0,0,0,47,248,0,191,240,0,0,0,0,255,208,0,47,253,0,0,0,11,255,64,0,7,255,192,0,0,63,253,0,0,1,255,248,0,2,255,223,255,255,255,223,255,128,47,255,15,255,255,255,194,255,248,255,248,15,255,255,255,192,127,252,127,192,0,0,0,0,0,11,240,45,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,255,255,254,11,255,255,253,0,0,255,255,254,11,255,255,253,0,0,255,255,254,11,255,255,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,252,0,126,11,224,0,253,0,0,255,255,254,11,224,0,253,0,0,255,255,254,11,224,0,253,0,0,255,255,254,11,224,255,253,0,0,252,0,0,11,224,255,252,0,0,252,0,0,11,224,191,224,0,0,252,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,33,35,59,37,1,253,0,0,0,4,0,0,0,0,0,0,0,1,190,0,0,0,0,0,0,1,191,255,128,0,0,0,0,22,255,255,255,129,85,85,85,0,47,255,255,144,11,255,255,255,64,15,255,253,0,11,255,255,255,64,4,0,253,0,11,255,255,255,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,63,255,255,255,203,224,0,63,64,63,255,255,255,203,224,0,63,64,63,255,255,255,203,224,0,63,64,0,7,253,0,11,224,0,63,64,0,11,254,0,11,224,0,63,64,0,15,255,128,11,224,0,63,64,0,31,255,208,11,224,0,63,64,0,63,255,244,11,224,0,63,64,0,127,255,252,11,224,0,63,64,0,253,253,255,11,224,0,63,64,1,252,253,63,139,224,0,63,64,3,244,253,31,203,224,0,63,64,11,240,253,15,75,224,0,63,64,31,208,253,2,11,224,0,63,64,63,192,253,0,11,224,0,63,64,191,64,253,0,11,245,85,127,64,126,0,253,0,11,255,255,255,64,60,0,253,0,11,255,255,255,64,0,0,253,0,11,255,255,255,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,11,224,0,63,64,0,0,253,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0, + // 0x555f 啟 + 95,85,35,36,68,37,1,252,0,0,104,0,0,2,228,0,0,0,0,252,0,0,2,248,0,0,0,0,254,0,0,3,244,0,0,0,0,127,0,0,3,240,0,0,0,0,63,64,0,7,240,0,0,3,255,255,255,224,7,240,0,0,3,255,255,255,224,15,224,0,0,3,255,255,255,224,15,255,255,244,3,240,0,7,224,31,255,255,244,3,240,0,7,224,47,255,255,244,3,240,0,7,224,63,128,47,128,3,240,0,7,224,127,128,63,64,3,240,0,7,224,255,128,63,64,3,255,255,255,225,255,192,63,0,3,255,255,255,227,255,192,127,0,3,255,255,255,231,255,208,127,0,3,240,0,0,7,247,208,190,0,3,240,0,0,1,211,240,253,0,3,240,0,0,0,67,240,252,0,3,240,0,0,0,2,245,252,0,7,247,255,255,240,1,250,248,0,7,251,255,255,240,0,255,244,0,7,235,255,255,240,0,191,240,0,11,235,208,3,240,0,127,224,0,15,219,208,3,240,0,63,192,0,15,219,208,3,240,0,63,192,0,15,203,208,3,240,0,191,208,0,31,203,208,3,240,1,255,240,0,47,139,208,3,240,3,255,252,0,63,75,255,255,240,15,245,254,0,127,11,255,255,240,63,224,255,64,190,11,255,255,240,255,192,63,224,45,11,208,3,247,255,0,31,248,4,11,208,3,242,248,0,3,240,0,1,64,0,0,208,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x55ae 單 + 174,85,33,33,41,37,2,253,7,255,255,253,15,255,255,248,0,7,255,255,253,15,255,255,248,0,7,240,0,253,15,192,2,248,0,7,240,0,253,15,192,2,248,0,7,240,0,253,15,192,3,248,0,7,255,255,253,15,255,255,248,0,7,255,255,253,15,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,170,175,254,170,175,224,0,0,252,0,7,240,0,15,224,0,0,252,0,7,240,0,15,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,254,170,171,250,170,175,224,0,0,252,0,7,240,0,15,224,0,0,252,0,7,240,0,15,224,0,0,255,170,175,254,170,175,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x5634 嘴 + 52,86,34,36,68,37,2,252,0,0,0,1,244,3,224,0,0,0,0,0,1,244,3,224,0,0,0,0,1,145,244,3,224,24,0,127,255,210,241,244,3,225,255,0,127,255,210,241,255,243,255,253,0,127,255,210,241,255,243,255,208,0,125,7,210,241,249,83,253,0,0,125,7,210,241,244,3,224,0,0,125,7,210,241,244,3,224,3,64,125,7,210,241,245,103,224,3,208,125,7,210,251,255,247,240,7,208,125,7,239,255,255,243,255,255,192,125,7,239,255,254,2,255,255,128,125,7,223,149,252,0,90,165,0,125,7,208,3,255,255,224,0,0,125,7,208,11,255,255,244,0,0,125,7,208,47,213,95,224,0,0,125,7,208,191,64,47,192,0,0,125,7,211,255,255,255,255,253,0,125,7,255,255,255,255,255,253,0,125,7,255,255,85,190,85,253,0,127,255,219,127,0,125,0,189,0,127,255,208,63,0,125,0,189,0,127,255,208,63,255,255,255,253,0,125,0,0,63,255,255,255,253,0,125,0,0,63,0,125,0,189,0,125,0,0,127,0,125,0,189,0,0,0,0,191,255,255,255,253,0,0,0,0,255,255,255,255,253,0,0,0,1,253,85,85,85,253,0,0,0,3,248,0,0,0,189,0,0,0,15,240,0,0,0,189,0,0,0,63,224,0,0,150,253,0,0,0,127,128,0,0,255,252,0,0,0,14,0,0,0,191,228,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,35,34,50,37,1,252,2,255,255,254,2,255,255,254,0,2,255,255,254,2,255,255,254,0,2,255,255,254,2,255,255,254,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,248,0,190,2,248,0,190,0,2,254,170,254,2,254,170,254,0,2,255,255,254,2,255,255,254,0,2,255,255,255,226,255,255,254,0,0,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,224,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,47,244,0,127,192,0,0,0,1,255,224,0,47,244,0,0,0,11,255,128,0,11,255,0,0,0,191,253,0,0,1,255,224,0,11,255,240,0,0,0,127,255,64,191,255,255,255,3,255,255,255,248,63,255,255,255,3,255,255,255,244,30,255,255,255,3,255,255,255,224,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,252,0,127,3,240,0,252,0,0,255,255,255,3,255,255,252,0,0,255,255,255,3,255,255,252,0,0,255,255,255,3,255,255,252,0,0,252,0,127,3,240,0,252,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,33,36,68,37,3,252,0,0,0,0,1,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,2,255,255,255,255,252,0,255,255,194,255,255,255,255,252,0,255,255,193,85,86,253,85,84,0,255,255,192,10,130,248,42,0,0,248,15,192,15,194,248,63,0,0,248,11,192,15,192,0,63,0,0,248,11,223,255,255,255,255,255,128,248,11,223,255,255,255,255,255,128,248,11,213,95,213,85,127,85,0,248,11,192,15,192,0,63,0,0,248,11,192,5,64,0,21,0,0,248,11,192,255,255,255,255,240,0,248,11,192,255,255,255,255,240,0,248,11,192,252,0,0,3,240,0,248,11,192,252,0,0,3,240,0,248,11,192,255,255,255,255,240,0,248,11,192,255,255,255,255,240,0,248,11,192,252,0,0,3,240,0,255,255,192,252,0,0,3,240,0,255,255,192,252,0,0,3,240,0,255,255,192,255,255,255,255,240,0,248,0,0,255,255,255,255,240,0,248,0,0,252,0,0,3,240,0,248,0,0,252,0,0,3,240,0,0,0,0,255,255,255,255,240,0,0,0,0,255,255,255,255,240,0,0,0,0,3,224,1,244,0,0,0,0,0,47,248,3,255,64,0,0,0,11,255,208,0,191,244,0,0,1,255,253,0,0,11,254,0,0,0,191,208,0,0,1,255,64,0,0,45,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,31,34,16,37,3,253,85,85,85,85,85,85,85,84,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,253,0,3,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,255,255,255,248,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,3,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252, + // 0x56e0 因 + 224,86,31,34,16,37,3,253,85,85,85,85,85,85,85,84,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,0,0,0,2,252,253,0,0,10,128,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,192,0,2,252,253,0,0,31,128,0,2,252,253,47,255,255,255,255,226,252,253,47,255,255,255,255,226,252,253,47,255,255,255,255,226,252,253,0,0,63,224,0,2,252,253,0,0,63,240,0,2,252,253,0,0,191,244,0,2,252,253,0,0,255,248,0,2,252,253,0,1,253,252,0,2,252,253,0,3,252,191,0,2,252,253,0,7,244,63,128,2,252,253,0,31,240,47,208,2,252,253,0,127,192,15,248,2,252,253,2,255,64,7,255,66,252,253,47,253,0,1,255,242,252,253,47,244,0,0,127,210,252,253,15,128,0,0,11,130,252,253,0,0,0,0,0,2,252,253,0,0,0,0,0,2,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,85,85,85,85,85,86,252,253,0,0,0,0,0,2,252, + // 0x56fa 固 + 250,86,31,33,8,37,3,253,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,2,252,254,0,0,10,128,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,15,255,255,255,255,210,252,254,31,255,255,255,255,226,252,254,31,255,255,255,255,226,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,0,15,192,0,2,252,254,0,255,255,255,253,2,252,254,0,255,255,255,253,2,252,254,0,254,170,170,253,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,252,0,0,189,2,252,254,0,254,170,170,253,2,252,254,0,255,255,255,253,2,252,254,0,255,255,255,253,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,254,0,0,0,0,0,2,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,254,0,0,0,0,0,3,252,254,0,0,0,0,0,2,252, + // 0x5716 圖 + 22,87,31,35,24,37,3,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,0,0,0,1,252,253,0,0,0,0,0,1,252,253,0,255,255,255,252,1,252,253,0,255,255,255,252,1,252,253,0,252,0,0,252,1,252,253,0,252,0,0,252,1,252,253,0,255,255,255,252,1,252,253,0,255,255,255,248,1,252,253,0,0,15,192,0,1,252,253,63,255,255,255,255,245,252,253,63,255,255,255,255,245,252,253,0,0,0,0,0,1,252,253,0,0,0,0,0,1,252,253,3,255,255,255,255,1,252,253,3,255,255,255,255,1,252,253,3,224,0,0,63,1,252,253,3,225,170,168,63,1,252,253,3,225,255,252,63,1,252,253,3,225,224,60,63,1,252,253,3,225,224,60,63,1,252,253,3,225,255,252,63,1,252,253,3,225,170,168,63,1,252,253,3,224,0,0,63,1,252,253,3,255,255,255,255,1,252,253,3,255,255,255,255,1,252,253,0,0,0,0,0,1,252,253,0,0,0,0,0,1,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,253,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0, + // 0x5728 在 + 40,87,34,35,59,37,1,253,0,0,0,57,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,5,85,86,253,85,85,85,85,64,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,31,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,64,0,63,64,0,0,0,0,255,0,0,63,64,0,0,0,2,253,0,0,63,64,0,0,0,7,252,0,0,63,64,0,0,0,15,240,0,0,63,64,0,0,0,63,224,0,0,63,64,0,0,0,255,208,0,0,127,64,0,0,3,255,208,63,255,255,255,255,0,15,255,208,63,255,255,255,255,0,127,255,208,63,255,255,255,255,0,127,223,208,0,0,63,64,0,0,47,15,208,0,0,63,64,0,0,8,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,127,64,0,0,0,15,209,255,255,255,255,255,224,0,15,209,255,255,255,255,255,224,0,15,209,255,255,255,255,255,224,0,15,208,0,0,0,0,0,0, + // 0x578b 型 + 139,87,33,34,50,37,2,254,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,252,0,31,255,255,255,244,63,0,252,0,31,255,255,255,244,63,0,252,0,31,255,255,255,244,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,0,63,0,253,0,63,0,252,0,191,255,255,255,252,63,0,252,0,191,255,255,255,252,63,0,252,0,191,255,255,255,252,63,0,252,0,0,191,0,253,0,63,0,252,0,0,254,0,253,0,63,0,252,0,0,253,0,253,0,63,0,252,0,3,252,0,253,0,0,0,252,0,11,244,0,253,0,0,0,252,0,47,240,0,253,0,0,1,252,0,191,192,0,253,0,3,255,252,0,63,0,0,254,160,1,255,248,0,8,0,0,3,244,0,255,144,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,0,0,7,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x57f7 執 + 247,87,35,36,68,37,1,252,0,2,244,0,0,47,64,0,0,0,2,248,0,0,63,64,0,0,0,2,248,0,0,63,64,0,0,0,2,248,0,0,63,64,0,0,15,255,255,254,0,63,64,0,0,15,255,255,254,0,63,64,0,0,15,255,255,254,0,63,64,0,0,0,2,248,0,0,63,128,0,0,0,2,248,0,127,255,255,253,0,0,2,248,0,127,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,192,63,64,252,0,127,255,255,255,192,63,64,252,0,2,240,0,252,0,63,64,252,0,2,244,0,252,0,63,64,252,0,0,248,2,244,16,63,64,252,0,0,252,3,240,62,63,0,252,0,0,188,3,208,191,255,0,252,0,63,255,255,255,175,255,0,252,0,63,255,255,255,135,255,0,252,0,63,255,255,255,128,255,192,252,0,0,2,248,0,0,255,240,252,0,0,2,248,0,0,255,252,252,0,0,2,248,0,1,255,255,252,0,0,2,248,0,2,252,254,253,0,31,255,255,255,3,244,60,253,0,31,255,255,255,11,240,4,189,32,31,255,255,255,15,224,0,189,56,0,2,248,0,63,192,0,126,60,0,2,248,0,191,128,0,127,60,0,2,248,1,255,0,0,63,60,0,2,248,7,252,0,0,63,252,0,2,248,47,244,0,0,31,248,0,2,248,15,208,0,0,15,240,0,2,244,2,64,0,0,3,224,0,0,0,0,0,0,0,0,0, + // 0x584a 塊 + 74,88,35,35,59,37,1,253,0,42,64,0,0,126,64,0,0,0,63,64,0,0,191,64,0,0,0,63,64,0,0,255,0,0,0,0,63,64,0,0,253,0,0,0,0,63,64,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,64,63,0,63,64,31,192,63,255,255,63,0,63,64,31,192,63,255,255,63,0,63,64,31,192,63,255,255,63,170,191,170,191,192,21,127,148,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,64,63,0,63,64,31,192,0,63,64,63,0,63,64,31,192,0,63,64,63,0,63,64,31,192,0,63,64,63,0,63,64,31,192,0,63,64,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,66,0,254,15,193,144,0,0,63,191,64,253,15,195,224,0,0,127,255,192,253,15,195,210,64,11,255,254,0,253,15,195,199,192,191,255,208,1,252,15,199,195,208,127,249,0,2,252,15,223,239,240,63,128,0,3,248,15,239,255,240,36,0,0,7,244,15,222,148,224,0,0,0,31,240,15,192,0,64,0,0,0,127,208,15,192,1,244,0,0,2,255,128,15,192,2,248,0,0,127,254,0,15,255,255,244,0,0,63,248,0,11,255,255,240,0,0,47,192,0,2,255,255,128,0,0,8,0,0,0,0,0,0, + // 0x586b 填 + 107,88,35,35,59,37,1,253,0,21,0,0,0,63,64,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,7,255,255,255,253,0,63,255,255,7,255,255,255,253,0,63,255,255,7,240,0,0,253,0,63,255,255,7,240,0,0,253,0,21,127,84,7,255,255,255,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,255,255,255,253,0,0,63,0,7,240,0,0,253,0,0,63,0,7,240,0,0,253,0,0,63,75,71,255,255,255,253,0,0,63,255,135,255,255,255,253,0,0,127,255,128,0,0,0,0,0,7,255,253,0,0,0,0,0,0,127,255,211,255,255,255,255,255,248,127,253,3,255,255,255,255,255,248,63,128,3,255,255,255,255,255,244,40,0,0,0,41,0,10,0,0,0,0,0,0,255,128,63,208,0,0,0,0,11,254,0,31,252,0,0,0,1,191,244,0,2,255,64,0,0,15,255,128,0,0,127,224,0,0,3,253,0,0,0,15,244,0,0,0,208,0,0,0,2,64, + // 0x588a 墊 + 138,88,35,34,50,37,1,254,0,1,248,0,0,10,64,0,0,0,2,248,0,0,15,128,0,0,5,86,249,85,0,15,128,0,0,15,255,255,255,0,15,128,0,0,15,255,255,255,0,15,128,0,0,0,2,248,0,15,255,255,252,0,0,2,248,0,15,255,255,252,0,127,255,255,255,213,111,255,252,0,127,255,255,255,208,31,128,252,0,22,245,86,249,64,31,128,252,0,1,244,1,244,9,47,128,252,0,0,248,3,240,31,255,64,252,0,21,253,91,229,127,255,0,252,0,63,255,255,255,215,255,64,252,0,63,255,255,255,208,191,224,252,0,0,2,248,0,0,255,252,252,0,0,2,248,0,2,254,253,252,32,15,255,255,255,3,244,116,252,56,15,255,255,255,15,240,0,189,124,5,86,253,85,63,192,0,126,120,0,2,248,0,255,64,0,63,244,0,2,248,0,253,0,0,47,240,0,2,248,0,188,0,0,11,208,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240, + // 0x5916 外 + 22,89,35,35,59,37,1,253,0,0,121,0,0,1,252,0,0,0,0,191,0,0,1,252,0,0,0,0,254,0,0,1,252,0,0,0,1,253,0,0,1,252,0,0,0,2,252,0,0,1,252,0,0,0,3,252,0,80,1,252,0,0,0,7,255,255,253,1,252,0,0,0,15,255,255,253,1,252,0,0,0,31,255,255,253,1,252,0,0,0,47,192,1,254,129,252,0,0,0,127,128,2,255,209,252,0,0,0,255,0,3,255,241,252,0,0,1,254,0,3,251,249,252,0,0,3,252,0,7,241,255,252,0,0,15,254,0,11,240,191,252,0,0,63,255,208,15,224,63,252,0,0,191,255,248,31,192,31,252,0,0,127,75,255,47,192,7,253,0,0,13,1,255,255,128,2,255,64,0,0,0,63,255,0,1,255,224,0,0,0,11,254,0,1,255,248,0,0,0,3,252,0,1,255,255,64,0,0,3,248,0,1,254,255,244,0,0,15,240,0,1,252,127,252,0,0,47,224,0,1,252,15,240,0,0,127,192,0,1,252,1,208,0,0,255,64,0,1,252,0,0,0,3,254,0,0,1,252,0,0,0,15,252,0,0,1,252,0,0,0,127,240,0,0,1,252,0,0,2,255,192,0,0,1,252,0,0,31,255,0,0,0,1,252,0,0,47,248,0,0,0,1,252,0,0,7,208,0,0,0,1,252,0,0,1,0,0,0,0,1,252,0,0, + // 0x591a 多 + 26,89,33,35,59,37,2,253,0,0,0,15,144,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,7,255,255,255,240,0,0,0,0,47,255,255,255,252,0,0,0,1,255,255,255,255,248,0,0,0,31,254,0,0,15,240,0,0,1,255,253,0,0,63,208,0,0,47,255,255,128,0,255,64,0,0,31,248,127,248,7,253,0,0,0,11,64,11,255,47,244,0,0,0,0,0,0,255,255,192,0,0,0,0,0,0,63,255,64,0,0,0,0,0,1,255,246,254,0,0,0,0,0,47,255,139,252,0,0,0,0,7,255,248,47,240,0,0,0,26,255,255,128,255,255,255,253,0,127,255,244,7,255,255,255,255,64,47,254,0,127,255,255,255,255,0,14,64,2,255,208,0,2,253,0,0,0,111,255,0,0,7,252,0,0,11,255,255,64,0,15,244,0,0,63,255,255,240,0,63,208,0,0,47,244,31,253,0,255,128,0,0,14,0,2,255,135,255,0,0,0,0,0,0,127,255,252,0,0,0,0,0,0,31,255,224,0,0,0,0,0,0,15,255,128,0,0,0,0,0,1,255,252,0,0,0,0,0,0,111,255,224,0,0,0,0,0,91,255,254,0,0,0,0,1,175,255,255,224,0,0,0,0,1,255,255,249,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,121,64,0,0,0,0,0,0, + // 0x5920 夠 + 32,89,33,35,59,37,2,253,0,6,64,0,0,144,0,0,0,0,15,208,0,1,252,0,0,0,0,47,192,0,3,248,0,0,0,0,63,64,0,3,244,0,0,0,0,255,255,248,7,240,0,0,0,2,255,255,252,15,224,0,0,0,11,255,255,248,31,255,255,255,128,47,208,3,240,63,255,255,255,64,255,64,15,224,127,255,255,255,64,253,116,47,192,254,0,0,47,64,33,254,127,66,252,0,0,47,64,0,127,254,11,244,0,0,47,64,0,31,248,15,250,170,168,47,64,0,63,224,7,207,255,252,47,64,2,255,248,0,15,255,252,47,64,47,254,252,0,15,128,252,63,64,191,227,244,0,15,128,252,63,64,63,75,255,254,15,128,252,63,64,20,47,255,255,79,128,252,63,64,0,127,255,255,15,128,252,63,0,2,253,0,127,15,128,252,63,0,11,248,0,253,15,128,252,63,0,63,224,1,252,15,128,252,63,0,255,136,3,244,15,234,252,63,0,189,63,75,240,15,255,252,63,0,32,47,239,208,15,255,252,63,0,0,7,255,128,15,128,0,63,0,0,2,255,0,15,128,0,127,0,0,11,252,0,10,64,0,126,0,0,127,240,0,0,0,0,190,0,6,255,192,0,0,0,0,253,0,191,254,0,0,0,3,255,252,0,255,240,0,0,0,2,255,248,0,127,64,0,0,0,2,255,224,0,32,0,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,33,35,59,37,2,253,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,240,0,0,0,0,106,170,170,175,250,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,47,253,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,191,191,128,0,0,0,0,0,0,255,63,192,0,0,0,0,0,0,254,31,208,0,0,0,0,0,2,253,15,240,0,0,0,0,0,3,252,11,248,0,0,0,0,0,11,248,3,253,0,0,0,0,0,31,240,2,255,0,0,0,0,0,63,224,0,255,128,0,0,0,0,255,192,0,127,208,0,0,0,2,255,64,0,47,244,0,0,0,11,254,0,0,15,253,0,0,0,63,248,0,0,3,255,64,0,1,255,224,0,0,0,255,224,0,11,255,128,0,0,0,63,253,0,191,254,0,0,0,0,31,255,192,191,244,0,0,0,0,3,255,128,47,128,0,0,0,0,0,190,0,8,0,0,0,0,0,0,8,0, + // 0x5929 天 + 41,89,34,33,41,37,2,252,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,106,170,170,175,250,170,170,170,64,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,21,85,85,95,245,85,85,85,0,47,255,255,255,255,255,255,254,0,47,255,255,255,255,255,255,254,0,47,255,255,255,255,255,255,254,0,0,0,0,15,252,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,191,127,192,0,0,0,0,0,1,255,31,224,0,0,0,0,0,3,254,15,248,0,0,0,0,0,15,252,7,253,0,0,0,0,0,63,244,2,255,0,0,0,0,0,255,224,0,255,208,0,0,0,7,255,128,0,63,248,0,0,0,127,254,0,0,15,255,64,0,6,255,244,0,0,3,255,244,0,191,255,192,0,0,0,191,255,208,255,253,0,0,0,0,31,255,192,127,208,0,0,0,0,2,255,64,41,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0, + // 0x5931 失 + 49,89,34,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,47,208,7,240,0,0,0,0,0,63,192,7,240,0,0,0,0,0,127,128,7,240,0,0,0,0,0,191,149,91,249,85,85,80,0,0,255,255,255,255,255,255,240,0,2,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,11,244,0,7,240,0,0,0,0,31,240,0,7,240,0,0,0,0,63,208,0,11,240,0,0,0,0,191,192,0,11,240,0,0,0,0,31,0,0,11,240,0,0,0,0,1,0,0,11,240,0,0,0,0,0,0,0,15,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,127,255,85,85,85,64,0,0,0,63,255,0,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,255,47,192,0,0,0,0,0,3,254,15,240,0,0,0,0,0,11,252,11,252,0,0,0,0,0,47,244,3,255,0,0,0,0,0,255,224,0,255,192,0,0,0,7,255,128,0,127,244,0,0,0,47,254,0,0,31,255,0,0,2,255,244,0,0,7,255,228,0,127,255,192,0,0,0,191,255,208,255,253,0,0,0,0,31,255,208,63,208,0,0,0,0,1,255,128,40,0,0,0,0,0,0,27,0, + // 0x59cb 始 + 203,89,35,35,59,37,1,253,0,15,128,0,0,42,64,0,0,0,31,192,0,0,63,192,0,0,0,31,192,0,0,63,128,0,0,0,47,128,0,0,127,64,0,0,0,63,64,0,0,191,0,0,0,0,63,0,0,0,254,0,0,0,0,63,0,0,0,253,0,160,0,0,191,0,0,2,252,3,244,0,127,255,255,248,3,248,2,252,0,127,255,255,248,3,240,0,254,0,127,255,255,244,11,240,0,127,64,1,252,3,244,15,208,0,63,192,1,248,3,240,31,214,171,255,208,2,248,3,247,255,255,255,255,240,3,244,7,243,255,255,255,255,244,3,240,7,243,255,255,170,87,252,7,240,11,225,64,0,0,1,248,11,224,15,208,0,0,0,0,128,15,208,15,208,0,0,0,0,0,15,192,31,192,0,0,0,0,0,31,208,47,192,63,255,255,255,192,47,248,63,128,63,255,255,255,192,63,255,191,0,63,255,255,255,192,63,255,255,0,63,64,0,31,192,6,31,254,0,63,64,0,31,192,0,3,255,64,63,64,0,31,192,0,7,255,208,63,64,0,31,192,0,15,255,248,63,64,0,31,192,0,63,215,253,63,64,0,31,192,0,191,128,252,63,64,0,31,192,3,255,0,112,63,255,255,255,192,31,252,0,0,63,255,255,255,192,47,240,0,0,63,255,255,255,192,15,128,0,0,63,64,0,31,192,6,0,0,0,63,64,0,26,128, + // 0x5a92 媒 + 146,90,35,35,59,37,1,253,0,46,64,0,126,0,1,248,0,0,63,64,0,126,0,2,248,0,0,63,0,0,126,0,2,248,0,0,127,0,0,126,0,2,248,0,0,127,0,63,255,255,255,255,240,0,190,0,63,255,255,255,255,240,0,253,0,63,255,255,255,255,240,0,253,0,0,126,0,2,248,0,127,255,255,208,126,0,2,248,0,127,255,255,192,126,0,2,248,0,127,255,255,192,127,255,255,248,0,2,244,15,192,127,255,255,248,0,3,244,15,192,127,170,171,248,0,3,240,31,192,126,0,2,248,0,7,240,31,128,126,0,2,248,0,11,224,47,128,127,255,255,248,0,11,208,47,64,127,255,255,248,0,15,192,63,64,127,255,255,248,0,15,192,63,0,0,15,192,0,0,31,192,127,0,0,15,192,0,0,47,224,190,0,0,15,192,0,0,63,252,253,63,255,255,255,255,244,63,255,252,63,255,255,255,255,244,11,127,252,63,255,255,255,255,244,0,31,248,0,1,255,253,0,0,0,11,253,0,3,255,255,0,0,0,15,255,64,15,255,255,192,0,0,47,255,192,63,207,203,240,0,0,127,159,209,255,79,195,253,0,1,255,11,135,253,15,192,255,64,7,253,2,127,244,15,192,127,240,47,248,0,255,208,15,192,31,244,63,224,0,127,64,15,192,7,224,15,64,0,40,0,15,192,0,128,5,0,0,0,0,15,192,0,0, + // 0x5b50 子 + 80,91,33,34,50,37,2,252,0,85,85,85,85,85,85,0,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,240,0,1,255,255,255,255,255,255,192,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,11,255,64,0,0,0,0,0,1,127,252,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,1,149,95,244,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,255,224,0,0,0,0,0,0,127,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,35,35,59,37,1,253,0,0,0,57,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,5,85,95,245,85,85,85,85,64,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,1,255,7,255,255,255,248,0,0,3,253,7,255,255,255,255,0,0,11,248,7,255,255,255,252,0,0,31,240,0,0,0,31,244,0,0,63,208,0,0,0,127,208,0,0,255,208,0,0,1,255,64,0,3,255,208,0,0,27,252,0,0,15,255,208,0,0,31,240,0,0,127,255,208,0,0,31,192,0,0,127,223,208,0,0,47,192,0,0,63,15,209,255,255,255,255,255,244,28,15,209,255,255,255,255,255,244,0,15,209,255,255,255,255,255,244,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,208,0,64,47,192,0,0,0,15,208,0,255,255,192,0,0,0,15,208,0,191,255,64,0,0,0,15,208,0,127,249,0,0,0, + // 0x5b89 安 + 137,91,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,244,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,128,0,0,0,0,0,191,0,63,128,0,36,0,0,0,191,0,63,128,0,127,128,0,0,191,0,63,128,0,255,0,0,0,191,0,63,128,1,254,0,0,0,191,0,0,0,3,252,0,0,0,0,0,0,0,7,248,0,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,21,85,191,149,85,95,245,85,0,0,0,255,0,0,15,240,0,0,0,1,254,0,0,31,224,0,0,0,3,252,0,0,47,208,0,0,0,7,248,0,0,63,192,0,0,0,15,240,0,0,255,64,0,0,0,47,254,64,2,255,0,0,0,0,63,255,249,7,252,0,0,0,0,191,255,255,239,244,0,0,0,0,27,6,255,255,224,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,47,255,255,128,0,0,0,0,6,255,251,255,248,0,0,0,1,191,255,128,127,255,128,0,26,255,255,248,0,7,255,244,0,31,255,255,128,0,0,127,248,0,11,255,224,0,0,0,11,240,0,3,148,0,0,0,0,1,128,0, + // 0x5b8c 完 + 140,91,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,149,85,85,85,85,85,255,0,63,64,0,0,0,0,0,191,0,63,64,0,0,0,0,0,191,0,63,64,0,0,0,0,0,191,0,63,71,255,255,255,255,240,191,0,21,7,255,255,255,255,240,85,0,0,7,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,47,192,3,244,0,0,0,0,0,63,192,3,244,0,0,0,0,0,63,128,3,244,0,0,0,0,0,127,64,3,244,0,0,0,0,0,191,0,3,244,0,0,0,0,0,255,0,3,244,0,4,0,0,3,253,0,3,244,0,15,128,0,11,252,0,3,244,0,15,192,0,63,240,0,3,244,0,15,192,2,255,208,0,3,248,0,47,192,191,255,64,0,3,255,255,255,128,255,252,0,0,2,255,255,255,0,127,208,0,0,0,191,255,253,0,56,0,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,34,36,68,37,1,252,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,229,85,85,85,85,85,111,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,0,0,0,0,0,47,192,15,208,85,85,85,85,85,47,192,15,211,255,255,255,255,255,47,192,0,3,255,255,255,255,255,0,0,0,3,255,255,255,255,255,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,3,244,1,252,0,0,0,0,0,7,244,1,252,0,0,0,0,0,7,240,1,253,0,0,0,0,0,11,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,15,240,1,255,255,255,240,0,0,31,244,1,252,0,0,0,0,0,63,252,1,252,0,0,0,0,0,63,254,1,252,0,0,0,0,0,191,255,65,252,0,0,0,0,0,254,63,225,252,0,0,0,0,3,252,15,254,252,0,0,0,0,11,248,3,255,253,0,0,0,0,47,240,0,255,255,255,255,255,240,127,208,0,31,255,255,255,255,224,47,128,0,0,111,255,255,255,208,10,0,0,0,0,21,85,85,64,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,35,36,68,37,1,252,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,208,0,20,0,0,0,31,192,15,208,0,255,64,0,0,31,192,15,208,2,254,0,0,0,31,192,15,208,11,254,170,170,160,31,192,15,208,47,255,255,255,253,31,192,0,0,191,255,255,255,252,0,0,0,7,255,128,0,15,244,0,0,0,47,255,240,0,63,224,0,0,2,255,235,252,1,255,128,0,0,3,255,66,255,75,254,0,0,0,0,248,0,127,255,244,0,0,0,0,0,0,31,255,208,0,0,0,0,0,0,111,255,248,0,0,0,0,0,7,255,255,255,224,0,0,0,1,191,255,139,255,255,164,0,1,191,255,248,0,191,255,255,244,127,255,255,64,0,6,255,255,224,63,255,255,255,255,255,255,255,192,31,231,255,255,255,255,255,6,64,4,2,255,255,255,255,255,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,248,0,0,0,191,0,0,0,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,2,255,255,255,255,255,0,0,0,2,248,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0, + // 0x5bb9 容 + 185,91,34,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,64,0,0,0,0,0,191,0,63,64,0,0,0,0,0,191,0,63,64,9,0,0,32,0,191,0,63,64,63,192,0,254,0,191,0,63,64,255,64,1,255,208,191,0,0,3,254,0,0,63,248,0,0,0,31,248,5,80,7,255,0,0,0,255,224,15,252,0,255,208,0,11,255,64,63,255,0,47,244,0,15,252,0,255,255,192,7,248,0,3,224,3,255,47,244,1,208,0,0,0,15,252,11,254,0,0,0,0,0,127,240,2,255,128,0,0,0,2,255,128,0,127,244,0,0,0,31,254,0,0,15,255,0,0,0,191,244,0,0,2,255,224,0,11,255,255,255,255,255,255,254,64,191,255,255,255,255,255,255,255,208,191,239,255,255,255,255,253,255,128,63,75,224,0,0,2,252,31,0,20,11,224,0,0,2,252,1,0,0,11,224,0,0,2,252,0,0,0,11,224,0,0,2,252,0,0,0,11,224,0,0,2,252,0,0,0,11,224,0,0,2,252,0,0,0,11,255,255,255,255,252,0,0,0,11,255,255,255,255,252,0,0,0,11,255,255,255,255,252,0,0,0,11,224,0,0,2,252,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c0d 對 + 13,92,35,36,68,37,1,252,0,10,130,160,0,0,1,168,0,9,15,195,240,56,0,2,252,0,63,15,195,240,191,0,2,252,0,47,143,195,240,252,0,2,252,0,15,207,195,242,248,0,2,252,0,11,223,195,243,240,0,2,252,0,3,239,195,251,208,0,2,252,0,2,79,195,241,128,0,2,252,0,127,255,255,255,254,0,2,252,0,127,255,255,255,254,0,2,252,0,127,255,255,255,255,255,255,255,248,0,184,0,31,67,255,255,255,248,0,252,0,63,67,255,255,255,248,0,189,0,63,0,0,2,252,0,0,127,0,190,0,0,2,252,0,0,62,0,188,0,0,2,252,0,15,255,255,255,240,125,2,252,0,15,255,255,255,240,127,2,252,0,15,255,255,255,240,63,66,252,0,0,0,126,0,0,47,194,252,0,0,0,126,0,0,15,194,252,0,0,0,126,0,0,15,226,252,0,3,255,255,255,208,7,242,252,0,3,255,255,255,208,3,242,252,0,3,255,255,255,208,3,130,252,0,0,0,126,0,0,0,2,252,0,0,0,126,0,0,0,2,252,0,0,0,126,0,0,0,2,252,0,0,0,127,107,252,0,2,252,0,0,90,255,255,252,0,2,252,0,63,255,255,255,252,0,2,252,0,63,255,255,250,80,0,3,248,0,63,254,148,0,0,15,255,248,0,20,0,0,0,0,7,255,240,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,0,0,0,0, + // 0x5c0f 小 + 15,92,35,36,68,37,1,252,0,0,0,0,84,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,9,0,0,253,0,7,0,0,0,15,240,0,253,0,63,128,0,0,31,224,0,253,0,63,208,0,0,31,208,0,253,0,31,240,0,0,47,192,0,253,0,15,244,0,0,63,192,0,253,0,7,252,0,0,127,128,0,253,0,3,253,0,0,191,64,0,253,0,1,254,0,0,255,0,0,253,0,0,255,0,1,254,0,0,253,0,0,191,128,3,253,0,0,253,0,0,63,192,3,252,0,0,253,0,0,63,208,11,244,0,0,253,0,0,31,224,15,240,0,0,253,0,0,15,240,63,224,0,0,253,0,0,11,244,127,192,0,0,253,0,0,7,248,47,64,0,0,253,0,0,3,252,2,0,0,0,253,0,0,3,224,0,0,0,0,253,0,0,1,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,42,91,253,0,0,0,0,0,0,63,255,252,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,15,255,144,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c31 就 + 49,92,35,35,59,37,1,253,0,0,254,0,0,3,244,0,0,0,0,254,0,0,3,244,36,0,0,0,254,0,0,3,245,252,0,0,0,254,0,0,3,244,255,0,0,0,254,0,0,3,244,63,128,63,255,255,255,248,3,244,31,192,63,255,255,255,248,3,244,15,240,63,255,255,255,248,3,244,3,224,0,0,0,0,0,3,244,1,0,0,0,0,0,0,3,248,0,0,3,255,255,255,203,255,255,255,244,3,255,255,255,203,255,255,255,244,3,255,255,255,203,255,255,255,244,3,240,0,31,192,3,244,0,0,3,240,0,31,192,3,244,0,0,3,240,0,31,192,3,255,128,0,3,240,0,31,192,7,255,128,0,3,240,0,31,192,7,255,128,0,3,255,255,255,192,11,255,128,0,3,255,255,255,192,15,255,128,0,3,255,255,255,192,15,255,128,0,0,0,190,0,0,31,239,128,0,0,0,190,6,0,47,239,128,0,3,244,190,63,64,63,175,128,0,3,240,190,31,128,127,111,128,0,7,240,190,15,192,191,47,128,0,15,208,190,11,224,253,47,128,224,15,192,190,7,243,252,47,128,252,47,192,190,3,247,248,47,128,248,63,64,190,2,79,240,47,128,248,191,0,190,0,47,208,47,129,248,29,0,254,0,191,192,47,255,248,0,127,253,2,255,0,31,255,240,0,63,252,0,253,0,11,255,208,0,47,224,0,36,0,0,84,0, + // 0x5de5 工 + 229,93,33,28,252,37,2,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,10,170,170,175,250,170,170,168,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x5dee 差 + 238,93,34,35,59,37,1,253,0,0,24,0,0,0,228,0,0,0,0,254,0,0,2,253,0,0,0,0,191,0,0,3,252,0,0,0,0,63,192,0,11,240,0,0,0,0,31,192,0,15,208,0,0,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,244,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,253,255,255,255,255,248,0,0,3,249,255,255,255,255,248,0,0,11,245,255,255,255,255,248,0,0,15,240,0,3,240,0,0,0,0,31,208,0,3,240,0,0,0,0,63,192,0,3,240,0,0,0,0,255,128,0,3,240,0,0,0,2,255,0,0,3,240,0,0,0,7,252,0,0,3,240,0,0,0,47,248,191,255,255,255,255,255,192,127,224,191,255,255,255,255,255,192,31,128,191,255,255,255,255,255,192,2,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,32,32,0,37,3,254,21,85,85,85,85,85,84,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,6,160,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,254,0,11,255,255,255,255,255,254,0,11,255,255,255,255,255,254,0,11,255,255,255,255,255,254,0,11,245,85,85,85,85,254,0,11,240,0,0,0,0,254,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,121,11,240,0,0,0,0,0,127,11,240,0,0,0,0,0,191,11,240,0,0,0,0,0,255,11,240,0,0,0,0,0,254,11,244,0,0,0,0,2,253,7,254,85,85,85,85,111,252,3,255,255,255,255,255,255,248,0,255,255,255,255,255,255,224,0,27,255,255,255,255,254,0, + // 0x5e73 平 + 115,94,33,33,41,37,2,253,5,85,85,85,85,85,85,84,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,20,0,0,0,127,0,7,240,0,63,128,0,0,63,64,7,240,0,127,128,0,0,63,192,7,240,0,191,0,0,0,31,208,7,240,0,254,0,0,0,15,224,7,240,2,252,0,0,0,11,240,7,240,3,248,0,0,0,7,244,7,240,7,240,0,0,0,3,248,7,240,15,224,0,0,0,2,128,7,240,6,192,0,0,0,0,0,7,240,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x5e8a 床 + 138,94,35,35,59,37,1,253,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,85,85,85,127,149,85,85,80,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,252,0,0,0,0,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,3,244,0,0,0,2,252,0,0,7,248,0,0,0,2,252,127,255,255,255,255,255,240,2,252,127,255,255,255,255,255,240,2,252,127,255,255,255,255,255,240,2,252,0,0,47,255,0,0,0,2,252,0,0,127,255,128,0,0,2,248,0,0,255,255,208,0,0,3,248,0,2,255,255,240,0,0,3,244,0,7,251,251,252,0,0,3,244,0,31,243,245,255,0,0,3,244,0,63,195,244,191,192,0,7,240,0,255,67,244,47,240,0,11,240,3,254,3,244,15,252,0,15,224,31,252,3,244,3,255,64,15,208,191,240,3,244,0,255,224,31,195,255,192,3,244,0,63,244,63,193,254,0,3,244,0,11,224,63,128,116,0,3,244,0,1,192,191,0,0,0,3,244,0,0,0,46,0,0,0,3,244,0,0,0,5,0,0,0,3,244,0,0,0, + // 0x5ea6 度 + 166,94,34,35,59,37,1,253,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,127,64,0,0,0,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,255,255,255,255,255,255,255,240,2,252,0,0,0,0,0,0,0,2,252,0,47,128,0,127,0,0,2,252,0,47,128,0,127,0,0,2,252,0,47,128,0,127,0,0,2,252,255,255,255,255,255,255,224,2,252,255,255,255,255,255,255,224,2,252,255,255,255,255,255,255,208,2,252,0,47,128,0,127,0,0,2,248,0,47,128,0,127,0,0,2,248,0,47,128,0,127,0,0,2,248,0,47,255,255,255,0,0,2,248,0,47,255,255,255,0,0,2,248,0,26,170,170,170,0,0,3,248,0,0,0,0,0,0,0,3,244,191,255,255,255,255,224,0,3,244,191,255,255,255,255,252,0,3,240,191,255,255,255,255,248,0,3,240,0,127,0,0,15,240,0,7,240,0,63,192,0,63,208,0,11,224,0,15,244,1,255,64,0,15,208,0,7,254,15,253,0,0,15,208,0,0,255,255,240,0,0,31,192,0,0,63,255,192,0,0,63,192,0,27,255,255,249,0,0,63,64,107,255,255,255,255,254,80,191,3,255,255,244,6,255,255,240,46,1,255,253,0,0,31,255,208,4,0,233,0,0,0,0,27,128, + // 0x5ee2 廢 + 226,94,35,36,68,37,1,252,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,240,0,0,0,0,0,0,0,3,240,21,85,80,62,2,128,0,3,240,127,255,252,47,75,224,0,3,240,127,255,248,15,255,128,0,3,240,0,3,240,11,252,2,0,3,240,125,15,224,3,248,31,208,3,240,191,191,128,0,254,255,64,3,240,15,255,0,0,63,248,0,3,240,11,252,0,0,15,248,0,3,240,191,255,224,255,255,255,224,3,255,255,255,224,255,255,255,244,3,251,245,87,224,253,111,75,224,3,242,64,3,224,248,15,65,64,3,240,0,3,225,244,15,71,128,3,240,63,255,227,240,15,155,128,7,240,127,255,255,224,15,255,64,7,240,189,85,71,192,7,254,0,7,224,252,0,1,0,0,0,0,11,224,248,0,7,255,255,252,0,15,209,255,255,231,255,255,252,0,15,210,255,255,209,185,86,244,0,15,194,245,91,208,252,3,240,0,31,192,0,11,192,126,15,208,0,47,128,0,15,192,47,255,64,0,63,64,0,15,192,15,254,0,0,127,0,0,15,192,31,255,144,0,190,0,37,127,134,255,255,254,144,125,0,63,255,31,253,7,255,208,12,0,47,253,15,144,0,111,128,0,0,0,0,0,0,0,0,0, + // 0x5efa 建 + 250,94,35,36,68,37,1,252,0,0,0,0,0,105,0,0,0,0,0,0,0,0,191,0,0,0,127,255,244,0,0,191,0,0,0,127,255,240,63,255,255,255,254,0,127,255,224,63,255,255,255,254,0,0,15,208,42,170,255,170,254,0,0,47,192,0,0,191,0,190,0,0,63,128,0,0,191,0,190,0,0,127,7,255,255,255,255,255,244,0,254,7,255,255,255,255,255,244,0,252,2,170,170,255,170,255,164,2,252,0,0,0,191,0,190,0,3,244,0,0,0,191,0,190,0,11,255,253,63,255,255,255,254,0,15,255,254,63,255,255,255,254,0,47,255,253,42,170,255,170,169,0,47,64,253,0,0,191,0,0,0,1,0,252,0,0,191,0,0,0,0,0,252,63,255,255,255,255,0,7,65,252,63,255,255,255,255,0,15,194,248,42,170,255,170,170,0,15,195,244,0,0,191,0,0,0,7,227,240,0,0,191,0,0,0,3,251,243,255,255,255,255,255,224,2,255,227,255,255,255,255,255,224,0,255,194,255,255,255,255,255,208,0,127,192,0,0,191,0,0,0,0,127,240,0,0,191,0,0,0,0,255,253,0,0,191,0,0,0,2,255,255,224,0,85,0,0,0,7,252,191,255,229,84,5,85,80,31,240,31,255,255,255,255,255,244,127,224,1,191,255,255,255,255,240,47,128,0,1,175,255,255,255,224,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f15 引 + 21,95,29,36,32,37,3,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,63,64,127,255,255,254,0,0,63,64,127,255,255,254,0,0,63,64,127,255,255,254,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,0,0,0,190,0,0,63,64,31,255,255,254,0,0,63,64,31,255,255,254,0,0,63,64,47,255,255,254,0,0,63,64,47,192,0,0,0,0,63,64,63,128,0,0,0,0,63,64,63,64,0,0,0,0,63,64,63,0,0,0,0,0,63,64,127,0,0,0,0,0,63,64,191,255,255,255,0,0,63,64,255,255,255,255,0,0,63,64,255,255,255,254,0,0,63,64,253,0,0,254,0,0,63,64,188,0,0,254,0,0,63,64,0,0,0,253,0,0,63,64,0,0,0,253,0,0,63,64,0,0,0,253,0,0,63,64,0,0,1,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,3,248,0,0,63,64,0,0,7,248,0,0,63,64,2,165,111,244,0,0,63,64,1,255,255,240,0,0,63,64,0,255,255,208,0,0,63,64,0,255,254,0,0,0,63,64,0,0,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,35,35,59,37,1,253,0,0,144,0,0,42,64,0,0,0,2,252,0,0,63,128,0,0,0,7,252,0,0,63,128,0,0,0,31,240,0,0,63,128,0,0,0,127,208,0,0,63,128,0,0,1,255,64,47,255,255,255,255,128,11,253,0,47,255,255,255,255,128,63,244,0,47,255,255,255,255,128,63,192,16,0,0,63,128,0,0,31,0,189,0,0,63,128,0,0,4,1,253,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,15,243,255,255,255,255,255,248,0,47,211,255,255,255,255,255,248,0,191,195,255,255,255,255,255,248,2,255,192,0,0,0,15,224,0,11,255,192,0,0,0,15,224,0,47,255,192,0,0,0,15,224,0,191,255,192,0,0,0,15,224,0,127,159,193,255,255,255,255,255,240,61,31,193,255,255,255,255,255,240,20,31,193,255,255,255,255,255,240,0,31,192,0,0,0,15,224,0,0,31,192,1,208,0,15,224,0,0,31,192,11,240,0,15,224,0,0,31,192,3,252,0,15,224,0,0,31,192,2,254,0,15,224,0,0,31,192,0,255,0,15,224,0,0,31,192,0,63,192,15,224,0,0,31,192,0,47,192,15,224,0,0,31,192,0,14,0,15,224,0,0,31,192,0,0,16,31,224,0,0,31,192,0,0,63,255,208,0,0,31,192,0,0,47,255,192,0,0,31,192,0,0,15,254,0,0, + // 0x5f8c 後 + 140,95,35,36,68,37,1,252,0,1,128,0,1,128,0,0,0,0,3,248,0,3,244,0,0,0,0,15,240,0,15,240,0,0,0,0,63,208,0,47,208,10,0,0,0,191,64,16,127,64,31,208,0,3,254,0,189,254,0,127,192,0,15,248,1,255,248,0,255,0,0,127,224,0,127,240,3,253,0,0,127,128,160,15,252,15,244,0,0,45,1,253,2,255,63,208,0,0,0,3,252,0,191,255,66,240,0,0,11,240,0,47,252,3,248,0,0,31,224,0,31,240,1,254,0,0,63,192,0,127,192,0,191,64,0,255,139,255,255,255,255,255,192,3,255,139,255,255,255,255,255,224,31,255,135,255,255,255,255,255,244,127,255,128,0,15,240,0,3,248,255,175,128,0,47,208,0,1,208,61,47,128,0,191,234,170,160,0,36,47,128,2,255,255,255,252,0,0,47,128,11,255,255,255,248,0,0,47,128,63,248,0,11,240,0,0,47,130,255,253,0,31,224,0,0,47,143,254,191,0,127,192,0,0,47,131,244,63,193,255,0,0,0,47,129,192,15,251,252,0,0,0,47,128,0,3,255,240,0,0,0,47,128,0,2,255,224,0,0,0,47,128,0,47,255,253,0,0,0,47,128,6,255,251,255,228,0,0,47,129,191,255,128,191,255,208,0,47,143,255,248,0,15,255,244,0,47,131,255,64,0,1,191,240,0,47,130,144,0,0,0,2,192,0,0,0,0,0,0,0,0,0, + // 0x5f91 徑 + 145,95,35,35,59,37,1,253,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,15,240,255,255,255,255,255,240,0,63,208,255,255,255,255,255,240,0,255,64,255,255,255,255,255,240,3,253,0,0,0,0,0,0,0,15,248,0,1,144,9,0,36,0,127,224,0,3,244,15,208,63,0,127,64,164,11,240,47,128,254,0,45,1,253,15,208,127,1,252,0,0,3,248,47,128,254,3,244,0,0,11,240,63,2,252,11,224,0,0,31,208,253,3,240,31,192,0,0,63,192,253,7,240,47,192,0,0,255,128,127,3,248,15,224,0,3,255,128,63,128,253,3,244,0,15,255,128,15,192,127,1,252,0,127,255,128,11,240,47,128,191,0,255,239,128,3,244,15,208,63,128,127,47,128,2,252,11,240,31,192,60,47,128,0,144,2,64,10,0,0,47,128,0,0,0,0,0,0,0,47,128,127,255,255,255,255,128,0,47,128,127,255,255,255,255,128,0,47,128,127,255,255,255,255,128,0,47,128,0,0,63,64,0,0,0,47,128,0,0,63,64,0,0,0,47,128,0,0,63,64,0,0,0,47,128,0,0,63,64,0,0,0,47,128,0,0,63,64,0,0,0,47,128,0,0,63,64,0,0,0,47,139,255,255,255,255,255,248,0,47,139,255,255,255,255,255,248,0,47,139,255,255,255,255,255,248,0,47,128,0,0,0,0,0,0, + // 0x5f9e 從 + 158,95,35,35,59,37,1,253,0,2,144,0,57,0,7,160,0,0,7,248,0,127,0,11,240,0,0,15,240,0,190,0,11,224,0,0,63,192,0,253,0,15,208,0,0,255,64,0,252,0,15,192,0,3,253,0,2,252,0,31,192,0,15,248,0,3,252,0,63,128,0,127,224,0,7,255,64,63,208,0,63,64,164,15,255,208,191,244,0,29,1,253,31,239,245,255,253,0,0,3,248,63,195,243,252,255,64,0,11,240,191,64,219,244,63,208,0,47,210,254,0,47,240,15,240,0,127,199,252,0,127,192,3,244,1,255,129,240,0,31,0,1,208,3,255,128,144,0,31,128,0,0,31,255,128,0,0,31,192,0,0,127,255,128,0,0,31,192,0,0,255,175,128,11,224,31,192,0,0,62,47,128,15,224,31,192,0,0,40,47,128,15,208,31,192,0,0,0,47,128,15,208,31,255,255,128,0,47,128,15,192,31,255,255,128,0,47,128,31,192,31,255,255,64,0,47,128,47,224,31,192,0,0,0,47,128,63,240,31,192,0,0,0,47,128,63,244,31,192,0,0,0,47,128,191,252,31,192,0,0,0,47,128,254,191,31,192,0,0,0,47,130,252,63,239,192,0,0,0,47,135,248,31,255,192,0,0,0,47,159,240,7,255,255,255,244,0,47,159,208,0,191,255,255,240,0,47,135,128,0,6,255,255,224,0,26,64,0,0,0,0,0,0, + // 0x5fa9 復 + 169,95,35,36,68,37,1,252,0,1,128,0,164,0,0,0,0,0,3,248,1,253,0,0,0,0,0,15,240,3,252,0,0,0,0,0,47,208,3,248,0,0,0,0,0,191,128,11,255,255,255,255,240,2,254,0,15,255,255,255,255,240,15,248,0,63,255,255,255,255,240,127,224,0,191,128,0,0,0,0,63,64,165,255,85,85,85,84,0,28,1,255,255,255,255,255,254,0,0,3,254,251,255,255,255,254,0,0,15,240,83,240,0,0,126,0,0,47,208,3,240,0,0,126,0,0,127,128,3,255,255,255,254,0,1,255,128,3,255,255,255,254,0,7,255,128,3,240,0,0,190,0,31,255,128,3,240,0,0,126,0,127,255,128,3,240,0,0,190,0,255,175,128,3,255,255,255,254,0,126,47,128,3,255,255,255,254,0,40,47,128,0,15,224,0,0,0,0,47,128,0,47,192,0,0,0,0,47,128,0,127,213,85,80,0,0,47,128,1,255,255,255,254,0,0,47,128,7,255,255,255,252,0,0,47,128,47,254,0,3,248,0,0,47,129,255,255,128,31,240,0,0,47,131,253,31,224,127,192,0,0,47,128,176,7,255,255,0,0,0,47,128,0,1,255,248,0,0,0,47,128,0,27,255,254,64,0,0,47,128,26,255,255,255,250,64,0,47,131,255,255,144,127,255,248,0,47,130,255,244,0,2,255,224,0,47,128,228,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x5fae 微 + 174,95,35,35,59,37,1,253,0,14,0,11,192,0,58,0,0,0,47,192,11,192,0,63,0,0,0,127,64,11,192,0,127,0,0,0,255,15,11,194,224,190,0,0,3,252,15,11,194,240,253,0,0,15,244,15,11,194,240,252,0,0,63,208,15,11,194,240,252,0,0,191,64,15,11,194,241,255,255,244,61,7,223,11,194,243,255,255,244,20,15,239,11,194,243,255,255,244,0,47,207,255,255,247,240,15,192,0,63,79,255,255,255,240,15,128,0,191,15,255,255,255,240,31,128,1,254,0,0,0,47,244,31,64,3,253,0,0,0,63,248,47,64,11,253,0,0,0,191,248,47,0,31,253,0,0,0,60,188,63,0,127,253,47,255,255,244,124,63,0,255,253,47,255,255,240,61,62,0,189,189,47,255,255,240,62,125,0,56,189,1,244,63,0,63,188,0,16,189,1,244,63,0,47,252,0,0,189,1,244,63,0,15,248,0,0,189,1,244,63,0,15,240,0,0,189,2,244,63,0,11,240,0,0,189,2,240,63,0,15,240,0,0,189,3,240,63,188,47,244,0,0,189,7,240,63,253,127,252,0,0,189,11,208,255,248,255,254,0,0,189,15,192,255,66,252,127,64,0,189,63,128,96,11,244,63,208,0,189,191,0,0,63,224,15,244,0,189,61,0,0,191,128,7,248,0,189,8,0,0,62,0,1,240,0,189,0,0,0,4,0,0,64, + // 0x5fc3 心 + 195,95,35,35,59,37,1,253,0,0,0,80,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,1,255,255,0,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,80,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,2,64,0,0,64,15,240,0,0,31,192,0,0,252,15,240,0,0,31,240,0,1,252,15,240,0,0,11,248,0,1,252,15,240,0,0,3,252,0,2,252,15,240,0,0,1,254,0,3,248,15,240,0,0,0,255,0,3,244,15,240,0,0,0,127,128,7,240,15,240,0,0,0,63,192,11,240,15,240,0,0,0,31,224,15,240,15,240,0,0,0,15,240,31,208,15,240,0,0,0,11,244,63,192,15,240,0,0,116,7,248,127,192,15,240,0,0,127,3,252,255,64,15,240,0,0,127,2,224,47,0,15,240,0,0,190,0,0,4,0,15,240,0,0,190,0,0,0,0,11,240,0,0,253,0,0,0,0,11,244,0,2,252,0,0,0,0,7,255,255,255,252,0,0,0,0,3,255,255,255,244,0,0,0,0,0,191,255,255,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x6027 性 + 39,96,34,35,59,37,1,253,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,2,248,15,192,0,0,0,63,128,2,248,15,192,0,0,0,63,128,3,248,15,192,0,0,0,63,128,3,244,15,192,0,0,0,63,136,3,240,15,192,0,0,9,63,253,7,240,15,192,0,0,15,127,191,15,255,255,255,255,192,31,63,175,79,255,255,255,255,192,31,63,159,159,255,255,255,255,192,47,63,143,239,213,95,213,85,64,63,63,139,255,64,15,192,0,0,62,63,129,191,0,15,192,0,0,62,63,128,255,0,15,192,0,0,125,63,128,253,0,15,192,0,0,188,63,128,44,0,15,192,0,0,188,63,128,0,0,15,192,0,0,0,63,128,0,0,31,208,0,0,0,63,128,15,255,255,255,255,64,0,63,128,15,255,255,255,255,64,0,63,128,15,255,255,255,255,64,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,128,0,0,15,192,0,0,0,63,130,255,255,255,255,255,240,0,63,130,255,255,255,255,255,240,0,63,130,255,255,255,255,255,240,0,63,128,85,85,85,85,85,80,0,42,64,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,35,35,59,37,1,253,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,64,15,192,0,0,0,0,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,167,255,255,255,255,255,244,9,63,252,31,192,0,0,0,0,15,63,188,15,192,0,252,0,0,31,63,126,15,192,0,252,0,0,31,63,95,15,192,0,252,0,0,31,63,79,79,192,0,252,0,0,47,63,79,79,192,0,252,2,144,62,63,75,79,199,192,252,3,240,61,63,64,15,199,192,252,7,224,124,63,64,15,203,192,252,11,208,188,63,64,15,203,192,252,15,192,116,63,64,31,207,128,252,31,128,0,63,64,31,143,65,252,47,0,0,63,64,31,159,1,252,63,0,0,63,64,47,127,2,252,125,0,0,63,64,47,93,3,253,4,0,0,63,64,63,0,3,254,0,0,0,63,64,63,0,7,255,0,0,0,63,64,127,0,15,239,64,0,0,63,64,190,0,31,143,192,0,0,63,64,253,0,63,79,208,0,0,63,64,252,0,191,7,240,0,0,63,66,252,1,253,3,252,0,0,63,67,248,7,248,1,254,0,0,63,71,240,31,240,0,191,128,0,63,79,224,191,192,0,63,244,0,63,95,194,255,64,0,15,248,0,63,75,128,252,0,0,3,240,0,63,65,0,96,0,0,0,144, + // 0x606f 息 + 111,96,35,35,59,37,1,253,0,0,0,1,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,250,170,170,170,191,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,250,170,170,170,175,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,250,170,170,170,175,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,224,0,0,0,15,192,0,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,192,0,0,6,170,170,170,170,170,128,0,0,0,0,2,208,0,0,0,0,0,0,0,15,244,0,0,0,0,0,80,0,3,253,0,2,192,0,0,190,15,208,255,64,15,240,0,0,253,15,208,63,208,15,252,0,1,252,15,208,15,208,3,254,0,3,248,15,208,7,0,0,255,64,11,240,15,208,0,2,224,63,208,31,240,15,208,0,3,244,31,240,127,192,15,224,0,7,244,11,244,63,64,15,255,255,255,240,3,244,6,0,7,255,255,255,224,1,128,0,0,1,191,255,255,64,0,0, + // 0x61b6 憶 + 182,97,35,35,59,37,1,253,0,63,64,0,0,31,128,0,0,0,63,64,0,0,47,192,0,0,0,63,64,0,0,47,192,0,0,0,63,64,63,255,255,255,255,192,0,63,64,63,255,255,255,255,192,0,63,64,42,190,170,171,250,128,0,63,148,0,126,0,7,224,0,4,63,252,0,63,0,15,192,0,15,63,189,0,47,64,15,192,0,31,63,126,255,255,255,255,255,244,31,63,95,255,255,255,255,255,244,31,63,79,234,170,170,170,170,164,47,63,79,128,0,0,0,0,0,62,63,74,75,255,255,255,255,64,62,63,64,11,255,255,255,255,64,125,63,64,11,224,0,0,63,64,188,63,64,11,224,0,0,63,64,120,63,64,11,224,0,0,63,64,0,63,64,11,255,255,255,255,64,0,63,64,11,255,255,255,255,64,0,63,64,11,224,0,0,63,64,0,63,64,11,224,0,0,63,64,0,63,64,11,255,255,255,255,64,0,63,64,11,255,255,255,255,64,0,63,64,0,0,253,0,0,0,0,63,64,0,0,191,192,16,0,0,63,64,45,15,207,240,184,0,0,63,64,63,15,195,224,254,0,0,63,64,127,15,192,128,127,64,0,63,64,189,15,192,1,47,192,0,63,64,252,15,192,3,239,224,0,63,67,248,15,192,7,227,240,0,63,75,240,15,255,255,210,248,0,63,66,208,15,255,255,192,208,0,63,64,0,1,191,250,0,0, + // 0x61c9 應 + 201,97,35,35,59,37,1,253,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,240,3,240,0,228,11,144,41,0,0,3,240,2,248,15,192,127,0,0,3,240,7,240,47,128,253,0,0,3,240,15,208,63,255,255,255,192,3,240,47,192,255,255,255,255,192,3,240,127,194,255,1,248,0,0,3,241,255,199,254,1,248,0,0,3,251,255,223,255,255,255,255,0,3,255,255,239,255,255,255,255,0,3,255,223,199,126,1,248,0,0,3,242,15,192,62,1,248,0,0,3,240,15,192,63,255,255,255,0,3,240,15,192,63,255,255,255,0,3,240,15,192,62,1,248,0,0,3,240,15,192,63,1,248,0,0,7,240,15,192,63,255,255,255,224,7,224,15,192,63,255,255,255,224,7,224,10,64,29,0,0,0,0,11,224,0,0,127,208,0,0,0,15,208,0,0,31,252,0,0,0,15,192,25,11,210,255,2,240,0,15,192,63,79,208,126,3,252,0,31,192,127,15,208,8,0,254,0,47,128,253,15,208,0,36,127,64,63,65,252,15,208,0,63,47,192,127,7,248,11,224,0,127,15,240,190,15,240,11,255,255,254,7,244,61,3,192,3,255,255,252,3,208,8,0,0,0,175,255,160,0,0, + // 0x6210 成 + 16,98,35,36,68,37,1,252,0,0,0,0,7,240,40,0,0,0,0,0,0,7,244,191,64,0,0,0,0,0,7,244,191,240,0,0,0,0,0,7,244,15,253,0,0,0,0,0,7,244,2,254,0,0,0,0,0,3,244,0,60,0,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,240,1,253,85,85,87,249,85,85,80,1,252,0,0,3,248,0,0,0,1,252,0,0,3,252,0,0,0,1,252,0,0,2,252,0,185,0,1,252,0,0,2,252,0,255,0,1,255,255,255,65,252,1,253,0,1,255,255,255,65,252,3,252,0,1,255,255,255,64,253,3,248,0,1,253,0,63,64,254,11,240,0,1,252,0,63,64,255,15,224,0,1,252,0,63,64,191,47,208,0,2,252,0,63,64,127,127,128,0,2,252,0,63,64,127,255,0,0,2,252,0,63,0,63,253,0,0,3,252,0,63,0,47,252,0,0,3,248,0,127,0,31,240,1,64,3,248,0,191,0,63,224,2,224,7,244,255,255,0,255,240,2,244,11,240,191,253,3,255,244,3,244,15,240,191,244,15,255,252,3,240,15,224,0,0,127,241,254,3,240,47,208,0,2,255,208,255,139,240,63,192,0,15,255,64,127,255,208,127,128,0,11,252,0,31,255,192,47,0,0,3,224,0,7,255,64,6,0,0,0,64,0,0,84,0,0,0,0,0,0,0,0,0,0, + // 0x6236 戶 + 54,98,29,35,24,37,2,253,0,0,0,0,0,1,160,0,0,0,0,0,0,111,252,0,0,0,0,1,191,255,254,0,0,80,26,255,255,255,228,0,0,127,255,255,255,228,0,0,0,127,255,254,144,0,0,0,0,127,233,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,127,255,255,255,255,255,192,0,127,255,255,255,255,255,192,0,127,255,255,255,255,255,192,0,127,0,0,0,0,31,192,0,127,0,0,0,0,31,192,0,127,0,0,0,0,31,192,0,191,0,0,0,0,31,192,0,191,0,0,0,0,31,192,0,191,0,0,0,0,31,192,0,191,0,0,0,0,31,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,253,0,0,0,0,47,192,1,252,0,0,0,0,31,192,2,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,35,34,50,37,1,253,0,0,0,0,0,0,0,111,64,47,255,255,255,208,0,7,255,208,47,255,255,255,209,2,255,255,208,47,255,255,255,215,255,255,248,0,0,0,0,0,7,255,254,64,0,0,0,0,0,7,255,64,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,7,255,255,255,71,240,0,0,0,7,255,255,255,71,240,0,0,0,7,255,255,255,71,240,0,0,0,7,240,0,63,71,240,0,0,0,7,240,0,63,71,255,255,255,248,7,240,0,63,71,255,255,255,248,7,240,0,63,71,255,255,255,248,7,240,0,63,71,245,86,253,80,7,240,0,63,71,240,2,252,0,7,255,255,255,71,240,2,252,0,7,255,255,255,75,240,2,252,0,7,255,255,255,79,224,2,252,0,7,240,0,0,15,224,2,252,0,11,224,0,0,15,208,2,252,0,11,224,0,0,15,192,2,252,0,11,224,0,0,47,192,2,252,0,15,208,0,0,63,128,2,252,0,15,208,0,0,63,64,2,252,0,15,192,0,0,191,0,2,252,0,31,192,0,0,254,0,2,252,0,47,128,0,2,252,0,2,252,0,63,64,0,7,248,0,2,252,0,191,0,0,15,240,0,2,252,0,254,0,0,47,224,0,2,252,0,125,0,0,11,128,0,2,252,0,8,0,0,2,0,0,1,252,0, + // 0x6247 扇 + 71,98,33,33,41,37,1,253,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,191,170,170,170,170,170,252,0,0,190,0,0,0,0,0,252,0,0,190,0,0,0,0,0,252,0,0,191,170,170,170,170,170,252,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,170,170,164,170,170,169,0,0,253,255,255,248,255,255,254,0,0,253,255,255,248,255,255,254,0,0,253,4,2,248,4,0,126,0,0,252,46,2,248,47,0,126,0,1,252,63,130,248,47,192,126,0,1,252,15,210,248,11,240,126,0,2,252,7,242,248,3,240,126,0,3,248,2,130,248,0,128,126,0,7,244,0,22,248,0,26,126,0,11,240,2,250,248,2,254,126,0,15,224,127,254,248,111,254,126,0,31,211,255,210,249,255,224,126,0,63,195,253,2,248,253,0,126,0,127,130,208,2,248,144,0,190,0,255,0,0,171,244,0,59,254,0,45,0,0,255,240,0,63,253,0,4,0,0,191,144,0,31,228,0, + // 0x624b 手 + 75,98,33,36,68,37,2,252,0,0,0,0,0,0,110,0,0,0,0,0,0,6,191,255,128,0,0,5,106,255,255,255,255,208,0,11,255,255,255,255,255,233,0,0,7,255,255,255,254,148,0,0,0,3,255,170,87,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,85,85,87,249,85,85,84,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,85,85,85,91,249,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,1,85,91,244,0,0,0,0,0,2,255,255,240,0,0,0,0,0,0,255,255,224,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,34,35,59,37,2,253,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,31,255,255,255,255,224,0,63,128,31,255,255,255,255,224,0,63,128,31,255,255,255,255,224,0,63,128,5,85,86,254,85,64,0,63,128,0,0,1,252,0,0,255,255,255,192,0,1,252,0,0,255,255,255,192,0,1,252,0,0,255,255,255,192,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,135,208,0,1,252,0,0,0,63,255,208,0,1,252,0,0,1,191,255,224,0,1,252,0,0,191,255,255,144,0,1,252,0,0,255,255,208,0,0,1,252,0,0,255,255,128,0,0,1,252,0,0,180,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,2,252,0,0,63,255,64,0,63,255,252,0,0,47,255,0,0,63,255,252,0,0,31,248,0,0,31,255,240,0,0,0,0,0,0,10,169,0,0,0, + // 0x6279 批 + 121,98,35,35,59,37,1,253,0,63,0,5,64,1,164,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,127,255,255,47,192,2,248,0,0,127,255,255,47,192,2,248,2,0,127,255,255,47,192,2,248,11,192,0,63,0,47,192,2,248,63,240,0,63,0,47,255,242,249,255,192,0,63,0,47,255,242,255,254,0,0,63,0,47,255,242,255,244,0,0,63,0,47,213,82,255,128,0,0,63,94,47,192,2,252,0,0,0,63,254,47,192,2,248,0,0,6,255,255,47,192,2,248,0,0,191,255,249,47,192,2,248,0,0,191,255,64,47,192,2,248,0,0,127,127,0,47,192,2,248,0,0,16,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,0,0,0,63,0,47,192,2,248,1,208,0,63,0,47,192,2,248,1,248,0,63,0,47,192,98,248,2,248,0,63,0,47,219,242,248,2,244,0,63,10,255,255,246,252,3,240,0,127,15,255,255,225,255,255,240,47,255,11,255,144,0,255,255,224,31,254,3,144,0,0,127,255,128,15,228,0,0,0,0,0,0,0, + // 0x6296 抖 + 150,98,35,36,68,37,1,252,0,31,192,0,0,0,15,208,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,45,0,15,224,0,0,31,192,0,127,192,15,224,0,0,31,192,0,127,244,15,224,0,0,31,192,0,11,254,15,224,0,0,31,192,0,1,255,79,224,0,63,255,255,208,0,63,15,224,0,63,255,255,208,0,12,15,224,0,63,255,255,208,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,128,0,15,224,0,0,31,192,2,248,0,15,224,0,0,31,192,7,255,128,15,224,0,0,31,192,1,255,240,15,224,0,0,31,192,64,31,252,15,224,0,0,31,223,208,3,244,15,224,0,0,47,255,224,0,176,15,224,0,27,255,255,224,0,0,15,224,0,127,255,249,0,0,0,15,224,0,63,255,192,0,0,0,15,251,244,63,111,192,0,0,6,191,255,244,0,31,192,0,107,255,255,255,248,0,31,192,47,255,255,255,250,64,0,31,192,31,255,255,175,224,0,0,31,192,31,250,64,15,224,0,0,31,192,5,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,31,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,31,255,192,0,0,0,15,224,0,15,255,64,0,0,0,15,224,0,15,249,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,34,36,68,37,1,252,0,31,128,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,127,255,255,133,85,95,213,85,64,127,255,255,159,255,255,255,255,240,127,255,255,159,255,255,255,255,240,0,47,192,31,255,255,255,255,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,95,192,15,192,11,240,0,47,239,159,192,15,192,11,240,0,47,255,223,192,15,208,11,240,27,255,255,223,255,255,255,255,240,191,255,248,31,255,255,255,255,240,127,255,192,31,255,255,255,255,240,62,111,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,192,15,192,11,240,0,47,192,31,213,95,213,95,240,0,47,192,31,255,255,255,255,240,0,47,192,31,255,255,255,255,240,0,47,128,31,255,255,255,255,240,47,255,128,31,192,0,0,11,240,15,255,64,31,192,0,0,11,240,15,249,0,15,192,0,0,6,144,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,35,36,68,37,1,252,0,31,128,0,11,208,4,0,0,0,47,192,0,15,224,47,64,0,0,47,192,0,15,208,63,224,0,0,47,192,0,15,208,15,253,0,0,47,192,0,15,208,2,255,128,0,47,192,0,15,208,0,127,128,0,47,192,0,15,208,0,15,0,0,47,192,0,15,208,0,0,0,127,255,255,191,255,255,255,255,240,127,255,255,191,255,255,255,255,240,106,191,234,127,255,255,255,255,240,0,47,192,0,15,208,0,0,0,0,47,192,0,15,208,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,240,0,253,0,0,47,192,0,47,240,0,253,0,0,47,193,64,47,244,1,252,0,0,47,255,128,63,248,2,252,0,0,127,255,192,63,252,2,248,0,111,255,255,128,127,253,3,244,0,191,255,228,0,191,127,7,240,0,127,255,192,0,254,63,75,240,0,62,47,192,0,253,47,207,208,0,0,47,192,1,252,15,239,192,0,0,47,192,2,252,11,255,128,0,0,47,192,3,244,3,255,0,0,0,47,192,11,240,2,254,0,0,0,47,192,15,224,3,255,64,0,0,47,192,47,192,11,255,208,0,0,47,192,127,128,47,255,244,0,0,47,192,255,0,191,199,254,0,0,47,131,253,3,255,1,255,208,47,255,143,248,31,252,0,127,248,15,255,71,240,15,240,0,11,240,15,249,1,192,3,128,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,35,36,68,37,1,252,0,31,128,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,0,0,31,192,0,0,0,47,192,63,255,255,255,255,240,0,47,192,63,255,255,255,255,240,0,47,192,63,255,255,255,255,240,127,255,255,191,128,0,0,7,240,127,255,255,191,64,0,0,7,240,127,255,255,191,64,254,0,7,240,0,47,192,63,64,253,0,7,240,0,47,192,21,2,252,0,1,80,0,47,192,0,3,248,0,0,0,0,47,192,0,3,244,0,0,0,0,47,192,63,255,255,255,255,248,0,47,193,191,255,255,255,255,248,0,47,255,255,255,255,255,255,248,1,191,255,192,47,192,2,252,0,127,255,255,128,63,128,3,248,0,191,255,208,0,127,0,3,248,0,127,255,192,0,191,0,7,240,0,57,47,192,0,254,0,15,240,0,0,47,192,1,254,0,31,224,0,0,47,192,2,255,244,63,192,0,0,47,192,3,255,255,191,128,0,0,47,192,2,247,255,255,0,0,0,47,192,0,0,127,255,64,0,0,47,192,0,0,31,255,224,0,0,47,192,0,0,191,255,253,0,0,47,192,0,27,255,75,255,128,0,47,128,22,255,252,1,255,224,47,255,128,255,255,208,0,47,240,15,255,64,127,249,0,0,7,208,15,249,0,62,64,0,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,35,36,68,37,1,252,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,255,255,240,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,127,255,255,0,0,63,64,0,0,127,255,255,63,255,255,255,255,0,127,255,255,63,255,255,255,255,0,0,63,64,63,234,170,170,255,0,0,63,64,63,64,0,0,63,0,0,63,64,63,64,0,0,63,0,0,63,64,63,170,170,170,191,0,0,63,64,63,255,255,255,255,0,0,63,91,63,255,255,255,255,0,0,63,255,63,64,0,0,63,0,1,191,255,63,64,0,0,63,0,111,255,255,63,64,0,0,63,0,127,255,208,63,234,170,170,191,0,63,255,64,63,255,255,255,255,0,57,63,64,63,255,255,255,255,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,67,255,255,255,255,255,244,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,127,64,0,0,63,64,0,0,63,255,0,0,0,63,64,0,0,63,255,0,0,0,63,64,0,0,47,248,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,35,35,59,37,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,63,255,255,255,255,224,0,63,0,63,255,255,255,255,240,0,63,0,63,255,255,255,255,240,0,63,0,62,0,0,0,7,240,0,63,0,62,11,224,189,7,240,0,63,0,62,11,208,189,7,240,127,255,255,62,15,208,189,3,224,127,255,255,0,15,192,189,0,0,127,255,255,0,31,192,189,0,128,0,63,0,0,63,128,189,1,244,0,63,0,0,255,0,190,1,244,0,63,0,7,254,0,191,171,240,0,63,0,191,248,0,127,255,240,0,63,0,63,208,21,95,255,192,0,63,26,41,0,47,128,0,0,0,63,254,0,0,47,128,0,0,1,191,255,0,0,47,128,0,0,111,255,254,0,0,47,128,0,0,191,255,144,191,255,255,255,255,240,127,255,0,191,255,255,255,255,240,56,63,0,191,255,255,255,255,240,0,63,0,0,3,255,252,0,0,0,63,0,0,15,255,255,0,0,0,63,0,0,47,255,255,128,0,0,63,0,0,191,111,159,224,0,0,63,0,2,254,47,135,248,0,0,63,0,11,252,47,130,254,0,0,63,0,127,240,47,128,255,208,0,63,2,255,192,47,128,63,248,0,127,7,254,0,47,128,15,244,47,255,1,244,0,47,128,2,208,31,254,0,64,0,47,128,0,0,15,228,0,0,0,47,128,0,0, + // 0x63a5 接 + 165,99,35,36,68,37,1,252,0,31,128,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,192,63,255,255,255,255,208,0,47,192,63,255,255,255,255,208,0,47,192,63,255,255,255,255,208,0,47,192,0,190,0,7,240,0,63,255,255,0,127,0,11,224,0,63,255,255,0,63,0,15,208,0,63,255,255,0,63,64,15,192,0,0,47,192,0,47,128,47,128,0,0,47,192,0,47,128,63,64,0,0,47,193,255,255,255,255,255,244,0,47,193,255,255,255,255,255,244,0,47,193,255,255,255,255,255,244,0,47,192,0,2,252,0,0,0,0,47,239,0,3,244,0,0,0,0,127,255,0,11,240,0,0,0,111,255,255,255,255,255,255,255,244,191,255,229,255,255,255,255,255,244,191,255,192,255,255,255,255,255,244,125,47,192,0,127,0,11,240,0,0,47,192,0,254,0,15,224,0,0,47,192,1,252,0,31,192,0,0,47,192,3,252,0,63,192,0,0,47,192,7,255,208,127,64,0,0,47,192,15,255,255,255,0,0,0,47,192,1,203,255,253,0,0,0,47,192,0,0,127,255,128,0,0,47,192,0,6,255,255,248,0,5,127,128,5,191,254,47,255,64,31,255,131,255,255,228,2,255,208,15,255,2,255,253,0,0,47,192,15,248,0,249,64,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,35,35,59,37,1,253,0,63,0,0,0,47,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,252,11,208,189,3,240,127,255,254,252,15,208,189,3,240,127,255,254,252,15,192,189,3,240,127,255,254,252,15,192,189,0,0,0,63,0,0,47,192,189,1,0,0,63,0,0,63,128,189,2,240,0,63,0,0,191,0,190,2,240,0,63,0,7,253,0,191,255,240,0,63,25,191,248,0,127,255,224,0,63,254,127,208,0,31,255,128,0,191,255,61,0,0,0,0,0,31,255,253,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,191,255,0,31,255,255,255,255,128,125,63,0,31,255,255,255,255,128,0,63,0,31,255,255,255,255,128,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,63,0,0,0,63,128,0,0,0,127,3,255,255,255,255,255,244,47,255,3,255,255,255,255,255,244,31,254,3,255,255,255,255,255,244,15,228,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,35,35,59,37,1,253,0,42,0,0,0,0,0,0,0,0,63,0,6,170,170,170,169,0,0,63,0,15,255,255,255,255,0,0,63,0,15,255,255,255,255,0,0,63,0,15,208,0,0,127,0,0,63,0,15,208,0,0,127,0,0,63,0,15,229,85,85,191,0,127,255,255,15,255,255,255,255,0,127,255,255,15,255,255,255,255,0,127,255,255,15,208,0,0,127,0,0,127,0,15,208,0,0,127,0,0,63,0,15,234,170,170,191,0,0,63,0,15,255,255,255,255,0,0,63,0,15,255,255,255,255,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,5,127,255,255,255,255,224,0,63,254,191,255,255,255,255,240,1,191,255,191,255,255,255,255,240,127,255,254,0,0,47,128,0,0,191,255,144,1,64,47,128,0,0,127,255,0,7,224,47,128,0,0,56,63,0,11,224,47,128,0,0,0,63,0,15,208,47,255,255,0,0,63,0,15,192,47,255,255,0,0,63,0,31,208,47,234,170,0,0,63,0,47,240,47,128,0,0,0,63,0,63,248,47,128,0,0,0,63,0,191,189,47,128,0,0,0,63,0,253,63,191,128,0,0,0,63,2,252,31,255,128,0,0,63,255,11,244,7,255,255,255,248,47,254,31,224,0,255,255,255,244,31,244,7,192,0,6,255,255,240,0,0,0,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,34,35,59,37,1,253,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,5,190,0,0,63,0,0,86,175,255,255,64,0,63,0,63,255,255,255,255,128,0,63,0,63,255,255,250,80,0,0,63,0,26,165,111,128,0,0,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,127,255,255,0,0,47,128,0,0,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,0,63,0,255,255,255,255,255,240,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,0,63,0,0,31,47,128,0,0,0,63,0,57,255,255,143,255,208,0,63,110,63,255,191,143,255,208,0,63,254,63,244,47,143,255,208,11,255,255,63,0,47,128,15,208,191,255,248,63,0,47,128,15,208,191,255,64,63,0,47,128,15,208,127,191,0,63,0,47,128,15,208,16,63,0,63,255,47,143,255,208,0,63,0,63,255,47,143,255,208,0,63,0,63,255,47,143,255,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,0,47,128,15,208,0,63,0,63,255,255,255,255,208,0,127,0,63,255,255,255,255,208,47,255,0,63,255,255,255,255,208,31,254,0,63,0,0,0,15,208,15,228,0,63,0,0,0,11,192, + // 0x63db 換 + 219,99,35,36,68,37,1,252,0,63,0,0,30,64,0,0,0,0,63,0,0,63,128,0,0,0,0,63,0,0,63,64,0,0,0,0,63,0,0,255,255,252,0,0,0,63,0,1,255,255,255,0,0,0,63,0,3,254,171,254,0,0,0,63,0,15,240,2,252,0,0,0,63,0,47,192,3,244,0,0,127,255,255,191,64,11,240,0,0,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,0,63,0,63,255,255,255,255,192,0,63,0,47,3,224,244,15,192,0,63,0,47,3,208,244,15,192,0,63,0,47,7,208,244,15,192,0,63,0,47,15,192,248,31,192,0,63,5,47,127,64,255,255,192,0,63,254,47,254,0,127,255,192,1,191,255,47,116,0,0,15,192,127,255,254,47,0,5,0,15,192,191,255,144,47,0,63,64,15,192,127,255,0,26,0,63,0,10,64,56,63,0,0,0,63,0,0,0,0,63,2,255,255,255,255,255,240,0,63,2,255,255,255,255,255,240,0,63,1,255,255,255,255,255,240,0,63,0,0,1,255,224,0,0,0,63,0,0,3,255,244,0,0,0,63,0,0,11,242,253,0,0,0,63,0,0,47,224,255,64,0,0,63,0,1,255,128,127,244,0,0,127,0,31,254,0,15,255,144,47,255,11,255,244,0,3,255,244,31,254,3,255,64,0,0,127,208,15,228,2,228,0,0,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x64c7 擇 + 199,100,35,36,68,37,1,252,0,63,0,0,0,0,0,0,0,0,63,0,21,85,85,85,85,64,0,63,0,47,255,255,255,255,208,0,63,0,47,255,255,255,255,208,0,63,0,47,3,224,61,7,208,0,63,0,47,3,224,61,7,208,0,63,0,47,3,224,61,7,208,0,63,0,47,255,255,255,255,208,127,255,255,47,255,255,255,255,208,127,255,255,5,85,111,213,85,64,127,255,255,0,0,47,128,0,0,0,63,0,10,170,191,234,170,64,0,63,0,15,255,255,255,255,128,0,63,0,15,255,255,255,255,128,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,0,63,110,170,170,191,234,170,164,0,63,254,255,255,255,255,255,244,27,255,255,255,255,255,255,255,244,255,255,228,0,126,0,3,240,0,191,255,0,0,63,0,11,224,0,126,127,0,0,63,64,15,192,0,16,63,0,106,191,170,175,234,160,0,63,0,191,255,255,255,255,240,0,63,0,191,255,255,255,255,240,0,63,0,0,0,47,128,0,0,0,63,0,0,0,47,128,0,0,0,63,0,42,170,191,234,170,128,0,63,0,63,255,255,255,255,192,0,63,0,63,255,255,255,255,192,0,63,0,0,0,47,128,0,0,0,127,0,0,0,47,128,0,0,47,255,0,0,0,47,128,0,0,31,254,0,0,0,47,128,0,0,15,228,0,0,0,47,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x64ca 擊 + 202,100,34,35,59,37,2,253,0,3,208,0,0,0,0,0,0,0,3,224,0,3,255,255,128,0,191,255,255,255,67,255,255,128,0,191,255,255,255,67,245,111,129,0,0,3,224,0,7,224,31,131,128,31,255,255,252,15,208,31,131,192,31,87,229,188,47,192,15,255,192,31,87,229,124,191,64,11,255,128,31,255,255,252,29,0,1,85,0,31,3,224,60,63,255,255,252,0,31,255,255,252,63,255,255,248,0,5,87,229,84,7,229,87,240,0,255,255,255,255,67,244,15,208,0,255,255,255,255,64,254,127,128,0,0,3,224,104,0,127,254,0,0,31,3,224,188,1,191,253,0,0,31,3,224,188,191,255,255,229,0,31,255,255,252,63,228,47,255,208,15,255,255,252,20,0,2,255,128,0,0,0,5,90,191,244,6,0,0,255,255,255,255,255,248,0,0,0,255,255,255,250,84,0,0,0,0,0,0,3,240,0,0,0,0,7,255,255,255,255,255,255,248,0,7,255,255,255,255,255,255,248,0,0,0,0,7,244,0,0,0,0,0,0,0,3,240,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,21,85,85,87,245,85,85,85,64,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,26,175,240,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,15,255,128,0,0,0,0, + // 0x64cb 擋 + 203,100,34,35,59,37,1,253,0,63,0,0,64,47,128,16,0,0,63,0,15,192,47,128,127,0,0,63,0,11,240,47,128,191,0,0,63,0,3,244,47,128,252,0,0,63,0,2,252,47,130,248,0,0,63,0,0,244,47,130,240,0,0,63,0,191,255,255,255,255,240,0,63,0,191,255,255,255,255,240,127,255,255,191,170,170,170,175,240,127,255,255,190,0,0,0,7,240,127,255,255,190,0,0,0,7,240,0,63,0,190,255,255,255,255,240,0,63,0,21,255,255,255,249,80,0,63,0,0,253,85,87,248,0,0,63,0,0,252,0,2,248,0,0,63,0,0,252,0,2,248,0,0,63,25,0,253,85,86,248,0,0,63,254,0,255,255,255,248,0,1,191,255,0,255,255,255,248,0,191,255,253,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,127,255,0,31,255,255,255,255,192,36,63,0,31,255,255,255,255,192,0,63,0,31,234,191,170,191,192,0,63,0,31,128,47,64,47,192,0,63,0,31,128,47,64,47,192,0,63,0,31,255,255,255,255,192,0,63,0,31,255,255,255,255,192,0,63,0,31,213,127,149,127,192,0,63,0,31,128,47,64,47,192,0,63,0,31,128,47,64,47,192,0,127,0,31,255,255,255,255,192,47,255,0,31,255,255,255,255,192,31,254,0,31,234,170,170,191,192,15,228,0,31,128,0,0,47,128, + // 0x64e0 擠 + 224,100,35,36,68,37,1,252,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,63,2,255,255,255,255,255,240,0,63,3,255,255,255,255,255,240,0,63,3,255,255,255,255,255,240,0,63,0,0,3,128,61,0,0,0,127,0,0,3,208,188,1,64,127,255,252,0,3,240,248,31,208,127,255,253,255,255,241,255,255,208,127,255,253,255,255,171,159,255,0,0,63,0,31,31,47,15,79,64,0,63,0,46,31,47,15,75,128,0,63,0,62,31,47,15,71,192,0,63,0,124,47,47,15,71,224,0,63,0,252,62,47,47,253,244,0,63,111,243,254,47,63,248,244,0,63,254,210,248,47,20,0,16,6,255,253,69,64,0,0,21,0,191,255,228,15,208,0,0,126,0,191,255,0,15,208,0,0,126,0,127,191,0,15,255,255,255,254,0,36,63,0,15,255,255,255,254,0,0,63,0,15,250,170,170,254,0,0,63,0,15,208,0,0,126,0,0,63,0,15,208,0,0,126,0,0,63,0,15,250,170,170,254,0,0,63,0,15,255,255,255,254,0,0,63,0,31,255,255,255,254,0,0,63,0,63,128,0,0,126,0,0,63,0,127,64,0,0,126,0,0,127,0,255,0,0,0,126,0,63,255,3,253,0,0,0,126,0,47,253,3,248,0,0,0,126,0,31,228,0,160,0,0,0,126,0,0,0,0,0,0,0,0,0,0, + // 0x6536 收 + 54,101,35,36,68,37,1,252,0,0,10,144,1,228,0,0,0,0,0,15,208,2,252,0,0,0,0,0,15,208,3,252,0,0,0,0,0,15,208,3,248,0,0,0,1,80,15,208,7,240,0,0,0,7,240,15,208,11,240,0,0,0,7,240,15,208,15,224,0,0,0,7,240,15,208,31,255,255,255,248,7,240,15,208,63,255,255,255,248,7,240,15,208,63,255,255,255,248,7,240,15,208,191,213,85,127,144,7,240,15,208,255,192,0,127,0,7,240,15,210,255,192,0,191,0,7,240,15,215,255,208,0,254,0,7,240,15,239,255,240,0,253,0,7,240,15,255,231,240,1,252,0,7,240,15,239,195,244,3,252,0,7,240,15,215,66,252,3,244,0,7,240,15,208,1,252,11,240,0,7,240,15,208,0,254,15,224,0,7,240,15,208,0,191,47,208,0,7,240,15,208,0,63,191,192,0,7,246,255,208,0,47,255,64,0,11,255,255,208,0,15,254,0,0,191,255,255,208,0,11,252,0,0,127,255,79,208,0,15,252,0,0,63,144,15,208,0,63,255,0,0,20,0,15,208,0,191,255,128,0,0,0,15,208,3,255,127,224,0,0,0,15,208,31,252,15,252,0,0,0,15,208,191,240,7,255,64,0,0,15,235,255,192,1,255,244,0,0,15,223,254,0,0,127,248,0,0,15,215,240,0,0,11,224,0,0,15,210,64,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x653e 放 + 62,101,35,36,68,37,1,252,0,3,244,0,0,58,0,0,0,0,3,244,0,0,63,64,0,0,0,3,244,0,0,127,0,0,0,0,3,244,0,0,191,0,0,0,0,3,244,0,0,255,0,0,0,0,3,244,0,0,254,0,0,0,127,255,255,255,193,253,0,0,0,127,255,255,255,194,255,255,255,248,127,255,255,255,195,255,255,255,248,0,127,0,0,3,255,255,255,248,0,63,0,0,11,244,0,191,0,0,63,0,0,15,244,0,254,0,0,63,0,0,31,248,0,253,0,0,63,0,0,63,252,0,252,0,0,63,255,254,127,252,1,252,0,0,63,255,254,255,253,2,252,0,0,63,255,255,254,190,3,248,0,0,127,0,254,252,127,7,244,0,0,127,0,253,40,63,75,240,0,0,127,0,253,0,63,143,224,0,0,127,0,253,0,31,223,208,0,0,127,0,253,0,15,255,192,0,0,190,0,253,0,11,255,64,0,0,254,0,253,0,7,255,0,0,0,253,0,252,0,3,254,0,0,0,252,0,252,0,3,254,0,0,2,252,0,252,0,15,255,64,0,3,248,0,252,0,47,255,192,0,7,244,0,252,0,191,239,240,0,15,240,1,252,2,255,15,252,0,31,224,2,252,31,252,3,255,64,63,192,3,248,191,240,0,255,224,255,67,255,251,255,192,0,127,244,126,1,255,241,254,0,0,15,224,12,1,255,128,240,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x6557 敗 + 87,101,35,35,59,37,1,253,0,0,0,0,0,126,0,0,0,7,255,255,253,0,191,0,0,0,11,255,255,254,0,255,0,0,0,11,255,255,254,0,254,0,0,0,11,224,0,254,1,253,0,0,0,11,224,0,254,2,252,0,0,0,11,224,0,254,3,252,0,0,0,11,224,0,254,3,255,255,255,248,11,250,170,254,11,255,255,255,248,11,255,255,254,15,255,255,255,248,11,255,255,254,31,245,85,255,80,11,224,0,254,47,240,0,253,0,11,224,0,254,127,244,1,253,0,11,224,0,254,255,248,2,252,0,11,224,0,255,255,252,2,252,0,11,250,170,255,254,252,3,248,0,11,255,255,255,248,253,3,244,0,11,255,255,254,240,254,11,240,0,11,224,0,254,0,127,15,240,0,11,224,0,254,0,63,95,208,0,11,224,0,254,0,63,239,192,0,11,224,0,254,0,31,255,128,0,11,255,255,254,0,15,255,64,0,11,255,255,254,0,7,255,0,0,11,255,255,254,0,3,253,0,0,0,0,0,64,0,11,254,0,0,0,190,7,208,0,31,255,64,0,0,254,11,240,0,127,255,208,0,2,252,3,252,1,255,175,244,0,3,248,1,253,11,254,11,253,0,15,240,0,191,127,248,3,255,128,31,224,0,63,255,240,0,255,244,127,192,0,38,255,128,0,63,244,63,64,0,0,252,0,0,11,208,9,0,0,0,96,0,0,1,128, + // 0x6574 整 + 116,101,34,34,50,37,2,254,0,2,240,0,0,41,0,0,0,0,3,240,0,0,63,64,0,0,85,87,245,85,64,127,0,0,0,255,255,255,255,192,254,0,0,0,255,255,255,255,193,255,170,170,128,0,3,240,0,3,255,255,255,192,63,255,255,255,75,255,255,255,192,63,255,255,255,111,240,3,244,0,63,3,244,47,255,252,3,240,0,63,3,240,31,255,189,11,224,0,63,3,240,31,108,63,31,192,0,63,255,255,255,68,31,255,128,0,63,255,255,255,64,15,255,0,0,0,47,254,0,0,7,253,0,0,0,191,255,208,0,31,255,64,0,2,255,255,253,0,191,255,224,0,31,243,241,255,75,255,95,254,0,255,195,240,46,191,252,3,255,208,190,3,240,4,127,208,0,191,192,52,3,240,0,45,0,0,11,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,10,170,170,175,254,170,170,168,0,0,0,0,3,240,0,0,0,0,0,31,192,3,240,0,0,0,0,0,31,192,3,255,255,255,64,0,0,31,192,3,255,255,255,64,0,0,31,192,3,250,170,170,0,0,0,31,192,3,240,0,0,0,0,0,31,192,3,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x6578 數 + 120,101,35,36,68,37,1,252,0,0,63,0,0,3,160,0,0,0,0,63,0,0,3,240,0,0,3,255,255,255,240,7,240,0,0,3,255,255,255,240,7,240,0,0,3,245,127,87,240,11,224,0,0,3,240,63,3,240,15,224,0,0,127,255,255,255,255,143,208,0,0,127,255,255,255,255,143,255,255,244,107,240,127,3,250,95,255,255,244,3,240,63,3,240,63,255,255,244,3,245,127,87,240,63,128,63,64,3,255,255,255,240,127,128,63,0,3,255,255,255,240,255,128,63,0,0,0,63,0,0,255,192,127,0,15,255,255,255,254,255,192,190,0,15,255,255,255,255,255,208,189,0,15,192,127,1,255,255,224,253,0,15,192,63,0,255,247,240,252,0,15,192,127,1,254,211,241,252,0,15,255,255,255,252,67,246,248,0,15,255,255,255,252,2,251,244,0,0,3,244,0,0,1,255,240,0,0,7,240,0,0,0,255,224,0,127,255,255,255,255,128,191,208,0,127,255,255,255,255,128,127,192,0,42,191,234,175,128,0,63,192,0,0,191,0,47,64,0,255,208,0,0,255,64,63,0,2,255,240,0,3,255,249,253,0,7,255,248,0,1,183,255,252,0,31,242,253,0,0,0,191,253,0,127,192,255,64,0,27,255,255,130,255,0,127,224,31,255,253,63,251,253,0,31,244,15,255,128,7,195,240,0,7,208,11,144,0,0,1,128,0,1,128,0,0,0,0,0,0,0,0,0, + // 0x6599 料 + 153,101,35,35,59,37,1,253,0,6,160,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,4,7,224,16,0,0,3,240,0,62,7,224,126,3,192,3,240,0,47,7,224,189,15,244,3,240,0,31,7,224,252,7,254,3,240,0,15,135,224,248,0,255,131,240,0,15,199,225,244,0,47,195,240,0,11,199,226,240,0,11,131,240,0,11,199,227,224,0,2,3,240,0,7,215,227,208,0,0,3,240,0,2,71,226,192,0,0,3,240,0,0,11,240,0,20,0,3,240,0,63,255,255,253,62,0,3,240,0,63,255,255,253,191,208,3,240,0,63,255,255,253,47,248,3,240,0,0,47,240,0,7,254,3,240,0,0,63,248,0,0,188,3,240,0,0,127,253,0,0,40,3,240,0,0,255,255,0,0,0,3,240,0,1,255,255,192,0,0,3,240,80,2,251,235,224,0,0,7,255,244,3,231,227,248,0,22,255,255,248,11,215,225,252,107,255,255,255,244,31,199,224,246,255,255,255,244,0,63,135,224,97,255,254,151,240,0,191,7,224,0,249,64,3,240,0,190,7,224,0,0,0,3,240,0,60,7,224,0,0,0,3,240,0,36,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0,0,7,224,0,0,0,3,240,0, + // 0x659c 斜 + 156,101,35,35,59,37,1,253,0,1,254,0,0,0,0,252,0,0,3,255,128,0,0,0,252,0,0,7,255,224,0,0,0,252,0,0,15,255,252,0,60,0,252,0,0,31,211,255,0,255,0,252,0,0,63,192,255,192,127,192,252,0,0,255,0,63,224,31,240,252,0,2,253,0,31,244,7,253,252,0,11,248,0,7,224,1,253,252,0,47,240,0,2,128,0,160,252,0,191,255,255,255,0,0,0,252,0,255,255,255,255,0,0,0,252,0,61,255,255,255,0,208,0,252,0,0,0,190,0,3,248,0,252,0,0,0,190,0,3,255,0,252,0,0,0,190,0,0,255,192,252,0,0,0,190,0,0,47,240,252,0,63,255,255,255,240,11,244,252,0,63,255,255,255,240,2,208,252,0,63,255,255,255,240,0,0,252,0,0,0,190,0,0,0,0,252,16,0,0,190,0,0,0,1,255,244,2,224,190,47,0,1,111,255,248,3,240,190,47,65,191,255,255,248,7,240,190,31,207,255,255,253,0,11,224,190,15,219,255,229,252,0,15,192,190,7,247,228,0,252,0,31,192,190,3,240,0,0,252,0,63,64,190,2,244,0,0,252,0,191,0,190,1,244,0,0,252,0,61,0,190,0,0,0,0,252,0,4,0,190,0,0,0,0,252,0,0,127,253,0,0,0,0,252,0,0,63,252,0,0,0,0,252,0,0,47,224,0,0,0,0,252,0, + // 0x65b0 新 + 176,101,35,36,68,37,1,252,0,0,168,0,0,0,0,1,0,0,0,252,0,0,0,0,111,64,0,0,252,0,0,0,27,255,208,0,0,252,0,2,70,255,255,208,47,255,255,255,227,255,255,244,0,47,255,255,255,227,255,249,0,0,47,255,255,255,227,249,0,0,0,1,244,0,189,3,244,0,0,0,1,248,0,253,3,244,0,0,0,0,252,1,252,3,244,0,0,0,0,189,2,244,3,244,0,0,0,0,125,2,240,3,244,0,0,0,63,255,255,255,243,248,0,0,0,63,255,255,255,243,255,255,255,244,63,255,255,255,243,255,255,255,244,0,0,252,0,3,255,255,255,244,0,0,252,0,3,244,2,248,0,0,0,252,0,3,244,2,248,0,0,0,252,0,3,244,2,248,0,63,255,255,255,227,244,2,248,0,63,255,255,255,227,244,2,248,0,63,255,255,255,227,240,2,248,0,0,3,252,0,3,240,2,248,0,0,15,255,64,7,240,2,248,0,0,47,255,224,11,224,2,248,0,0,127,255,248,15,224,2,248,0,0,254,253,255,15,208,2,248,0,3,248,252,127,95,192,2,248,0,31,240,252,30,63,128,2,248,0,127,192,252,4,127,64,2,248,0,127,64,252,0,255,0,2,248,0,29,0,252,2,253,0,2,248,0,0,0,252,7,248,0,2,248,0,0,0,252,2,240,0,2,248,0,0,0,252,0,128,0,2,164,0,0,0,0,0,0,0,0,0,0, + // 0x65b7 斷 + 183,101,33,35,59,37,3,253,0,20,0,16,0,0,0,64,0,164,45,0,184,0,0,2,244,0,248,60,0,240,0,0,127,253,0,249,181,70,213,1,27,255,248,0,255,243,223,207,71,255,255,64,0,249,247,135,223,7,255,224,0,0,248,191,2,253,7,244,0,0,0,248,62,0,248,7,240,0,0,0,248,61,192,247,135,240,0,0,0,248,181,210,227,199,240,0,0,0,255,255,255,255,215,240,0,0,0,251,250,255,250,247,240,0,0,0,248,0,0,0,71,240,0,0,0,254,170,170,170,135,255,255,255,64,255,255,255,255,199,255,255,255,64,255,255,255,255,199,255,255,255,64,248,45,0,184,7,240,15,192,0,248,60,0,240,7,240,15,192,0,248,180,2,224,7,224,15,192,0,255,242,143,198,71,224,15,192,0,250,227,203,143,71,224,15,192,0,248,255,67,238,7,224,15,192,0,248,127,1,252,11,224,15,192,0,248,61,0,248,11,208,15,192,0,248,125,192,243,79,208,15,192,0,248,241,227,211,207,192,15,192,0,255,255,255,255,239,192,15,192,0,255,233,191,165,255,128,15,192,0,248,0,0,0,63,64,15,192,0,255,255,255,255,255,0,15,192,0,255,255,255,255,255,0,15,192,0,254,170,170,171,253,0,15,192,0,248,0,0,2,252,0,15,192,0,248,0,0,0,180,0,15,192,0,80,0,0,0,32,0,15,192,0, + // 0x65bc 於 + 188,101,35,36,68,37,1,252,0,3,244,0,0,7,244,0,0,0,3,244,0,0,11,252,0,0,0,3,244,0,0,15,253,0,0,0,3,244,0,0,31,254,0,0,0,3,244,0,0,63,191,0,0,0,3,244,0,0,127,47,128,0,127,255,255,255,64,254,31,208,0,127,255,255,255,65,253,15,240,0,127,255,255,255,67,252,7,248,0,0,191,0,0,11,240,2,253,0,0,127,0,0,31,224,0,255,0,0,191,0,0,127,192,0,191,192,0,191,0,0,255,64,0,63,240,0,191,0,3,254,0,0,15,248,0,191,255,254,248,0,0,3,240,0,191,255,252,224,31,64,0,224,0,191,255,252,64,63,224,0,0,0,254,1,252,0,31,252,0,0,0,253,1,252,0,3,255,0,0,0,253,1,252,0,0,191,192,0,0,253,1,252,0,0,47,192,0,0,252,2,248,0,0,11,0,0,0,252,2,248,0,0,0,0,0,1,252,2,248,0,0,0,0,0,2,248,2,248,1,64,0,0,0,3,248,2,248,7,244,0,0,0,3,244,2,248,15,255,0,0,0,7,240,3,248,11,255,224,0,0,11,240,3,244,0,191,253,0,0,15,208,3,244,0,11,255,128,0,47,192,3,244,0,1,255,244,0,63,192,11,240,0,0,47,253,0,191,71,255,240,0,0,7,255,0,62,3,255,208,0,0,0,252,0,12,3,255,64,0,0,0,36,0,0,0,0,0,0,0,0,0,0, + // 0x6607 昇 + 7,102,33,34,50,37,2,253,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,252,0,0,0,0,15,208,0,1,252,0,0,0,0,15,208,0,1,252,0,0,0,0,15,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,254,170,170,170,170,175,208,0,1,252,0,0,0,0,15,208,0,1,252,0,0,0,0,15,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,1,255,255,255,255,255,255,208,0,0,0,0,1,64,0,0,0,0,0,0,1,191,208,15,224,0,0,0,26,255,255,244,15,224,0,0,15,255,255,255,144,15,224,0,0,11,255,255,208,0,15,224,0,0,7,165,63,128,0,15,224,0,0,0,0,47,128,0,15,224,0,0,0,0,47,128,0,15,224,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,127,64,0,15,224,0,0,0,0,255,0,0,15,224,0,0,0,2,254,0,0,15,224,0,0,0,11,252,0,0,15,224,0,0,0,63,244,0,0,15,224,0,0,6,255,224,0,0,15,224,0,0,47,255,64,0,0,15,224,0,0,11,248,0,0,0,15,224,0,0,3,128,0,0,0,15,224,0,0, + // 0x660e 明 + 14,102,32,34,16,37,3,252,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,253,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,252,0,0,253,252,0,63,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,255,255,255,253,255,255,255,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,66,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,248,0,0,253,252,0,63,67,255,255,255,253,253,0,63,67,255,255,255,253,255,255,255,71,255,255,255,253,255,255,255,75,240,0,0,253,255,255,255,79,224,0,0,253,252,0,0,15,208,0,0,253,252,0,0,47,192,0,0,253,252,0,0,63,128,0,0,253,84,0,0,191,64,0,0,253,0,0,0,255,0,0,0,253,0,0,3,253,0,0,0,253,0,0,15,248,0,5,86,253,0,0,63,240,0,11,255,252,0,0,47,192,0,7,255,248,0,0,11,0,0,3,255,144,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,35,34,50,37,1,253,0,42,170,170,170,170,170,144,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,149,85,85,85,95,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,170,170,170,170,175,240,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,0,0,254,0,0,0,0,0,2,148,0,254,0,0,0,0,0,3,248,0,254,0,0,0,0,0,7,244,0,254,0,0,0,0,0,11,240,0,255,255,255,253,0,0,15,240,0,255,255,255,253,0,0,31,244,0,255,255,255,253,0,0,47,252,0,254,0,0,0,0,0,63,255,0,254,0,0,0,0,0,255,191,128,254,0,0,0,0,2,254,47,244,254,0,0,0,0,7,252,15,255,254,0,0,0,0,31,244,2,255,255,255,255,255,244,127,224,0,127,255,255,255,255,240,47,64,0,1,191,255,255,255,224,9,0,0,0,0,0,0,0,0, + // 0x6642 時 + 66,102,33,35,59,37,3,253,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,255,255,248,0,0,254,0,0,0,255,255,248,127,255,255,255,252,0,255,255,248,127,255,255,255,252,0,252,2,248,127,255,255,255,252,0,252,2,248,0,0,254,0,0,0,252,2,248,0,0,254,0,0,0,252,2,248,0,0,254,0,0,0,252,2,248,0,0,254,0,0,0,252,2,248,0,0,254,0,0,0,252,2,250,255,255,255,255,255,128,255,255,250,255,255,255,255,255,128,255,255,250,255,255,255,255,255,128,255,255,248,0,0,0,63,64,0,252,2,248,0,0,0,63,64,0,252,2,248,0,0,0,63,64,0,252,2,248,0,0,0,63,64,0,252,2,250,255,255,255,255,255,0,252,2,250,255,255,255,255,255,0,252,2,250,255,255,255,255,255,0,252,2,248,0,0,0,63,64,0,252,2,248,11,192,0,63,64,0,255,255,248,15,240,0,63,64,0,255,255,248,7,252,0,63,64,0,255,255,248,2,254,0,63,64,0,252,0,0,0,255,0,63,64,0,252,0,0,0,127,128,63,64,0,252,0,0,0,62,0,63,64,0,252,0,0,0,20,0,63,64,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,191,228,0,0, + // 0x66ab 暫 + 171,102,33,35,59,37,2,253,0,3,240,0,0,0,0,96,0,0,3,240,0,0,0,27,252,0,191,255,255,255,203,175,255,254,0,191,255,255,255,203,255,255,144,0,0,3,244,0,11,254,144,0,0,0,3,240,0,11,208,0,0,0,47,255,255,255,11,208,0,0,0,47,171,250,191,11,208,0,0,0,47,3,240,47,15,250,170,170,128,47,255,255,255,15,255,255,255,192,47,171,250,191,15,255,255,255,192,47,3,240,47,15,192,31,192,0,47,171,250,191,15,192,31,192,0,47,255,255,255,47,128,31,192,0,0,3,240,0,63,64,31,192,0,255,255,255,255,255,0,31,192,0,255,255,255,255,253,0,31,192,0,0,3,240,3,252,0,31,192,0,0,3,240,1,240,0,31,192,0,0,1,80,0,64,0,6,64,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,234,170,170,170,255,0,0,0,63,64,0,0,0,191,0,0,0,63,64,0,0,0,191,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,149,85,85,85,191,0,0,0,63,64,0,0,0,191,0,0,0,63,64,0,0,0,191,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,234,170,170,170,255,0,0,0,63,64,0,0,0,127,0,0, + // 0x66f4 更 + 244,102,34,33,41,37,2,253,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,170,171,254,170,171,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,252,0,3,248,0,3,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,11,0,15,240,0,0,0,0,0,63,192,31,208,0,0,0,0,0,31,240,63,192,0,0,0,0,0,11,253,191,128,0,0,0,0,0,2,255,255,0,0,0,0,0,0,0,191,253,0,0,0,0,0,0,1,255,255,228,0,0,0,0,0,111,255,255,255,249,84,0,0,175,255,253,31,255,255,255,255,224,191,255,144,0,191,255,255,255,192,63,244,0,0,0,107,255,255,128,9,0,0,0,0,0,0,21,0, + // 0x6700 最 + 0,103,33,34,50,37,2,253,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,127,85,85,85,85,127,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,128,0,0,21,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,2,244,0,190,0,0,0,0,0,2,244,0,190,0,0,0,0,0,2,249,85,254,42,170,170,164,0,2,255,255,254,127,255,255,253,0,2,255,255,254,127,255,255,252,0,2,244,0,190,7,192,3,248,0,2,244,0,190,11,224,7,240,0,2,255,255,254,3,244,15,224,0,2,255,255,254,2,252,63,192,0,2,249,85,254,0,255,191,64,0,2,244,0,190,0,63,254,0,0,2,244,0,254,0,47,252,0,0,3,255,255,254,0,63,253,0,0,255,255,255,254,2,255,255,192,0,255,255,255,254,111,253,127,253,0,254,148,0,191,255,224,11,255,192,0,0,0,190,127,64,1,191,64,0,0,0,189,32,0,0,6,0, + // 0x6709 有 + 9,103,33,36,68,37,2,252,0,0,0,228,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,63,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,255,255,255,255,255,64,0,0,15,255,255,255,255,255,64,0,0,63,255,255,255,255,255,64,0,0,255,248,0,0,0,63,64,0,2,255,248,0,0,0,63,64,0,11,255,248,0,0,0,63,64,0,63,243,255,255,255,255,255,64,0,255,211,255,255,255,255,255,64,0,255,67,255,255,255,255,255,64,0,60,3,248,0,0,0,63,64,0,16,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,255,255,255,255,255,64,0,0,3,255,255,255,255,255,64,0,0,3,255,255,255,255,255,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,0,63,64,0,0,3,248,0,0,80,127,64,0,0,3,248,0,1,255,255,64,0,0,3,248,0,0,255,255,0,0,0,3,248,0,0,255,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x677f 板 + 127,103,35,36,68,37,1,252,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,1,255,255,255,255,240,0,15,208,1,255,255,255,255,240,0,15,208,1,255,255,255,255,240,0,15,208,1,252,0,0,0,0,0,15,208,1,252,0,0,0,0,0,15,208,1,252,0,0,0,0,63,255,255,241,252,0,0,0,0,63,255,255,241,252,0,0,0,0,63,255,255,241,252,0,0,0,0,0,31,224,1,252,0,0,0,0,0,47,208,1,255,255,255,255,208,0,63,208,1,255,255,255,255,208,0,63,240,1,255,255,255,255,192,0,127,248,1,255,240,0,47,192,0,255,253,1,255,240,0,63,128,0,255,255,1,254,248,0,63,64,1,255,255,194,253,252,0,127,0,3,255,223,226,248,253,0,254,0,7,223,211,242,248,191,0,253,0,15,207,210,227,248,63,66,252,0,31,143,208,195,244,63,199,244,0,63,79,208,3,240,15,223,240,0,191,15,208,7,240,11,255,208,0,189,15,208,11,240,3,255,192,0,60,15,208,15,224,2,255,64,0,16,15,208,15,208,2,255,64,0,0,15,208,47,192,15,255,208,0,0,15,208,63,128,63,255,248,0,0,15,208,191,65,255,199,255,0,0,15,208,255,15,255,1,255,224,0,15,210,252,47,248,0,127,244,0,15,208,184,15,208,0,11,224,0,11,208,32,2,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x67f1 柱 + 241,103,35,36,68,37,1,252,0,7,240,0,0,52,0,0,0,0,7,240,0,0,254,0,0,0,0,7,240,0,1,255,192,0,0,0,7,240,0,0,127,244,0,0,0,7,240,0,0,15,253,0,0,0,7,240,0,0,2,255,0,0,0,7,240,0,0,0,191,0,0,0,7,240,0,0,0,125,0,0,63,255,255,253,255,255,255,255,240,63,255,255,253,255,255,255,255,240,63,255,255,253,255,255,255,255,240,21,95,245,80,0,3,248,0,0,0,15,240,0,0,3,248,0,0,0,31,240,0,0,3,248,0,0,0,47,240,0,0,3,248,0,0,0,63,252,0,0,3,248,0,0,0,127,254,0,0,3,248,0,0,0,191,255,64,0,3,248,0,0,0,255,255,208,0,3,248,0,0,2,251,251,240,191,255,255,255,224,3,247,243,252,191,255,255,255,224,11,215,240,252,191,255,255,255,224,15,199,240,176,0,3,248,0,0,47,135,240,16,0,3,248,0,0,127,7,240,0,0,3,248,0,0,190,7,240,0,0,3,248,0,0,60,7,240,0,0,3,248,0,0,40,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,31,255,255,255,255,248,0,7,240,31,255,255,255,255,248,0,7,240,31,255,255,255,255,248,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,35,36,68,37,1,252,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,0,0,15,224,0,0,0,15,208,15,255,255,255,255,240,0,15,208,15,255,255,255,255,240,63,255,255,234,170,170,170,170,160,63,255,255,224,0,0,0,64,0,63,255,255,224,15,128,7,224,0,0,31,208,0,47,192,7,248,0,0,47,208,0,63,128,2,253,0,0,63,208,0,255,0,0,255,64,0,63,240,2,253,0,0,63,192,0,127,248,7,248,0,0,31,224,0,255,253,31,241,0,6,91,240,0,255,255,47,239,192,11,243,244,2,255,239,139,15,192,15,225,128,3,239,223,192,11,224,31,208,0,7,223,215,240,7,240,47,192,0,15,207,211,208,3,252,127,128,0,31,143,209,128,1,253,255,0,0,63,79,208,0,0,255,253,0,0,191,15,208,0,0,63,252,0,0,125,15,208,0,0,47,244,0,0,60,15,208,0,0,47,248,0,0,16,15,208,0,0,191,254,0,0,0,15,208,0,3,255,255,192,0,0,15,208,0,31,252,127,244,0,0,15,208,0,255,240,31,254,0,0,15,208,27,255,128,3,255,224,0,15,208,127,253,0,0,255,244,0,15,208,63,208,0,0,31,208,0,15,208,13,0,0,0,2,128,0,0,0,0,0,0,0,0,0, + // 0x683c 格 + 60,104,35,35,59,37,1,253,0,15,208,0,0,228,0,0,0,0,15,208,0,1,253,0,0,0,0,15,208,0,2,252,0,0,0,0,15,208,0,7,244,0,0,0,0,15,208,0,15,255,255,253,0,0,15,208,0,31,255,255,255,0,0,15,208,0,63,255,255,253,0,0,15,208,0,255,64,2,252,0,63,255,255,242,255,192,3,248,0,63,255,255,251,255,208,11,240,0,63,255,255,255,251,240,31,208,0,0,31,224,127,195,252,63,128,0,0,31,224,31,1,254,255,0,0,0,63,244,5,0,127,253,0,0,0,63,252,0,0,47,248,0,0,0,127,255,0,0,127,252,0,0,0,191,255,128,2,255,255,128,0,0,255,223,208,15,254,191,244,0,1,255,215,240,191,244,31,255,64,3,255,211,219,255,192,3,255,248,7,223,209,255,254,0,0,127,244,15,207,208,191,255,255,255,255,224,31,143,208,62,255,255,255,255,64,63,79,208,0,255,255,255,254,0,191,15,208,0,252,0,0,190,0,125,15,208,0,252,0,0,190,0,56,15,208,0,252,0,0,190,0,16,15,208,0,252,0,0,190,0,0,15,208,0,252,0,0,190,0,0,15,208,0,252,0,0,190,0,0,15,208,0,255,255,255,254,0,0,15,208,0,255,255,255,254,0,0,15,208,0,255,255,255,254,0,0,15,208,0,252,0,0,190,0,0,10,144,0,168,0,0,105,0, + // 0x689d 條 + 157,104,35,36,68,37,1,252,0,2,64,0,0,228,0,0,0,0,3,244,0,2,252,0,0,0,0,7,240,0,3,244,0,0,0,0,15,224,0,11,240,0,0,0,0,15,213,64,31,255,255,255,240,0,47,203,208,63,255,255,255,240,0,63,75,208,191,255,255,255,240,0,127,11,210,255,64,2,252,0,0,254,11,219,255,192,7,244,0,1,254,11,255,251,240,15,240,0,3,254,11,223,195,252,63,192,0,11,254,11,210,0,255,255,64,0,15,254,11,208,0,63,253,0,0,63,254,11,208,0,63,253,0,0,191,254,11,208,2,255,255,208,0,255,190,11,208,111,254,191,254,64,189,190,11,223,255,244,11,255,248,56,190,11,219,255,65,80,191,240,32,190,11,211,224,7,240,6,208,0,190,11,208,0,7,240,0,0,0,190,11,208,0,7,240,0,0,0,190,11,215,255,255,255,255,240,0,190,11,215,255,255,255,255,240,0,190,11,215,255,255,255,255,240,0,190,11,208,0,63,253,0,0,0,190,11,208,0,255,255,0,0,0,190,11,208,2,255,255,192,0,0,190,11,208,15,251,251,240,0,0,190,11,192,63,215,243,252,0,0,190,0,1,255,71,240,255,64,0,190,0,31,253,7,240,63,224,0,190,0,127,244,7,240,31,248,0,190,0,47,192,7,240,3,240,0,190,0,9,0,7,240,0,128,0,190,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x68c4 棄 + 196,104,33,35,59,37,2,253,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,170,170,191,250,170,191,234,170,128,0,0,63,192,0,127,224,0,0,0,0,255,0,0,11,254,0,0,15,255,255,255,255,255,255,208,0,15,255,255,255,255,255,255,252,0,15,255,255,255,170,165,86,253,0,0,0,0,1,80,0,0,116,0,0,31,192,3,240,0,253,0,0,0,31,192,3,240,0,253,0,0,106,175,234,171,250,170,255,170,128,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,0,31,192,3,240,0,253,0,0,0,31,192,3,240,0,253,0,0,0,31,234,171,250,170,253,0,0,0,31,255,255,255,255,253,0,0,0,31,255,255,255,255,253,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,128,0,0,11,255,255,248,0,0,0,0,0,127,215,242,255,64,0,0,0,7,255,71,240,127,248,0,0,1,191,248,7,240,11,255,208,0,111,255,192,7,240,0,255,255,128,255,249,0,7,240,0,11,255,192,63,128,0,7,240,0,0,191,0,20,0,0,7,240,0,0,1,0, + // 0x69fd 槽 + 253,105,35,36,68,37,1,252,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,0,31,192,191,255,255,255,255,248,0,31,192,191,255,255,255,255,248,0,31,192,106,171,250,255,170,164,0,31,192,0,3,240,63,0,0,0,31,192,0,3,240,63,0,0,63,255,255,159,255,255,255,255,208,63,255,255,159,255,255,255,255,208,63,255,255,159,150,245,126,91,208,0,63,192,31,66,240,61,7,208,0,63,192,31,130,240,126,11,208,0,63,192,31,255,255,255,255,208,0,127,208,31,255,255,255,255,208,0,255,240,31,66,240,61,7,208,0,255,248,31,66,240,61,7,208,1,255,252,31,150,245,126,91,208,3,255,255,31,255,255,255,255,208,3,255,223,95,255,255,255,255,208,11,223,207,192,0,0,0,0,0,15,159,199,2,170,170,170,170,0,31,95,193,3,255,255,255,255,0,63,31,192,3,255,255,255,255,0,190,31,192,3,244,0,0,127,0,188,31,192,3,244,0,0,127,0,60,31,192,3,249,85,85,191,0,32,31,192,3,255,255,255,255,0,0,31,192,3,255,255,255,255,0,0,31,192,3,244,0,0,127,0,0,31,192,3,244,0,0,127,0,0,31,192,3,250,170,170,191,0,0,31,192,3,255,255,255,255,0,0,31,192,3,255,255,255,255,0,0,31,192,3,244,0,0,127,0,0,0,0,0,0,0,0,0,0, + // 0x6a59 橙 + 89,106,35,35,59,37,1,253,0,15,192,0,0,0,20,0,0,0,15,192,10,170,208,252,20,0,0,15,192,31,255,244,252,125,0,0,15,192,31,255,240,191,254,0,0,15,192,0,7,240,63,244,0,0,15,192,4,11,224,63,192,128,0,15,192,47,79,192,31,194,240,0,15,192,63,255,128,15,219,244,63,255,255,203,255,64,11,255,192,63,255,255,194,255,0,3,253,0,63,255,255,193,255,255,255,253,0,0,47,208,7,255,255,255,255,64,0,47,192,15,246,170,170,63,224,0,63,192,127,192,0,0,15,252,0,127,225,255,64,0,0,3,240,0,191,244,254,170,170,170,169,144,0,255,252,34,255,255,255,253,0,0,255,255,2,255,255,255,253,0,2,255,239,130,248,0,0,253,0,3,255,207,210,248,0,0,253,0,7,223,199,194,248,0,0,253,0,15,207,195,66,248,0,0,253,0,31,143,192,2,255,255,255,253,0,63,15,192,2,255,255,255,253,0,191,15,192,1,170,170,171,169,0,189,15,192,0,26,0,7,224,0,60,15,192,0,63,0,11,240,0,16,15,192,0,47,128,15,208,0,0,15,192,0,31,192,31,192,0,0,15,192,0,15,192,47,64,0,0,15,192,0,15,64,47,0,0,0,15,192,255,255,255,255,255,248,0,15,192,255,255,255,255,255,248,0,15,192,255,255,255,255,255,244,0,15,192,0,0,0,0,0,0, + // 0x6a5f 機 + 95,106,35,35,59,37,1,253,0,47,64,1,0,63,0,64,0,0,47,64,3,240,63,1,244,0,0,47,64,7,224,63,3,240,0,0,47,64,11,192,63,3,224,0,0,47,64,15,69,63,11,194,0,0,47,64,255,15,191,127,75,208,0,47,65,253,47,127,255,15,192,0,47,64,254,62,63,127,111,0,63,255,255,47,252,63,15,254,0,63,255,255,11,244,63,3,252,0,63,255,255,3,240,47,66,244,64,0,63,128,11,223,47,67,227,208,0,127,64,31,79,111,75,194,240,0,191,192,63,31,223,175,255,240,0,255,225,255,255,223,255,255,244,0,255,240,255,255,239,255,229,184,1,255,248,165,67,223,193,224,80,2,255,189,0,0,15,195,252,0,3,255,127,0,0,15,192,191,0,7,255,95,234,170,175,234,191,160,15,239,78,255,255,255,255,255,240,15,111,68,255,255,255,255,255,240,47,47,64,11,208,7,224,32,0,63,47,64,15,208,3,240,127,0,189,47,64,15,244,3,240,254,0,124,47,64,15,254,2,246,252,0,52,47,64,31,255,193,255,244,0,16,47,64,47,175,240,255,224,0,0,47,64,63,7,208,255,128,80,0,47,64,191,1,66,255,0,184,0,47,64,253,0,15,255,128,188,0,47,67,252,0,191,239,224,248,0,47,79,240,11,255,11,255,244,0,47,67,208,7,244,2,255,240,0,47,65,0,2,64,0,111,128, + // 0x6aa2 檢 + 162,106,35,36,68,37,1,252,0,15,192,0,0,47,192,0,0,0,15,192,0,0,127,240,0,0,0,15,192,0,0,255,248,0,0,0,15,192,0,3,254,254,0,0,0,15,192,0,11,244,191,128,0,0,15,192,0,47,224,63,224,0,0,15,192,0,191,192,15,252,0,0,15,192,3,255,0,3,255,64,63,255,255,223,252,0,0,255,224,63,255,255,255,255,255,255,255,252,63,255,255,255,159,255,255,215,240,0,47,192,61,10,170,170,128,224,0,63,192,16,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,240,15,255,248,191,255,192,0,191,244,15,255,248,191,255,192,0,255,252,15,149,248,189,91,192,0,255,255,15,128,248,188,7,192,2,255,239,79,128,248,188,7,192,3,255,207,207,128,248,188,7,192,7,223,203,207,149,248,189,91,192,15,207,195,79,255,248,191,255,192,31,143,193,15,255,248,191,255,192,63,15,192,0,16,0,1,0,0,127,15,192,0,63,0,3,240,0,125,15,192,0,127,0,7,224,0,60,15,192,0,190,0,11,208,0,16,15,192,0,253,0,15,208,0,0,15,192,2,255,64,47,244,0,0,15,192,7,255,208,63,253,0,0,15,192,15,235,244,255,255,128,0,15,192,63,194,247,252,63,224,0,15,193,255,0,159,244,11,248,0,15,192,253,0,11,208,2,240,0,15,192,48,0,2,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,33,33,41,37,2,255,0,0,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,42,0,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,255,85,85,84,0,0,63,64,0,255,255,255,253,0,0,63,64,0,255,255,255,253,0,0,63,64,0,255,255,255,253,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,85,191,149,85,255,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x6b63 正 + 99,107,33,32,32,37,2,254,21,85,85,85,85,85,85,85,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,21,0,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,254,85,85,80,0,0,63,64,1,255,255,255,244,0,0,63,64,1,255,255,255,244,0,0,63,64,1,255,255,255,244,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,0,63,64,1,253,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,85,85,85,85,85,85,85,85,64, + // 0x6b65 步 + 101,107,33,35,59,37,2,253,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,5,0,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,0,47,192,3,255,255,255,192,0,0,47,192,3,255,255,255,192,0,0,47,192,3,255,255,255,192,0,0,47,192,3,249,85,85,64,0,0,47,192,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,0,47,192,3,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,21,85,85,87,245,85,85,85,0,0,2,64,3,244,0,0,0,0,0,7,248,3,244,0,4,0,0,0,15,240,3,244,0,47,128,0,0,63,224,3,244,0,63,192,0,0,255,128,3,244,0,127,128,0,3,255,0,3,244,0,255,0,0,31,252,0,3,244,2,254,0,0,191,240,0,3,244,7,252,0,0,63,192,15,255,240,15,244,0,0,14,0,7,255,240,63,240,0,0,0,0,3,255,128,255,192,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,2,255,240,0,0,0,0,0,0,191,255,128,0,0,0,0,0,111,255,248,0,0,0,0,2,191,255,255,144,0,0,0,0,2,255,255,248,0,0,0,0,0,0,255,249,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0, + // 0x6b78 歸 + 120,107,35,35,59,37,1,253,0,15,144,0,0,0,0,0,0,0,15,192,0,5,85,85,84,0,0,31,128,0,31,255,255,253,0,11,255,255,240,31,255,255,253,0,11,255,255,240,0,0,0,189,0,11,229,87,241,85,85,85,254,80,11,192,2,243,255,255,255,255,248,11,192,2,243,255,255,255,255,248,11,255,255,240,0,0,0,189,0,11,255,255,240,0,0,0,189,0,11,229,85,80,31,255,255,253,0,11,192,0,0,31,255,255,253,0,11,234,170,160,5,85,85,84,0,11,255,255,244,0,0,0,0,0,11,255,255,244,170,170,170,170,144,11,192,2,244,255,255,255,255,240,11,192,2,244,255,255,255,255,240,11,229,87,244,248,3,240,3,240,11,255,255,244,248,3,240,3,240,11,255,255,244,248,3,240,3,240,0,3,240,0,0,3,240,0,0,0,3,240,0,63,255,255,255,128,15,195,240,0,63,255,255,255,128,15,195,255,248,63,171,254,191,128,15,195,255,248,63,3,240,31,128,15,195,250,164,63,3,240,31,128,15,195,240,0,63,3,240,31,128,15,195,240,0,63,3,240,31,128,15,195,241,172,63,3,240,47,128,15,219,255,252,63,3,243,255,64,127,255,255,253,63,3,242,255,0,127,255,254,144,62,3,240,164,0,127,249,0,0,0,3,240,0,0,20,0,0,0,0,3,240,0,0,0,0,0,0,0,2,160,0,0, + // 0x6bbc 殼 + 188,107,34,36,68,37,2,252,0,7,224,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,3,255,255,224,0,255,255,255,255,67,255,255,224,0,255,255,255,255,67,255,255,224,0,170,171,250,170,3,240,11,224,0,0,7,240,0,3,240,11,224,0,0,7,240,0,3,240,11,224,0,63,255,255,252,3,240,11,225,0,63,255,255,252,7,240,11,225,224,21,85,85,84,11,224,11,226,240,0,0,0,0,15,208,11,226,240,255,255,255,255,127,192,7,255,224,255,255,255,255,255,64,3,255,208,253,85,85,127,190,0,0,170,0,252,0,0,47,24,0,0,0,0,252,0,0,47,0,0,0,0,0,254,255,255,239,47,255,255,254,0,2,255,255,192,47,255,255,254,0,0,0,0,0,47,255,255,253,0,0,0,0,0,2,224,1,252,0,2,170,170,144,3,240,3,248,0,3,255,255,208,3,248,7,244,0,3,255,255,208,1,252,15,240,0,3,240,11,208,0,255,47,208,0,3,240,11,208,0,127,191,128,0,3,240,11,208,0,47,255,0,0,7,240,11,209,64,15,252,0,0,11,224,11,255,192,47,253,0,0,15,208,47,255,192,255,255,128,0,47,192,127,254,11,255,191,244,0,127,128,63,145,255,248,31,255,128,255,0,20,11,255,208,3,255,208,60,0,0,3,253,0,0,127,128,0,0,0,1,208,0,0,7,0,0,0,0,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,34,35,59,37,2,253,0,106,0,0,6,144,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,124,0,0,191,0,0,15,224,3,255,0,0,191,85,85,15,224,47,255,64,0,191,255,254,15,226,255,248,0,0,191,255,254,15,255,255,128,0,0,191,255,254,15,255,248,0,0,0,191,0,0,15,255,128,0,0,0,191,0,0,15,244,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,7,128,0,191,0,0,15,224,0,11,240,0,191,0,27,143,224,0,11,224,0,191,27,255,143,224,0,11,224,0,255,255,255,207,240,0,15,208,175,255,255,254,75,240,0,31,192,255,255,254,64,7,255,255,255,192,255,254,64,0,3,255,255,255,64,190,64,0,0,1,255,255,254,0,0,0,0,0,0,5,85,64,0, + // 0x6c92 沒 + 146,108,33,35,59,37,2,253,1,0,0,0,164,0,0,0,0,7,208,0,1,253,0,0,0,0,15,253,0,1,252,0,0,0,0,15,255,128,2,252,0,0,0,0,1,255,240,3,255,255,255,253,0,0,47,224,3,255,255,255,252,0,0,3,192,7,255,255,255,252,0,0,0,0,15,240,0,1,252,0,0,0,0,15,224,0,1,252,0,0,0,0,47,208,0,2,252,0,16,0,0,63,192,0,2,248,0,125,0,0,191,64,0,3,248,0,255,208,1,255,0,0,7,244,0,191,253,7,252,0,47,255,240,0,11,255,31,248,0,31,255,224,0,0,253,11,240,0,15,255,64,0,0,44,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,248,0,0,0,1,255,255,255,255,252,0,0,1,1,255,255,255,255,248,0,0,7,128,7,224,0,11,244,0,0,15,224,11,244,0,31,224,0,0,31,208,3,252,0,63,192,0,0,63,192,1,255,0,255,64,0,0,127,64,0,191,195,254,0,0,0,255,0,0,47,255,252,0,0,2,253,0,0,15,255,240,0,0,3,252,0,0,7,255,208,0,0,11,244,0,0,127,255,253,0,0,31,240,0,27,255,255,255,208,0,63,208,27,255,255,66,255,255,128,63,128,47,255,244,0,47,255,192,11,0,15,254,0,0,2,255,64,0,0,6,64,0,0,0,26,0, + // 0x6d88 消 + 136,109,33,36,68,37,2,252,1,0,0,0,0,253,0,0,0,11,128,0,32,0,253,0,40,0,31,248,2,248,0,253,0,63,64,15,255,2,252,0,253,0,191,0,1,255,208,255,0,253,0,254,0,0,63,192,127,64,253,2,252,0,0,11,64,63,192,253,3,248,0,0,1,0,31,208,253,11,240,0,0,0,0,15,128,253,11,208,0,0,0,0,4,0,253,0,64,0,16,0,0,0,0,254,0,0,0,125,0,0,255,255,255,255,252,0,255,192,0,255,255,255,255,252,0,191,244,0,255,255,255,255,252,0,15,254,0,253,0,0,0,252,0,2,254,0,253,0,0,0,252,0,0,188,0,253,0,0,0,252,0,0,20,0,253,0,0,0,252,0,0,0,0,255,255,255,255,252,0,0,0,0,255,255,255,255,252,0,0,0,0,255,255,255,255,252,0,0,11,0,253,0,0,0,252,0,0,15,192,253,0,0,0,252,0,0,47,192,253,0,0,0,252,0,0,63,64,255,255,255,255,252,0,0,191,0,255,255,255,255,252,0,0,254,0,255,255,255,255,252,0,2,252,0,253,0,0,0,252,0,3,248,0,253,0,0,0,252,0,11,240,0,253,0,0,0,252,0,31,224,0,253,0,0,0,252,0,63,208,0,253,0,0,1,252,0,127,192,0,253,0,3,255,252,0,31,64,0,253,0,2,255,248,0,2,0,0,253,0,1,255,208,0,0,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,35,34,50,37,1,253,0,0,0,0,0,127,0,0,0,1,224,0,0,0,127,0,0,0,7,254,0,6,64,127,0,36,0,3,255,208,15,192,127,0,63,128,0,127,248,31,192,191,0,191,0,0,11,244,63,128,190,1,253,0,0,1,208,127,0,254,3,252,0,0,0,0,254,0,253,7,240,0,0,0,1,252,1,254,15,208,0,0,0,0,36,3,255,209,64,0,4,0,0,0,7,255,252,0,0,31,64,0,0,31,251,255,128,0,127,244,0,0,191,208,191,244,0,47,254,0,7,255,128,31,255,0,2,255,193,255,253,0,2,255,192,0,127,2,255,224,106,0,63,192,0,13,0,254,0,127,0,11,0,0,0,0,0,0,191,0,0,0,0,0,0,9,0,191,0,25,0,0,1,0,31,192,190,0,63,192,0,3,128,47,128,254,0,127,128,0,11,240,63,64,255,0,255,0,0,15,224,191,0,255,66,253,0,0,47,192,254,1,255,131,248,0,0,63,195,252,3,255,207,240,0,0,191,66,244,3,255,246,192,0,0,255,0,16,15,247,248,0,0,2,253,0,0,47,226,254,0,0,7,252,0,0,255,192,255,128,0,15,244,0,27,255,0,63,244,0,31,240,6,255,252,0,15,255,144,15,208,31,255,224,0,2,255,244,2,128,11,254,0,0,0,127,224,0,0,3,144,0,0,0,1,128, + // 0x6e05 清 + 5,110,34,36,68,37,2,252,2,0,0,0,1,252,0,0,0,15,224,0,0,1,252,0,0,0,31,254,1,85,86,253,85,85,0,7,255,195,255,255,255,255,255,64,0,191,211,255,255,255,255,255,64,0,31,192,0,1,252,0,0,0,0,3,64,0,1,252,0,0,0,0,0,1,255,255,255,255,253,0,0,0,1,255,255,255,255,253,0,0,0,0,85,86,253,85,84,0,16,0,0,0,1,252,0,0,0,125,0,10,170,170,254,170,170,144,255,224,31,255,255,255,255,255,224,191,253,31,255,255,255,255,255,224,11,255,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,40,0,63,255,255,255,248,0,0,0,0,63,255,255,255,248,0,0,0,0,63,170,170,171,248,0,0,0,0,63,0,0,2,248,0,0,1,0,63,0,0,2,248,0,0,11,128,63,255,255,255,248,0,0,15,208,63,255,255,255,248,0,0,47,192,63,85,85,86,248,0,0,63,128,63,0,0,2,248,0,0,191,0,63,85,85,86,248,0,0,254,0,63,255,255,255,248,0,2,252,0,63,255,255,255,248,0,7,248,0,63,0,0,2,248,0,15,240,0,63,0,0,2,248,0,31,224,0,63,0,0,2,248,0,63,192,0,63,0,0,2,248,0,63,128,0,63,0,3,255,248,0,15,0,0,63,0,2,255,244,0,1,0,0,63,0,1,255,144,0,0,0,0,0,0,0,0,0,0, + // 0x6e2c 測 + 44,110,33,36,68,37,1,252,0,64,0,0,0,0,0,15,192,3,224,0,0,0,0,0,15,192,11,254,7,255,255,208,0,15,192,3,255,199,255,255,208,0,15,192,0,127,215,255,255,208,248,15,192,0,15,135,208,11,208,252,15,192,0,2,7,208,11,208,252,15,192,0,0,7,208,11,208,252,15,192,0,0,7,208,11,208,252,15,192,0,0,7,255,255,208,252,15,192,4,0,7,255,255,208,252,15,192,47,128,7,255,255,208,252,15,192,127,248,7,208,11,208,252,15,192,47,255,7,208,11,208,252,15,192,2,255,7,208,11,208,252,15,192,0,124,7,208,11,208,252,15,192,0,4,7,255,255,208,252,15,192,0,0,7,255,255,208,252,15,192,0,0,7,255,255,208,252,15,192,0,0,7,208,11,208,252,15,192,0,0,7,208,11,208,252,15,192,0,30,7,208,11,208,252,15,192,0,47,135,208,11,208,252,15,192,0,63,71,255,255,208,252,15,192,0,127,7,255,255,208,252,15,192,0,254,7,255,255,208,248,15,192,0,253,0,0,1,0,0,15,192,2,252,2,248,31,64,0,15,192,3,248,3,244,47,192,0,15,192,7,240,11,240,15,240,0,15,192,15,240,31,208,3,248,0,15,192,31,208,63,192,2,252,16,31,192,47,192,255,0,0,248,63,255,192,7,129,253,0,0,80,47,255,128,0,0,52,0,0,0,31,249,0,0,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,34,35,59,37,2,253,1,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,31,252,11,255,255,255,255,255,192,11,255,75,255,255,255,255,255,192,1,255,203,255,255,255,255,255,192,0,47,75,240,0,31,224,0,0,0,10,11,240,0,31,208,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,128,0,0,0,0,11,241,255,255,255,255,0,16,0,11,241,255,255,255,255,0,125,0,11,241,254,170,170,191,0,255,208,11,241,248,0,0,127,0,191,252,11,241,248,0,0,127,0,11,252,11,225,255,255,255,255,0,0,244,11,225,255,255,255,255,0,0,16,11,225,253,85,85,191,0,0,0,11,225,248,0,0,127,0,0,0,15,225,248,0,0,127,0,0,0,15,209,254,170,170,191,0,0,16,15,209,255,255,255,255,0,0,61,15,193,255,255,255,255,0,0,127,15,192,0,15,192,0,0,0,254,31,192,0,15,192,16,0,1,253,47,192,184,15,193,248,0,2,252,63,128,253,15,194,252,0,3,248,63,66,252,15,192,254,0,11,240,127,3,244,15,192,191,64,15,240,255,11,240,15,192,63,192,31,208,253,31,208,15,192,31,208,63,194,252,63,128,15,192,15,224,127,67,248,63,0,15,192,11,144,191,11,240,5,15,255,192,0,0,30,7,224,0,15,255,128,0,0,0,0,128,0,7,249,0,0,0, + // 0x6e96 準 + 150,110,33,35,59,37,2,253,0,128,0,14,64,10,64,0,0,3,248,0,31,208,31,224,0,0,11,255,128,63,192,47,192,0,0,1,255,224,191,64,63,64,0,0,0,31,192,255,170,255,170,169,0,0,2,3,255,255,255,255,254,0,16,0,15,255,255,255,255,254,0,126,0,47,252,0,190,0,0,0,255,224,191,252,0,190,0,0,0,127,254,255,254,170,255,170,160,0,7,244,254,255,255,255,255,244,0,0,96,53,255,255,255,255,244,0,0,0,1,252,0,190,0,0,0,0,3,129,252,0,190,0,0,0,0,15,209,255,255,255,255,244,0,0,63,193,255,255,255,255,244,0,0,255,65,254,170,255,170,160,0,2,253,1,252,0,190,0,0,0,11,248,1,252,0,190,0,0,0,63,240,1,255,255,255,255,255,64,63,192,1,255,255,255,255,255,64,31,0,0,170,170,170,170,170,64,4,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x6eab 溫 + 171,110,34,35,59,37,2,253,1,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,15,252,0,255,255,255,255,240,0,15,255,64,255,255,255,255,240,0,1,255,208,254,170,170,175,240,0,0,47,128,252,0,224,11,240,0,0,7,0,252,1,240,11,240,0,0,0,0,252,3,224,11,240,0,0,0,0,252,3,240,11,240,0,0,0,0,252,15,253,11,240,0,16,0,0,252,47,47,75,240,0,126,0,0,253,253,11,219,240,0,255,224,0,252,244,2,203,240,0,191,252,0,252,0,0,11,240,0,11,253,0,255,255,255,255,240,0,1,248,0,255,255,255,255,240,0,0,32,0,170,170,170,170,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,255,255,255,255,252,0,0,8,7,255,255,255,255,252,0,0,47,7,255,255,255,255,252,0,0,63,135,240,125,11,192,252,0,0,127,71,240,125,11,192,252,0,0,255,7,240,125,11,192,252,0,1,253,7,240,125,11,192,252,0,2,252,7,240,125,11,192,252,0,3,248,7,240,125,11,192,252,0,11,240,7,240,125,11,192,252,0,15,224,7,240,125,11,192,252,0,47,208,7,240,125,11,192,252,0,127,193,255,255,255,255,255,255,224,191,65,255,255,255,255,255,255,224,31,1,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x6fc0 激 + 192,111,34,36,68,37,2,252,0,0,0,46,64,2,228,0,0,15,128,0,63,192,2,248,0,0,47,244,0,63,64,3,244,0,0,31,254,0,127,0,3,240,0,0,3,255,127,255,255,131,240,0,0,0,127,63,255,255,135,240,0,0,0,28,63,85,111,139,224,0,0,0,0,63,0,31,143,255,255,224,0,0,63,85,111,143,255,255,224,0,0,63,255,255,159,255,255,224,0,0,63,255,255,175,192,127,0,125,0,63,0,31,191,192,126,0,255,128,63,0,31,255,192,190,0,255,244,63,85,111,255,192,189,0,31,252,63,255,255,255,208,253,0,2,244,63,255,255,255,208,252,0,0,96,0,63,64,247,224,252,0,0,0,0,63,64,114,241,252,0,0,0,0,63,64,1,242,248,0,0,1,255,255,255,241,247,244,0,0,1,255,255,255,240,251,240,0,0,53,255,255,255,224,255,240,0,0,190,2,244,0,0,127,224,0,0,254,2,244,0,0,63,208,0,1,252,2,255,255,64,63,192,0,3,252,3,255,255,64,63,128,0,3,244,3,255,255,64,127,192,0,11,240,7,240,63,64,255,240,0,15,224,11,224,63,2,255,244,0,31,208,15,192,63,7,246,252,0,63,192,63,128,63,31,240,255,0,127,64,191,0,127,127,192,127,192,191,2,253,47,255,255,64,47,224,46,7,248,31,253,253,0,11,192,0,1,208,10,144,48,0,2,0,0,0,0,0,0,0,0,0,0, + // 0x7121 無 + 33,113,34,35,59,37,2,253,0,3,144,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,255,255,255,255,255,254,0,1,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,31,255,65,248,15,192,127,0,0,191,255,1,248,15,192,63,0,0,255,191,1,248,15,192,63,0,0,62,63,1,248,15,192,63,0,0,8,63,1,248,15,192,63,0,0,0,63,1,248,15,192,63,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,63,65,248,15,192,127,0,0,0,63,1,248,15,192,63,0,0,0,63,1,248,15,192,63,0,0,0,63,1,248,15,192,63,0,0,0,63,1,248,15,192,63,0,0,0,63,1,248,15,192,63,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,1,128,0,1,253,2,160,10,208,31,224,0,2,252,3,240,11,240,15,244,0,3,244,3,240,7,240,3,252,0,15,240,3,244,3,248,1,254,0,31,224,3,248,2,252,0,255,64,127,192,3,248,1,252,0,127,192,255,64,2,248,0,253,0,47,208,29,0,1,64,0,144,0,13,0, + // 0x71b1 熱 + 177,113,34,35,59,37,2,253,0,3,224,0,0,63,0,0,0,0,3,240,0,0,63,0,0,0,5,87,245,84,0,63,0,0,0,31,255,255,252,0,63,0,0,0,31,255,255,252,0,63,0,0,0,0,3,240,0,63,255,255,240,0,0,3,240,0,63,255,255,240,0,85,91,245,85,63,255,255,240,0,191,255,255,255,64,126,7,240,0,191,255,255,255,64,126,7,240,0,0,252,31,0,0,189,7,240,0,0,248,31,6,24,189,7,240,0,3,240,31,79,191,253,7,240,0,111,224,31,255,191,252,7,240,0,255,66,155,254,31,253,7,240,0,56,3,240,0,3,255,71,240,0,0,3,240,0,1,255,215,240,0,63,255,255,253,3,255,251,240,64,63,255,255,253,3,247,247,240,240,26,171,250,168,7,240,215,240,240,0,3,240,0,15,208,7,241,240,0,3,240,5,47,192,7,241,240,1,91,255,255,191,64,7,242,240,255,255,255,255,255,0,7,255,224,255,255,255,165,252,0,3,255,208,186,148,0,0,112,0,0,170,64,0,0,0,0,0,0,0,0,0,0,228,0,0,0,64,6,192,0,2,252,7,240,15,208,31,240,0,3,248,7,240,11,240,11,248,0,11,240,3,240,3,244,3,253,0,31,224,3,244,3,248,0,255,0,63,192,3,244,2,252,0,191,128,255,64,3,248,1,252,0,63,192,25,0,1,64,0,64,0,25,0, + // 0x71c8 燈 + 200,113,35,35,59,37,1,253,0,10,64,0,0,6,208,16,0,0,15,192,10,170,147,240,184,0,0,15,192,15,255,247,242,252,0,0,15,192,15,255,241,255,240,0,0,15,192,0,3,224,255,128,0,0,15,194,5,11,208,191,3,208,0,15,199,255,143,192,63,79,240,5,15,203,239,255,64,31,255,128,15,79,207,195,255,0,15,253,0,15,79,239,65,253,0,3,252,0,15,79,254,3,255,255,255,255,0,15,15,252,15,255,255,255,191,208,31,15,212,127,207,255,255,47,248,47,15,195,255,0,0,0,11,248,62,31,195,248,0,0,0,1,240,61,31,193,210,170,170,170,168,0,188,31,192,3,255,255,255,252,0,4,31,128,3,255,255,255,252,0,0,31,128,3,240,0,0,252,0,0,47,128,3,240,0,0,252,0,0,47,64,3,240,0,0,252,0,0,63,128,3,240,0,0,252,0,0,63,208,3,255,255,255,252,0,0,63,240,3,255,255,255,252,0,0,127,252,2,170,170,170,168,0,0,190,254,0,29,0,11,144,0,0,252,127,64,127,0,15,208,0,2,252,63,192,63,64,31,192,0,3,248,15,192,31,128,47,128,0,11,240,11,64,15,192,63,0,0,15,224,1,0,15,64,46,0,0,63,192,0,255,255,255,255,255,240,127,64,0,255,255,255,255,255,240,46,0,0,255,255,255,255,255,240,8,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,36,32,37,1,252,0,0,0,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,192,0,3,248,0,0,0,31,234,170,171,254,170,170,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,31,255,255,255,255,255,255,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,234,170,170,171,252,0,0,127,64,0,0,2,252,0,0,191,0,0,0,2,252,0,0,255,0,0,0,2,252,0,0,254,0,0,0,2,252,0,2,253,0,0,0,2,252,0,3,252,0,0,0,2,252,0,11,248,0,0,0,2,252,0,31,240,0,0,0,2,252,0,63,224,0,0,0,2,252,0,127,192,0,0,0,2,252,0,31,64,0,0,0,2,252,0,6,0,0,0,0,2,252,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,34,35,59,37,1,253,0,3,244,0,11,128,0,0,0,0,3,244,0,15,208,0,0,0,6,67,244,0,15,192,0,0,0,11,211,244,0,31,192,0,0,0,15,195,244,0,47,64,0,0,0,15,195,244,0,63,0,0,0,0,15,195,244,0,127,255,255,255,240,15,195,244,0,255,255,255,255,240,31,255,255,225,255,255,255,255,240,31,255,255,227,248,47,71,247,240,47,255,255,231,240,63,11,211,240,63,3,244,15,224,126,15,199,240,63,3,244,47,192,189,15,199,240,190,3,244,127,128,252,31,135,240,188,3,244,127,2,248,47,135,240,44,3,244,13,3,240,63,71,240,0,3,244,0,7,240,63,11,224,0,3,250,244,15,208,190,11,224,0,3,255,244,47,192,253,11,224,0,111,255,248,63,65,252,15,208,27,255,255,144,255,3,248,15,208,127,255,244,2,252,3,240,15,208,63,251,244,7,248,11,240,15,208,61,3,244,31,240,15,208,15,192,0,3,244,47,192,47,192,15,192,0,3,244,3,0,127,64,31,192,0,3,244,0,0,255,0,47,192,0,3,244,0,2,253,0,47,128,0,3,244,0,7,248,0,63,128,0,3,244,0,31,240,0,127,64,0,3,244,0,127,192,0,255,0,0,3,244,1,255,65,255,255,0,0,3,244,0,189,0,255,252,0,0,3,244,0,36,0,255,244,0,0,3,244,0,0,0,20,0,0, + // 0x7387 率 + 135,115,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,0,0,0,47,192,0,0,0,0,1,0,0,63,64,0,0,224,0,15,192,0,254,2,64,3,253,0,47,248,10,252,7,240,15,248,0,7,255,47,240,15,208,63,208,0,0,255,239,240,63,129,255,64,0,0,47,7,253,190,0,188,0,0,0,4,0,255,252,0,0,0,0,0,0,0,63,242,208,0,0,0,0,1,128,31,199,240,244,0,0,0,31,208,63,2,255,255,64,0,2,255,224,253,85,254,255,224,0,127,255,191,255,255,255,31,253,0,191,228,127,255,255,255,130,255,128,62,0,63,170,164,15,192,127,64,16,0,0,7,240,10,0,28,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7528 用 + 40,117,32,34,16,37,1,252,0,21,85,85,85,85,85,85,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,254,0,0,191,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,127,0,0,253,0,0,191,0,191,255,255,255,255,255,255,0,191,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,254,85,85,254,85,85,191,0,253,0,0,253,0,0,191,1,252,0,0,253,0,0,191,2,252,0,0,253,0,0,191,3,248,0,0,253,0,0,191,3,244,0,0,253,0,0,191,11,240,0,0,253,0,0,191,15,240,0,0,253,0,0,191,47,208,0,0,253,5,65,255,127,192,0,0,253,11,255,254,127,64,0,0,253,7,255,252,14,0,0,0,189,3,255,224,0,0,0,0,0,0,0,0, + // 0x754c 界 + 76,117,33,35,59,37,2,252,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,170,175,250,170,175,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,31,240,2,254,0,0,0,0,0,191,192,0,255,128,0,0,0,3,255,64,0,63,244,0,0,0,47,252,0,0,11,255,64,0,2,255,245,64,0,43,255,248,0,111,255,175,192,0,63,111,255,192,255,248,47,192,0,63,71,255,128,63,208,47,192,0,63,64,127,0,24,0,63,128,0,63,64,0,0,0,0,63,128,0,63,64,0,0,0,0,127,64,0,63,64,0,0,0,0,255,0,0,63,64,0,0,0,3,254,0,0,63,64,0,0,0,15,252,0,0,63,64,0,0,0,191,244,0,0,63,64,0,0,7,255,208,0,0,63,64,0,0,2,255,0,0,0,63,64,0,0,0,244,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,27,36,252,37,5,252,0,0,3,228,0,0,0,0,0,7,252,0,0,0,0,0,11,248,0,0,0,0,0,15,240,0,0,0,0,0,31,240,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,254,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,255,255,255,255,255,252,255,85,85,85,85,87,252,254,0,0,0,0,2,252,254,0,0,0,0,2,252,0,0,0,0,0,0,0, + // 0x7684 的 + 132,118,32,35,24,37,3,253,0,30,128,0,7,144,0,0,0,47,192,0,11,240,0,0,0,63,128,0,15,224,0,0,0,63,64,0,15,208,0,0,0,127,0,0,31,192,0,0,0,190,0,0,63,192,0,0,255,255,255,208,63,255,255,253,255,255,255,208,191,255,255,253,255,255,255,208,255,255,255,253,253,0,15,209,253,0,0,253,253,0,15,211,248,0,0,253,253,0,15,219,240,0,0,252,253,0,15,239,224,0,0,252,253,0,15,239,192,0,0,252,253,0,15,210,66,0,0,252,253,0,15,208,31,128,0,252,255,255,255,208,31,208,0,252,255,255,255,208,11,240,0,252,255,255,255,208,3,252,0,252,253,0,15,208,1,254,1,252,253,0,15,208,0,191,1,252,253,0,15,208,0,63,193,252,253,0,15,208,0,47,194,248,253,0,15,208,0,15,66,248,253,0,15,208,0,4,2,248,253,0,15,208,0,0,3,248,253,0,15,208,0,0,3,244,253,0,15,208,0,0,3,244,255,255,255,208,0,0,7,240,255,255,255,208,0,0,11,240,255,255,255,208,0,0,31,224,253,0,0,0,2,255,255,208,253,0,0,0,0,255,255,192,253,0,0,0,0,255,254,0,0,0,0,0,0,0,0,0, + // 0x76e3 監 + 227,118,33,34,50,37,2,254,0,0,0,0,0,57,0,0,0,42,170,170,170,64,127,0,0,0,63,255,255,255,128,190,0,0,0,63,255,255,255,128,252,0,0,0,63,0,248,0,1,252,0,0,0,63,0,248,0,2,248,0,0,0,63,85,253,85,3,255,255,255,128,63,255,255,255,7,255,255,255,128,63,255,255,255,15,255,255,255,128,63,0,0,63,47,192,0,0,0,63,0,0,63,127,64,0,0,0,63,85,85,127,191,0,0,0,0,63,255,255,255,28,0,0,0,0,63,255,255,255,0,0,0,0,0,63,0,248,0,0,0,0,0,0,63,0,248,0,2,255,255,255,0,63,0,248,0,2,255,255,255,0,63,255,255,255,194,255,255,255,0,63,255,255,255,192,0,0,0,0,42,170,170,170,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,171,254,175,250,191,208,0,0,252,3,244,7,224,15,208,0,0,252,3,244,7,224,15,208,0,0,252,3,244,7,224,15,208,0,0,252,3,244,7,224,15,208,0,0,252,3,244,7,224,15,208,0,0,252,3,244,7,224,15,208,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x76f4 直 + 244,118,33,35,59,37,2,253,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,26,175,250,170,170,64,0,5,80,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,149,85,85,127,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,149,85,85,127,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,63,64,0,0,47,128,0,15,224,63,64,0,0,47,128,0,15,224,63,170,170,170,191,128,0,15,224,63,255,255,255,255,128,0,15,224,63,255,255,255,255,128,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0x7720 眠 + 32,119,34,33,41,37,2,253,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,224,0,0,63,64,127,0,189,11,240,0,0,63,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,255,253,11,255,255,255,255,64,127,0,189,11,224,7,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,224,3,240,0,0,127,0,189,11,240,7,244,0,0,127,255,253,11,255,255,255,255,208,127,255,253,11,255,255,255,255,208,127,255,253,11,255,255,255,255,208,127,0,189,11,224,2,248,0,0,127,0,189,11,224,1,252,0,0,127,0,189,11,224,1,252,0,0,127,0,189,11,224,0,252,0,0,127,0,189,11,224,0,253,0,0,127,255,253,11,224,0,190,0,0,127,255,253,11,224,0,127,1,208,127,255,253,11,224,0,63,2,240,127,0,0,11,224,107,127,130,240,127,0,0,11,255,255,95,195,240,63,0,2,255,255,255,79,247,240,0,0,2,255,255,249,7,255,208,0,0,1,255,228,0,2,255,192,0,0,0,144,0,0,0,127,0, + // 0x780d 砍 + 13,120,35,35,59,37,1,253,0,0,0,0,15,144,0,0,0,0,0,0,0,15,208,0,0,0,63,255,255,253,31,208,0,0,0,63,255,255,253,31,192,0,0,0,63,255,255,253,47,192,0,0,0,0,63,64,0,63,192,0,0,0,0,63,0,0,63,128,0,1,0,0,127,0,0,127,255,255,255,244,0,126,0,0,191,255,255,255,244,0,190,0,0,255,255,255,255,240,0,253,0,0,253,15,208,11,224,0,252,0,2,252,15,208,15,208,1,252,0,3,248,15,208,15,192,2,255,255,251,244,15,208,31,192,3,255,255,255,240,15,208,47,128,7,255,255,255,208,15,208,63,64,11,248,3,247,192,15,208,63,0,15,248,3,240,0,15,208,5,0,47,248,3,240,0,31,224,0,0,63,248,3,240,0,47,240,0,0,191,248,3,240,0,63,240,0,0,191,248,3,240,0,63,244,0,0,62,248,3,240,0,190,252,0,0,21,248,3,240,0,252,252,0,0,1,248,3,240,2,252,191,0,0,1,248,3,240,3,244,63,64,0,1,255,255,240,15,240,47,192,0,1,255,255,240,47,208,15,240,0,1,255,255,240,191,128,11,252,0,1,248,0,2,255,0,3,255,0,1,248,0,15,253,0,0,255,208,1,248,0,127,244,0,0,127,248,1,164,0,63,208,0,0,31,244,0,0,0,31,64,0,0,3,224,0,0,0,8,0,0,0,0,128, + // 0x78ba 確 + 186,120,35,35,59,37,1,253,0,0,0,0,0,6,144,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,15,208,0,0,63,255,255,240,0,31,192,0,0,63,255,255,255,255,255,255,255,244,63,255,255,255,255,255,255,255,244,0,63,0,15,255,255,255,255,244,0,127,0,15,192,254,0,3,244,0,127,0,15,193,252,11,147,244,0,190,0,15,195,248,15,211,244,0,253,0,10,75,240,31,193,160,0,252,0,0,15,208,47,64,0,1,252,0,0,63,255,255,255,208,2,252,0,0,191,255,255,255,208,3,255,255,210,255,255,255,255,208,3,255,255,219,255,0,253,0,0,11,255,255,255,255,0,253,0,0,15,244,11,223,255,0,253,0,0,31,244,11,210,127,170,254,170,64,63,244,11,208,127,255,255,255,192,127,244,11,208,127,255,255,255,192,255,244,11,208,127,0,253,0,0,191,244,11,208,127,0,253,0,0,61,244,11,208,127,0,253,0,0,17,244,11,208,127,170,254,170,64,1,244,11,208,127,255,255,255,192,1,244,11,208,127,255,255,255,192,1,255,255,208,127,0,253,0,0,1,255,255,208,127,0,253,0,0,1,255,255,208,127,0,253,0,0,1,244,0,0,127,255,255,255,244,1,244,0,0,127,255,255,255,244,1,244,0,0,127,255,255,255,244,0,0,0,0,127,0,0,0,0,0,0,0,0,126,0,0,0,0, + // 0x79fb 移 + 251,121,34,35,59,37,1,253,0,0,1,0,0,15,144,0,0,0,0,111,192,0,47,192,0,0,0,111,255,240,0,127,128,0,0,63,255,255,208,1,255,255,254,0,63,255,244,0,7,255,255,255,128,47,155,240,0,47,255,255,255,0,0,7,240,0,191,192,0,254,0,0,7,240,7,255,192,2,252,0,0,7,240,47,255,240,7,248,0,0,7,240,15,231,253,31,240,0,0,11,240,3,0,255,191,192,0,63,255,255,240,0,63,255,64,0,63,255,255,240,0,15,253,0,0,63,255,255,240,0,191,240,0,0,0,15,240,0,7,255,208,0,0,0,31,240,1,255,255,253,0,0,0,63,248,15,255,227,252,0,0,0,127,254,3,254,11,240,0,0,0,255,255,130,144,47,255,255,224,1,255,255,208,0,191,255,255,240,3,251,247,244,2,255,255,255,240,7,231,242,244,15,248,0,31,208,15,199,240,224,191,240,0,63,192,47,135,240,71,255,253,0,191,64,127,71,240,7,254,255,129,255,0,190,7,240,2,208,127,231,252,0,60,7,240,0,0,15,255,244,0,36,7,240,0,0,2,255,208,0,0,7,240,0,0,7,255,64,0,0,7,240,0,0,127,252,0,0,0,7,240,0,7,255,224,0,0,0,7,240,6,255,255,64,0,0,0,7,240,47,255,244,0,0,0,0,7,240,15,254,0,0,0,0,0,7,240,7,144,0,0,0,0, + // 0x7a4d 積 + 77,122,35,36,68,37,1,252,0,0,1,0,0,15,208,0,0,0,0,111,128,0,15,208,0,0,0,111,255,231,255,255,255,255,224,63,255,255,219,255,255,255,255,224,63,255,244,0,0,15,224,0,0,46,159,224,0,0,15,208,0,0,0,11,224,3,255,255,255,255,128,0,11,224,3,255,255,255,255,128,0,11,224,0,0,15,224,0,0,0,11,224,0,0,15,224,0,0,42,175,250,191,255,255,255,255,244,63,255,255,255,255,255,255,255,244,63,255,255,224,0,0,0,0,0,63,255,255,208,0,0,0,0,0,0,15,224,0,255,255,255,255,64,0,47,224,0,255,255,255,255,64,0,63,248,0,252,0,0,63,64,0,127,254,0,252,0,0,63,64,0,255,255,128,255,255,255,255,64,1,255,255,208,255,255,255,255,64,3,251,231,240,252,0,0,63,64,11,219,226,224,252,0,0,63,64,15,203,224,192,255,255,255,255,64,63,139,224,0,255,255,255,255,64,191,11,224,0,252,0,0,63,64,189,11,224,0,252,0,0,63,64,60,11,224,0,252,0,0,63,64,32,11,224,0,255,255,255,255,64,0,11,224,0,255,255,255,255,64,0,11,224,0,3,128,3,128,0,0,11,224,0,47,244,15,244,0,0,11,224,2,255,208,7,255,0,0,11,224,127,254,0,0,191,208,0,11,224,191,224,0,0,31,244,0,11,224,46,0,0,0,3,128,0,0,0,0,0,0,0,0,0, + // 0x7aef 端 + 239,122,35,35,59,37,1,253,0,5,0,0,0,15,192,0,0,0,47,64,0,0,15,192,0,0,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,0,47,64,11,224,15,192,15,192,63,255,255,139,255,255,255,255,192,63,255,255,139,255,255,255,255,192,63,255,255,139,255,255,255,255,192,0,0,0,0,0,0,0,0,0,6,0,57,0,0,0,0,0,0,31,64,127,0,0,0,0,0,0,15,128,126,63,255,255,255,255,244,15,128,189,63,255,255,255,255,244,15,192,189,63,255,255,255,255,244,11,192,252,0,0,47,192,0,0,11,192,252,0,0,63,192,0,0,7,208,252,0,0,63,64,0,0,7,209,248,15,255,255,255,255,224,3,225,244,15,255,255,255,255,224,3,226,240,15,255,255,255,255,224,3,211,240,15,193,244,63,7,224,0,3,246,223,193,244,63,7,224,0,7,255,223,193,244,63,7,224,27,255,255,239,193,244,63,7,224,191,255,254,79,193,244,63,7,224,127,254,64,15,193,244,63,7,224,62,64,0,15,193,244,63,7,224,0,0,0,15,193,244,63,7,224,0,0,0,15,193,244,63,7,224,0,0,0,15,193,244,63,111,224,0,0,0,15,193,244,63,127,208,0,0,0,10,128,80,0,63,64, + // 0x7b49 等 + 73,123,34,35,59,37,1,253,0,30,64,0,0,249,0,0,0,0,63,192,0,1,253,0,0,0,0,127,64,0,2,252,0,0,0,0,255,255,255,199,255,255,255,240,1,255,255,255,207,255,255,255,240,3,255,255,255,239,255,255,255,240,15,240,252,0,191,130,252,0,0,63,208,254,1,255,0,255,0,0,191,128,127,0,253,0,127,64,0,31,0,56,1,252,0,61,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,248,0,0,127,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,0,0,124,0,0,3,248,0,0,0,1,255,64,0,3,248,0,0,0,0,191,208,0,3,248,0,0,0,0,31,244,0,3,248,0,0,0,0,7,253,0,3,248,0,0,0,0,1,253,0,7,248,0,0,0,0,0,176,31,255,244,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,11,255,128,0,0, + // 0x7ba1 管 + 161,123,35,35,59,37,1,253,0,46,64,0,0,248,0,0,0,0,63,128,0,1,253,0,0,0,0,127,0,0,3,252,0,0,0,0,255,255,255,203,255,255,255,244,2,255,255,255,223,255,255,255,244,11,255,255,255,255,255,255,255,244,31,224,253,1,255,0,254,0,0,127,192,191,2,252,0,127,64,0,15,0,62,0,252,0,63,64,0,0,0,0,0,252,0,0,0,0,10,170,170,171,254,170,170,170,128,15,255,255,255,255,255,255,255,208,15,255,255,255,255,255,255,255,208,15,192,0,0,0,0,0,15,208,15,192,0,0,0,0,0,15,208,15,193,170,170,170,170,169,15,208,15,193,255,255,255,255,254,15,208,15,193,255,255,255,255,254,15,208,0,1,252,0,0,0,190,0,0,0,1,252,0,0,0,190,0,0,0,1,254,170,170,170,254,0,0,0,1,255,255,255,255,254,0,0,0,1,255,255,255,255,254,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,254,170,170,170,170,160,0,0,1,255,255,255,255,255,244,0,0,1,255,255,255,255,255,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,252,0,0,0,3,244,0,0,1,255,255,255,255,255,244,0,0,1,255,255,255,255,255,244,0,0,1,254,170,170,170,171,244,0,0,1,248,0,0,0,3,240,0, + // 0x7bb1 箱 + 177,123,34,35,59,37,1,253,0,30,0,0,0,228,0,0,0,0,47,192,0,0,254,0,0,0,0,63,128,0,1,252,0,0,0,0,127,64,0,3,252,0,0,0,0,255,255,255,199,255,255,255,240,1,255,255,255,207,255,255,255,240,3,255,255,255,239,255,255,255,240,11,244,253,0,127,194,252,0,0,31,224,191,0,255,0,255,0,0,127,192,63,2,253,0,63,64,0,47,64,62,0,116,0,46,64,0,5,1,252,0,0,0,0,0,0,0,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,2,252,0,47,255,255,255,192,47,255,255,255,111,128,0,47,192,47,255,255,255,111,128,0,47,192,47,255,255,255,111,128,0,47,192,0,7,252,0,47,234,170,191,192,0,15,253,0,47,255,255,255,192,0,31,255,64,47,255,255,255,192,0,63,255,208,47,128,0,47,192,0,127,255,244,47,128,0,47,192,0,255,254,254,47,128,0,47,192,2,253,252,255,111,234,170,191,192,7,245,252,63,47,255,255,255,192,31,225,252,28,47,255,255,255,192,63,193,252,0,47,128,0,47,192,127,65,252,0,47,128,0,47,192,46,1,252,0,47,128,0,47,192,8,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,1,252,0,47,255,255,255,192,0,1,252,0,47,128,0,47,192,0,1,252,0,26,64,0,21,64, + // 0x7cfb 系 + 251,124,35,35,59,37,1,253,0,0,0,0,0,0,0,64,0,0,0,0,0,0,21,191,240,0,0,1,85,170,255,255,255,248,0,11,255,255,255,255,255,255,252,0,7,255,255,255,255,255,165,0,0,3,255,255,255,212,0,0,0,0,0,0,0,255,64,1,0,0,0,0,0,3,254,0,11,208,0,0,0,0,15,248,0,47,240,0,0,0,24,63,224,0,191,208,0,0,0,127,255,128,2,255,64,0,0,0,255,254,0,11,253,0,0,0,0,47,253,0,47,240,0,0,0,0,3,255,128,255,192,0,0,0,0,0,191,247,255,0,32,0,0,0,0,47,255,248,2,253,0,0,0,0,7,255,208,1,255,64,0,0,0,1,255,64,0,127,224,0,0,0,7,252,0,0,31,248,0,0,0,47,255,255,255,255,254,0,63,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,208,47,255,255,255,254,85,0,31,244,5,85,0,1,252,0,0,11,224,0,0,80,1,252,0,96,2,64,0,1,254,1,252,2,252,0,0,0,3,254,1,252,7,255,64,0,0,15,252,1,252,0,255,208,0,0,127,240,1,252,0,63,248,0,1,255,192,1,252,0,11,254,0,11,255,0,1,252,0,2,255,192,127,252,0,1,252,0,0,191,240,47,224,0,1,252,0,0,31,208,7,64,0,1,252,0,0,11,0,0,0,0,1,252,0,0,0,0, + // 0x7d05 紅 + 5,125,35,35,59,37,1,253,0,3,64,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,65,64,255,255,255,255,240,0,254,3,244,255,255,255,255,240,30,252,11,244,255,255,255,255,240,63,244,15,224,85,87,249,85,80,63,240,63,192,0,3,248,0,0,11,248,191,64,0,3,248,0,0,2,254,254,0,0,3,248,0,0,0,191,248,0,0,3,248,0,0,0,47,240,180,0,3,248,0,0,0,47,193,252,0,3,248,0,0,0,127,64,254,0,3,248,0,0,0,254,0,127,64,3,248,0,0,191,255,255,255,192,3,248,0,0,127,255,255,255,208,3,248,0,0,127,255,255,255,240,3,248,0,0,16,2,248,3,240,3,248,0,0,0,2,248,1,64,3,248,0,0,0,2,248,4,0,3,248,0,0,7,226,248,252,0,3,248,0,0,11,226,248,190,0,3,248,0,0,15,210,248,63,0,3,248,0,0,15,194,248,63,64,3,248,0,0,31,194,248,31,192,3,248,0,0,47,130,248,15,192,3,248,0,0,63,66,248,15,208,3,248,0,0,127,2,248,10,64,3,248,0,0,126,2,248,7,255,255,255,255,248,4,2,248,7,255,255,255,255,248,0,2,248,7,255,255,255,255,248,0,2,248,1,85,85,85,85,80,0,2,164,0,0,0,0,0,0, + // 0x7d22 索 + 34,125,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,0,0,255,64,0,0,63,64,63,0,3,254,0,16,0,63,64,63,0,15,248,0,188,0,63,64,63,9,63,224,2,255,0,63,64,63,63,255,64,15,252,0,63,64,0,63,253,0,127,224,0,0,0,0,7,255,1,255,129,0,0,0,0,0,191,219,253,11,192,0,0,0,0,31,255,224,31,244,0,0,0,0,7,255,64,7,254,0,0,0,0,31,252,0,0,255,192,0,127,255,255,255,255,255,255,244,0,127,255,255,255,255,255,255,254,0,127,255,255,255,255,250,170,255,64,0,0,64,7,240,0,0,61,0,0,2,248,7,240,11,192,0,0,0,15,252,7,240,47,248,0,0,0,127,240,7,240,7,255,128,0,7,255,128,7,240,0,191,240,0,127,253,0,7,240,0,15,253,0,255,224,0,7,240,0,2,255,64,47,64,0,7,240,0,0,125,0,4,0,0,7,240,0,0,0,0, + // 0x7d2b 紫 + 43,125,34,35,59,37,1,253,0,0,63,0,3,244,0,0,0,0,0,63,0,3,244,0,0,0,0,0,63,0,3,244,0,24,0,3,240,63,0,3,244,1,254,0,3,240,63,255,211,244,111,255,128,3,240,63,255,211,255,255,253,0,3,240,63,255,211,255,254,64,0,3,240,63,0,3,254,64,0,0,3,240,63,0,3,244,0,2,0,3,240,63,0,83,244,0,3,240,3,240,127,255,227,248,0,7,240,27,255,255,255,227,255,255,255,240,127,255,255,255,65,255,255,255,208,127,255,164,31,144,127,255,255,64,41,64,0,127,192,0,0,0,0,0,0,1,255,0,30,0,0,0,0,7,75,252,0,191,208,0,0,0,31,255,224,2,255,64,0,0,0,47,255,128,15,252,0,0,0,0,2,255,224,127,224,40,0,0,0,0,47,254,255,65,255,0,0,0,0,7,255,252,0,191,192,0,0,0,0,255,208,0,31,244,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,208,21,64,0,1,253,0,0,15,240,0,0,16,1,252,0,16,7,128,0,1,254,1,252,2,253,0,0,0,11,254,1,252,7,255,128,0,0,127,244,1,252,0,127,244,0,7,255,192,1,252,0,11,255,0,47,254,0,1,252,0,1,255,208,11,240,0,1,252,0,0,47,128,2,64,0,1,252,0,0,5,0, + // 0x7d30 細 + 48,125,34,35,59,37,1,253,0,13,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,0,0,255,255,255,255,208,0,190,0,0,255,255,255,255,208,0,252,15,128,255,255,255,255,208,26,244,31,192,252,7,240,15,208,63,240,63,64,252,3,240,15,208,127,208,191,0,252,3,240,15,208,47,224,252,0,252,3,240,15,208,11,247,244,0,252,3,240,15,208,3,255,240,0,252,3,240,15,208,0,255,194,64,252,3,240,15,208,0,127,79,192,252,3,240,15,208,0,62,11,224,252,3,240,15,208,0,252,3,240,252,3,240,15,208,2,255,255,248,255,255,255,255,208,191,255,255,253,255,255,255,255,208,191,255,250,254,255,255,255,255,208,121,11,208,127,252,7,240,15,208,0,11,208,57,252,3,240,15,208,0,11,208,64,252,3,240,15,208,15,203,215,208,252,3,240,15,208,15,203,215,224,252,3,240,15,208,15,139,211,240,252,3,240,15,208,31,139,210,244,252,3,240,15,208,47,75,208,248,252,3,240,15,208,63,11,208,253,252,3,240,15,208,63,11,208,189,252,3,240,15,208,126,11,208,80,255,255,255,255,208,188,11,208,0,255,255,255,255,208,8,11,208,0,255,255,255,255,208,0,11,208,0,252,0,0,15,208,0,11,208,0,252,0,0,15,208,0,7,208,0,84,0,0,0,0, + // 0x7d42 終 + 66,125,35,36,68,37,1,252,0,9,0,0,0,169,0,0,0,0,31,192,0,0,253,0,0,0,0,63,128,0,2,252,0,0,0,0,63,0,0,3,244,0,0,0,0,189,0,0,15,255,255,253,0,0,252,15,64,31,255,255,255,0,6,244,63,128,127,255,255,254,0,63,240,127,0,255,128,1,252,0,127,192,253,3,255,208,3,248,0,47,209,252,15,255,240,11,240,0,11,247,240,63,211,248,47,208,0,3,255,208,47,64,254,127,128,0,0,255,133,9,0,127,255,0,0,0,127,47,0,0,47,252,0,0,0,125,15,128,0,47,252,0,0,0,248,11,192,1,255,255,64,0,3,250,255,224,11,255,191,224,0,191,255,255,240,191,248,31,253,0,191,255,255,251,255,192,7,255,224,127,255,208,255,254,0,0,191,248,0,15,192,147,224,61,0,31,240,4,15,193,65,0,255,208,1,192,15,207,207,192,0,127,252,0,0,15,207,203,208,0,7,255,128,0,31,143,195,224,0,0,191,192,0,31,79,195,240,0,0,15,0,0,47,79,194,244,0,0,0,0,0,63,15,193,248,63,144,0,0,0,63,15,192,228,191,253,0,0,0,190,15,192,0,111,255,224,0,0,252,15,192,0,1,191,255,64,0,24,15,192,0,0,11,255,244,0,0,15,192,0,0,0,127,254,0,0,15,192,0,0,0,7,252,0,0,15,192,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0, + // 0x7d71 統 + 113,125,35,36,68,37,1,252,0,9,0,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,63,128,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,190,0,0,0,15,208,0,0,0,252,15,79,255,255,255,255,240,6,244,47,207,255,255,255,255,240,63,240,63,15,255,255,255,255,240,127,208,253,0,2,252,0,0,0,47,209,252,0,3,248,1,192,0,15,243,240,0,7,240,11,240,0,3,255,224,0,15,224,3,252,0,0,255,197,0,15,208,1,254,0,0,127,47,0,47,193,90,255,64,0,125,15,143,255,255,255,255,192,0,248,11,207,255,255,255,255,224,3,250,255,239,255,254,165,91,240,191,255,255,245,64,0,0,3,244,191,255,255,244,5,80,21,1,128,127,255,208,248,11,224,63,64,0,0,15,192,208,11,224,63,64,0,4,15,193,64,15,224,63,64,0,15,207,207,192,15,208,63,64,0,15,207,203,192,15,208,63,64,0,31,143,199,224,15,192,63,64,0,31,79,195,240,31,192,63,64,0,47,79,194,240,47,192,63,64,0,63,15,193,244,63,128,63,64,128,63,15,192,248,127,0,63,64,248,190,15,192,64,255,0,63,64,252,252,15,192,3,253,0,63,64,252,24,15,192,15,248,0,63,129,248,0,15,192,191,240,0,47,255,244,0,15,192,191,128,0,31,255,240,0,15,192,61,0,0,11,255,192,0,0,0,0,0,0,0,0,0, + // 0x7d72 絲 + 114,125,35,35,59,37,1,253,0,7,64,0,0,3,144,0,0,0,15,240,0,0,7,244,0,0,0,31,208,0,0,15,240,0,0,0,63,128,0,0,31,208,0,0,0,127,2,64,0,63,128,128,0,0,253,7,244,0,127,1,248,0,46,248,15,240,13,253,3,252,0,63,240,47,192,63,248,11,244,0,127,208,63,128,63,240,31,224,0,31,240,255,0,15,248,63,192,0,7,254,252,0,3,254,191,0,0,2,255,244,0,0,255,253,0,0,0,191,225,224,0,63,248,188,0,0,63,195,240,0,31,240,253,0,0,63,1,248,0,31,192,191,0,0,188,0,253,0,63,0,63,192,1,255,255,255,0,255,191,255,208,191,255,255,255,127,255,255,255,240,127,255,255,255,191,255,255,255,244,127,255,244,15,255,255,253,3,244,0,2,244,13,0,1,252,1,208,0,2,244,16,0,1,252,0,0,7,146,245,248,3,225,252,108,0,7,226,244,252,7,241,252,254,0,11,210,244,190,11,225,252,127,0,15,210,244,127,15,209,252,63,128,15,194,244,63,15,193,252,31,192,31,194,244,47,175,193,252,15,208,63,130,244,29,63,65,252,11,240,63,2,244,0,191,1,252,3,244,191,2,244,0,253,1,252,3,248,29,2,244,0,44,1,252,1,144,0,2,244,0,0,1,252,0,0,0,2,244,0,0,1,252,0,0,0,2,244,0,0,1,252,0,0, + // 0x7da0 綠 + 160,125,35,35,59,37,1,253,0,13,0,0,11,144,0,0,0,0,31,192,0,15,208,0,0,0,0,63,64,0,15,208,0,0,0,0,63,0,0,31,255,255,253,0,0,189,4,0,47,255,255,252,0,0,252,31,64,63,234,171,252,0,26,244,63,128,63,64,1,252,0,63,240,127,0,127,0,2,248,0,127,192,253,0,191,170,171,248,0,47,210,248,0,255,255,255,244,0,11,247,240,0,255,255,255,240,0,2,255,208,0,188,0,7,240,0,0,255,133,0,0,0,11,224,0,0,127,63,15,255,255,255,255,240,0,252,47,143,255,255,255,255,240,2,248,15,207,255,255,255,255,240,175,250,255,224,0,11,240,0,0,191,255,255,240,0,11,240,0,0,191,255,255,244,160,11,244,3,128,16,15,193,251,248,11,248,15,240,0,15,192,226,254,11,252,63,192,5,15,192,0,191,75,253,255,0,15,207,207,128,63,203,255,248,0,31,143,207,192,15,75,255,224,0,31,79,199,208,4,11,255,192,0,47,79,195,224,1,203,239,224,0,47,15,195,240,11,235,231,244,0,63,15,194,240,127,235,226,252,0,62,15,193,226,255,75,224,255,64,189,15,192,31,253,11,224,127,224,252,15,192,63,240,11,224,31,248,24,15,192,31,128,11,224,7,240,0,15,192,13,7,255,224,0,192,0,15,192,0,3,255,192,0,0,0,15,192,0,2,250,0,0,0, + // 0x7db2 網 + 178,125,34,35,59,37,1,253,0,9,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,63,128,15,255,255,255,255,224,0,63,0,15,255,255,255,255,224,0,190,0,15,255,255,255,255,224,0,252,31,79,208,0,0,11,224,6,244,63,143,209,128,10,75,224,63,240,127,15,211,208,15,203,224,127,208,253,15,210,240,31,75,224,63,193,252,15,209,240,47,11,224,15,243,240,15,208,244,61,11,224,3,255,208,15,208,224,60,11,224,1,255,193,15,219,255,255,203,224,0,191,63,15,219,255,255,203,224,0,189,47,79,214,175,234,139,224,2,248,15,207,208,15,192,11,224,175,250,255,223,208,15,192,11,224,191,255,255,255,208,15,192,11,224,191,255,255,255,219,255,255,219,224,16,15,193,255,219,255,255,219,224,0,15,192,239,215,254,170,139,224,0,15,192,15,209,248,0,11,224,15,143,207,143,209,248,0,11,224,15,143,207,207,209,248,0,11,224,31,79,199,223,209,248,0,11,224,47,79,195,239,209,248,0,11,224,47,15,195,255,208,255,171,139,224,63,15,194,255,208,255,255,203,224,62,15,193,223,208,63,255,203,224,189,15,192,15,208,0,0,11,224,252,15,192,15,208,0,0,11,224,24,15,192,15,208,0,0,11,208,0,15,192,15,208,0,15,255,208,0,15,192,15,208,0,7,255,192,0,15,192,15,208,0,3,254,0, + // 0x7dd2 緒 + 210,125,35,35,59,37,1,253,0,9,0,0,0,253,0,0,0,0,31,192,0,0,253,0,7,144,0,63,128,0,0,253,0,15,224,0,63,0,0,0,253,0,31,192,0,190,0,7,255,255,255,127,128,0,252,14,7,255,255,255,191,0,6,244,63,135,255,255,255,254,0,63,240,127,0,0,253,2,252,0,127,192,253,0,0,253,7,244,0,47,210,248,0,0,253,15,240,0,11,247,240,0,0,253,47,208,0,3,255,208,47,255,255,255,255,244,0,255,138,47,255,255,255,255,244,0,127,63,47,255,255,255,255,244,0,252,31,128,0,47,240,0,0,2,248,15,192,0,191,192,0,0,175,250,255,224,2,254,0,0,0,191,255,255,240,15,255,255,255,0,191,255,255,244,191,255,255,255,0,16,15,193,255,255,255,255,255,0,0,15,192,255,255,64,0,63,0,4,15,192,127,255,64,0,63,0,15,207,207,142,63,64,0,63,0,15,143,207,192,63,64,0,63,0,31,79,199,208,63,255,255,255,0,47,79,195,224,63,255,255,255,0,47,15,195,240,63,255,255,255,0,63,15,194,240,63,64,0,63,0,126,15,193,224,63,64,0,63,0,189,15,192,0,63,64,0,63,0,188,15,192,0,63,255,255,255,0,4,15,192,0,63,255,255,255,0,0,15,192,0,63,255,255,255,0,0,15,192,0,63,64,0,63,0,0,15,192,0,42,0,0,42,0, + // 0x7dda 線 + 218,125,35,35,59,37,1,253,0,13,0,0,0,11,144,0,0,0,31,192,0,0,15,240,0,0,0,63,64,0,0,31,224,0,0,0,63,0,0,0,47,192,0,0,0,189,4,2,255,255,255,255,192,0,252,31,66,255,255,255,255,192,26,244,63,130,254,170,170,191,192,63,240,127,2,244,0,0,31,192,127,192,253,2,244,0,0,31,192,47,210,248,2,250,170,170,175,192,11,247,240,2,255,255,255,255,192,2,255,208,2,255,255,255,255,192,0,255,133,2,244,0,0,31,192,0,127,63,2,244,0,0,31,192,0,252,47,130,244,0,0,31,192,2,248,15,194,255,255,255,255,192,175,250,255,226,255,255,255,255,192,191,255,255,242,170,175,250,170,128,191,255,255,244,0,7,240,0,0,16,15,193,248,0,7,240,2,64,0,15,192,239,255,215,244,11,224,5,15,193,79,255,247,252,47,240,15,207,207,143,255,231,253,191,128,15,143,203,192,15,215,255,254,0,31,79,199,208,15,199,255,244,0,47,79,195,224,47,135,255,208,0,47,15,195,240,127,7,235,240,0,63,15,194,240,254,7,227,248,0,62,15,193,147,252,7,225,254,0,189,15,192,15,244,7,224,191,208,252,15,192,127,224,7,224,63,248,40,15,192,63,128,11,224,11,244,0,15,192,29,3,255,224,1,224,0,15,192,0,3,255,208,0,0,0,15,192,0,2,254,64,0,0, + // 0x7de8 編 + 232,125,34,35,59,37,1,253,0,13,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,63,64,47,255,255,255,255,240,0,63,0,47,255,255,255,255,240,0,189,4,47,255,255,255,255,240,0,252,47,64,0,0,0,0,0,26,244,63,64,0,0,0,0,0,63,240,190,3,255,255,255,255,128,127,192,252,3,255,255,255,255,192,31,210,244,3,255,255,255,255,192,7,247,240,3,240,0,0,31,192,2,255,208,3,240,0,0,31,192,0,255,137,3,240,0,0,31,192,0,127,62,3,240,0,0,31,192,0,252,47,3,255,255,255,255,192,2,248,15,131,255,255,255,255,192,175,251,255,195,250,170,170,170,128,191,255,255,211,240,0,0,0,0,191,255,255,227,240,0,0,0,0,16,31,131,247,255,255,255,255,224,0,15,130,215,255,255,255,255,224,0,15,128,7,255,175,175,235,224,14,79,159,11,254,15,11,131,224,15,143,159,75,254,15,11,131,224,31,79,143,143,254,15,11,131,224,31,79,139,207,255,175,175,235,224,47,15,135,223,255,255,255,255,224,63,15,131,255,191,255,255,255,224,62,15,131,255,62,15,11,131,224,189,15,128,127,62,15,11,131,224,252,15,128,190,62,15,11,131,224,24,15,128,252,62,15,11,131,224,0,15,130,248,62,15,11,175,224,0,15,128,112,62,15,11,175,208,0,15,128,0,45,5,5,31,128, + // 0x7e2e 縮 + 46,126,34,35,59,37,1,253,0,9,0,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,47,64,0,0,15,208,0,0,0,63,0,0,0,15,208,0,0,0,189,0,31,255,255,255,255,240,0,252,30,31,255,255,255,255,240,6,244,63,95,255,255,255,255,240,63,240,127,31,128,0,0,7,240,127,208,252,31,128,0,0,7,240,47,210,248,31,174,0,0,2,160,11,247,240,0,63,255,255,255,240,3,255,208,0,63,191,255,255,240,0,255,138,0,190,191,255,255,240,0,127,63,0,252,0,47,128,0,0,252,31,65,252,0,63,64,0,2,248,15,194,248,0,63,0,0,175,251,255,195,244,0,63,0,0,191,255,255,235,244,63,255,255,208,191,255,255,255,244,63,255,255,208,16,31,130,255,244,63,255,255,208,0,15,128,191,244,63,0,11,208,0,15,129,62,244,63,0,11,208,15,143,159,21,244,63,0,11,208,15,143,143,65,244,63,170,175,208,31,79,143,129,244,63,255,255,208,47,15,139,193,244,63,255,255,208,47,15,135,209,244,63,0,11,208,63,15,131,209,244,63,0,11,208,62,15,131,209,244,63,0,11,208,189,15,128,1,244,63,0,11,208,252,15,128,1,244,63,170,175,208,24,15,128,1,244,63,255,255,208,0,15,128,1,244,63,255,255,208,0,15,128,1,244,63,0,11,208,0,15,128,1,244,42,0,5,64, + // 0x7e3d 總 + 61,126,35,35,59,37,1,253,0,13,0,0,0,11,224,0,0,0,31,192,0,0,15,240,0,0,0,63,64,0,0,15,208,0,0,0,63,0,2,170,191,234,170,128,0,189,4,7,255,255,255,255,192,0,252,47,71,255,255,255,255,192,26,244,63,71,208,7,128,11,192,63,240,190,7,208,11,128,11,192,127,192,252,7,208,15,255,203,192,31,210,244,7,215,191,255,203,192,7,247,240,7,219,253,15,139,192,2,255,208,7,210,255,95,11,192,0,255,137,7,219,239,254,11,192,0,127,62,7,219,130,253,11,192,0,252,47,7,209,7,255,139,192,2,248,15,135,208,47,219,203,192,175,251,255,199,209,255,2,11,192,191,255,255,215,208,244,0,11,192,191,255,255,231,255,255,255,255,192,16,31,131,247,255,255,255,255,192,0,15,130,214,170,190,170,170,128,0,15,129,0,0,254,0,0,0,15,143,159,0,0,191,208,0,0,15,143,143,64,0,31,248,0,0,31,79,143,193,3,242,253,44,0,47,15,139,195,243,240,180,127,0,47,15,135,195,227,240,0,63,64,63,15,131,215,227,240,0,31,192,62,15,131,155,211,240,0,15,208,189,15,128,15,195,240,3,71,240,252,15,128,31,195,240,3,227,244,20,15,128,63,67,240,7,225,248,0,15,128,127,3,255,255,208,248,0,15,128,8,2,255,255,192,128,0,15,128,0,0,111,254,0,0, + // 0x7e7c 繼 + 124,126,35,35,59,37,1,253,0,36,0,126,0,0,0,0,0,0,127,0,126,3,208,0,240,0,0,189,0,126,3,192,2,224,0,0,252,0,126,11,137,3,194,0,1,248,0,126,63,31,63,75,192,2,240,120,126,189,62,63,15,64,27,240,253,126,63,124,31,126,0,63,209,248,126,15,244,7,252,0,127,195,240,126,3,232,2,246,0,47,199,224,126,7,223,3,219,128,15,239,192,126,15,15,79,67,192,3,255,64,126,255,255,255,255,240,1,255,16,126,191,255,255,255,240,0,189,244,126,0,0,0,0,80,0,248,252,127,255,255,255,255,240,2,240,189,127,255,255,255,255,240,7,250,255,127,171,170,170,234,160,255,255,255,190,3,208,0,240,0,191,255,255,254,3,192,2,240,0,191,191,15,254,11,133,3,194,0,0,63,10,190,63,15,107,135,192,0,63,0,126,189,46,63,15,64,31,127,60,126,63,124,31,110,0,31,63,62,126,15,244,7,252,0,47,63,63,126,3,232,2,251,0,47,63,31,190,7,223,3,219,128,63,63,15,254,15,11,75,131,192,62,63,15,254,255,255,255,255,240,125,63,15,254,191,255,255,255,244,188,63,4,126,21,1,133,64,96,188,63,0,126,0,0,0,0,0,0,63,0,127,255,255,255,255,244,0,63,0,127,255,255,255,255,244,0,63,0,127,170,170,170,170,160,0,63,0,126,0,0,0,0,0, + // 0x7e8c 續 + 140,126,34,35,59,37,1,253,0,13,0,0,0,15,192,0,0,0,47,192,0,0,15,192,0,0,0,63,64,63,255,255,255,255,240,0,127,0,63,255,255,255,255,240,0,252,4,0,0,31,208,0,0,1,248,47,64,0,15,192,0,0,11,240,63,3,255,255,255,255,128,63,224,190,3,255,255,255,255,128,127,192,252,0,0,0,0,0,0,47,211,244,11,255,255,255,255,208,15,251,224,15,255,255,255,255,208,3,255,192,15,192,244,124,7,208,1,255,156,15,194,240,126,91,208,0,191,62,15,239,192,47,255,208,0,188,47,15,201,0,0,7,208,0,244,31,143,255,255,255,255,208,3,250,175,203,255,255,255,255,208,191,255,255,208,0,0,0,0,0,127,255,255,226,255,255,255,255,0,127,255,195,226,255,255,255,255,64,0,15,193,66,244,0,0,63,64,0,15,193,2,250,170,170,191,64,15,143,223,2,255,255,255,255,64,15,143,207,66,244,0,0,63,64,31,79,207,130,244,0,0,63,64,47,15,203,194,255,255,255,255,64,47,15,199,194,250,170,170,191,64,63,15,195,210,244,0,0,63,64,62,15,193,2,255,255,255,255,64,189,15,192,2,255,255,255,255,0,252,15,192,0,31,192,15,224,0,24,15,192,2,255,224,31,254,0,0,15,192,191,254,0,2,255,224,0,15,192,191,224,0,0,47,240,0,15,128,41,0,0,0,3,128, + // 0x7ea2 红 + 162,126,35,34,50,37,1,254,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,15,240,1,85,85,85,85,64,0,31,224,7,255,255,255,255,224,0,63,192,7,255,255,255,255,224,0,127,128,7,255,255,255,255,224,0,255,0,0,0,11,240,0,0,1,253,3,128,0,11,240,0,0,3,248,7,244,0,11,240,0,0,11,240,15,240,0,11,240,0,0,31,208,47,224,0,11,240,0,0,191,255,255,192,0,11,240,0,0,127,255,255,0,0,11,240,0,0,63,255,253,0,0,11,240,0,0,41,71,248,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,255,64,0,0,11,240,0,0,3,253,0,80,0,11,240,0,0,11,254,191,240,0,11,240,0,0,63,255,255,240,0,11,240,0,0,63,255,255,224,0,11,240,0,0,63,254,144,0,0,11,240,0,0,41,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,27,208,0,11,240,0,0,0,107,255,224,0,11,240,0,0,127,255,255,239,255,255,255,255,244,127,255,254,79,255,255,255,255,244,63,254,64,15,255,255,255,255,244,57,64,0,5,85,85,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x7f6e 置 + 110,127,34,35,59,37,2,252,5,85,85,85,85,85,85,84,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,11,224,7,240,3,240,1,252,0,11,224,7,240,3,240,1,252,0,11,224,7,240,3,240,1,252,0,11,255,255,255,255,255,255,252,0,11,255,255,255,255,255,255,252,0,5,85,85,87,253,85,85,84,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,7,240,0,0,0,0,0,0,0,11,224,0,0,0,0,6,160,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,63,255,255,255,255,224,0,7,240,63,64,0,0,11,224,0,7,240,63,64,0,0,11,224,0,7,240,63,255,255,255,255,224,0,7,240,47,255,255,255,255,224,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,250,170,170,170,170,170,170,128,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,34,34,50,37,1,253,1,85,85,85,85,85,85,85,0,2,255,255,255,255,255,255,255,0,2,255,255,255,255,255,255,255,0,2,244,1,248,0,252,0,127,0,2,244,1,248,0,252,0,127,0,2,244,1,248,0,252,0,127,0,2,255,255,255,255,255,255,255,0,2,255,255,255,255,255,255,255,0,1,85,85,91,245,85,85,85,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,56,0,0,63,255,255,255,255,240,255,0,0,63,255,255,255,255,247,253,0,0,42,170,175,250,170,255,244,0,0,0,0,7,240,1,255,192,0,0,0,0,7,240,15,254,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,224,0,0,0,47,255,192,0,0,0,0,0,7,255,253,0,0,0,0,0,1,191,255,255,255,255,248,0,1,191,255,255,255,255,255,248,0,127,255,255,170,170,170,171,248,0,63,255,191,0,0,0,2,248,0,31,144,63,0,0,0,3,248,0,0,0,63,255,255,255,255,248,0,0,0,63,255,255,255,255,248,0,0,0,63,0,0,0,2,248,0,0,0,63,0,0,0,2,248,0,0,0,63,255,255,255,255,248,0,0,0,63,255,255,255,255,248,0,0,0,63,170,170,170,171,248,0,0,0,42,0,0,0,1,164,0, + // 0x8070 聰 + 112,128,35,36,68,37,1,252,0,0,0,0,0,7,224,0,0,0,0,0,0,0,11,240,0,0,63,255,255,253,0,15,224,0,0,63,255,255,254,170,175,234,170,128,63,255,255,255,255,255,255,255,192,3,240,15,209,255,255,255,255,192,3,240,15,209,244,3,192,11,192,3,240,15,209,244,7,192,11,192,3,240,15,209,244,15,255,203,192,3,255,255,209,245,255,175,203,192,3,255,255,209,245,254,15,75,192,3,255,255,209,246,255,175,11,192,3,240,15,209,246,199,252,11,192,3,240,15,209,244,1,253,11,192,3,240,15,209,244,7,255,75,192,3,240,15,209,244,63,135,11,192,3,240,15,209,244,189,0,11,192,3,255,255,209,250,186,170,175,192,3,255,255,209,255,255,255,255,192,3,255,255,209,255,255,255,255,192,3,240,15,208,0,47,128,0,0,3,240,15,208,0,63,240,0,0,3,240,15,208,0,11,253,0,0,3,240,15,208,0,165,255,0,0,3,240,15,208,81,248,61,29,0,3,246,255,208,253,248,4,127,0,111,255,255,208,248,248,0,63,64,127,255,255,209,244,248,0,31,192,127,254,95,210,240,248,0,15,208,57,64,15,211,240,248,2,231,240,0,0,15,219,224,248,2,243,240,0,0,15,239,192,248,3,242,248,0,0,15,239,128,255,255,225,248,0,0,15,210,0,255,255,192,128,0,0,15,208,0,26,170,64,0,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,26,36,252,37,6,252,0,0,11,224,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,0,0,31,208,0,0,0,0,0,47,192,0,0,0,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,254,85,85,85,85,95,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,255,255,255,255,255,255,224,253,0,0,0,0,15,224,253,0,0,0,0,15,224,0,0,0,0,0,0,0, + // 0x85cd 藍 + 205,133,33,34,50,37,2,254,0,0,127,0,0,63,64,0,0,0,0,127,0,0,63,64,0,0,191,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,127,0,0,63,64,0,0,0,0,127,0,0,63,64,0,0,0,0,21,0,0,36,0,0,0,15,255,255,255,192,191,0,0,0,15,255,255,255,192,253,0,0,0,15,128,188,0,1,252,0,0,0,15,128,188,0,3,255,255,255,64,15,255,255,255,11,255,255,255,64,15,255,255,255,15,255,255,255,64,15,128,0,47,63,192,0,0,0,15,128,0,47,191,64,0,0,0,15,255,255,255,29,0,0,0,0,15,255,255,255,0,0,0,0,0,15,128,188,0,1,255,255,254,0,15,128,189,0,1,255,255,254,0,15,255,255,255,209,255,255,253,0,15,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,144,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,252,1,244,3,224,15,224,0,0,252,1,244,3,224,15,224,0,0,252,1,244,3,224,15,224,0,0,252,1,244,3,224,15,224,0,0,252,1,244,3,224,15,224,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x884c 行 + 76,136,34,36,68,37,1,252,0,0,180,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,7,252,2,255,255,255,255,192,0,31,240,2,255,255,255,255,192,0,127,208,2,255,255,255,255,192,2,255,64,0,85,85,85,85,64,11,253,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,127,208,14,0,0,0,0,0,0,47,0,63,192,0,0,0,0,0,8,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,253,5,85,85,85,85,80,0,11,248,31,255,255,255,255,240,0,47,240,31,255,255,255,255,240,0,127,208,31,255,255,255,255,240,1,255,208,0,0,0,47,192,0,11,255,208,0,0,0,47,192,0,47,255,208,0,0,0,47,192,0,255,239,208,0,0,0,47,192,0,127,143,208,0,0,0,47,192,0,30,15,208,0,0,0,47,192,0,4,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,0,0,47,192,0,0,15,208,0,1,85,127,192,0,0,15,208,0,2,255,255,128,0,0,15,208,0,1,255,255,64,0,0,15,208,0,0,255,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x8868 表 + 104,136,35,35,59,37,1,253,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,255,64,7,255,255,255,255,255,255,255,64,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,127,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,191,255,255,255,255,255,252,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,47,255,255,255,255,255,255,255,224,0,0,0,127,239,192,0,0,0,0,0,2,255,143,224,0,28,0,0,0,31,253,7,240,0,191,0,0,0,255,240,3,244,2,255,64,0,27,255,192,2,252,31,253,0,1,255,255,128,1,253,191,224,0,111,255,255,128,0,255,255,64,0,127,254,63,128,0,127,248,0,0,47,208,63,128,0,47,224,0,0,9,0,63,128,0,15,244,0,0,0,0,63,128,0,71,253,0,0,0,0,63,128,111,210,255,128,0,0,0,63,239,255,208,191,244,0,0,0,127,255,255,208,47,254,64,0,127,255,255,249,0,7,255,244,0,191,255,249,0,0,0,255,240,0,127,249,0,0,0,0,31,208,0,57,0,0,0,0,0,1,128, + // 0x88ab 被 + 171,136,35,35,59,37,1,253,0,31,128,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,47,192,3,255,255,255,255,244,63,255,255,195,255,255,255,255,240,63,255,255,211,255,255,255,255,240,63,255,255,195,244,3,244,11,224,0,0,47,131,244,3,244,15,208,0,0,127,3,244,3,244,15,192,0,0,254,3,244,3,244,31,192,0,1,252,3,244,3,244,27,64,0,3,248,147,244,3,244,0,0,0,15,240,251,255,255,255,255,128,0,47,227,243,255,255,255,255,192,0,191,251,211,255,255,255,255,128,1,255,255,131,255,224,0,63,64,7,255,255,3,251,240,0,191,0,47,255,239,195,243,244,0,254,0,255,239,207,227,241,252,1,252,0,127,95,195,231,240,253,3,252,0,60,31,194,135,240,191,11,244,0,16,31,192,11,224,63,223,224,0,0,31,192,15,208,31,255,192,0,0,31,192,15,192,15,255,64,0,0,31,192,31,192,3,255,0,0,0,31,192,47,128,15,255,128,0,0,31,192,63,64,127,255,240,0,0,31,192,191,2,255,239,254,0,0,31,192,254,47,254,7,255,224,0,31,194,252,191,244,0,255,244,0,31,193,244,63,128,0,31,224,0,31,192,32,8,0,0,1,192, + // 0x88c5 装 + 197,136,35,36,68,37,1,252,0,0,42,0,0,10,144,0,0,0,0,127,0,0,15,208,0,0,2,0,127,0,0,15,208,0,0,15,208,127,0,0,15,208,0,0,15,248,127,0,0,15,208,0,0,3,254,127,31,255,255,255,255,240,0,189,127,31,255,255,255,255,240,0,36,127,31,255,255,255,255,240,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,7,127,0,0,15,208,0,0,1,191,191,0,0,15,208,0,0,31,255,191,0,0,15,208,0,0,127,248,127,7,255,255,255,255,192,63,64,127,7,255,255,255,255,192,20,0,127,7,255,255,255,255,192,0,0,127,0,0,0,0,0,0,0,0,42,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,42,170,170,255,255,234,170,170,160,0,0,2,255,95,192,0,56,0,0,0,47,248,11,224,1,255,0,0,7,255,208,3,248,31,253,0,6,255,255,64,1,253,191,224,0,127,255,255,64,0,191,254,0,0,31,244,63,64,0,47,244,0,0,9,0,63,64,1,11,254,0,0,0,0,63,171,255,2,255,208,0,0,26,255,255,255,64,127,255,128,0,63,255,255,250,0,11,255,244,0,63,255,148,0,0,0,191,224,0,21,0,0,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x88dd 裝 + 221,136,35,36,68,37,1,252,1,80,11,208,0,11,224,0,0,3,240,15,208,0,11,240,0,0,3,240,15,208,0,11,240,0,0,3,240,15,208,0,11,240,0,0,3,240,15,208,0,11,240,0,0,3,255,255,211,255,255,255,255,224,3,255,255,211,255,255,255,255,224,3,250,175,211,255,255,255,255,224,1,80,15,208,0,11,240,0,0,0,0,15,208,0,11,240,0,0,63,255,255,208,0,11,240,0,0,63,255,255,208,0,11,240,0,0,43,254,175,208,0,11,240,0,0,2,248,15,208,0,11,240,0,0,3,244,15,209,255,255,255,255,192,7,240,15,209,255,255,255,255,192,15,224,15,209,255,255,255,255,192,127,192,15,208,0,0,0,0,0,63,0,15,208,253,0,0,0,0,4,0,0,0,253,0,0,0,0,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,240,42,170,170,255,255,234,170,170,160,0,0,7,255,31,192,0,56,0,0,0,127,248,11,224,1,255,0,0,27,255,192,3,248,31,253,0,27,255,255,64,1,254,191,224,0,63,255,191,64,0,191,254,0,0,31,224,63,64,0,47,244,0,0,4,0,63,64,22,75,254,0,0,0,0,63,175,255,130,255,224,0,0,107,255,255,255,128,127,255,128,0,127,255,255,233,0,11,255,244,0,127,250,80,0,0,0,191,224,0,16,0,0,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x8907 複 + 7,137,35,36,68,37,1,252,0,26,64,0,26,64,0,0,0,0,47,64,0,47,192,0,0,0,0,47,64,0,63,64,0,0,0,0,47,64,0,191,0,0,0,0,0,47,64,0,255,255,255,255,240,0,47,64,2,255,255,255,255,240,0,47,64,3,255,255,255,255,240,0,47,64,15,224,0,0,0,0,63,255,255,47,208,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,46,255,255,255,255,0,0,0,125,4,252,0,0,63,0,0,0,252,0,252,0,0,63,0,0,2,244,0,255,255,255,255,0,0,3,240,192,255,255,255,255,0,0,15,210,240,253,0,0,127,0,0,47,215,208,252,0,0,63,0,0,127,255,128,255,255,255,255,0,0,255,255,0,255,255,255,255,0,3,255,254,0,1,254,0,0,0,11,255,191,0,3,252,0,0,0,47,255,95,192,11,248,0,0,0,127,239,79,192,31,255,255,253,0,191,47,71,64,191,255,255,255,0,61,47,65,2,255,170,171,252,0,20,47,64,31,255,192,7,248,0,0,47,64,191,239,240,31,240,0,0,47,64,47,3,253,191,192,0,0,47,64,4,0,255,255,0,0,0,47,64,0,0,191,252,0,0,0,47,64,0,27,255,255,208,0,0,47,64,26,255,254,255,255,144,0,47,64,255,255,224,31,255,248,0,47,64,127,249,0,1,255,240,0,47,64,46,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x89d2 角 + 210,137,32,36,32,37,1,252,0,0,7,228,0,0,0,0,0,0,15,244,0,0,0,0,0,0,31,255,255,253,0,0,0,0,63,255,255,255,128,0,0,0,255,255,255,255,64,0,0,1,254,0,0,255,0,0,0,7,252,0,2,253,0,0,0,15,244,0,3,248,0,0,0,63,224,0,15,240,0,0,1,255,255,255,255,255,255,253,7,255,255,255,255,255,255,253,47,255,255,255,255,255,255,253,15,239,208,0,63,0,0,253,3,79,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,255,255,255,255,255,253,0,15,255,255,255,255,255,253,0,15,255,255,255,255,255,253,0,15,208,0,63,0,0,253,0,15,208,0,63,0,0,253,0,15,192,0,63,0,0,253,0,15,192,0,63,0,0,253,0,31,192,0,127,0,0,253,0,47,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,127,0,0,0,0,0,253,0,254,0,0,0,0,0,253,2,253,0,0,0,0,0,253,7,248,0,0,0,0,0,253,31,240,0,0,0,20,2,253,127,208,0,0,0,127,255,252,63,128,0,0,0,63,255,248,13,0,0,0,0,47,255,144,0,0,0,0,0,0,0,0, + // 0x8a08 計 + 8,138,35,35,59,37,1,253,0,0,0,0,0,1,248,0,0,6,170,170,160,0,2,252,0,0,11,255,255,240,0,2,252,0,0,11,255,255,240,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,106,170,170,168,0,2,252,0,0,191,255,255,252,0,2,252,0,0,191,255,255,252,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,10,170,170,160,0,2,252,0,0,15,255,255,240,0,2,252,0,0,15,255,255,243,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,10,170,170,161,85,87,253,85,84,15,255,255,240,0,2,252,0,0,15,255,255,240,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,192,7,224,0,2,252,0,0,15,192,7,224,0,2,252,0,0,15,192,7,224,0,2,252,0,0,15,192,7,224,0,2,252,0,0,15,192,7,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,192,0,0,0,2,252,0,0,5,64,0,0,0,2,252,0,0, + // 0x8a0a 訊 + 10,138,36,35,59,37,1,252,6,170,170,129,85,85,85,80,0,11,255,255,199,255,255,255,252,0,11,255,255,199,255,255,255,252,0,0,0,0,7,255,255,255,252,0,0,0,0,0,3,240,2,252,0,106,170,170,160,3,240,2,252,0,191,255,255,244,3,240,2,248,0,191,255,255,244,3,240,2,248,0,0,0,0,0,3,240,2,248,0,0,0,0,0,3,240,2,248,0,10,170,170,128,3,240,2,248,0,15,255,255,192,3,240,2,248,0,15,255,255,192,3,240,2,248,0,0,0,0,0,7,244,2,248,0,0,0,0,11,255,255,246,248,0,10,170,170,139,255,255,246,248,0,15,255,255,203,255,255,246,248,0,15,255,255,192,7,240,2,252,0,0,0,0,0,11,240,2,252,0,0,0,0,0,11,224,2,252,0,0,0,0,0,15,224,1,252,0,15,255,255,192,15,208,1,252,0,15,255,255,192,31,192,1,252,0,15,255,255,192,47,192,1,252,0,15,192,15,192,63,128,0,252,0,15,192,15,192,127,64,0,253,32,15,192,15,192,255,0,0,253,40,15,192,15,192,254,0,0,254,61,15,192,15,195,252,0,0,191,61,15,255,255,203,248,0,0,127,124,15,255,255,223,240,0,0,63,252,15,255,255,255,208,0,0,47,248,15,192,0,15,64,0,0,15,240,5,64,0,2,0,0,0,2,208,0,0,0,0,0,0,0,0,0, + // 0x8a18 記 + 24,138,35,34,50,37,1,253,6,170,170,160,0,0,0,0,0,11,255,255,240,63,255,255,255,128,11,255,255,240,63,255,255,255,128,0,0,0,0,63,255,255,255,128,0,0,0,0,21,85,85,127,128,106,170,170,168,0,0,0,63,128,191,255,255,252,0,0,0,63,128,191,255,255,252,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,10,170,170,160,0,0,0,63,128,15,255,255,240,0,0,0,63,128,15,255,255,240,0,0,0,63,128,0,0,0,0,63,255,255,255,128,0,0,0,0,63,255,255,255,128,10,170,170,160,63,255,255,255,128,15,255,255,240,63,149,85,127,128,15,255,255,240,63,128,0,63,128,0,0,0,0,63,128,0,5,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,15,255,255,224,63,128,0,0,0,15,255,255,224,63,128,0,0,0,15,255,255,224,63,128,0,0,0,15,192,7,224,63,128,0,1,64,15,192,7,224,63,128,0,2,244,15,192,7,224,63,128,0,3,248,15,192,7,224,63,128,0,3,244,15,192,7,224,63,128,0,3,244,15,255,255,224,63,192,0,11,240,15,255,255,224,47,255,255,255,240,15,255,255,224,15,255,255,255,208,15,192,0,0,7,255,255,255,64,5,64,0,0,0,5,85,64,0, + // 0x8a2d 設 + 45,138,35,34,50,37,1,253,6,170,170,128,63,255,255,192,0,11,255,255,192,63,255,255,192,0,11,255,255,192,63,255,255,192,0,0,0,0,0,63,64,31,192,0,0,0,0,0,63,64,15,192,0,106,170,170,164,63,64,15,192,0,191,255,255,248,63,64,15,192,128,191,255,255,248,63,0,15,192,248,0,0,0,0,127,0,15,192,248,0,0,0,0,255,0,15,193,244,10,170,170,130,253,0,15,255,244,15,255,255,219,252,0,15,255,240,15,255,255,255,244,0,3,255,192,0,0,0,15,224,0,0,0,0,0,0,0,3,128,0,0,0,0,10,170,170,131,255,255,255,254,0,15,255,255,211,255,255,255,255,64,15,255,255,211,255,255,255,255,0,0,0,0,0,7,0,0,255,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,128,2,252,0,15,255,255,208,31,208,3,248,0,15,255,255,208,15,240,15,240,0,15,255,255,208,7,248,47,224,0,15,192,11,208,2,254,127,192,0,15,192,11,208,0,255,255,0,0,15,192,11,208,0,63,253,0,0,15,192,11,208,0,127,253,0,0,15,192,11,208,2,255,255,128,0,15,255,255,208,111,255,191,249,0,15,255,255,235,255,244,31,255,224,15,255,255,223,255,128,2,255,240,15,192,0,11,248,0,0,47,208,5,64,0,2,64,0,0,1,128, + // 0x8a66 試 + 102,138,35,36,68,37,1,252,0,0,0,0,0,0,63,133,0,10,170,170,64,0,0,63,191,0,11,255,255,128,0,0,47,175,192,11,255,255,128,0,0,47,139,224,0,0,0,0,0,0,47,131,244,0,0,0,0,0,0,47,129,224,106,170,170,144,0,0,47,128,0,191,255,255,234,170,170,191,234,160,191,255,255,239,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,10,170,170,64,0,0,47,128,0,15,255,255,128,0,0,47,128,0,15,255,255,128,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,11,255,255,95,128,0,10,170,170,139,255,255,95,128,0,15,255,255,139,255,255,95,192,0,15,255,255,128,15,192,31,192,0,0,0,0,0,15,192,15,192,0,0,0,0,0,15,192,15,192,0,0,0,0,0,15,192,15,192,0,15,255,255,128,15,192,15,192,0,15,255,255,128,15,192,15,208,0,15,255,255,128,15,192,15,208,0,15,192,15,128,15,192,11,224,0,15,192,15,128,15,192,7,224,64,15,192,15,128,15,218,215,240,116,15,192,15,128,111,255,211,240,188,15,192,15,159,255,255,211,244,252,15,255,255,143,255,249,2,253,248,15,255,255,143,249,0,0,255,244,15,255,255,132,0,0,0,255,240,15,192,0,0,0,0,0,63,224,5,64,0,0,0,0,0,11,128,0,0,0,0,0,0,0,0,0, + // 0x8a8d 認 + 141,138,35,34,50,37,1,253,10,170,170,64,0,0,0,0,0,11,255,255,130,255,255,255,255,208,11,255,255,130,255,255,255,255,192,0,0,0,2,255,255,255,255,192,0,0,0,0,0,63,64,15,192,106,170,170,160,228,63,0,15,192,191,255,255,225,255,254,0,15,192,191,255,255,225,255,253,0,15,192,0,0,0,0,31,255,128,31,192,0,0,0,0,3,255,240,31,192,10,170,170,64,3,255,252,31,192,15,255,255,128,11,247,248,47,128,15,255,255,128,31,208,176,63,128,0,0,0,0,127,192,16,63,64,0,0,0,2,255,0,191,255,0,10,170,170,79,252,0,63,254,0,15,255,255,135,240,40,63,248,0,15,255,255,130,64,191,64,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,2,255,0,0,15,255,255,128,3,240,126,0,0,15,255,255,129,67,240,24,125,0,15,255,255,130,243,240,0,191,0,15,192,15,131,243,240,0,63,64,15,192,15,131,243,240,0,47,192,15,192,15,135,227,240,0,15,224,15,192,15,139,211,240,3,71,240,15,192,15,143,195,240,3,243,244,15,255,255,175,131,240,3,242,248,15,255,255,175,3,244,7,241,252,15,255,255,133,3,255,255,224,224,15,192,0,0,1,255,255,192,0,5,64,0,0,0,191,255,64,0, + // 0x8aa4 誤 + 164,138,35,34,50,37,1,253,6,170,170,0,0,127,255,255,128,11,255,255,0,0,127,255,255,192,11,255,255,0,0,127,255,255,192,0,0,0,3,240,126,0,31,192,0,0,0,3,240,126,0,31,192,106,170,170,131,240,126,0,31,192,191,255,255,195,240,126,0,31,192,191,255,255,195,240,126,0,31,192,0,0,0,3,240,127,255,255,192,0,0,0,3,240,127,255,255,192,10,170,170,3,240,127,255,255,192,15,255,255,3,240,0,0,0,0,15,255,255,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,255,255,255,254,0,10,170,170,3,255,255,255,254,0,15,255,255,3,255,255,255,254,0,15,255,255,3,240,0,0,190,0,0,0,0,3,240,0,0,190,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,190,0,15,255,255,31,255,255,255,255,248,15,255,255,31,255,255,255,255,248,15,255,255,31,255,255,255,255,248,15,192,47,0,0,0,0,0,0,15,192,47,0,3,128,1,192,0,15,192,47,0,15,240,15,240,0,15,192,47,0,47,224,7,252,0,15,192,47,0,191,192,1,255,0,15,255,255,2,255,0,0,191,192,15,255,255,15,252,0,0,47,224,15,234,170,63,240,0,0,15,244,15,192,0,31,192,0,0,3,244,5,64,0,6,0,0,0,1,64, + // 0x8abf 調 + 191,138,34,35,59,37,1,252,10,170,169,0,0,0,0,0,0,15,255,253,15,255,255,255,255,208,15,255,253,15,255,255,255,255,208,0,0,0,15,255,255,255,255,208,0,0,0,15,192,11,192,15,208,106,170,170,79,192,15,192,15,208,191,255,255,79,192,15,192,15,208,191,255,255,79,195,255,255,79,208,0,0,0,15,195,255,255,79,208,0,0,0,15,194,175,234,79,208,10,170,169,15,192,15,192,15,208,15,255,253,15,192,15,192,15,208,15,255,253,15,192,15,192,15,208,0,0,0,15,199,255,255,207,208,0,0,0,15,199,255,255,207,208,10,170,169,15,198,170,170,143,208,15,255,253,15,192,0,0,15,208,15,255,253,15,192,0,0,15,208,0,0,0,15,195,255,255,79,208,0,0,0,15,195,255,255,79,208,0,0,0,15,195,250,175,79,208,15,255,253,15,195,224,15,79,208,15,255,253,15,195,224,15,79,208,15,255,253,31,195,224,15,79,208,15,128,125,47,131,224,15,79,208,15,128,125,47,67,250,175,79,208,15,128,125,63,67,255,255,79,208,15,128,125,63,3,255,255,79,208,15,128,125,127,3,224,0,15,208,15,255,253,254,1,64,0,15,208,15,255,254,253,0,0,5,95,208,15,234,171,252,0,0,31,255,192,15,128,1,248,0,0,15,255,192,5,64,0,48,0,0,15,254,0,0,0,0,0,0,0,0,0,0, + // 0x8acb 請 + 203,138,35,35,59,37,1,253,0,0,0,0,0,7,240,0,0,6,170,170,128,0,7,240,0,0,11,255,255,193,170,171,250,170,144,11,255,255,195,255,255,255,255,224,0,0,0,3,255,255,255,255,224,0,0,0,0,0,7,240,0,0,106,170,170,160,0,7,240,0,0,191,255,255,244,255,255,255,255,192,191,255,255,244,255,255,255,255,192,0,0,0,0,85,91,245,85,64,0,0,0,0,0,7,240,0,0,10,170,170,134,170,171,250,170,160,15,255,255,207,255,255,255,255,244,15,255,255,207,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,170,170,128,63,255,255,255,0,15,255,255,192,63,255,255,255,0,15,255,255,192,63,170,170,191,0,0,0,0,0,63,0,0,63,0,0,0,0,0,63,85,85,127,0,0,0,0,0,63,255,255,255,0,15,255,255,192,63,255,255,255,0,15,255,255,192,63,0,0,63,0,15,255,255,192,63,0,0,63,0,15,192,15,192,63,85,85,127,0,15,192,15,192,63,255,255,255,0,15,192,15,192,63,255,255,255,0,15,192,15,192,63,0,0,63,0,15,192,15,192,63,0,0,63,0,15,255,255,192,63,0,0,63,0,15,255,255,192,63,0,0,63,0,15,255,255,192,63,0,63,255,0,15,192,0,0,63,0,31,254,0,5,64,0,0,63,0,10,164,0, + // 0x8b70 議 + 112,139,35,35,59,37,1,253,0,0,0,0,44,0,1,224,0,10,170,169,0,127,0,3,248,0,15,255,253,0,47,64,7,240,0,15,255,253,5,111,213,95,229,64,0,0,0,31,255,255,255,255,208,0,0,0,31,255,255,255,255,208,106,170,170,64,0,31,192,0,0,191,255,255,64,0,31,192,0,0,191,255,255,67,255,255,255,255,64,0,0,0,3,255,255,255,255,64,0,0,0,0,0,47,192,0,0,10,170,169,0,0,31,192,0,0,15,255,253,106,170,175,234,170,160,15,255,253,191,255,255,255,255,240,0,0,0,191,255,255,255,255,240,0,0,0,0,0,16,0,0,0,10,170,169,0,91,248,252,40,0,15,255,253,63,255,253,252,191,0,15,255,253,47,255,144,252,47,192,0,0,0,0,47,64,188,11,224,0,0,0,0,47,64,188,2,128,0,0,0,106,191,170,254,170,160,15,255,253,191,255,255,255,255,240,15,255,253,191,255,255,255,255,240,15,255,253,0,47,64,62,0,0,15,128,125,0,47,65,63,31,0,15,128,125,1,127,255,63,63,64,15,128,125,255,255,255,47,254,0,15,128,125,191,255,228,31,248,0,15,128,125,105,127,64,31,224,80,15,255,253,0,47,64,127,208,184,15,255,253,0,47,71,255,240,244,15,234,169,5,127,47,243,255,240,15,128,0,15,255,15,64,255,240,5,64,0,15,248,0,0,47,128, + // 0x8b80 讀 + 128,139,35,35,59,37,1,253,0,0,0,0,0,15,192,0,0,10,170,169,0,0,15,192,0,0,15,255,253,31,255,255,255,255,240,15,255,253,31,255,255,255,255,240,0,0,0,5,85,95,213,85,64,0,0,0,0,0,31,192,0,0,106,170,170,67,255,255,255,255,192,191,255,255,67,255,255,255,255,192,191,255,255,64,0,0,0,0,0,0,0,0,31,255,255,255,255,224,0,0,0,31,255,255,255,255,224,10,170,169,31,64,240,124,7,224,15,255,253,31,71,240,125,91,224,15,255,253,31,191,128,63,255,224,0,0,0,31,84,0,0,7,224,0,0,0,31,255,255,255,255,224,10,170,169,31,255,255,255,255,224,15,255,253,0,0,0,0,0,0,15,255,253,3,255,255,255,255,128,0,0,0,3,255,255,255,255,128,0,0,0,3,240,0,0,47,128,0,0,0,3,245,85,85,127,128,15,255,253,3,255,255,255,255,128,15,255,253,3,240,0,0,47,128,15,255,253,3,245,85,85,127,128,15,128,125,3,255,255,255,255,128,15,128,125,3,240,0,0,47,128,15,128,125,3,255,255,255,255,128,15,128,125,3,255,255,255,255,128,15,128,125,0,11,64,11,128,0,15,255,253,0,127,224,47,248,0,15,255,253,11,255,128,7,255,64,15,234,169,255,252,0,0,191,244,15,128,0,127,208,0,0,15,240,5,64,0,24,0,0,0,1,64, + // 0x8b8a 變 + 138,139,35,36,68,37,1,252,0,41,0,0,0,0,10,64,0,0,63,0,47,255,208,15,128,0,0,188,0,47,255,208,63,0,0,5,244,160,0,0,1,188,46,0,31,225,252,255,255,255,244,127,0,15,211,240,255,255,255,244,252,0,7,255,192,0,0,1,255,240,0,1,255,64,0,0,0,127,197,0,0,189,120,63,255,208,47,47,0,0,244,61,47,255,208,125,15,192,23,255,255,0,0,5,255,255,224,63,255,255,191,255,239,255,255,240,63,255,71,111,255,223,255,208,240,0,31,0,0,0,0,11,192,0,6,95,108,47,255,210,155,203,64,15,223,61,63,255,227,235,207,192,15,95,47,61,3,231,203,195,208,47,31,15,125,3,235,203,194,240,63,31,9,63,255,239,75,193,244,61,31,3,255,255,235,11,192,224,4,31,15,240,0,0,11,192,0,0,26,47,208,0,0,6,128,0,0,0,191,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,1,255,254,0,0,11,248,0,0,31,255,191,208,0,63,224,0,0,15,244,31,253,2,255,128,0,0,3,128,2,255,239,253,0,0,0,0,0,0,127,255,240,0,0,0,0,0,6,255,255,254,144,0,0,1,107,255,255,239,255,255,169,64,127,255,255,248,0,191,255,255,244,47,255,249,0,0,1,191,255,224,15,164,0,0,0,0,0,91,192,0,0,0,0,0,0,0,0,0, + // 0x8cc7 資 + 199,140,33,36,68,37,2,252,0,0,0,1,248,0,0,0,0,11,224,0,3,244,0,0,0,0,31,255,128,11,245,85,85,89,0,6,255,244,31,255,255,255,255,64,0,31,240,127,255,255,255,254,0,0,1,225,254,2,252,0,252,0,0,0,3,252,3,254,3,248,0,0,0,0,240,11,255,7,240,0,0,6,240,0,47,255,192,128,0,1,191,244,0,191,143,244,0,0,191,255,244,27,255,3,255,128,0,255,254,67,255,248,0,255,254,128,127,144,2,255,128,0,47,255,192,36,0,1,249,0,0,6,255,0,0,127,255,255,255,255,255,197,0,0,127,255,255,255,255,255,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,0,30,0,0,41,0,0,0,0,2,255,208,1,255,224,0,0,1,191,255,0,0,127,255,64,0,127,255,224,0,0,2,255,248,0,63,253,0,0,0,0,31,255,64,15,64,0,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,35,33,41,37,1,253,11,255,255,248,63,255,255,255,240,11,255,255,248,63,255,255,255,240,11,255,255,248,63,255,255,255,240,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,208,1,248,63,64,0,0,0,11,255,255,248,63,128,0,0,0,11,255,255,248,63,255,255,255,128,11,255,255,248,63,255,255,255,128,0,2,244,0,63,255,255,255,128,0,2,244,0,63,64,0,63,128,0,2,244,0,63,64,0,63,128,0,2,244,0,63,64,0,63,128,15,194,244,0,63,64,0,63,128,15,194,244,0,63,64,0,63,128,15,194,255,253,63,64,0,63,128,15,194,255,253,63,128,0,63,128,15,194,255,253,63,255,255,255,128,15,194,244,0,63,255,255,255,128,15,194,244,0,63,255,255,255,128,15,194,244,0,63,64,0,0,0,15,194,244,0,63,64,0,0,0,15,194,244,5,63,64,0,0,0,15,194,250,254,63,64,0,0,0,15,215,255,255,63,64,0,0,0,31,255,255,254,63,128,0,0,0,191,255,254,64,63,255,255,255,248,127,254,64,0,63,255,255,255,248,121,64,0,0,63,255,255,255,248,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0, + // 0x8eca 車 + 202,142,33,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,63,255,255,255,255,255,255,255,0,0,0,0,7,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,254,170,175,250,170,175,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,252,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,192,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8edf 軟 + 223,142,35,36,68,37,1,252,0,1,244,0,0,249,0,0,0,0,2,248,0,0,253,0,0,0,0,2,248,0,0,252,0,0,0,0,2,248,0,1,252,0,0,0,63,255,255,255,194,252,0,0,0,63,255,255,255,194,248,0,0,0,63,255,255,255,195,244,0,0,0,0,2,248,0,3,255,255,255,224,0,2,248,0,7,255,255,255,240,5,87,253,85,15,255,255,255,240,31,255,255,255,79,210,248,11,224,31,255,255,255,95,194,248,15,208,31,65,240,31,127,130,248,15,192,31,65,240,31,191,66,248,15,192,31,65,240,31,255,2,248,31,128,31,255,255,255,253,2,248,47,64,31,255,255,255,188,2,248,63,0,31,150,245,111,64,2,252,6,0,31,65,240,31,64,3,252,0,0,31,65,240,31,64,3,252,0,0,31,170,250,191,64,3,252,0,0,31,255,255,255,64,7,253,0,0,31,255,255,255,64,15,255,0,0,0,2,248,0,0,15,175,0,0,0,2,248,0,0,47,95,128,0,0,2,248,0,0,63,15,192,0,127,255,255,255,208,190,15,224,0,127,255,255,255,209,252,7,240,0,127,255,255,255,211,252,3,252,0,0,2,248,0,15,240,1,254,0,0,2,248,0,63,208,0,191,128,0,2,248,1,255,128,0,63,240,0,2,248,7,254,0,0,15,248,0,2,248,3,248,0,0,3,240,0,2,248,0,208,0,0,0,144,0,0,0,0,0,0,0,0,0, + // 0x8ef8 軸 + 248,142,34,36,68,37,1,252,0,3,240,0,0,1,248,0,0,0,3,240,0,0,1,248,0,0,0,3,240,0,0,1,248,0,0,0,3,240,0,0,1,248,0,0,63,255,255,255,0,1,248,0,0,63,255,255,255,0,1,248,0,0,63,255,255,255,0,1,248,0,0,0,3,240,0,0,1,248,0,0,0,3,240,0,63,255,255,255,208,5,87,249,84,63,255,255,255,208,15,255,255,253,63,255,255,255,208,15,255,255,253,63,65,248,11,208,15,66,224,61,63,1,248,11,208,15,66,224,61,63,1,248,11,208,15,66,224,61,63,1,248,11,208,15,255,255,253,63,1,248,11,208,15,255,255,253,63,1,248,11,208,15,151,245,189,63,1,248,11,208,15,66,224,61,63,1,248,11,208,15,66,224,61,63,255,255,255,208,15,171,250,189,63,255,255,255,208,15,255,255,253,63,255,255,255,208,15,255,255,253,63,1,248,11,208,0,3,240,0,63,1,248,11,208,0,3,240,0,63,1,248,11,208,0,3,240,0,63,1,248,11,208,191,255,255,255,191,1,248,11,208,191,255,255,255,191,1,248,11,208,191,255,255,255,191,1,248,11,208,0,3,240,0,63,1,248,11,208,0,3,240,0,63,255,255,255,208,0,3,240,0,63,255,255,255,208,0,3,240,0,63,255,255,255,208,0,3,240,0,63,0,0,11,208,0,3,240,0,63,0,0,7,208,0,0,0,0,0,0,0,0,0, + // 0x8f09 載 + 9,143,34,36,68,37,2,252,0,0,253,0,1,252,1,0,0,0,0,253,0,1,252,15,64,0,0,0,253,0,1,252,63,208,0,31,255,255,255,225,252,15,244,0,31,255,255,255,225,252,3,253,0,10,170,255,170,145,252,0,255,0,0,0,253,0,1,252,0,60,0,0,0,253,0,1,252,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,252,0,0,253,0,0,0,0,0,252,0,0,253,0,0,0,21,85,254,85,80,253,0,164,0,63,255,255,255,244,253,0,254,0,63,255,255,255,244,254,1,252,0,0,0,252,0,0,190,2,252,0,0,0,252,0,0,191,3,244,0,15,255,255,255,224,127,7,240,0,15,255,255,255,224,127,15,224,0,15,64,188,3,224,63,31,192,0,15,255,255,255,224,63,191,128,0,15,255,255,255,224,63,255,0,0,15,64,188,3,224,47,254,0,0,15,64,188,3,224,31,252,0,0,15,255,255,255,224,15,244,0,0,15,255,255,255,224,31,240,7,64,0,0,252,0,0,63,240,7,224,0,0,252,0,0,255,244,7,208,127,255,255,255,247,255,252,11,208,127,255,255,255,255,250,253,15,192,106,170,254,170,255,224,255,159,192,0,0,252,2,255,128,127,255,128,0,0,252,0,253,0,31,255,0,0,0,252,0,48,0,2,248,0,0,0,0,0,0,0,0,0,0, + // 0x8f2f 輯 + 47,143,35,36,68,37,1,252,0,3,240,0,0,0,0,0,0,0,3,240,0,11,255,255,255,128,0,3,240,0,11,255,255,255,128,0,3,240,0,11,250,170,191,128,63,255,255,255,11,224,0,63,128,63,255,255,255,11,224,0,63,128,63,255,255,255,11,224,0,63,128,0,3,240,0,11,255,255,255,128,0,3,240,0,11,255,255,255,128,5,87,249,84,6,170,170,170,64,15,255,255,253,0,0,0,0,0,15,255,255,253,170,170,170,170,164,15,66,224,61,191,255,255,255,248,15,66,224,61,191,255,255,255,248,15,66,224,61,7,224,0,47,64,15,255,255,253,7,224,0,47,64,15,255,255,253,7,224,0,47,64,15,151,245,189,7,255,255,255,64,15,66,224,61,7,255,255,255,64,15,66,224,61,7,245,85,127,64,15,171,250,189,7,224,0,47,64,15,255,255,253,7,224,0,47,64,15,255,255,253,7,250,170,191,64,0,3,240,0,7,255,255,255,64,0,3,240,0,7,255,255,255,64,0,3,240,0,7,224,0,47,64,191,255,255,255,135,224,0,47,64,191,255,255,255,135,224,0,47,248,191,255,255,255,139,246,175,255,248,0,3,240,2,255,255,255,255,248,0,3,240,1,255,255,255,255,128,0,3,240,0,254,165,64,47,64,0,3,240,0,0,0,0,47,64,0,3,240,0,0,0,0,47,64,0,3,240,0,0,0,0,47,64,0,0,0,0,0,0,0,0,0, + // 0x8f38 輸 + 56,143,35,35,59,37,1,253,0,11,208,0,0,7,240,0,0,0,11,208,0,0,15,252,0,0,0,11,208,0,0,31,254,0,0,0,11,208,0,0,63,191,64,0,63,255,255,252,0,255,47,208,0,63,255,255,252,2,252,15,244,0,63,255,255,252,11,244,3,253,0,0,11,208,0,47,208,0,255,128,0,11,208,0,191,128,0,63,240,26,175,234,167,255,255,255,239,252,47,255,255,251,254,255,255,227,244,47,255,255,247,226,255,255,224,176,47,7,193,245,128,0,0,0,0,47,7,193,244,0,0,0,0,0,47,7,193,244,0,0,0,2,144,47,255,255,244,255,255,0,3,224,47,255,255,244,255,255,15,67,224,47,91,214,244,250,175,15,67,224,47,7,193,244,244,15,15,67,224,47,7,193,244,244,15,15,67,224,47,91,214,244,255,255,15,67,224,47,255,255,244,255,255,15,67,224,47,255,255,244,249,111,15,67,224,0,11,208,0,244,15,15,67,224,0,11,208,0,244,15,15,67,224,0,11,208,0,255,255,15,67,224,191,255,255,252,255,255,15,67,224,191,255,255,252,249,111,15,67,224,191,255,255,252,244,15,15,67,224,0,11,208,0,244,15,5,3,224,0,11,208,0,244,15,0,3,224,0,11,208,0,244,15,0,3,224,0,11,208,0,244,111,1,171,208,0,11,208,0,244,255,2,255,192,0,11,208,0,244,189,1,254,64, + // 0x8f49 轉 + 73,143,35,36,68,37,1,252,0,3,224,0,0,2,244,0,0,0,7,240,0,0,2,244,0,0,0,7,240,0,0,2,244,0,0,0,7,240,0,255,255,255,255,240,63,255,255,253,255,255,255,255,240,63,255,255,253,170,171,250,170,160,63,255,255,253,0,2,244,0,0,0,7,240,0,63,255,255,255,192,0,7,240,0,63,255,255,255,192,5,91,245,84,62,2,244,11,192,31,255,255,252,62,2,244,11,192,31,255,255,252,63,255,255,255,192,31,3,208,188,63,255,255,255,192,31,3,208,188,62,2,244,11,192,31,3,208,188,62,2,244,11,192,31,255,255,252,63,255,255,255,192,31,255,255,252,63,255,255,255,192,31,151,229,252,0,2,244,126,0,31,3,208,188,0,2,244,63,128,31,3,208,189,255,255,255,255,208,31,171,234,253,255,255,255,255,240,31,255,255,252,254,169,85,86,244,31,255,255,252,0,0,3,240,128,0,7,240,0,0,0,3,240,0,0,7,240,1,255,255,255,255,244,0,7,240,1,255,255,255,255,244,191,255,255,255,171,170,171,250,164,191,255,255,254,11,192,3,240,0,191,255,255,254,15,240,3,240,0,0,7,240,0,3,248,3,240,0,0,7,240,0,1,252,3,240,0,0,7,240,0,0,180,3,240,0,0,7,240,0,0,7,175,240,0,0,7,240,0,0,3,255,240,0,0,7,240,0,0,3,255,128,0,0,0,0,0,0,0,0,0,0, + // 0x8fd1 近 + 209,143,35,35,59,37,1,253,0,0,0,0,0,0,0,96,0,3,64,0,0,0,0,111,252,0,15,224,0,4,1,175,255,255,0,31,252,0,15,255,255,255,244,0,7,255,0,15,255,255,233,0,0,0,255,192,15,255,148,0,0,0,0,63,224,15,224,0,0,0,0,0,15,208,15,224,0,0,0,0,0,3,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,255,255,255,255,240,0,0,0,15,224,0,254,0,0,63,255,192,15,208,0,254,0,0,63,255,192,15,192,0,254,0,0,63,255,192,31,192,0,254,0,0,0,31,192,47,192,0,254,0,0,0,31,192,63,128,0,254,0,0,0,31,192,63,64,0,254,0,0,0,31,192,191,0,0,254,0,0,0,31,192,254,0,0,254,0,0,0,31,194,253,0,0,254,0,0,0,31,195,252,0,0,254,0,0,0,31,207,244,0,0,254,0,0,0,31,199,224,0,0,254,0,0,0,63,225,192,0,0,254,0,0,1,255,248,0,0,0,254,0,0,11,255,255,64,0,0,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,35,34,50,37,1,253,3,64,0,0,0,0,0,0,0,31,208,0,63,255,255,255,255,192,31,248,0,63,255,255,255,255,192,7,254,0,63,255,255,255,255,192,1,255,128,63,64,0,0,0,0,0,127,208,63,64,0,0,0,0,0,31,192,63,64,0,0,0,0,0,11,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,255,0,0,0,0,63,255,255,255,254,0,0,0,0,63,127,64,1,252,0,0,0,0,63,111,192,3,252,0,63,255,128,63,79,208,7,244,0,63,255,128,63,11,240,15,240,0,63,255,128,127,7,244,31,208,0,0,47,128,127,2,252,63,192,0,0,47,128,190,0,255,255,64,0,0,47,128,253,0,127,254,0,0,0,47,129,252,0,47,252,0,0,0,47,130,252,0,63,252,0,0,0,47,131,248,1,255,255,64,0,0,47,135,240,11,255,255,240,0,0,47,143,224,191,248,47,255,64,0,47,159,195,255,208,7,255,240,0,127,211,129,254,0,0,191,224,2,255,244,0,224,0,0,11,192,11,255,255,64,0,0,0,0,0,127,244,255,250,84,0,5,85,84,127,208,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,35,33,41,37,1,253,7,208,0,31,255,255,255,252,0,31,244,0,31,255,255,255,252,0,11,254,0,31,255,255,255,252,0,1,255,192,31,192,0,1,252,0,0,63,240,31,192,0,1,252,0,0,15,224,31,234,170,171,252,0,0,3,64,31,255,255,255,252,0,0,0,0,31,255,255,255,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,1,252,0,0,0,0,31,255,255,255,252,0,0,0,0,31,255,255,255,252,0,63,255,192,31,255,255,255,252,0,63,255,192,31,192,63,64,15,64,63,255,192,31,192,47,192,127,208,0,31,192,31,192,15,210,255,64,0,31,192,31,192,11,255,252,0,0,31,192,31,192,7,255,208,0,0,31,192,31,192,2,255,0,0,0,31,192,31,192,0,255,64,0,0,31,192,31,193,174,127,208,0,0,31,192,31,255,255,31,248,0,0,31,193,255,255,255,7,255,144,0,31,194,255,255,144,1,255,240,0,63,225,255,144,0,0,47,192,1,255,248,144,0,0,0,3,64,11,255,255,64,0,0,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,35,35,59,37,1,253,0,0,0,0,0,190,0,0,0,2,64,0,0,0,190,0,0,0,15,208,0,0,0,190,0,0,0,47,248,0,0,0,190,0,0,0,7,254,3,255,255,255,255,255,240,1,255,131,255,255,255,255,255,240,0,63,227,255,255,255,255,255,224,0,15,208,0,0,190,0,0,0,0,3,0,0,0,190,0,0,0,0,0,0,106,170,255,170,170,0,0,0,0,191,255,255,255,255,64,0,0,0,191,255,255,255,255,64,0,0,0,189,0,190,0,63,64,0,0,0,189,0,190,0,63,64,0,0,0,189,0,190,0,63,64,63,255,192,189,0,190,0,63,64,63,255,192,191,170,255,170,191,64,63,255,192,191,255,255,255,255,64,0,31,192,191,255,255,255,255,64,0,31,192,0,11,255,224,0,0,0,31,192,0,47,255,248,0,0,0,31,192,0,127,255,254,0,0,0,31,192,2,253,190,127,128,0,0,31,192,11,248,190,31,244,0,0,31,192,127,224,190,7,254,0,0,31,199,255,128,190,1,255,224,0,31,199,253,0,190,0,63,208,0,63,226,240,0,190,0,11,128,1,255,248,64,0,190,0,1,0,11,255,255,64,0,85,0,0,0,127,248,191,254,85,85,85,85,100,127,208,47,255,255,255,255,255,244,63,64,2,255,255,255,255,255,240,28,0,0,27,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9023 連 + 35,144,34,35,59,37,1,253,0,0,0,0,0,253,0,0,0,3,0,0,0,0,253,0,0,0,31,208,0,0,0,253,0,0,0,31,244,11,255,255,255,255,255,208,7,253,11,255,255,255,255,255,208,1,255,75,255,255,255,255,255,208,0,127,192,0,0,253,0,0,0,0,31,128,0,0,253,0,0,0,0,9,0,255,255,255,255,254,0,0,0,0,255,255,255,255,254,0,0,0,0,254,85,254,85,254,0,0,0,0,252,0,253,0,190,0,0,0,0,252,0,253,0,190,0,0,0,0,255,255,255,255,254,0,0,0,0,255,255,255,255,254,0,63,255,64,253,85,254,85,254,0,63,255,64,252,0,253,0,190,0,63,255,64,252,0,253,0,190,0,0,63,64,255,255,255,255,254,0,0,63,64,255,255,255,255,254,0,0,63,64,85,85,254,85,85,0,0,63,64,0,0,253,0,0,0,0,63,64,0,0,253,0,0,0,0,63,79,255,255,255,255,255,240,0,63,79,255,255,255,255,255,240,0,63,79,255,255,255,255,255,224,0,63,128,0,0,253,0,0,0,0,127,192,0,0,253,0,0,0,1,255,240,0,0,253,0,0,0,11,255,254,0,0,168,0,0,0,63,244,255,249,64,0,0,5,80,127,192,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,107,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9032 進 + 50,144,34,35,59,37,1,253,0,0,0,0,144,0,64,0,0,2,0,0,2,253,0,254,0,0,15,192,0,3,252,1,253,0,0,47,244,0,7,244,2,252,0,0,11,253,0,15,240,3,248,0,0,2,255,0,47,224,7,240,0,0,0,191,192,63,255,255,255,255,192,0,47,192,255,255,255,255,255,192,0,15,3,255,255,255,255,255,192,0,0,11,255,64,15,208,0,0,0,0,47,255,64,15,208,0,0,0,0,191,255,64,15,208,0,0,0,0,255,127,255,255,255,255,0,0,0,61,63,255,255,255,255,0,0,0,4,63,255,255,255,255,0,63,255,64,63,64,15,208,0,0,63,255,64,63,64,15,208,0,0,63,255,64,63,64,15,208,0,0,0,63,64,63,255,255,255,255,0,0,63,64,63,255,255,255,255,0,0,63,64,63,255,255,255,255,0,0,63,64,63,64,15,208,0,0,0,63,64,63,64,15,208,0,0,0,63,64,63,64,15,208,0,0,0,63,64,63,64,15,208,0,0,0,63,64,63,255,255,255,255,224,0,63,128,63,255,255,255,255,224,0,127,192,63,255,255,255,255,224,1,255,240,0,0,0,0,0,0,11,255,254,0,0,0,0,0,0,63,244,255,249,64,0,0,5,80,127,192,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,107,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x904b 運 + 75,144,34,34,50,37,1,253,2,0,2,170,170,170,170,170,128,31,208,7,255,255,255,255,255,208,47,244,7,255,255,255,255,255,208,11,253,7,224,0,84,0,11,208,2,255,7,224,0,254,0,11,208,0,191,193,80,0,254,0,5,64,0,47,194,255,255,255,255,255,64,0,15,2,255,255,255,255,255,64,0,0,1,85,85,255,85,85,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,191,255,255,255,254,0,0,0,0,191,255,255,255,254,0,0,0,0,189,0,254,0,190,0,63,255,64,189,0,254,0,190,0,63,255,64,191,255,255,255,254,0,63,255,64,191,255,255,255,254,0,0,63,64,189,0,254,0,190,0,0,63,64,189,0,254,0,190,0,0,63,64,191,255,255,255,254,0,0,63,64,191,255,255,255,254,0,0,63,64,0,0,254,0,0,0,0,63,64,0,0,254,0,0,0,0,63,74,170,170,255,170,170,160,0,63,79,255,255,255,255,255,240,0,63,143,255,255,255,255,255,240,0,127,192,0,0,254,0,0,0,1,255,240,0,0,254,0,0,0,11,255,254,0,0,254,0,0,0,63,244,255,249,64,0,0,5,80,127,192,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,107,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9054 達 + 84,144,34,35,59,37,1,253,0,0,0,0,0,254,0,0,0,3,64,0,0,0,254,0,0,0,31,208,0,21,85,255,85,85,0,31,248,0,191,255,255,255,254,0,7,254,0,191,255,255,255,254,0,0,255,64,0,0,254,0,0,0,0,127,192,0,0,254,0,0,0,0,31,138,170,170,255,170,170,160,0,10,15,255,255,255,255,255,240,0,0,15,255,255,255,255,255,240,0,0,0,3,240,0,31,192,0,0,0,0,3,244,0,47,192,0,0,0,0,2,252,0,63,64,0,0,0,0,0,252,0,127,0,0,0,0,7,255,255,255,255,255,224,63,255,71,255,255,255,255,255,224,63,255,66,170,170,255,170,170,144,63,255,64,0,0,254,0,0,0,0,63,64,85,85,255,85,85,0,0,63,64,255,255,255,255,255,0,0,63,64,255,255,255,255,255,0,0,63,64,0,0,254,0,0,0,0,63,64,0,0,254,0,0,0,0,63,70,170,170,255,170,170,144,0,63,75,255,255,255,255,255,224,0,63,75,255,255,255,255,255,224,0,63,128,0,0,254,0,0,0,0,127,192,0,0,254,0,0,0,1,255,240,0,0,254,0,0,0,11,255,254,0,0,0,0,0,0,63,244,255,249,64,0,0,5,80,127,192,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,107,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x9078 選 + 120,144,35,34,50,37,1,253,11,0,1,85,85,5,85,85,0,63,192,15,255,255,143,255,255,128,47,240,15,255,255,143,255,255,128,11,252,0,0,31,128,0,31,128,2,255,1,85,111,129,85,111,128,0,191,135,255,255,131,255,255,128,0,63,71,255,255,131,255,255,128,0,24,7,224,0,3,224,0,0,0,0,7,224,2,147,224,1,224,0,0,3,245,87,227,245,86,240,0,0,3,255,255,211,255,255,240,0,0,1,255,255,128,191,255,192,0,0,0,0,168,0,105,0,0,0,0,0,0,252,0,190,0,0,127,255,0,0,252,0,190,0,0,127,255,7,255,255,255,255,255,192,127,255,7,255,255,255,255,255,192,0,63,2,170,254,170,255,170,128,0,63,0,0,252,0,190,0,0,0,63,0,0,252,0,190,0,0,0,63,26,170,254,170,255,170,160,0,63,31,255,255,255,255,255,240,0,63,31,255,255,255,255,255,240,0,63,0,0,100,0,24,0,0,0,63,0,2,254,0,191,128,0,0,63,0,47,248,0,47,248,0,0,127,130,255,208,0,7,255,0,2,255,227,254,0,0,0,191,208,11,255,252,160,0,0,0,30,0,63,241,255,228,0,0,0,0,0,191,192,127,255,255,255,255,255,244,63,0,11,255,255,255,255,255,240,44,0,0,111,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0x9084 還 + 132,144,34,34,50,37,1,253,7,64,2,255,255,255,255,255,0,31,224,2,255,255,255,255,255,0,31,248,2,244,47,3,240,63,0,3,254,2,244,47,3,240,63,0,0,255,130,244,47,3,240,63,0,0,63,210,255,255,255,255,255,0,0,31,66,255,255,255,255,255,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,240,0,0,47,255,255,255,255,255,240,0,0,5,85,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,252,0,63,255,64,127,255,255,255,252,0,63,255,64,126,0,0,1,252,0,63,255,64,126,0,0,1,252,0,0,63,64,126,0,0,1,252,0,0,63,64,127,255,255,255,252,0,0,63,64,127,255,255,255,254,0,0,63,64,0,15,253,0,63,192,0,63,64,0,127,255,65,255,0,0,63,64,2,255,255,235,248,0,0,63,64,47,253,255,255,208,0,0,63,71,255,209,252,255,224,0,0,63,139,254,1,252,47,255,144,0,127,195,224,1,252,2,255,208,1,255,240,0,1,252,0,47,128,11,255,254,0,1,252,0,0,0,63,244,255,249,64,0,0,5,80,127,192,63,255,255,255,255,255,240,63,0,7,255,255,255,255,255,240,28,0,0,107,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x908a 邊 + 138,144,35,35,59,37,1,253,0,64,0,0,0,185,0,0,0,2,224,0,0,0,253,0,0,0,11,253,0,63,255,255,255,252,0,2,255,128,63,170,170,171,252,0,0,127,224,63,64,0,1,252,0,0,15,224,63,255,255,255,252,0,0,3,128,63,170,170,170,252,0,0,0,0,63,64,0,1,252,0,1,0,0,63,255,255,255,252,0,15,192,0,63,170,170,170,252,0,63,248,0,63,64,0,1,252,0,11,255,0,63,255,255,255,252,0,1,255,192,42,170,254,170,168,0,0,63,0,0,0,253,0,0,0,0,8,11,255,255,255,255,255,224,0,0,11,255,255,255,255,255,224,0,0,11,208,62,7,192,107,224,0,0,5,70,252,7,255,255,224,127,255,65,255,224,255,255,244,0,127,255,64,249,0,253,0,0,0,127,255,64,0,0,253,0,0,0,0,63,79,255,255,255,255,255,240,0,63,79,255,255,255,255,255,240,0,63,64,0,63,0,0,0,0,0,63,64,0,63,255,255,240,0,0,63,64,0,255,255,255,240,0,0,63,64,7,248,0,7,224,0,0,127,129,191,224,0,11,208,0,1,255,227,255,64,47,255,192,0,11,255,250,228,0,31,255,0,0,63,245,255,229,0,0,0,0,80,191,192,127,255,255,255,255,255,244,63,0,11,255,255,255,255,255,240,28,0,0,111,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,35,35,59,37,1,253,0,0,106,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,63,255,255,192,0,0,127,0,0,63,255,255,244,47,255,255,255,252,63,255,255,240,47,255,255,255,252,63,64,31,240,47,255,255,255,252,63,0,31,208,0,0,0,4,0,63,0,47,192,0,252,0,31,192,63,0,63,128,0,252,0,47,128,63,0,127,0,0,189,0,63,64,63,0,254,0,0,126,0,63,0,63,0,253,0,0,63,0,126,0,63,2,252,0,0,63,0,253,0,63,3,244,0,0,36,0,24,0,63,7,240,0,127,255,255,255,254,63,11,240,0,127,255,255,255,254,63,2,252,0,127,255,255,255,254,63,0,255,0,0,0,0,0,0,63,0,63,64,0,0,0,0,0,63,0,47,192,0,0,0,0,0,63,0,15,208,3,255,255,255,224,63,0,11,224,3,255,255,255,224,63,0,7,240,3,255,255,255,224,63,0,7,240,3,240,0,11,224,63,0,7,240,3,240,0,11,224,63,0,11,240,3,240,0,11,224,63,0,31,240,3,240,0,11,224,63,15,255,224,3,240,0,11,224,63,15,255,192,3,240,0,11,224,63,11,255,0,3,255,255,255,224,63,1,80,0,3,255,255,255,224,63,0,0,0,3,255,255,255,224,63,0,0,0,3,240,0,11,224,63,0,0,0,3,240,0,11,224,63,0,0,0, + // 0x91cb 釋 + 203,145,35,36,68,37,1,252,0,0,27,192,0,0,0,0,0,0,107,255,244,85,85,85,85,64,63,255,255,209,255,255,255,255,208,63,255,228,1,255,255,255,255,208,41,75,208,1,244,60,31,11,208,0,7,208,145,244,60,31,11,208,11,7,208,253,244,60,31,11,208,31,71,209,249,249,189,111,95,208,15,135,210,245,255,255,255,255,208,15,199,211,241,255,255,255,255,208,11,199,211,208,0,3,240,0,0,7,215,215,192,0,3,240,0,0,3,135,215,128,63,255,255,255,0,0,7,208,0,63,255,255,255,0,127,255,255,252,21,91,245,85,0,127,255,255,252,0,3,240,0,0,127,255,255,253,85,91,245,85,80,0,47,208,7,255,255,255,255,244,0,63,224,7,255,255,255,255,244,0,127,248,0,11,192,0,248,0,0,191,255,0,7,208,2,244,0,0,255,255,192,3,240,3,224,0,2,251,223,240,2,240,7,192,0,3,231,211,247,255,255,255,255,240,11,215,208,243,255,255,255,255,240,31,199,208,65,85,91,245,85,80,63,71,208,0,0,3,240,0,0,191,7,208,0,0,3,240,0,0,125,7,208,0,255,255,255,255,192,40,7,208,0,255,255,255,255,192,16,7,208,0,85,91,245,85,64,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,7,208,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x91cd 重 + 205,145,33,34,50,37,2,254,0,0,0,0,0,0,90,0,0,0,0,0,5,106,255,255,64,0,2,191,255,255,255,255,255,192,0,2,255,255,255,255,255,233,0,0,1,255,169,91,244,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,170,170,170,175,254,170,170,170,128,0,0,0,7,240,0,0,0,0,0,85,85,91,245,85,85,64,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,253,0,7,240,0,15,208,0,0,253,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,253,0,11,240,0,31,208,0,0,253,0,7,240,0,15,208,0,0,253,0,7,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,85,85,91,245,85,85,64,0,0,0,0,7,240,0,0,0,0,2,170,170,175,250,170,170,164,0,3,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x91cf 量 + 207,145,33,33,41,37,2,254,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,63,64,0,0,127,0,0,0,0,63,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,127,0,0,0,0,63,64,0,0,127,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,170,170,170,170,170,170,170,170,128,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,3,240,0,15,208,0,0,252,0,3,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,252,0,3,240,0,15,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,1,85,85,87,245,85,85,80,0,0,0,0,3,240,0,0,0,0,170,170,170,171,250,170,170,170,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0x91dd 針 + 221,145,35,35,59,37,1,253,0,3,252,0,0,0,169,0,0,0,7,255,0,0,0,253,0,0,0,15,255,208,0,0,253,0,0,0,31,255,244,0,0,253,0,0,0,63,199,253,0,0,253,0,0,0,191,1,255,64,0,253,0,0,1,254,0,127,192,0,253,0,0,3,252,0,47,224,0,253,0,0,15,240,0,11,128,0,253,0,0,63,208,0,2,0,0,253,0,0,255,255,255,252,0,0,253,0,0,63,255,255,252,0,0,253,0,0,5,255,255,252,21,85,254,85,80,0,1,252,0,127,255,255,255,248,0,1,252,0,127,255,255,255,248,0,1,252,0,127,255,255,255,248,47,255,255,255,128,0,253,0,0,47,255,255,255,128,0,253,0,0,47,255,255,255,128,0,253,0,0,0,1,252,0,0,0,253,0,0,0,1,252,20,0,0,253,0,0,11,129,252,47,0,0,253,0,0,11,193,252,63,0,0,253,0,0,7,209,252,62,0,0,253,0,0,3,225,252,125,0,0,253,0,0,3,225,252,188,0,0,253,0,0,2,241,252,248,0,0,253,0,0,2,241,252,32,0,0,253,0,0,0,1,252,26,128,0,253,0,0,0,2,255,255,192,0,253,0,0,26,255,255,255,192,0,253,0,0,63,255,255,250,64,0,253,0,0,63,255,229,0,0,0,253,0,0,46,144,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0, + // 0x9215 鈕 + 21,146,35,35,59,37,1,253,0,11,224,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,255,0,127,255,255,255,0,0,127,127,192,127,255,255,254,0,0,254,31,224,127,255,255,254,0,2,252,7,248,21,191,85,190,0,7,244,1,253,0,191,0,190,0,31,224,0,191,0,190,0,190,0,127,192,0,60,0,190,0,190,0,191,255,255,244,0,190,0,190,0,47,255,255,224,0,253,0,254,0,7,255,255,224,0,253,0,254,0,0,7,224,0,0,253,0,253,0,0,7,224,0,0,253,0,253,0,0,7,224,0,0,252,0,253,0,0,7,224,0,85,253,85,254,80,63,255,255,249,255,255,255,255,248,63,255,255,249,255,255,255,255,248,63,255,255,249,255,255,255,255,248,0,7,224,0,2,248,0,253,0,1,7,224,144,2,248,0,252,0,15,7,224,248,2,248,0,252,0,15,135,225,240,3,244,0,252,0,11,199,226,240,3,244,1,252,0,7,199,227,224,3,240,1,252,0,7,215,227,208,3,240,1,252,0,3,215,231,192,3,240,1,252,0,3,135,225,64,7,240,1,252,0,0,7,224,20,7,240,2,252,0,0,7,251,253,11,224,2,252,0,5,191,255,254,91,229,87,253,80,63,255,255,255,255,255,255,255,248,63,255,228,15,255,255,255,255,248,46,144,0,15,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x932f 錯 + 47,147,35,35,59,37,1,253,0,11,240,0,2,244,3,240,0,0,15,252,0,2,244,3,240,0,0,47,255,0,2,244,3,240,0,0,127,191,192,2,244,3,240,0,0,254,31,240,2,244,3,240,0,2,252,7,252,255,255,255,255,224,7,244,2,254,255,255,255,255,224,31,224,0,190,255,255,255,255,224,127,192,0,60,2,244,3,240,0,191,255,255,240,2,244,3,240,0,47,255,255,224,2,244,3,240,0,7,255,255,224,2,244,3,240,0,0,7,224,0,2,244,7,240,0,0,7,224,7,255,255,255,255,248,0,7,224,7,255,255,255,255,248,0,7,224,7,255,255,255,255,248,63,255,255,248,0,0,0,0,0,63,255,255,248,0,0,0,0,0,63,255,255,248,31,255,255,255,64,0,7,224,0,47,255,255,255,64,0,7,224,64,47,255,255,255,64,11,7,224,248,47,128,0,63,64,15,71,225,244,47,128,0,63,64,15,135,226,240,47,128,0,63,64,11,199,227,224,47,234,170,191,64,7,199,227,208,47,255,255,255,64,3,215,231,192,47,255,255,255,64,3,215,225,128,47,128,0,63,64,0,7,224,88,47,128,0,63,64,0,7,255,253,47,128,0,63,64,26,255,255,253,47,255,255,255,64,63,255,255,228,47,255,255,255,64,63,255,144,0,47,255,255,255,64,46,64,0,0,47,128,0,63,64,0,0,0,0,26,64,0,42,64, + // 0x9375 鍵 + 117,147,35,35,59,37,1,253,0,15,128,0,0,0,42,0,0,0,47,240,0,0,0,63,0,0,0,63,248,0,0,0,63,0,0,0,127,253,63,255,26,191,170,128,0,253,191,127,255,31,255,255,192,2,252,63,255,253,31,255,255,192,7,240,15,224,188,0,63,11,192,31,208,3,208,252,0,63,11,192,127,128,2,64,248,255,255,255,248,255,255,255,2,244,255,255,255,248,63,255,255,3,240,170,191,175,248,27,255,255,3,224,0,63,11,192,0,31,128,11,208,0,63,11,192,0,31,128,15,192,26,191,175,192,0,31,128,15,255,223,255,255,192,0,31,128,47,255,159,255,255,192,63,255,255,191,255,128,63,0,0,63,255,255,134,15,128,63,0,0,63,255,255,128,31,111,255,255,192,0,31,128,10,31,63,255,255,208,0,31,133,47,47,63,255,255,208,31,31,143,159,63,0,63,0,0,31,31,143,79,126,0,63,0,0,15,31,143,15,253,0,63,0,0,15,95,159,11,252,255,255,255,240,11,159,174,7,252,255,255,255,240,11,159,173,3,244,191,255,255,240,7,159,128,3,248,0,63,0,0,0,31,128,71,253,0,63,0,0,0,31,255,223,255,128,63,0,0,43,255,255,255,175,249,0,0,0,127,255,255,254,11,255,255,255,248,63,249,7,252,1,255,255,255,244,20,0,2,240,0,27,255,255,240,0,0,0,128,0,0,0,0,0, + // 0x9577 長 + 119,149,33,35,59,37,2,252,0,11,255,255,255,255,255,192,0,0,11,255,255,255,255,255,208,0,0,11,255,255,255,255,255,208,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,255,255,255,255,255,0,0,0,11,255,255,255,255,255,0,0,0,11,250,170,170,170,170,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,250,170,170,170,170,0,0,0,11,255,255,255,255,255,0,0,0,11,255,255,255,255,255,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,11,240,3,248,0,0,208,0,0,11,240,2,252,0,3,248,0,0,11,240,0,254,0,47,248,0,0,11,240,0,127,65,255,208,0,0,11,240,0,63,219,255,0,0,0,11,240,0,15,255,244,0,0,0,11,240,0,7,255,64,0,0,0,11,240,0,2,255,208,0,0,0,11,240,26,252,127,248,0,0,0,11,255,255,252,31,255,144,0,11,255,255,255,252,3,255,255,64,15,255,255,249,64,0,127,255,192,11,255,164,0,0,0,7,255,64,6,64,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0, + // 0x9589 閉 + 137,149,31,34,16,37,3,253,106,170,170,160,42,170,170,168,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,191,85,91,240,63,149,87,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,191,255,255,240,63,170,171,252,191,255,255,240,63,255,255,252,191,170,170,160,63,255,255,252,190,0,0,0,84,0,2,252,190,0,0,0,189,0,2,252,190,0,0,0,189,0,2,252,190,0,0,0,189,0,2,252,190,11,255,255,255,255,130,252,190,11,255,255,255,255,130,252,190,11,255,255,255,255,130,252,190,0,0,11,253,0,2,252,190,0,0,47,253,0,2,252,190,0,0,191,253,0,2,252,190,0,3,253,189,0,2,252,190,0,31,244,189,0,2,252,190,0,191,208,189,0,2,252,190,7,255,0,189,0,2,252,190,31,252,0,189,0,2,252,190,11,208,0,189,0,2,252,190,2,0,127,253,21,87,252,190,0,0,63,252,47,255,248,190,0,0,47,224,15,255,240,190,0,0,0,0,15,255,128, + // 0x958b 開 + 139,149,31,35,24,37,3,252,106,170,170,160,42,170,170,164,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,3,240,63,0,2,252,190,0,3,240,63,0,2,252,191,85,87,240,63,85,86,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,3,240,63,0,2,252,190,0,3,240,63,0,2,252,190,0,3,240,63,0,2,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,191,170,170,160,42,170,171,252,190,0,0,0,0,0,2,252,190,0,0,0,0,0,2,252,190,7,255,255,255,255,66,252,190,7,255,255,255,255,66,252,190,6,175,250,191,234,66,252,190,0,15,192,31,128,2,252,190,0,15,192,31,128,2,252,190,0,15,192,31,128,2,252,190,15,255,255,255,255,194,252,190,15,255,255,255,255,194,252,190,15,255,255,255,255,194,252,190,0,15,192,31,128,2,252,190,0,31,192,31,128,2,252,190,0,47,128,31,128,2,252,190,0,63,0,31,128,2,252,190,0,254,0,31,128,2,252,190,2,252,0,31,129,87,252,190,11,248,0,31,135,255,248,190,3,224,0,31,131,255,244,190,0,128,0,0,2,255,128,0,0,0,0,0,0,0,0, + // 0x9593 間 + 147,149,31,34,16,37,3,253,106,170,170,160,42,170,170,168,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,191,85,91,240,63,149,87,252,190,0,7,240,63,0,2,252,190,0,7,240,63,0,2,252,191,255,255,240,63,170,171,252,191,255,255,240,63,255,255,252,191,170,170,160,63,255,255,252,190,0,0,0,0,0,2,252,190,0,0,0,0,0,2,252,190,0,106,170,170,160,2,252,190,0,127,255,255,244,2,252,190,0,127,255,255,244,2,252,190,0,126,0,3,244,2,252,190,0,126,0,3,244,2,252,190,0,126,0,3,244,2,252,190,0,127,255,255,244,2,252,190,0,127,255,255,244,2,252,190,0,127,170,171,244,2,252,190,0,126,0,3,244,2,252,190,0,126,0,3,244,2,252,190,0,126,0,3,244,2,252,190,0,127,255,255,244,2,252,190,0,127,255,255,244,2,252,190,0,127,170,170,169,87,252,190,0,126,0,0,15,255,248,190,0,21,0,0,11,255,240,190,0,0,0,0,7,255,128, + // 0x95dc 關 + 220,149,31,34,16,37,3,253,85,85,85,80,21,85,85,84,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,3,240,63,0,1,252,190,0,3,240,63,0,1,252,190,0,7,240,63,64,1,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,0,3,240,63,0,1,252,190,0,3,240,63,0,1,252,191,255,255,240,63,255,255,252,191,255,255,240,63,255,255,252,190,85,111,80,27,213,86,252,190,0,62,0,15,128,1,252,190,1,188,0,111,0,1,252,190,15,240,247,252,61,1,252,190,7,227,226,248,188,1,252,190,1,255,128,191,240,1,252,190,0,190,96,47,218,1,252,190,0,60,180,15,15,1,252,190,0,254,252,62,191,193,252,190,31,255,255,255,255,193,252,190,30,148,31,233,66,209,252,190,1,64,244,188,0,1,252,190,3,192,244,188,15,1,252,190,3,192,244,188,15,1,252,190,3,192,244,188,15,1,252,190,3,255,240,191,255,1,252,190,3,255,240,191,255,1,252,190,0,3,240,188,0,1,252,190,0,15,208,188,0,86,252,190,0,191,128,188,0,255,252,190,0,253,0,188,0,255,244,190,0,16,0,0,0,191,144, + // 0x964d 降 + 77,150,33,35,59,37,3,253,0,0,0,0,11,144,0,0,0,0,0,0,0,15,208,0,0,0,255,255,224,0,63,192,0,0,0,255,255,252,0,191,234,171,128,0,255,255,244,1,255,255,255,240,0,252,3,240,7,255,255,255,208,0,252,7,240,31,248,0,63,192,0,252,11,208,127,253,0,127,0,0,252,15,194,255,191,1,254,0,0,252,31,195,252,63,199,252,0,0,252,47,64,224,15,255,240,0,0,252,63,0,0,3,255,192,0,0,252,126,0,0,3,255,208,0,0,252,126,0,0,47,255,253,0,0,252,63,64,6,255,235,255,228,0,252,15,193,191,255,0,191,255,128,252,11,227,255,244,10,175,255,0,252,3,241,254,64,15,208,125,0,252,3,240,144,0,15,208,0,0,252,2,244,127,255,255,255,252,0,252,2,244,191,255,255,255,252,0,252,2,244,191,255,255,255,252,0,252,3,244,3,240,15,208,0,0,252,255,240,3,240,15,208,0,0,252,191,224,3,240,15,208,0,0,252,191,64,3,240,15,208,0,0,252,0,7,255,255,255,255,255,0,252,0,7,255,255,255,255,255,0,252,0,7,255,255,255,255,255,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0,252,0,0,0,0,15,208,0,0, + // 0x9664 除 + 100,150,33,35,59,37,3,253,0,0,0,0,2,164,0,0,0,0,0,0,0,11,253,0,0,0,255,255,224,0,15,255,0,0,0,255,255,252,0,63,255,192,0,0,255,255,244,0,191,31,224,0,0,252,3,240,2,254,11,248,0,0,252,7,240,11,248,2,254,0,0,252,11,208,47,240,0,191,192,0,252,15,192,191,192,0,47,240,0,252,31,135,254,0,0,11,254,0,252,47,95,248,0,0,2,255,128,252,63,15,239,255,255,255,191,0,252,126,11,79,255,255,255,13,0,252,127,0,15,255,255,255,0,0,252,47,128,0,2,248,0,0,0,252,15,192,0,2,248,0,0,0,252,11,224,0,2,248,0,0,0,252,3,240,0,2,248,0,0,0,252,3,241,255,255,255,255,252,0,252,2,245,255,255,255,255,252,0,252,2,245,255,255,255,255,252,0,252,2,244,0,2,248,0,0,0,252,3,244,0,2,248,0,0,0,252,255,240,47,66,248,31,0,0,252,191,224,63,2,248,63,128,0,252,191,64,191,2,248,31,208,0,252,0,0,253,2,248,11,240,0,252,0,2,252,2,248,3,244,0,252,0,7,244,2,248,1,252,0,252,0,15,224,2,248,0,254,0,252,0,63,192,2,248,0,127,0,252,0,31,64,3,248,0,62,0,252,0,1,1,255,248,0,16,0,252,0,0,0,255,240,0,0,0,252,0,0,0,255,128,0,0,0, + // 0x968e 階 + 142,150,33,35,59,37,3,253,0,0,0,84,0,5,64,0,0,0,0,0,252,0,15,192,0,0,255,255,224,252,0,15,192,0,0,255,255,248,252,0,15,192,116,0,255,255,240,252,0,15,194,253,0,252,7,240,255,255,79,239,253,0,252,11,224,255,255,79,255,208,0,252,15,208,255,255,79,253,0,0,252,15,192,252,0,15,192,0,0,252,31,128,252,0,15,192,0,0,252,47,0,252,0,15,192,13,0,252,63,0,252,1,79,192,15,128,252,126,0,254,191,143,192,31,128,252,126,6,255,255,207,255,255,64,252,63,79,255,253,15,255,255,0,252,15,207,254,67,150,255,252,0,252,11,214,64,7,240,0,0,0,252,7,240,0,11,240,0,0,0,252,3,240,0,15,224,0,0,0,252,3,240,127,255,255,255,248,0,252,3,240,127,255,255,255,248,0,252,3,240,127,255,255,255,248,0,252,7,240,127,0,0,2,248,0,252,255,240,127,0,0,2,248,0,252,191,208,127,0,0,2,248,0,252,190,64,127,255,255,255,248,0,252,0,0,127,255,255,255,248,0,252,0,0,127,170,170,171,248,0,252,0,0,127,0,0,2,248,0,252,0,0,127,0,0,2,248,0,252,0,0,127,0,0,2,248,0,252,0,0,127,255,255,255,248,0,252,0,0,127,255,255,255,248,0,252,0,0,127,255,255,255,248,0,252,0,0,127,0,0,2,248,0, + // 0x96d9 雙 + 217,150,34,36,68,37,1,252,0,25,1,0,0,41,0,0,0,0,63,3,240,0,63,11,208,0,0,126,11,208,0,189,15,192,0,0,253,15,192,0,252,31,64,0,1,255,255,255,194,255,255,255,208,3,255,255,255,199,255,255,255,208,11,249,111,149,79,249,111,85,64,31,248,31,64,47,244,47,0,0,127,255,255,255,255,255,255,255,128,63,255,255,255,255,255,255,255,128,29,248,47,64,58,244,47,0,0,1,248,31,64,2,244,47,0,0,1,255,255,255,66,255,255,255,128,1,255,255,255,66,255,255,255,128,1,248,47,128,2,244,47,64,0,1,248,31,64,2,244,47,0,0,1,248,47,128,2,248,47,64,0,1,255,255,255,210,255,255,255,240,1,255,255,255,210,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,208,0,0,0,255,0,0,1,255,128,0,0,0,255,192,0,11,254,0,0,0,0,63,248,0,127,244,0,0,0,0,11,255,135,255,192,0,0,0,0,1,255,255,254,0,0,0,0,0,0,127,255,248,0,0,0,0,0,91,255,255,255,228,0,0,22,191,255,255,239,255,255,254,144,63,255,255,249,1,191,255,255,224,31,255,249,0,0,2,255,255,192,15,148,0,0,0,0,1,111,64,0,0,0,0,0,0,0,0,0, + // 0x96e2 離 + 226,150,35,35,59,37,1,253,0,0,252,0,0,10,64,16,0,0,0,252,0,0,15,208,127,0,0,0,252,0,0,31,192,190,0,127,255,255,255,244,47,128,252,0,127,255,255,255,248,63,65,252,0,127,255,255,255,248,127,2,244,0,0,0,0,0,0,190,3,240,0,6,64,11,203,128,255,255,255,240,11,202,15,139,194,255,255,255,240,11,207,255,11,195,255,255,255,240,11,195,254,11,199,253,3,240,0,11,192,255,75,207,252,3,240,0,11,195,255,219,239,252,3,240,0,11,207,211,219,255,252,3,240,0,11,223,64,75,255,252,3,240,0,11,218,85,95,221,255,255,255,240,11,255,255,255,192,255,255,255,240,11,255,255,255,192,255,255,255,224,0,0,252,0,0,252,3,240,0,0,0,248,0,0,252,3,240,0,47,255,255,255,240,252,3,240,0,47,255,255,255,240,252,3,240,0,47,171,250,171,240,255,255,255,224,47,3,224,3,240,255,255,255,240,47,3,227,131,240,255,255,255,240,47,3,211,195,240,252,3,240,0,47,7,194,227,240,252,3,240,0,47,127,255,243,240,252,3,240,0,47,63,255,247,240,252,3,240,0,47,21,80,187,240,253,3,240,0,47,0,0,87,240,255,255,255,248,47,0,0,3,240,255,255,255,248,47,0,2,171,224,255,255,255,248,47,0,2,255,208,252,0,0,0,47,0,1,255,64,252,0,0,0, + // 0x96fb 電 + 251,150,34,34,50,37,2,253,2,170,170,170,170,170,170,160,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,85,85,91,245,85,85,127,64,127,0,0,7,240,0,0,63,64,127,31,255,199,240,255,253,63,64,127,31,255,199,240,255,253,63,64,127,0,0,7,240,0,0,63,64,0,0,0,7,240,0,0,0,0,0,63,255,199,240,255,255,64,0,0,63,255,199,240,255,255,64,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,254,85,91,245,85,111,192,0,0,253,0,7,240,0,31,192,0,0,253,0,11,240,0,31,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,253,0,7,240,0,31,192,0,0,253,0,7,240,0,31,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,199,128,0,254,85,91,245,85,85,71,224,0,253,0,7,240,0,0,11,208,0,84,0,7,244,0,0,31,192,0,0,0,3,255,255,255,255,192,0,0,0,1,255,255,255,255,0,0,0,0,0,26,170,170,164,0, + // 0x9752 青 + 82,151,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,6,170,170,175,250,170,170,164,0,7,255,255,255,255,255,255,248,0,7,255,255,255,255,255,255,248,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,170,170,171,250,170,170,128,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,106,170,170,175,250,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,234,170,170,170,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,213,85,85,85,191,0,0,0,47,128,0,0,0,191,0,0,0,47,213,85,85,85,191,0,0,0,47,255,255,255,255,255,0,0,0,47,255,255,255,255,255,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,0,0,191,0,0,0,47,128,0,3,255,255,0,0,0,47,128,0,2,255,253,0,0,0,47,128,0,0,170,144,0,0, + // 0x975e 非 + 94,151,35,36,68,37,1,252,0,0,2,164,0,169,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,254,0,0,0,15,255,255,248,0,255,255,255,224,15,255,255,248,0,255,255,255,224,15,255,255,248,0,255,255,255,224,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,248,0,253,0,0,0,11,255,255,248,0,255,255,255,192,11,255,255,248,0,255,255,255,192,11,255,255,248,0,255,255,255,192,0,0,3,248,0,254,0,0,0,0,0,3,248,0,253,0,0,0,0,0,3,244,0,253,0,0,0,0,0,3,244,0,253,0,0,0,0,0,7,255,208,253,0,0,0,0,22,255,255,208,254,0,0,0,127,255,255,255,208,255,255,255,244,127,255,255,245,0,255,255,255,244,63,254,191,192,0,255,255,255,244,41,0,63,192,0,253,0,0,0,0,0,255,64,0,253,0,0,0,0,2,254,0,0,253,0,0,0,0,11,252,0,0,253,0,0,0,0,47,244,0,0,253,0,0,0,1,255,208,0,0,253,0,0,0,11,255,64,0,0,253,0,0,0,11,252,0,0,0,253,0,0,0,2,208,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,33,32,32,37,2,253,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,15,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,192,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,208,31,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,234,171,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,234,171,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,255,255,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,192,15,192,1,252,1,252,0,15,208,31,192,1,252,1,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,192,0,0,0,0,1,252,0,15,192,0,0,0,0,1,252,0, + // 0x9805 項 + 5,152,35,33,41,37,1,253,0,0,0,15,255,255,255,255,248,0,0,0,15,255,255,255,255,248,21,85,85,95,255,255,255,255,248,63,255,255,224,0,15,240,0,0,63,255,255,224,0,15,208,0,0,0,47,192,0,0,31,192,0,0,0,31,192,1,255,255,255,255,192,0,31,192,1,255,255,255,255,192,0,31,192,1,254,170,170,175,192,0,31,192,1,248,0,0,15,192,0,31,192,1,248,0,0,15,192,0,31,192,1,248,0,0,15,192,0,31,192,1,255,255,255,255,192,0,31,192,1,255,255,255,255,192,0,31,192,1,253,85,85,111,192,0,31,192,1,248,0,0,15,192,0,31,192,1,248,0,0,15,192,0,31,192,1,253,85,85,111,192,0,31,192,113,255,255,255,255,192,0,31,223,241,255,255,255,255,192,0,47,255,245,248,0,0,15,192,6,255,255,209,248,0,0,15,192,191,255,248,1,248,0,0,15,192,127,254,64,1,255,255,255,255,192,63,208,0,1,255,255,255,255,192,20,0,0,1,170,170,170,170,128,0,0,0,0,7,64,2,128,0,0,0,0,0,47,224,15,244,0,0,0,0,2,255,208,15,255,0,0,0,0,47,255,0,1,255,208,0,0,3,255,244,0,0,47,248,0,0,1,255,64,0,0,7,244,0,0,0,100,0,0,0,0,192, + // 0x9810 預 + 16,152,35,34,50,37,1,252,63,255,255,250,255,255,255,255,240,63,255,255,254,255,255,255,255,240,63,255,255,245,255,255,255,255,240,0,0,15,240,0,3,248,0,0,0,0,47,192,0,7,244,0,0,2,192,127,64,0,11,240,0,0,7,249,254,0,63,255,255,255,192,7,255,248,0,63,255,255,255,192,0,191,240,0,63,170,170,175,192,0,15,253,0,63,0,0,31,192,0,2,255,0,63,0,0,31,192,0,0,127,0,63,85,85,111,192,191,255,255,255,127,255,255,255,192,191,255,255,255,63,255,255,255,192,191,255,255,255,63,0,0,31,192,0,15,208,189,63,0,0,31,192,0,15,208,252,63,0,0,31,192,0,15,208,252,63,85,85,111,192,0,15,209,248,63,255,255,255,192,0,15,211,240,63,255,255,255,192,0,15,209,160,63,0,0,31,192,0,15,208,0,63,0,0,31,192,0,15,208,0,63,0,0,31,192,0,15,208,0,63,255,255,255,192,0,15,208,0,63,255,255,255,192,0,15,208,0,42,170,170,170,128,0,15,208,0,0,128,0,64,0,0,15,208,0,3,244,3,244,0,0,15,208,0,31,252,11,254,0,0,31,208,1,255,224,1,255,192,15,255,208,31,255,64,0,63,240,15,255,192,47,248,0,0,11,248,11,254,0,11,128,0,0,1,208,0,0,0,0,0,0,0,0,0, + // 0x984d 額 + 77,152,35,36,68,37,1,252,0,2,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,63,255,255,255,240,47,255,255,255,191,255,255,255,240,63,255,255,255,191,255,255,255,240,63,255,255,255,128,2,252,0,0,63,0,0,31,128,3,248,0,0,63,11,144,31,128,3,244,0,0,63,15,192,31,143,255,255,255,192,0,47,213,80,15,255,255,255,192,0,127,255,252,15,234,170,175,192,0,255,255,252,15,192,0,15,192,3,248,3,244,15,192,0,15,192,15,248,7,240,15,229,85,111,192,127,255,79,208,15,255,255,255,192,127,127,255,128,15,255,255,255,192,8,15,255,0,15,192,0,15,192,0,3,255,64,15,192,0,15,192,0,15,255,224,15,192,0,15,192,0,127,223,252,15,229,85,111,192,7,255,2,255,79,255,255,255,192,127,252,0,191,143,255,255,255,192,191,250,170,191,15,192,0,15,192,63,255,255,248,15,192,0,15,192,3,255,255,244,15,192,0,15,192,3,240,2,244,15,255,255,255,192,3,240,2,244,15,255,255,255,192,3,240,2,244,10,170,170,170,128,3,240,2,244,0,32,0,64,0,3,240,2,244,1,253,2,244,0,3,255,255,244,11,254,3,254,0,3,255,255,244,191,244,0,191,192,3,250,170,171,255,192,0,31,244,3,240,0,3,253,0,0,7,248,1,80,0,0,208,0,0,0,208,0,0,0,0,0,0,0,0,0, + // 0x985e 類 + 94,152,35,35,59,37,1,253,0,1,80,0,0,0,0,0,0,6,2,240,41,0,0,0,0,0,15,130,240,63,127,255,255,255,240,11,194,240,125,63,255,255,255,240,7,226,240,252,63,255,255,255,240,3,226,240,244,0,2,252,0,0,0,2,240,16,0,3,248,0,0,63,255,255,255,64,3,240,0,0,63,255,255,255,79,255,255,255,192,42,175,254,170,79,255,255,255,192,0,31,253,0,15,234,170,175,192,0,127,255,128,15,192,0,15,192,1,255,255,248,15,192,0,15,192,7,246,246,255,79,213,85,111,192,47,210,240,127,79,255,255,255,192,127,130,240,14,15,255,255,255,192,29,2,240,0,15,192,0,15,192,0,0,0,0,15,192,0,15,192,0,3,240,0,15,192,0,15,192,0,3,240,0,15,255,255,255,192,0,3,240,0,15,255,255,255,192,63,255,255,255,143,213,85,111,192,63,255,255,255,143,192,0,15,192,63,255,255,255,143,192,0,15,192,0,3,240,0,15,192,0,15,192,0,7,244,0,15,255,255,255,192,0,15,254,0,15,255,255,255,192,0,31,255,208,10,170,170,170,128,0,63,239,244,0,112,0,144,0,0,255,71,254,1,254,3,248,0,7,253,0,255,11,253,3,255,0,127,248,0,60,191,240,0,191,208,63,208,0,11,255,128,0,31,248,30,0,0,3,253,0,0,3,244,0,0,0,0,208,0,0,0,128, + // 0x98a8 風 + 168,152,35,34,50,37,1,252,0,127,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,0,127,255,255,255,255,255,244,0,0,127,0,0,0,0,7,244,0,0,127,0,0,0,5,3,244,0,0,127,0,1,107,255,67,244,0,0,127,43,255,255,255,211,244,0,0,127,63,255,255,249,3,244,0,0,127,46,81,248,0,3,244,0,0,127,0,1,248,0,3,244,0,0,127,0,1,248,0,3,244,0,0,127,26,171,254,170,131,244,0,0,191,31,255,255,255,195,244,0,0,191,31,255,255,255,195,244,0,0,190,31,1,248,15,195,244,0,0,190,31,1,248,15,195,244,0,0,190,31,1,248,15,195,244,0,0,190,31,1,248,15,195,244,0,0,254,31,1,248,15,195,244,0,0,253,31,171,254,175,195,244,0,0,253,31,255,255,255,194,244,0,0,252,31,255,255,255,194,248,0,1,252,0,1,248,1,2,248,0,2,252,0,1,248,63,1,248,0,3,248,0,1,248,47,129,252,16,3,244,0,1,248,15,192,252,48,7,240,5,90,254,175,240,252,60,11,241,255,255,255,255,244,252,124,15,209,255,255,255,255,248,190,120,47,192,255,234,149,0,252,127,248,127,128,0,0,0,0,189,63,244,63,0,0,0,0,0,80,31,240,9,0,0,0,0,0,0,11,192,0,0,0,0,0,0,0,0,0, + // 0x98fd 飽 + 253,152,35,35,59,37,1,253,0,3,248,0,1,228,0,0,0,0,11,254,0,2,252,0,0,0,0,15,255,192,3,244,0,0,0,0,47,239,240,7,240,0,0,0,0,127,75,248,11,240,0,0,0,0,254,2,254,15,255,255,255,224,3,252,0,191,95,255,255,255,208,11,244,252,62,63,255,255,255,208,63,208,252,8,127,0,0,11,208,255,128,252,0,254,0,0,11,208,127,255,255,255,252,0,0,15,208,27,255,255,255,255,255,252,15,208,3,250,170,253,239,255,252,15,208,3,240,0,252,79,255,252,15,208,3,240,0,252,0,0,252,15,208,3,255,255,252,0,0,252,15,208,3,255,255,252,0,0,252,15,192,3,245,85,252,0,0,252,15,192,3,240,0,252,0,0,252,15,192,3,240,0,252,31,255,252,15,192,3,255,255,252,31,255,252,31,192,3,255,255,252,31,255,252,47,192,3,250,170,168,31,128,15,255,128,3,240,0,0,31,128,15,255,64,3,240,11,128,31,128,11,253,0,3,240,31,192,31,128,0,0,0,3,240,11,240,31,128,0,0,0,3,240,3,244,31,128,0,0,128,3,240,111,252,31,128,0,1,248,3,255,255,253,31,128,0,1,248,47,255,255,255,31,128,0,2,248,63,255,228,127,31,192,0,3,244,63,249,0,63,95,255,255,255,240,41,0,0,24,15,255,255,255,224,0,0,0,0,1,255,255,255,64, + // 0x9918 餘 + 24,153,35,35,59,37,1,253,0,11,244,0,0,7,240,0,0,0,15,253,0,0,15,252,0,0,0,47,255,64,0,31,253,0,0,0,127,47,208,0,63,255,0,0,0,254,15,240,0,191,63,192,0,2,252,3,252,1,253,15,224,0,7,244,1,254,3,248,11,244,0,31,255,255,188,15,240,3,253,0,127,175,255,96,63,192,0,255,64,254,21,85,0,255,64,0,63,224,40,0,0,3,253,0,0,31,248,7,255,255,251,255,255,255,255,244,7,255,255,246,235,255,255,253,240,7,245,87,244,139,255,255,252,64,7,224,2,244,0,3,240,0,0,7,224,2,244,0,3,240,0,0,7,255,255,244,0,3,240,0,0,7,255,255,244,0,3,240,0,0,7,224,2,245,255,255,255,255,240,7,224,2,245,255,255,255,255,240,7,255,255,245,255,255,255,255,240,7,255,255,244,0,3,240,0,0,7,245,85,80,0,3,240,4,0,7,224,0,0,31,131,240,189,0,7,250,170,160,63,67,240,127,0,7,255,255,244,63,3,240,63,64,7,255,255,244,191,3,240,31,192,7,224,0,0,253,3,240,15,208,7,224,0,2,252,3,240,11,240,7,250,170,171,248,3,240,3,240,7,255,255,255,240,3,240,3,244,7,255,255,253,208,3,240,2,144,7,224,0,0,2,255,240,0,0,7,224,0,0,0,255,224,0,0,7,224,0,0,0,255,128,0,0, + // 0x99ac 馬 + 172,153,34,34,50,37,1,252,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,234,170,255,170,170,160,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,255,255,255,255,255,240,0,0,63,255,255,255,255,255,240,0,0,63,234,170,255,170,170,160,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,64,0,254,0,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,208,0,63,255,255,255,255,255,255,208,0,0,0,0,0,0,0,15,208,0,80,0,0,0,2,128,15,208,0,253,5,64,104,15,208,15,192,0,252,31,192,252,7,240,31,192,1,252,15,192,126,2,244,31,192,3,248,15,192,63,0,252,47,192,3,244,11,208,47,64,184,47,192,15,240,11,224,31,128,0,63,128,31,208,7,224,15,192,0,191,64,127,192,7,240,8,1,255,255,0,47,0,1,64,0,0,255,254,0,5,0,0,0,0,0,255,244,0,0,0,0,0,0,0,0,0,0, + // 0x9a45 驅 + 69,154,35,35,59,37,1,252,10,170,170,164,170,170,170,170,160,15,255,255,248,255,255,255,255,240,15,255,255,248,255,255,255,255,240,15,193,244,0,252,0,0,0,0,15,193,244,0,252,0,0,0,0,15,193,244,0,252,15,255,254,0,15,235,250,160,252,15,255,254,0,15,255,255,240,252,15,192,62,0,15,255,255,240,252,15,192,62,0,15,193,244,0,252,15,192,62,0,15,193,244,0,252,15,192,62,0,15,193,244,0,252,15,192,62,0,15,255,255,240,252,15,255,254,0,15,255,255,240,252,15,255,254,0,15,235,254,160,252,0,0,0,0,15,193,244,0,252,0,0,0,0,15,193,244,0,252,0,0,0,0,15,193,244,0,252,191,241,255,224,15,255,255,252,252,191,241,255,224,15,255,255,252,252,176,241,209,224,10,170,170,252,252,176,241,209,224,0,0,0,252,252,176,241,209,224,9,0,36,252,252,176,241,209,224,30,183,124,248,252,176,241,209,224,30,179,157,248,252,176,241,209,224,30,115,207,248,252,191,241,255,224,45,118,203,248,252,191,241,255,224,45,117,193,248,252,0,0,0,0,60,117,209,244,252,0,0,0,0,124,116,1,244,254,170,170,170,164,180,0,2,240,255,255,255,255,248,16,0,171,240,255,255,255,255,248,0,0,255,224,252,0,0,0,0,0,0,255,128,184,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9ad4 體 + 212,154,34,36,68,37,2,252,0,0,0,0,0,124,46,0,0,6,170,170,128,0,124,47,0,0,11,255,255,192,0,124,47,0,0,11,255,255,192,21,189,127,85,0,11,192,7,192,191,255,255,255,0,11,192,7,192,191,255,255,255,0,11,199,255,192,188,60,45,31,0,11,199,255,192,188,60,45,31,0,11,199,139,192,191,255,255,255,0,11,199,71,192,191,255,255,255,0,11,199,71,192,188,61,61,47,0,11,199,71,192,188,60,45,31,0,255,255,255,253,189,125,125,111,0,255,255,255,253,191,255,255,255,0,253,85,85,189,191,255,255,255,0,252,0,0,125,0,0,0,0,0,255,255,255,254,85,85,85,85,64,11,255,255,194,255,255,255,255,192,11,255,255,194,255,255,255,255,192,11,208,15,192,0,0,0,0,0,11,208,15,192,63,255,255,254,0,11,255,255,192,63,255,255,254,0,11,255,255,192,63,0,0,126,0,11,229,95,192,63,0,0,126,0,11,208,15,192,63,0,0,126,0,11,208,15,192,63,255,255,254,0,11,255,255,192,63,255,255,254,0,11,255,255,192,1,208,3,144,0,11,229,95,192,7,224,3,240,0,11,208,15,192,3,240,11,208,0,11,208,15,192,1,244,15,192,0,11,208,15,192,0,248,31,64,0,11,209,175,199,255,255,255,255,224,11,209,255,199,255,255,255,255,224,11,208,254,2,170,170,170,170,144,0,0,0,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,33,35,59,37,2,253,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,80,0,0,0,7,255,255,255,255,244,0,0,0,7,255,255,255,255,244,0,0,0,7,240,0,0,3,244,0,0,0,7,240,0,0,3,244,0,0,0,7,240,0,0,3,244,0,0,0,7,255,255,255,255,244,0,0,0,7,255,255,255,255,244,0,0,0,1,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,252,0,15,208,0,0,0,0,0,252,0,15,208,0,0,0,0,0,252,0,15,208,5,85,85,84,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,64,0,189,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,255,255,253,0,252,0,15,208,31,149,85,90,2,252,0,15,208,31,64,0,7,255,252,0,15,208,5,0,0,3,255,248,0,15,208,0,0,0,2,255,144,0, + // 0x9ec3 黃 + 195,158,33,36,68,37,2,252,0,0,126,0,0,47,128,0,0,0,0,191,0,0,47,192,0,0,0,0,191,0,0,47,192,0,0,15,255,255,255,255,255,255,253,0,15,255,255,255,255,255,255,253,0,10,170,255,170,170,191,234,169,0,0,0,191,0,0,47,192,0,0,0,0,191,85,85,127,192,0,0,0,0,191,255,255,255,192,0,0,0,0,191,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,0,0,0,7,240,0,0,0,0,0,85,85,91,245,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,253,0,7,240,0,31,192,0,0,253,0,7,240,0,31,192,0,0,254,85,91,245,85,95,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,253,0,7,240,0,31,192,0,0,253,0,7,240,0,31,192,0,0,254,85,91,245,85,111,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,126,0,0,63,128,0,0,0,11,255,192,0,255,254,0,0,2,255,254,0,0,27,255,244,0,191,255,208,0,0,0,127,255,128,191,248,0,0,0,0,2,255,64,46,64,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x9ede 點 + 222,158,35,35,59,37,1,253,0,0,0,0,0,1,252,0,0,5,85,85,85,64,1,252,0,0,15,255,255,255,128,1,252,0,0,15,255,255,255,128,1,252,0,0,15,64,244,15,128,1,252,0,0,15,148,244,143,128,1,252,0,0,15,184,244,255,128,1,252,0,0,15,124,245,223,128,1,252,0,0,15,108,246,207,128,1,255,255,248,15,93,247,143,128,1,255,255,248,15,93,251,79,128,1,255,255,248,15,64,245,15,128,1,252,0,0,15,149,249,95,128,1,252,0,0,15,255,255,255,128,1,252,0,0,15,255,255,255,128,1,252,0,0,0,1,248,0,0,1,252,0,0,0,1,248,0,0,1,252,0,0,10,171,254,170,128,1,252,0,0,31,255,255,255,199,255,255,255,192,31,255,255,255,199,255,255,255,192,0,1,248,0,7,255,255,255,192,0,1,248,0,7,224,0,15,192,0,1,254,191,215,224,0,15,192,63,255,255,255,215,224,0,15,192,63,255,255,255,215,224,0,15,192,63,165,80,0,7,224,0,15,192,0,0,5,62,7,224,0,15,192,6,79,31,31,7,224,0,15,192,11,207,79,15,199,224,0,15,192,15,143,139,135,215,224,0,15,192,15,75,135,195,231,255,255,255,192,31,75,195,193,235,255,255,255,192,63,7,195,128,7,255,255,255,192,189,1,64,0,7,224,0,31,192,24,0,0,0,7,224,0,10,128, + // 0x9f4a 齊 + 74,159,34,36,68,37,2,252,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,170,170,170,175,254,170,170,170,64,191,255,255,255,255,255,255,255,128,191,255,255,255,255,255,255,255,128,0,0,0,96,3,144,0,0,0,0,0,0,248,11,208,2,244,0,63,255,255,189,15,149,191,253,0,63,255,255,63,47,47,255,208,0,22,249,127,29,89,47,159,192,0,2,240,63,7,240,47,7,208,0,3,240,63,7,240,47,3,240,0,7,224,62,7,240,47,1,248,0,15,208,62,7,240,47,5,253,0,47,213,189,7,241,191,255,127,128,255,31,252,7,241,255,255,47,208,252,15,244,7,240,250,80,11,128,96,0,0,0,0,0,0,1,0,0,47,192,0,0,0,63,64,0,0,47,192,0,0,0,63,64,0,0,47,255,255,255,255,255,64,0,0,47,255,255,255,255,255,64,0,0,47,234,170,170,170,191,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,234,170,170,170,191,64,0,0,127,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,1,254,0,0,0,0,63,64,0,3,252,0,0,0,0,63,64,0,31,248,0,0,0,0,63,64,0,127,240,0,0,0,0,63,64,0,47,192,0,0,0,0,63,64,0,14,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,7,24,48,37,15,2,31,208,63,240,191,248,127,244,63,240,31,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,208,63,240,191,248,191,244,63,240,31,208, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Vietnamese_27.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Vietnamese_27.cpp new file mode 100644 index 000000000000..6896d1544462 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_27px/NotoSans_Medium_Vietnamese_27.cpp @@ -0,0 +1,246 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Vietnamese 37pt, capital 'A' height: 27px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +extern const uint8_t NotoSans_Medium_Vietnamese_27[18122] = { + 162,27,2,1,249,30,35,247, // unifont_t + // 0x0102 Ă + 2,1,24,34,204,24,0,0,0,10,0,0,160,0,0,15,128,2,240,0,0,11,249,111,224,0,0,3,255,255,192,0,0,0,255,254,0,0,0,0,6,144,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x0103 ă + 3,1,18,29,145,21,1,255,1,160,0,26,0,1,240,0,62,0,0,254,86,252,0,0,127,255,248,0,0,31,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x0110 Đ + 16,1,24,27,162,27,1,0,1,85,85,64,0,0,7,255,255,255,64,0,7,255,255,255,244,0,7,255,255,255,254,0,7,248,0,27,255,192,7,248,0,0,191,224,7,248,0,0,47,244,7,248,0,0,15,252,7,248,0,0,7,252,7,248,0,0,3,253,7,248,0,0,2,254,7,248,0,0,1,255,191,255,255,64,1,255,255,255,255,128,1,255,255,255,255,128,1,255,171,254,170,64,1,255,7,248,0,0,2,254,7,248,0,0,3,253,7,248,0,0,3,252,7,248,0,0,11,252,7,248,0,0,31,244,7,248,0,0,127,240,7,248,0,2,255,192,7,253,85,191,255,64,7,255,255,255,252,0,7,255,255,255,208,0,7,255,255,228,0,0, + // 0x0111 đ + 17,1,21,29,174,23,2,255,0,0,0,15,240,0,0,0,0,15,240,0,0,0,0,15,240,0,0,3,255,255,255,128,0,7,255,255,255,128,0,3,255,255,255,128,0,0,0,15,240,0,0,0,0,15,240,0,0,47,232,15,240,0,2,255,255,79,240,0,11,255,255,239,240,0,31,254,91,255,240,0,63,224,0,191,240,0,127,192,0,63,240,0,191,128,0,31,240,0,255,64,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,64,0,15,240,0,191,128,0,47,240,0,63,208,0,63,240,0,63,244,1,255,240,0,15,255,255,255,240,0,3,255,255,203,240,0,0,191,254,7,240,0,0,1,64,0,0,0, + // 0x0128 Ĩ + 40,1,14,34,136,13,0,0,1,64,1,64,47,248,3,208,127,255,155,192,254,191,255,128,240,11,255,0,144,0,100,0,0,0,0,0,21,85,85,0,47,255,254,0,47,255,254,0,2,255,224,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,191,128,0,11,255,249,0,47,255,254,0,47,255,254,0, + // 0x0129 ĩ + 41,1,14,28,112,10,254,0,1,64,0,80,15,253,1,240,63,255,215,224,126,191,255,192,248,7,255,64,160,0,100,0,0,0,0,0,0,0,0,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x0168 Ũ + 104,1,21,35,210,27,3,255,0,1,64,0,80,0,0,31,248,3,224,0,0,127,255,155,208,0,0,254,191,255,192,0,0,240,11,255,0,0,0,160,0,100,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x0169 ũ + 105,1,17,29,145,23,3,255,0,20,0,5,0,1,255,128,62,0,7,255,249,188,0,15,235,255,252,0,15,0,191,240,0,10,0,6,64,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x01a0 Ơ + 160,1,28,29,203,29,2,255,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x01a1 ơ + 161,1,23,24,144,24,2,255,0,0,0,0,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0, + // 0x01af Ư + 175,1,28,29,203,30,3,255,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0, + // 0x01b0 ư + 176,1,24,24,144,26,3,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0, + // 0x0303 ̃ + 3,3,14,6,24,0,238,22,1,64,1,64,47,248,3,208,127,255,155,192,254,191,255,128,240,11,255,0,144,0,100,0, + // 0x0309 ̉ + 9,3,7,10,20,0,242,21,85,0,255,240,255,252,1,252,0,252,2,248,47,240,47,64,31,0,0,0, + // 0x0323 ̣ + 35,3,5,5,10,0,242,249,25,0,63,128,127,192,127,192,30,0, + // 0x0340 ̀ + 64,3,8,7,14,0,250,22,85,0,255,128,63,192,31,240,7,248,0,253,0,41, + // 0x0341 ́ + 65,3,8,7,14,0,254,22,0,85,2,255,3,253,15,244,47,208,127,0,104,0, + // 0x1ea0 Ạ + 160,30,24,34,204,24,0,249,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,128,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,240,0,0,0,0,3,208,0,0, + // 0x1ea1 ạ + 161,30,18,28,140,21,1,249,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0,0,0,0,0,0,0,0,100,0,0,0,1,254,0,0,0,2,255,0,0,0,1,254,0,0,0,0,184,0,0, + // 0x1ea2 Ả + 162,30,24,37,222,24,0,0,0,0,21,64,0,0,0,0,63,248,0,0,0,0,63,254,0,0,0,0,0,127,0,0,0,0,0,63,0,0,0,0,0,254,0,0,0,0,11,248,0,0,0,0,11,192,0,0,0,0,11,192,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1ea3 ả + 163,30,18,32,160,21,1,255,0,1,84,0,0,0,11,255,64,0,0,11,255,192,0,0,0,15,224,0,0,0,11,208,0,0,0,31,192,0,0,0,255,64,0,0,0,248,0,0,0,0,244,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1ea4 Ấ + 164,30,24,36,216,24,0,0,0,0,0,0,7,240,0,0,0,0,15,208,0,0,15,244,47,64,0,0,63,252,124,0,0,0,191,255,0,0,0,2,252,47,128,0,0,7,224,7,224,0,0,5,64,0,80,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1ea5 ấ + 165,30,20,31,155,21,1,255,0,0,0,0,254,0,0,0,1,252,0,2,170,3,240,0,7,255,79,128,0,15,255,208,0,0,63,71,240,0,0,253,0,252,0,0,160,0,41,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1ea6 Ầ + 166,30,24,36,216,24,0,0,15,224,0,0,0,0,3,240,0,0,0,0,1,252,15,244,0,0,0,61,63,252,0,0,0,0,191,255,0,0,0,2,248,47,128,0,0,7,224,7,224,0,0,5,64,0,80,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1ea7 ầ + 167,30,19,31,155,21,0,255,191,0,0,0,0,47,128,0,0,0,11,208,106,128,0,2,241,255,224,0,0,3,255,244,0,0,15,225,252,0,0,63,64,63,0,0,40,0,10,64,0,0,0,0,0,0,0,5,0,0,0,27,255,249,0,0,255,255,255,128,0,255,255,255,208,0,121,0,63,240,0,0,0,15,240,0,0,0,11,240,0,0,0,11,244,0,0,0,11,244,0,6,255,255,244,0,191,255,255,244,3,255,234,95,244,11,253,0,11,244,15,240,0,11,244,15,240,0,15,244,31,224,0,15,244,15,240,0,47,244,15,248,0,191,244,11,255,175,251,244,3,255,255,211,244,0,191,255,2,244,0,1,80,0,0, + // 0x1ea8 Ẩ + 168,30,24,39,234,24,0,0,0,0,0,0,80,0,0,0,0,0,255,64,0,0,0,0,91,192,0,0,0,0,3,192,0,0,0,0,31,192,0,0,31,240,61,0,0,0,63,252,60,0,0,0,255,254,0,0,0,2,248,63,128,0,0,11,208,11,208,0,0,5,0,1,80,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1ea9 ẩ + 169,30,19,33,165,21,1,255,0,0,0,15,240,0,0,0,10,248,0,0,0,0,124,0,0,0,1,248,0,1,170,7,208,0,7,255,135,128,0,15,255,208,0,0,63,135,240,0,0,189,0,252,0,0,160,0,25,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eaa Ẫ + 170,30,24,39,234,24,0,0,0,0,185,0,176,0,0,3,255,209,240,0,0,7,235,255,208,0,0,11,64,191,128,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,47,252,0,0,0,0,191,254,0,0,0,1,252,47,128,0,0,7,224,7,224,0,0,5,0,0,80,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1eab ẫ + 171,30,18,34,170,21,1,255,0,26,64,13,0,0,127,248,61,0,0,254,255,252,0,0,240,47,244,0,0,64,1,64,0,0,1,169,0,0,0,3,255,64,0,0,15,255,192,0,0,63,135,240,0,0,253,0,252,0,0,160,0,25,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eac Ậ + 172,30,24,42,252,24,0,249,0,0,5,80,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,0,255,191,64,0,0,3,248,47,208,0,0,15,224,7,244,0,0,26,64,0,164,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,128,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,244,0,0,0,0,2,208,0,0, + // 0x1ead ậ + 173,30,18,36,180,21,1,249,0,0,85,0,0,0,3,255,64,0,0,15,255,192,0,0,47,239,240,0,0,191,67,252,0,1,252,0,190,0,2,160,0,26,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0,0,0,0,0,0,0,0,100,0,0,0,2,253,0,0,0,3,254,0,0,0,3,253,0,0,0,0,184,0,0, + // 0x1eae Ắ + 174,30,24,38,228,24,0,0,0,0,0,21,0,0,0,0,0,127,0,0,0,0,0,252,0,0,0,0,2,240,0,0,0,7,67,129,224,0,0,7,192,2,224,0,0,3,244,27,208,0,0,2,255,255,128,0,0,0,191,254,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1eaf ắ + 175,30,18,32,160,21,1,255,0,0,15,224,0,0,0,47,128,0,0,0,62,0,0,0,160,184,40,0,0,244,0,124,0,0,189,1,252,0,0,63,255,244,0,0,31,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eb0 Ằ + 176,30,24,38,228,24,0,0,0,0,84,0,0,0,0,0,254,0,0,0,0,0,63,0,0,0,0,0,15,128,0,0,0,7,66,193,224,0,0,7,192,3,224,0,0,3,244,31,208,0,0,2,255,255,128,0,0,0,191,254,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1eb1 ằ + 177,30,18,32,160,21,1,255,0,47,192,0,0,0,11,208,0,0,0,2,240,0,0,0,160,184,40,0,0,244,0,124,0,0,253,1,252,0,0,63,255,240,0,0,31,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eb2 Ẳ + 178,30,24,39,234,24,0,0,0,0,10,64,0,0,0,0,15,244,0,0,0,0,0,184,0,0,0,0,0,184,0,0,0,0,3,240,0,0,0,7,67,129,224,0,0,7,192,3,224,0,0,3,244,31,208,0,0,2,255,255,128,0,0,0,191,254,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1eb3 ẳ + 179,30,18,34,170,21,1,255,0,1,80,0,0,0,2,254,0,0,0,0,31,0,0,0,0,15,0,0,0,0,190,0,0,0,160,180,40,0,0,244,0,60,0,0,189,1,252,0,0,63,255,244,0,0,15,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eb4 Ẵ + 180,30,24,39,234,24,0,0,0,0,169,0,176,0,0,3,255,209,240,0,0,7,235,255,208,0,0,11,64,191,128,0,0,0,0,0,0,0,0,5,0,0,80,0,0,11,192,2,224,0,0,7,228,27,208,0,0,2,255,255,128,0,0,0,191,254,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255, + // 0x1eb5 ẵ + 181,30,18,34,170,21,1,255,0,10,64,9,0,0,63,248,46,0,0,254,255,252,0,0,240,31,244,0,0,64,0,64,0,0,80,0,20,0,0,240,0,60,0,0,253,1,252,0,0,127,255,244,0,0,31,255,208,0,0,1,169,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0, + // 0x1eb6 Ặ + 182,30,24,41,246,24,0,249,0,10,64,0,160,0,0,11,192,1,240,0,0,7,249,111,240,0,0,3,255,255,192,0,0,0,191,255,0,0,0,0,6,144,0,0,0,0,0,0,0,0,0,0,10,160,0,0,0,0,31,248,0,0,0,0,47,252,0,0,0,0,63,253,0,0,0,0,127,254,0,0,0,0,254,191,0,0,0,1,253,63,64,0,0,2,252,63,192,0,0,3,252,47,192,0,0,7,244,15,224,0,0,15,240,15,240,0,0,15,224,11,244,0,0,47,208,3,248,0,0,63,192,3,252,0,0,127,128,1,253,0,0,191,64,0,255,0,0,255,255,255,255,0,1,255,255,255,255,128,3,255,255,255,255,192,3,253,85,85,127,208,11,248,0,0,31,224,15,240,0,0,15,240,31,240,0,0,11,244,47,208,0,0,7,252,63,192,0,0,3,252,127,128,0,0,2,254,255,64,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,128,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,244,0,0,0,0,2,208,0,0, + // 0x1eb7 ặ + 183,30,18,35,175,21,1,249,0,160,0,26,0,0,244,0,62,0,0,254,150,253,0,0,127,255,248,0,0,31,255,224,0,0,1,105,0,0,0,0,0,0,0,0,0,20,0,0,0,111,255,228,0,3,255,255,254,0,3,255,255,255,64,1,228,0,255,192,0,0,0,63,192,0,0,0,47,192,0,0,0,47,208,0,0,0,47,208,0,27,255,255,208,2,255,255,255,208,15,255,169,127,208,47,244,0,47,208,63,192,0,47,208,63,192,0,63,208,127,128,0,63,208,63,192,0,191,208,63,224,2,255,208,47,254,191,239,208,15,255,255,79,208,2,255,252,11,208,0,5,64,0,0,0,0,0,0,0,0,0,160,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,1,244,0,0, + // 0x1eb8 Ẹ + 184,30,16,34,136,21,3,249,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253,0,0,0,0,0,0,0,0,0,2,128,0,0,15,240,0,0,15,244,0,0,15,240,0,0,7,208,0, + // 0x1eb9 ẹ + 185,30,18,28,140,21,2,249,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0,0,0,0,0,0,0,0,160,0,0,0,3,252,0,0,0,3,253,0,0,0,3,252,0,0,0,1,244,0,0, + // 0x1eba Ẻ + 186,30,16,37,148,21,3,0,0,21,64,0,0,63,252,0,0,63,255,0,0,0,63,0,0,0,63,0,0,0,191,0,0,11,252,0,0,7,208,0,0,7,192,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x1ebb ẻ + 187,30,18,32,160,21,2,255,0,1,84,0,0,0,15,255,64,0,0,15,255,192,0,0,0,15,208,0,0,0,15,208,0,0,0,47,192,0,0,1,255,0,0,0,1,244,0,0,0,0,240,0,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x1ebc Ẽ + 188,30,16,34,136,21,3,0,0,16,0,20,3,255,64,124,15,255,245,252,31,239,255,244,47,1,255,224,24,0,21,0,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x1ebd ẽ + 189,30,18,29,145,21,2,255,0,20,0,5,0,1,255,128,62,0,7,255,249,188,0,15,235,255,252,0,15,0,191,240,0,10,0,6,64,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x1ebe Ế + 190,30,18,36,180,21,3,0,0,0,0,11,240,0,0,0,15,208,0,31,244,63,64,0,63,252,124,0,0,255,255,0,0,2,248,47,128,0,11,208,11,208,0,5,0,0,80,0,0,0,0,0,0,21,85,85,84,0,127,255,255,253,0,127,255,255,253,0,127,255,255,253,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,149,85,84,0,127,255,255,248,0,127,255,255,248,0,127,255,255,248,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,149,85,84,0,127,255,255,253,0,127,255,255,253,0,127,255,255,253,0, + // 0x1ebf ế + 191,30,19,31,155,21,2,255,0,0,0,2,252,0,0,0,3,244,0,6,168,15,208,0,15,255,47,0,0,63,255,128,0,0,190,15,208,0,2,248,2,244,0,2,144,0,100,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x1ec0 Ề + 192,30,18,36,180,21,1,0,254,0,0,0,0,63,0,0,0,0,15,192,255,64,0,3,211,255,192,0,0,11,255,240,0,0,47,194,248,0,0,126,0,126,0,0,84,0,5,0,0,0,0,0,0,1,85,85,85,64,7,255,255,255,208,7,255,255,255,208,7,255,255,255,208,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,249,85,85,64,7,255,255,255,128,7,255,255,255,128,7,255,255,255,128,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,249,85,85,64,7,255,255,255,208,7,255,255,255,208,7,255,255,255,208, + // 0x1ec1 ề + 193,30,19,31,155,21,1,255,253,0,0,0,0,127,0,0,0,0,31,128,170,0,0,7,211,255,192,0,0,11,255,224,0,0,47,195,248,0,0,126,0,189,0,0,164,0,26,0,0,0,0,0,0,0,0,20,0,0,0,11,255,224,0,0,191,255,253,0,2,255,255,255,64,7,253,0,127,192,15,240,0,47,224,31,224,0,15,240,47,208,0,11,240,63,192,0,11,244,63,255,255,255,244,63,255,255,255,244,63,255,255,255,244,63,192,0,0,0,63,192,0,0,0,47,208,0,0,0,31,240,0,0,0,15,248,0,0,0,7,254,0,2,208,2,255,255,255,208,0,191,255,255,208,0,11,255,254,64,0,0,21,64,0, + // 0x1ec2 Ể + 194,30,17,39,195,21,3,0,0,0,0,80,0,0,0,0,255,64,0,0,0,91,192,0,0,0,3,192,0,0,0,31,192,0,31,240,61,0,0,63,252,60,0,0,255,254,0,0,2,248,63,128,0,11,208,11,208,0,5,0,1,80,0,0,0,0,0,0,21,85,85,84,0,127,255,255,253,0,127,255,255,253,0,127,255,255,253,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,149,85,84,0,127,255,255,248,0,127,255,255,248,0,127,255,255,248,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,149,85,84,0,127,255,255,253,0,127,255,255,253,0,127,255,255,253,0, + // 0x1ec3 ể + 195,30,18,33,165,21,2,255,0,0,0,63,192,0,0,0,43,224,0,0,0,1,240,0,0,0,7,224,0,6,168,31,64,0,31,254,30,0,0,63,255,64,0,0,254,15,208,0,2,244,3,240,0,2,128,0,100,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x1ec4 Ễ + 196,30,16,39,156,21,3,0,0,185,0,240,3,255,210,224,11,239,255,208,15,0,191,128,0,0,0,0,0,10,160,0,0,63,252,0,0,191,254,0,2,248,63,64,7,208,11,208,5,0,0,80,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253, + // 0x1ec5 ễ + 197,30,18,34,170,21,2,255,0,42,0,40,0,0,255,224,184,0,2,251,255,240,0,3,192,127,208,0,1,64,1,0,0,0,2,168,0,0,0,15,254,0,0,0,47,255,64,0,0,190,31,208,0,2,248,2,240,0,2,128,0,100,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0, + // 0x1ec6 Ệ + 198,30,16,42,168,21,3,249,0,5,80,0,0,31,252,0,0,63,254,0,0,255,191,128,3,252,31,208,15,224,7,244,10,64,0,168,0,0,0,0,21,85,85,84,127,255,255,253,127,255,255,253,127,255,255,253,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,248,127,255,255,248,127,255,255,248,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,149,85,84,127,255,255,253,127,255,255,253,127,255,255,253,0,0,0,0,0,0,0,0,0,2,128,0,0,15,240,0,0,15,244,0,0,15,240,0,0,7,208,0, + // 0x1ec7 ệ + 199,30,18,36,180,21,2,249,0,1,84,0,0,0,15,253,0,0,0,63,255,0,0,0,191,191,192,0,1,253,15,240,0,7,240,2,252,0,10,128,0,104,0,0,0,0,0,0,0,0,80,0,0,0,47,255,128,0,2,255,255,244,0,11,255,255,253,0,31,244,1,255,0,63,192,0,191,128,127,128,0,63,192,191,64,0,47,192,255,0,0,47,208,255,255,255,255,208,255,255,255,255,208,255,255,255,255,208,255,0,0,0,0,255,0,0,0,0,191,64,0,0,0,127,192,0,0,0,63,224,0,0,0,31,248,0,11,64,11,255,255,255,64,2,255,255,255,64,0,47,255,249,0,0,0,85,0,0,0,0,0,0,0,0,0,160,0,0,0,3,252,0,0,0,3,253,0,0,0,3,252,0,0,0,1,244,0,0, + // 0x1ec8 Ỉ + 200,30,11,37,111,13,1,0,1,164,0,7,255,128,7,255,224,0,7,240,0,7,224,0,31,208,0,255,64,0,252,0,0,188,0,0,0,0,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248, + // 0x1ec9 ỉ + 201,30,8,31,62,10,2,0,21,64,255,240,255,252,0,253,0,253,2,252,31,240,31,64,15,0,0,0,0,0,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192, + // 0x1eca Ị + 202,30,11,34,102,13,1,249,85,85,84,191,255,248,191,255,248,11,255,128,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,1,254,0,2,254,0,47,255,228,191,255,248,191,255,248,0,0,0,0,0,0,0,100,0,1,253,0,2,254,0,2,254,0,0,184,0, + // 0x1ecb ị + 203,30,5,35,70,10,3,249,20,0,255,0,255,0,255,0,125,0,0,0,0,0,0,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,0,0,0,0,40,0,255,0,255,64,255,0,125,0, + // 0x1ecc Ọ + 204,30,25,34,238,29,2,249,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,7,244,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,2,224,0,0,0, + // 0x1ecd ọ + 205,30,19,28,140,23,2,249,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0,0,0,0,0,0,0,0,96,0,0,0,3,252,0,0,0,3,253,0,0,0,3,253,0,0,0,0,180,0,0, + // 0x1ece Ỏ + 206,30,25,38,10,29,2,255,0,0,6,144,0,0,0,0,0,31,254,0,0,0,0,0,31,255,128,0,0,0,0,0,31,192,0,0,0,0,0,31,128,0,0,0,0,0,127,64,0,0,0,0,3,253,0,0,0,0,0,3,240,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ecf ỏ + 207,30,19,32,160,23,2,255,0,1,84,0,0,0,11,255,64,0,0,11,255,192,0,0,0,15,208,0,0,0,11,208,0,0,0,31,192,0,0,0,255,64,0,0,0,248,0,0,0,0,244,0,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x1ed0 Ố + 208,30,25,37,3,29,2,255,0,0,0,0,3,248,0,0,0,0,0,11,224,0,0,0,11,248,31,128,0,0,0,47,254,62,0,0,0,0,127,191,64,0,0,0,0,253,31,192,0,0,0,3,240,3,240,0,0,0,1,64,0,80,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ed1 ố + 209,30,20,31,155,23,2,255,0,0,0,1,253,0,0,0,3,248,0,2,169,11,224,0,15,255,15,64,0,47,255,192,0,0,127,11,224,0,0,248,1,248,0,1,144,0,40,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x1ed2 Ồ + 210,30,25,37,3,29,2,255,11,240,0,0,0,0,0,2,248,0,0,0,0,0,0,189,11,248,0,0,0,0,47,31,254,0,0,0,0,0,127,191,64,0,0,0,0,253,31,192,0,0,0,3,240,3,240,0,0,0,1,64,0,80,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ed3 ồ + 211,30,20,31,155,23,1,255,254,0,0,0,0,63,64,0,0,0,15,192,170,64,0,3,226,255,192,0,0,7,255,240,0,0,31,194,252,0,0,63,0,126,0,0,100,0,10,0,0,0,0,0,0,0,0,4,0,0,0,11,255,244,0,0,191,255,255,0,2,255,255,255,192,7,254,0,127,240,15,244,0,15,244,31,240,0,7,252,47,208,0,3,252,63,192,0,2,253,63,192,0,1,254,63,192,0,1,254,63,192,0,1,254,63,192,0,1,254,63,192,0,2,253,47,208,0,3,252,31,240,0,7,252,15,244,0,15,248,7,254,0,127,240,2,255,255,255,192,0,127,255,255,0,0,11,255,244,0,0,0,21,0,0, + // 0x1ed4 Ổ + 212,30,25,40,24,29,2,255,0,0,0,0,20,0,0,0,0,0,0,127,128,0,0,0,0,0,23,208,0,0,0,0,0,2,224,0,0,0,0,0,7,208,0,0,0,11,248,47,0,0,0,0,47,253,45,0,0,0,0,127,191,64,0,0,0,0,253,31,192,0,0,0,3,240,3,240,0,0,0,1,64,0,80,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ed5 ổ + 213,30,19,33,165,23,2,255,0,0,0,47,208,0,0,0,26,240,0,0,0,0,244,0,0,0,2,240,0,2,169,15,128,0,15,255,15,0,0,47,255,192,0,0,127,11,224,0,0,248,1,248,0,1,144,0,40,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x1ed6 Ỗ + 214,30,25,40,24,29,2,255,0,0,110,0,116,0,0,0,1,255,224,244,0,0,0,3,235,255,240,0,0,0,7,128,127,192,0,0,0,1,0,0,0,0,0,0,0,6,164,0,0,0,0,0,31,253,0,0,0,0,0,63,255,0,0,0,0,0,253,31,192,0,0,0,3,240,3,240,0,0,0,1,64,0,80,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ed7 ỗ + 215,30,19,34,170,23,2,255,0,26,64,28,0,0,191,244,60,0,0,251,255,248,0,2,208,47,240,0,1,64,1,0,0,0,1,168,0,0,0,7,255,0,0,0,31,255,192,0,0,63,75,224,0,0,252,1,248,0,1,144,0,40,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x1ed8 Ộ + 216,30,25,42,38,29,2,249,0,0,1,84,0,0,0,0,0,15,253,0,0,0,0,0,63,255,0,0,0,0,0,191,191,192,0,0,0,2,253,15,224,0,0,0,7,240,3,248,0,0,0,10,128,0,104,0,0,0,0,0,0,0,0,0,0,0,107,250,64,0,0,0,11,255,255,248,0,0,0,127,255,255,255,64,0,1,255,254,175,255,208,0,3,255,128,0,127,240,0,15,252,0,0,15,252,0,31,244,0,0,3,253,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,2,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,7,244,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,2,224,0,0,0, + // 0x1ed9 ộ + 217,30,19,36,180,23,2,249,0,1,84,0,0,0,7,255,0,0,0,15,255,128,0,0,63,239,224,0,0,255,7,248,0,2,248,1,253,0,2,144,0,42,0,0,0,0,0,0,0,0,16,0,0,0,47,255,208,0,2,255,255,252,0,11,255,255,255,0,31,248,1,255,192,63,208,0,63,208,127,192,0,31,240,191,64,0,15,240,255,0,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,0,0,11,244,191,64,0,15,240,127,192,0,31,240,63,208,0,63,224,31,248,1,255,192,11,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0,0,0,0,0,0,0,0,96,0,0,0,3,252,0,0,0,3,253,0,0,0,3,253,0,0,0,0,180,0,0, + // 0x1eda Ớ + 218,30,28,36,252,29,2,255,0,0,0,5,80,0,0,0,0,0,63,240,0,0,0,0,0,127,192,0,0,0,0,0,255,0,0,0,0,0,3,252,0,0,0,0,0,11,240,0,0,0,0,0,10,128,0,0,0,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1edb ớ + 219,30,23,30,180,24,2,255,0,0,1,84,0,0,0,0,15,248,0,0,0,0,47,224,0,0,0,0,127,128,0,0,0,0,254,0,0,0,0,3,248,0,0,0,0,2,144,0,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0, + // 0x1edc Ờ + 220,30,28,36,252,29,2,255,0,1,84,0,0,0,0,0,2,255,0,0,0,0,0,0,191,128,0,0,0,0,0,47,208,0,0,0,0,0,11,240,0,0,0,0,0,2,252,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1edd ờ + 221,30,23,30,180,24,2,255,0,85,0,0,0,0,0,255,192,0,0,0,0,63,208,0,0,0,0,15,240,0,0,0,0,3,252,0,0,0,0,0,254,0,0,0,0,0,26,0,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0, + // 0x1ede Ở + 222,30,28,38,10,29,2,255,0,0,5,80,0,0,0,0,0,47,253,0,0,0,0,0,47,255,0,0,0,0,0,0,63,64,0,0,0,0,0,47,64,0,0,0,0,0,127,0,0,0,0,0,7,253,0,0,0,0,0,3,224,0,0,0,0,0,3,208,0,0,0,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1edf ở + 223,30,23,32,192,24,2,255,0,5,80,0,0,0,0,15,255,0,0,0,0,15,255,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0,0,47,192,0,0,0,2,255,0,0,0,0,1,244,0,0,0,0,1,240,0,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0, + // 0x1ee0 Ỡ + 224,30,28,35,245,29,2,255,0,0,20,0,20,0,0,0,2,255,128,61,0,0,0,11,255,249,252,0,0,0,15,235,255,248,0,0,0,31,0,191,240,0,0,0,25,0,6,64,0,0,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0, + // 0x1ee1 ỡ + 225,30,23,29,174,24,2,255,0,4,0,5,0,0,0,255,208,15,0,0,3,255,253,127,0,0,7,251,255,253,0,0,11,192,127,248,0,0,6,64,5,64,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0, + // 0x1ee2 Ợ + 226,30,28,35,245,29,2,249,0,0,0,0,0,0,255,0,0,107,234,64,0,255,0,11,255,255,248,1,254,0,127,255,255,255,66,253,1,255,254,175,255,215,252,3,255,128,0,127,255,240,15,252,0,0,15,255,128,31,244,0,0,3,254,0,63,224,0,0,2,255,0,63,208,0,0,0,255,0,127,192,0,0,0,255,64,191,128,0,0,0,191,128,191,128,0,0,0,191,128,191,128,0,0,0,127,192,255,64,0,0,0,127,192,255,64,0,0,0,127,192,191,128,0,0,0,127,128,191,128,0,0,0,191,128,127,192,0,0,0,255,64,63,192,0,0,0,255,64,63,208,0,0,1,255,0,47,240,0,0,3,254,0,15,248,0,0,11,252,0,11,254,0,0,47,248,0,3,255,224,1,255,240,0,0,255,255,255,255,192,0,0,47,255,255,254,0,0,0,2,255,255,224,0,0,0,0,5,84,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,11,244,0,0,0,0,0,15,248,0,0,0,0,0,11,248,0,0,0,0,0,2,224,0,0,0, + // 0x1ee3 ợ + 227,30,23,30,180,24,2,249,0,0,0,0,11,248,0,0,0,0,11,244,0,0,16,0,15,240,0,47,255,208,15,240,2,255,255,252,63,208,11,255,255,255,255,128,31,248,1,255,253,0,63,208,0,63,224,0,127,192,0,15,240,0,191,64,0,15,240,0,255,0,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,11,244,0,191,64,0,15,240,0,127,192,0,15,240,0,63,208,0,63,224,0,31,248,0,255,192,0,11,255,255,255,0,0,1,255,255,252,0,0,0,47,255,208,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,2,252,0,0,0,0,3,253,0,0,0,0,3,253,0,0,0,0,0,180,0,0,0, + // 0x1ee4 Ụ + 228,30,21,34,204,27,3,249,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,127,128,0,0,0,0,191,192,0,0,0,0,127,128,0,0,0,0,46,0,0,0, + // 0x1ee5 ụ + 229,30,17,27,135,23,3,249,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0,0,0,0,0,0,0,2,128,0,0,0,15,240,0,0,0,15,244,0,0,0,15,240,0,0,0,7,208,0,0, + // 0x1ee6 Ủ + 230,30,21,38,228,27,3,255,0,0,105,0,0,0,0,1,255,224,0,0,0,1,255,244,0,0,0,0,1,252,0,0,0,0,1,248,0,0,0,0,7,244,0,0,0,0,63,208,0,0,0,0,63,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,64,0,0,63,192,191,128,0,0,63,192,127,192,0,0,127,128,63,208,0,0,255,64,47,240,0,2,255,0,15,254,64,31,253,0,7,255,255,255,244,0,0,255,255,255,208,0,0,31,255,254,0,0,0,0,21,64,0,0, + // 0x1ee7 ủ + 231,30,17,32,160,23,3,255,0,5,80,0,0,0,31,254,0,0,0,31,255,64,0,0,0,47,128,0,0,0,31,128,0,0,0,127,64,0,0,3,253,0,0,0,3,240,0,0,0,3,224,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,47,192,255,0,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,128,0,255,192,191,208,7,255,192,63,255,255,239,192,31,255,255,79,192,2,255,248,15,192,0,21,0,0,0, + // 0x1ee8 Ứ + 232,30,28,36,252,30,3,255,0,0,0,85,0,0,0,0,0,2,255,0,0,0,0,0,7,252,0,0,0,0,0,15,240,0,0,0,0,0,47,192,0,0,0,0,0,127,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0, + // 0x1ee9 ứ + 233,30,24,30,180,26,3,255,0,0,5,80,0,0,0,0,47,240,0,0,0,0,127,192,0,0,0,0,255,0,0,0,0,2,252,0,0,0,0,7,240,0,0,0,0,10,128,0,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0, + // 0x1eea Ừ + 234,30,28,36,252,30,3,255,0,21,80,0,0,0,0,0,31,240,0,0,0,0,0,11,252,0,0,0,0,0,2,254,0,0,0,0,0,0,191,64,0,0,0,0,0,31,192,0,0,0,0,0,6,144,0,0,0,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0, + // 0x1eeb ừ + 235,30,24,30,180,26,3,255,1,85,0,0,0,0,1,255,0,0,0,0,0,191,192,0,0,0,0,47,208,0,0,0,0,11,240,0,0,0,0,1,252,0,0,0,0,0,105,0,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0, + // 0x1eec Ử + 236,30,28,38,10,30,3,255,0,0,105,64,0,0,0,0,0,255,240,0,0,0,0,0,255,248,0,0,0,0,0,1,252,0,0,0,0,0,0,252,0,0,0,0,0,7,248,0,0,0,0,0,63,224,0,0,0,0,0,47,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0, + // 0x1eed ử + 237,30,24,32,192,26,3,255,0,5,80,0,0,0,0,31,254,0,0,0,0,31,255,64,0,0,0,0,47,128,0,0,0,0,31,128,0,0,0,0,127,64,0,0,0,3,254,0,0,0,0,3,240,0,0,0,0,3,224,0,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0, + // 0x1eee Ữ + 238,30,28,35,245,30,3,255,0,1,64,0,80,0,0,0,31,248,3,224,0,0,0,127,255,155,192,0,0,0,254,191,255,192,0,0,0,240,11,255,0,0,0,0,160,0,100,0,0,0,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0, + // 0x1eef ữ + 239,30,24,29,174,26,3,255,0,20,0,4,0,0,2,255,128,61,0,0,7,255,249,188,0,0,15,235,255,248,0,0,15,0,191,240,0,0,9,0,6,64,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0, + // 0x1ef0 Ự + 240,30,28,35,245,30,3,249,0,0,0,0,0,0,255,85,0,0,0,21,65,255,191,64,0,0,63,194,253,191,64,0,0,63,195,252,191,64,0,0,63,203,248,191,64,0,0,63,255,224,191,64,0,0,63,255,128,191,64,0,0,63,228,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,191,64,0,0,63,192,0,127,192,0,0,127,128,0,63,208,0,0,255,64,0,47,240,0,2,255,0,0,15,254,64,31,253,0,0,3,255,255,255,248,0,0,0,255,255,255,208,0,0,0,31,255,254,0,0,0,0,0,21,64,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,127,128,0,0,0,0,0,127,192,0,0,0,0,0,127,192,0,0,0,0,0,46,0,0,0,0, + // 0x1ef1 ự + 241,30,24,30,180,26,3,249,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,1,254,255,0,0,47,194,253,255,0,0,47,199,252,255,0,0,47,255,240,255,0,0,47,255,192,255,0,0,47,249,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,47,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,127,192,0,255,128,0,255,192,0,191,208,7,255,192,0,63,255,255,239,192,0,31,255,255,79,192,0,2,255,248,15,192,0,0,21,0,0,0,0,0,0,0,0,0,0,0,2,128,0,0,0,0,15,240,0,0,0,0,15,244,0,0,0,0,15,240,0,0,0,0,7,208,0,0,0, + // 0x1ef2 Ỳ + 242,30,21,35,210,22,0,0,0,5,80,0,0,0,0,15,244,0,0,0,0,7,252,0,0,0,0,1,255,0,0,0,0,0,127,64,0,0,0,0,15,208,0,0,0,0,2,144,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef3 ỳ + 243,30,20,38,190,20,0,247,0,21,64,0,0,0,63,208,0,0,0,31,240,0,0,0,7,252,0,0,0,1,253,0,0,0,0,127,0,0,0,0,10,64,0,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x1ef4 Ỵ + 244,30,21,34,204,22,0,249,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,127,128,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,46,0,0,0, + // 0x1ef5 ỵ + 245,30,20,29,145,20,0,247,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,10,0,0,7,248,63,192,0,31,240,63,192,21,191,224,63,192,127,255,128,31,64,127,254,0,0,0,47,224,0,0,0, + // 0x1ef6 Ỷ + 246,30,21,37,222,22,0,0,0,0,105,64,0,0,0,0,255,240,0,0,0,0,255,248,0,0,0,0,1,252,0,0,0,0,0,252,0,0,0,0,7,248,0,0,0,0,63,224,0,0,0,0,47,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef7 ỷ + 247,30,20,40,200,20,0,247,0,1,84,0,0,0,7,255,128,0,0,7,255,224,0,0,0,7,240,0,0,0,3,240,0,0,0,31,224,0,0,0,255,128,0,0,0,252,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, + // 0x1ef8 Ỹ + 248,30,21,34,204,22,0,0,0,1,64,0,80,0,0,31,248,2,224,0,0,127,255,155,208,0,0,254,191,255,192,0,0,244,11,255,0,0,0,160,0,100,0,0,0,0,0,0,0,0,85,0,0,0,21,64,191,192,0,0,63,192,63,208,0,0,191,128,31,240,0,1,255,0,15,244,0,3,253,0,7,252,0,7,252,0,3,253,0,15,244,0,1,255,0,31,240,0,0,191,64,63,208,0,0,63,192,127,128,0,0,47,224,255,0,0,0,15,241,254,0,0,0,11,251,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,0,0,255,208,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef9 ỹ + 249,30,20,37,185,20,0,247,0,5,0,1,64,0,127,224,11,128,1,255,254,111,64,3,250,255,255,0,3,208,47,252,0,2,128,1,144,0,0,0,0,0,0,0,0,0,0,0,191,64,0,3,253,127,192,0,3,252,63,192,0,11,248,47,224,0,15,240,15,240,0,31,240,15,240,0,47,208,7,248,0,63,192,3,252,0,127,128,2,253,0,191,64,0,254,0,255,0,0,255,1,254,0,0,127,66,252,0,0,63,195,252,0,0,47,199,244,0,0,15,219,240,0,0,15,239,224,0,0,7,255,208,0,0,3,255,192,0,0,2,255,128,0,0,0,255,0,0,0,0,255,0,0,0,2,253,0,0,0,3,252,0,0,0,7,248,0,0,0,31,240,0,0,21,191,224,0,0,127,255,128,0,0,127,254,0,0,0,47,224,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_28.cpp new file mode 100644 index 000000000000..e2e797a26bf0 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_28.cpp @@ -0,0 +1,416 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium 38pt, capital 'A' height: 28px, width: 100%, range: 0x0020-0x00ff +extern const uint8_t NotoSans_Medium_28[25661] = { + 130,28,32,0,255,0,37,246, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 6,28,56,10,2,255,63,224,63,224,63,208,63,208,63,208,63,208,63,208,63,192,47,192,47,192,47,192,47,192,47,192,31,192,31,192,31,192,31,192,31,128,15,128,0,0,0,0,0,0,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x0022 " + 12,10,30,16,2,17,127,65,254,127,64,254,127,64,254,127,64,253,63,0,253,63,0,253,63,0,252,63,0,188,63,0,188,42,0,104, + // 0x0023 # + 23,27,162,25,1,0,0,0,253,0,253,0,0,0,252,0,252,0,0,0,252,0,252,0,0,1,248,1,248,0,0,2,248,2,248,0,0,3,244,2,244,0,0,3,240,3,240,0,0,7,240,7,240,0,47,255,255,255,255,248,47,255,255,255,255,248,26,175,250,175,250,164,0,15,192,15,192,0,0,15,192,15,192,0,0,31,192,31,192,0,0,31,128,47,128,0,0,47,64,47,64,0,255,255,255,255,255,192,255,255,255,255,255,208,255,255,255,255,255,208,0,190,0,190,0,0,0,189,0,189,0,0,0,252,0,252,0,0,0,252,0,252,0,0,0,252,1,252,0,0,1,248,1,248,0,0,2,244,2,244,0,0,2,244,3,244,0,0, + // 0x0024 $ + 18,32,160,22,2,253,0,1,240,0,0,0,1,240,0,0,0,1,240,0,0,0,27,250,80,0,2,255,255,255,64,15,255,255,255,192,63,255,255,255,64,127,209,240,27,0,255,65,240,0,0,255,1,240,0,0,255,65,240,0,0,191,193,240,0,0,63,250,240,0,0,47,255,240,0,0,7,255,255,64,0,0,191,255,244,0,0,7,255,255,0,0,1,255,255,192,0,1,240,191,208,0,1,240,47,224,0,1,240,15,240,0,1,240,31,224,144,1,240,63,208,254,81,246,255,192,255,255,255,255,64,255,255,255,252,0,27,255,255,144,0,0,2,240,0,0,0,1,240,0,0,0,1,240,0,0,0,1,240,0,0,0,0,0,0,0, + // 0x0025 % + 30,29,232,32,1,255,0,21,0,0,0,0,0,0,2,255,224,0,0,127,0,0,11,255,248,0,0,253,0,0,31,230,253,0,1,252,0,0,47,128,190,0,3,244,0,0,63,64,127,0,11,240,0,0,63,0,63,0,15,208,0,0,127,0,63,64,47,128,0,0,127,0,63,64,63,0,0,0,127,0,63,64,254,0,0,0,127,0,63,65,252,0,0,0,63,0,63,3,244,6,144,0,63,64,127,7,240,191,252,0,47,128,190,15,210,255,255,0,15,230,253,47,195,248,127,128,11,255,248,63,71,240,31,192,2,255,224,190,11,224,15,208,0,21,0,252,15,208,15,224,0,0,3,248,15,208,11,224,0,0,7,240,15,208,11,224,0,0,15,224,15,208,11,224,0,0,31,192,15,208,11,224,0,0,63,64,15,224,15,208,0,0,191,0,11,224,15,208,0,0,253,0,7,240,47,192,0,2,248,0,3,254,191,128,0,3,240,0,0,255,255,0,0,15,224,0,0,127,248,0,0,0,0,0,0,1,64,0, + // 0x0026 & + 26,29,203,28,2,255,0,1,101,0,0,0,0,0,47,255,224,0,0,0,0,255,255,252,0,0,0,3,255,239,255,0,0,0,7,253,1,255,0,0,0,11,244,0,191,64,0,0,11,240,0,127,64,0,0,11,244,0,191,64,0,0,7,248,0,255,0,0,0,3,253,3,254,0,0,0,1,255,31,252,0,0,0,0,191,255,240,0,0,0,0,63,255,128,0,0,0,0,127,253,0,0,0,0,2,255,255,0,0,191,64,15,254,255,192,0,255,0,63,244,63,240,1,254,0,127,208,15,252,3,253,0,255,128,3,255,3,252,0,255,0,0,255,223,244,0,255,0,0,63,255,240,0,255,0,0,15,255,192,0,255,128,0,3,255,128,0,191,208,0,15,255,208,0,127,249,1,191,255,244,0,47,255,255,255,223,253,0,11,255,255,254,3,255,64,0,191,255,224,0,255,208,0,1,80,0,0,0,0, + // 0x0027 ' + 5,10,20,9,2,17,127,64,127,64,127,64,127,64,63,0,63,0,63,0,63,0,63,0,42,0, + // 0x0028 ( + 10,33,99,12,1,250,0,31,208,0,63,128,0,255,0,1,253,0,3,252,0,7,248,0,11,240,0,15,240,0,31,208,0,47,192,0,63,192,0,63,192,0,63,128,0,127,128,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,128,0,63,128,0,63,192,0,63,192,0,47,192,0,31,224,0,15,240,0,11,240,0,7,248,0,3,252,0,1,253,0,0,191,0,0,63,128,0,31,208, + // 0x0029 ) + 10,33,99,12,1,250,127,0,0,63,192,0,15,224,0,11,240,0,3,248,0,2,252,0,1,254,0,0,255,0,0,191,0,0,127,64,0,63,128,0,63,192,0,63,192,0,47,192,0,47,208,0,47,208,0,47,208,0,47,208,0,47,208,0,47,192,0,63,192,0,63,192,0,63,128,0,127,128,0,191,0,0,255,0,1,254,0,2,252,0,3,248,0,11,240,0,15,224,0,63,192,0,127,0,0, + // 0x002a * + 19,18,90,21,1,11,0,2,253,0,0,0,2,252,0,0,0,1,252,0,0,0,1,252,0,0,0,0,252,0,0,36,0,252,0,96,63,208,248,111,240,127,255,255,255,240,127,255,255,255,244,5,107,255,149,64,0,7,255,0,0,0,15,239,192,0,0,63,143,224,0,0,191,7,244,0,1,255,3,252,0,3,253,1,254,0,0,124,0,244,0,0,0,0,0,0, + // 0x002b + + 18,19,95,22,2,4,0,1,160,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,3,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0, + // 0x002c , + 7,10,20,10,1,251,5,80,15,248,15,240,15,240,31,224,47,192,63,192,63,64,63,0,126,0, + // 0x002d - + 10,4,12,12,1,8,191,255,224,191,255,240,191,255,240,106,170,144, + // 0x002e . + 6,6,12,10,2,255,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x002f / + 14,27,108,15,0,0,0,0,15,240,0,0,15,224,0,0,47,208,0,0,63,192,0,0,127,128,0,0,191,0,0,0,255,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,244,0,0,15,240,0,0,31,224,0,0,47,192,0,0,63,192,0,0,127,64,0,0,191,0,0,0,254,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,240,0,0,15,240,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,64,0,0, + // 0x0030 0 + 19,29,145,22,1,255,0,1,101,0,0,0,47,255,240,0,0,255,255,253,0,3,255,255,255,64,7,254,0,191,192,15,244,0,63,208,31,240,0,15,240,47,224,0,15,240,63,208,0,11,244,63,192,0,7,248,63,192,0,7,252,63,192,0,3,252,63,192,0,3,252,127,192,0,3,252,127,128,0,3,252,127,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,7,252,63,192,0,7,248,47,208,0,11,244,31,224,0,15,240,15,240,0,31,240,11,248,0,63,208,3,254,1,255,192,1,255,255,255,64,0,191,255,253,0,0,27,255,224,0,0,0,20,0,0, + // 0x0031 1 + 11,27,81,22,3,0,0,3,252,0,31,252,0,191,252,2,255,252,15,255,252,127,227,252,191,131,252,45,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252, + // 0x0032 2 + 19,28,140,22,1,0,0,1,101,0,0,0,127,255,244,0,7,255,255,254,0,47,255,255,255,128,47,244,1,255,192,11,128,0,63,224,1,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,31,240,0,0,0,47,224,0,0,0,63,192,0,0,0,191,128,0,0,1,255,0,0,0,3,253,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,250,170,170,168,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252, + // 0x0033 3 + 19,29,145,22,1,255,0,1,85,0,0,1,191,255,244,0,15,255,255,255,0,63,255,255,255,192,31,224,0,191,208,10,0,0,63,224,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,224,0,0,0,63,192,0,0,1,255,64,0,42,191,253,0,0,63,255,208,0,0,63,255,248,0,0,42,191,255,128,0,0,0,191,224,0,0,0,31,240,0,0,0,15,248,0,0,0,11,248,0,0,0,7,248,0,0,0,11,248,0,0,0,15,244,16,0,0,63,240,126,64,1,255,224,127,255,255,255,192,127,255,255,254,0,11,255,255,224,0,0,5,80,0,0, + // 0x0034 4 + 20,28,140,22,1,0,0,0,0,21,0,0,0,1,255,64,0,0,3,255,64,0,0,11,255,64,0,0,31,255,64,0,0,63,191,64,0,0,191,191,64,0,1,252,191,64,0,3,244,191,64,0,15,240,191,64,0,31,192,191,64,0,63,64,191,64,0,254,0,191,64,2,252,0,191,64,7,244,0,191,64,15,224,0,191,64,47,192,0,191,64,127,64,0,191,64,255,85,85,255,149,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64, + // 0x0035 5 + 18,28,140,22,2,255,15,255,255,255,0,31,255,255,255,0,31,255,255,255,0,31,229,85,85,0,31,208,0,0,0,47,192,0,0,0,47,192,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,235,249,0,0,63,255,255,240,0,63,255,255,253,0,31,234,175,255,64,0,0,1,255,192,0,0,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,224,0,0,0,31,224,0,0,0,47,208,0,0,0,63,192,64,0,0,255,192,254,64,27,255,0,255,255,255,253,0,255,255,255,244,0,31,255,255,64,0,0,21,64,0,0, + // 0x0036 6 + 18,29,145,22,2,255,0,0,5,85,0,0,2,255,255,0,0,47,255,255,0,0,255,255,255,0,3,255,128,0,0,11,252,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,6,255,224,0,255,47,255,253,0,255,191,255,255,64,255,249,1,255,192,255,208,0,63,208,255,128,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,0,0,15,240,127,128,0,15,240,63,192,0,31,224,47,224,0,63,208,15,253,1,255,192,7,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0037 7 + 19,27,135,22,1,0,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252,21,85,85,91,248,0,0,0,15,244,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,191,128,0,0,0,255,0,0,0,2,254,0,0,0,3,252,0,0,0,7,248,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,191,64,0,0,0,255,0,0,0,2,254,0,0,0,3,252,0,0,0,11,248,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,64,0,0, + // 0x0038 8 + 19,29,145,22,1,255,0,1,85,0,0,0,47,255,248,0,1,255,255,255,0,7,255,235,255,192,15,248,0,127,224,31,240,0,15,240,31,224,0,15,240,31,208,0,15,240,31,224,0,15,240,15,240,0,31,224,7,253,0,127,192,2,255,131,255,0,0,191,255,252,0,0,31,255,208,0,0,63,255,244,0,1,255,239,255,0,11,253,1,255,192,31,240,0,63,240,63,208,0,15,244,63,192,0,3,252,63,128,0,3,252,127,128,0,3,252,63,192,0,3,252,63,208,0,11,248,31,248,0,47,240,15,255,255,255,208,2,255,255,255,64,0,111,255,248,0,0,0,84,0,0, + // 0x0039 9 + 19,29,145,22,1,255,0,1,85,0,0,0,47,255,224,0,1,255,255,253,0,7,255,255,255,64,15,253,1,255,192,31,240,0,63,224,63,192,0,15,240,63,192,0,11,244,63,128,0,7,248,127,128,0,3,248,63,128,0,3,252,63,192,0,7,252,63,192,0,15,252,47,240,0,47,252,15,253,1,255,252,7,255,255,247,252,1,255,255,211,248,0,47,254,7,248,0,0,0,7,244,0,0,0,11,240,0,0,0,15,240,0,0,0,47,208,0,0,0,127,192,0,0,1,255,64,0,0,31,254,0,7,255,255,248,0,7,255,255,208,0,7,255,253,0,0,0,85,0,0,0, + // 0x003a : + 6,22,44,10,2,255,31,128,63,224,127,224,127,224,63,208,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x003b ; + 7,26,52,10,1,251,7,224,15,244,31,248,31,248,15,240,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,80,15,244,15,240,31,224,47,208,63,192,63,128,63,0,126,0,189,0, + // 0x003c < + 18,19,95,22,2,4,0,0,0,0,176,0,0,0,11,240,0,0,0,191,240,0,0,11,255,144,0,0,191,248,0,0,11,255,128,0,0,191,248,0,0,11,255,128,0,0,191,244,0,0,0,255,128,0,0,0,255,244,0,0,0,47,255,128,0,0,1,255,249,0,0,0,31,255,208,0,0,0,191,254,0,0,0,11,255,224,0,0,0,127,240,0,0,0,6,240,0,0,0,0,32, + // 0x003d = + 18,11,55,22,2,8,170,170,170,170,144,255,255,255,255,224,255,255,255,255,224,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,224,255,255,255,255,224,255,255,255,255,224, + // 0x003e > + 18,19,95,22,2,4,208,0,0,0,0,253,0,0,0,0,255,208,0,0,0,127,253,0,0,0,7,255,208,0,0,0,127,253,0,0,0,2,255,208,0,0,0,47,253,0,0,0,2,255,208,0,0,0,63,240,0,0,1,255,240,0,0,47,255,64,0,7,255,244,0,0,191,254,0,0,27,255,224,0,0,255,253,0,0,0,255,144,0,0,0,248,0,0,0,0,64,0,0,0,0, + // 0x003f ? + 16,29,116,17,0,255,0,21,84,0,7,255,255,128,127,255,255,240,63,255,255,252,47,64,7,253,4,0,1,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,1,254,0,0,3,252,0,0,31,248,0,0,127,224,0,2,255,128,0,7,253,0,0,15,240,0,0,31,208,0,0,47,192,0,0,47,128,0,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,128,0,0,127,208,0,0,127,224,0,0,127,224,0,0,63,192,0,0,5,0,0, + // 0x0040 @ + 30,31,248,34,2,252,0,0,2,255,255,144,0,0,0,0,127,255,255,253,0,0,0,3,255,254,191,255,192,0,0,31,253,0,0,127,240,0,0,127,208,0,0,7,252,0,1,254,0,0,0,0,255,0,3,248,0,0,0,0,63,64,11,240,0,43,249,64,47,192,15,192,2,255,255,240,15,208,47,128,15,255,255,240,11,224,63,0,63,208,11,240,7,240,127,0,191,64,11,240,3,240,190,0,254,0,11,224,3,240,189,0,252,0,11,224,3,240,253,1,252,0,11,224,3,240,253,1,252,0,15,224,3,240,253,1,252,0,15,224,7,224,253,1,252,0,15,224,11,208,253,0,253,0,47,224,15,192,190,0,191,64,127,240,63,128,127,0,63,255,249,255,255,0,63,0,31,255,224,191,252,0,63,128,1,254,64,31,144,0,31,208,0,0,0,0,0,0,15,240,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,255,208,0,0,108,0,0,0,63,255,166,175,252,0,0,0,7,255,255,255,252,0,0,0,0,111,255,255,144,0,0,0,0,0,21,64,0,0,0, + // 0x0041 A + 25,28,196,25,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0042 B + 20,27,135,25,3,0,127,255,255,228,0,127,255,255,255,128,127,255,255,255,224,127,213,86,255,244,127,128,0,31,252,127,128,0,11,252,127,128,0,3,252,127,128,0,3,252,127,128,0,7,252,127,128,0,15,244,127,128,0,127,240,127,255,255,255,128,127,255,255,248,0,127,255,255,255,64,127,234,170,255,240,127,128,0,31,252,127,128,0,3,253,127,128,0,2,254,127,128,0,1,255,127,128,0,1,255,127,128,0,2,255,127,128,0,3,254,127,128,0,15,252,127,213,86,255,248,127,255,255,255,240,127,255,255,255,64,127,255,255,228,0, + // 0x0043 C + 21,29,174,24,2,255,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0044 D + 23,27,162,28,3,0,127,255,255,228,0,0,127,255,255,255,64,0,127,255,255,255,240,0,127,213,86,255,252,0,127,128,0,31,255,0,127,128,0,2,255,128,127,128,0,0,191,192,127,128,0,0,63,224,127,128,0,0,47,240,127,128,0,0,15,240,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,248,127,128,0,0,11,248,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,31,240,127,128,0,0,47,240,127,128,0,0,63,208,127,128,0,0,255,192,127,128,0,3,255,64,127,128,0,47,254,0,127,213,107,255,248,0,127,255,255,255,208,0,127,255,255,254,0,0,127,255,255,144,0,0, + // 0x0045 E + 16,27,108,21,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0046 F + 16,27,108,20,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0, + // 0x0047 G + 23,29,174,28,2,255,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0, + // 0x0048 H + 22,27,162,28,3,0,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,127,234,170,170,175,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240, + // 0x0049 I + 11,27,81,13,1,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x004a J + 11,35,105,11,253,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,244,0,15,244,0,31,240,64,127,240,255,255,208,255,255,64,255,252,0,21,64,0, + // 0x004b K + 21,27,162,24,3,0,127,128,0,2,255,0,127,128,0,7,253,0,127,128,0,31,244,0,127,128,0,63,224,0,127,128,0,255,128,0,127,128,3,255,0,0,127,128,11,252,0,0,127,128,47,240,0,0,127,128,127,192,0,0,127,129,255,64,0,0,127,131,253,0,0,0,127,143,248,0,0,0,127,255,252,0,0,0,127,255,254,0,0,0,127,255,255,64,0,0,127,240,255,192,0,0,127,192,63,224,0,0,127,128,31,244,0,0,127,128,15,252,0,0,127,128,3,255,0,0,127,128,1,255,64,0,127,128,0,191,192,0,127,128,0,63,240,0,127,128,0,15,248,0,127,128,0,11,253,0,127,128,0,3,255,0,127,128,0,0,255,128, + // 0x004c L + 17,27,135,20,3,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64, + // 0x004d M + 29,27,216,35,3,0,127,248,0,0,0,15,255,64,127,252,0,0,0,15,255,64,127,253,0,0,0,47,255,64,127,255,0,0,0,63,255,64,127,191,0,0,0,127,191,64,127,127,64,0,0,191,191,64,127,63,192,0,0,253,191,64,127,47,192,0,1,252,191,64,127,79,224,0,3,248,191,64,127,79,240,0,3,244,191,64,127,71,244,0,7,240,191,64,127,67,248,0,15,224,191,64,127,66,252,0,15,208,191,64,127,65,253,0,47,192,191,64,127,64,254,0,63,128,191,64,127,64,191,0,127,0,191,64,127,64,127,64,191,0,191,64,127,64,63,192,253,0,191,64,127,64,47,193,252,0,191,64,127,64,15,211,248,0,191,64,127,64,15,243,244,0,191,64,127,64,11,255,240,0,191,64,127,64,3,255,224,0,191,64,127,64,3,255,192,0,191,64,127,64,1,255,192,0,191,64,127,64,0,255,128,0,191,64,127,64,0,255,0,0,191,64, + // 0x004e N + 23,27,162,29,3,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x004f O + 26,29,203,30,2,255,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x0050 P + 19,27,135,23,3,0,127,255,255,144,0,127,255,255,253,0,127,255,255,255,64,127,213,91,255,192,127,128,0,127,224,127,128,0,47,240,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,31,240,127,128,0,63,224,127,128,1,255,192,127,255,255,255,128,127,255,255,253,0,127,255,255,224,0,127,234,169,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0051 Q + 26,35,245,30,2,249,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,244,0,0,0,0,1,95,252,0,0,0,0,0,7,255,0,0,0,0,0,1,255,192,0,0,0,0,0,191,224,0,0,0,0,0,47,248,0,0,0,0,0,15,254,0,0,0,0,0,1,85,0, + // 0x0052 R + 21,27,162,24,3,0,127,255,255,144,0,0,127,255,255,253,0,0,127,255,255,255,128,0,127,213,91,255,208,0,127,128,0,127,240,0,127,128,0,31,240,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,240,0,127,128,0,47,240,0,127,128,0,127,208,0,127,213,91,255,128,0,127,255,255,254,0,0,127,255,255,240,0,0,127,255,255,208,0,0,127,128,31,240,0,0,127,128,11,248,0,0,127,128,3,253,0,0,127,128,2,255,0,0,127,128,0,255,128,0,127,128,0,127,192,0,127,128,0,47,240,0,127,128,0,15,244,0,127,128,0,11,252,0,127,128,0,3,254,0,127,128,0,1,255,64, + // 0x0053 S + 17,29,145,21,2,255,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,21,64,0,0, + // 0x0054 T + 21,27,162,21,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x0055 U + 22,28,168,28,3,255,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x0056 V + 23,27,162,23,0,0,255,64,0,0,3,252,127,192,0,0,7,252,63,192,0,0,15,244,47,208,0,0,15,240,31,240,0,0,31,224,15,240,0,0,63,208,11,244,0,0,63,192,7,252,0,0,191,128,3,252,0,0,255,64,2,254,0,0,255,0,1,255,0,2,254,0,0,255,0,3,253,0,0,191,128,3,252,0,0,63,192,11,248,0,0,63,192,15,240,0,0,47,224,15,240,0,0,15,240,47,224,0,0,15,240,63,192,0,0,7,248,63,192,0,0,3,252,191,64,0,0,3,252,255,0,0,0,1,253,254,0,0,0,0,255,253,0,0,0,0,191,252,0,0,0,0,127,248,0,0,0,0,63,244,0,0,0,0,47,240,0,0, + // 0x0057 W + 36,27,243,36,0,0,191,128,0,1,255,0,0,3,253,127,192,0,2,255,64,0,3,252,63,192,0,3,255,128,0,7,248,63,208,0,7,255,192,0,11,244,31,224,0,11,255,192,0,15,240,15,240,0,15,239,208,0,15,240,15,240,0,15,223,240,0,31,224,11,244,0,31,203,240,0,47,208,7,248,0,47,199,244,0,63,192,3,252,0,63,131,248,0,63,192,3,252,0,127,67,252,0,127,128,2,253,0,191,2,252,0,191,64,1,254,0,255,0,254,0,255,0,0,255,0,254,0,255,0,255,0,0,255,1,253,0,191,1,254,0,0,191,66,252,0,127,66,253,0,0,127,131,248,0,63,131,252,0,0,63,195,244,0,63,195,252,0,0,63,199,240,0,47,199,248,0,0,47,219,240,0,15,219,240,0,0,31,223,224,0,15,235,240,0,0,15,239,208,0,11,239,224,0,0,15,255,192,0,7,255,208,0,0,11,255,192,0,3,255,192,0,0,7,255,64,0,3,255,192,0,0,3,255,0,0,2,255,128,0,0,2,255,0,0,0,255,64,0, + // 0x0058 X + 23,27,162,23,0,0,63,224,0,0,31,240,31,244,0,0,63,208,11,252,0,0,191,128,3,253,0,0,255,0,1,255,0,3,253,0,0,191,128,7,252,0,0,63,208,15,240,0,0,31,240,47,208,0,0,11,248,127,192,0,0,3,252,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,63,244,0,0,0,0,127,244,0,0,0,0,255,252,0,0,0,2,255,254,0,0,0,3,252,255,64,0,0,15,244,127,192,0,0,31,224,63,224,0,0,63,192,15,240,0,0,191,64,11,252,0,1,255,0,3,254,0,3,253,0,1,255,0,11,248,0,0,191,192,31,240,0,0,63,208,63,208,0,0,47,240,191,192,0,0,15,248, + // 0x0059 Y + 22,27,162,22,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x005a Z + 20,27,135,22,1,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x005b [ + 9,33,99,13,3,250,255,255,128,255,255,128,255,255,128,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,255,128,255,255,128,255,255,128, + // 0x005c "\" + 14,27,108,15,0,0,127,64,0,0,63,128,0,0,47,192,0,0,31,208,0,0,15,240,0,0,11,240,0,0,3,248,0,0,3,252,0,0,1,253,0,0,0,254,0,0,0,191,0,0,0,127,64,0,0,63,192,0,0,47,192,0,0,15,224,0,0,15,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,255,0,0,0,191,0,0,0,63,128,0,0,63,192,0,0,31,208,0,0,15,224,0,0,11,240, + // 0x005d ] + 9,33,99,13,1,250,255,255,128,255,255,128,255,255,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,255,255,128,255,255,128,255,255,128, + // 0x005e ^ + 19,18,90,22,1,10,0,0,16,0,0,0,0,252,0,0,0,2,253,0,0,0,3,255,0,0,0,7,255,64,0,0,15,223,192,0,0,31,203,208,0,0,63,67,240,0,0,127,2,248,0,0,253,0,252,0,0,252,0,190,0,2,248,0,63,0,3,240,0,47,128,11,224,0,15,192,15,192,0,11,224,47,192,0,3,240,63,64,0,2,248,127,0,0,0,252, + // 0x005f _ + 17,3,15,16,0,250,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128, + // 0x0060 ` + 9,6,18,12,1,23,127,224,0,31,240,0,7,252,0,1,254,0,0,127,64,0,31,192, + // 0x0061 a + 18,22,110,22,1,255,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0062 b + 19,30,150,24,3,255,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,174,128,0,255,15,255,248,0,255,127,255,255,0,255,254,155,255,128,255,240,0,191,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,31,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,254,63,255,253,0,253,11,255,224,0,0,0,21,0,0, + // 0x0063 c + 15,22,88,19,2,255,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x0064 d + 19,30,150,24,2,255,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,27,232,11,244,1,255,255,139,244,7,255,255,247,244,15,254,155,255,244,63,244,0,127,244,63,208,0,47,244,191,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,11,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,63,244,47,248,1,255,244,15,255,255,251,244,3,255,255,211,244,0,127,254,3,244,0,1,64,0,0, + // 0x0065 e + 18,22,110,22,2,255,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0066 f + 15,29,116,14,0,0,0,1,255,248,0,15,255,252,0,63,255,248,0,127,228,96,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,1,255,149,64,47,255,255,192,127,255,255,192,42,255,170,128,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0, + // 0x0067 g + 19,31,155,24,2,246,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x0068 h + 18,29,145,24,3,0,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,175,144,0,255,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x0069 i + 5,28,56,10,3,0,191,0,255,64,255,64,191,0,4,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x006a j + 10,38,114,10,254,246,0,47,192,0,63,208,0,63,208,0,47,192,0,1,0,0,0,0,0,0,0,0,21,64,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,65,255,192,255,255,64,255,254,0,255,244,0,0,0,0, + // 0x006b k + 18,29,145,21,3,0,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,21,64,255,0,0,255,128,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,255,192,0,255,2,255,0,0,255,11,252,0,0,255,47,240,0,0,255,127,208,0,0,255,255,240,0,0,255,255,252,0,0,255,227,254,0,0,255,129,255,64,0,255,0,191,192,0,255,0,63,240,0,255,0,15,248,0,255,0,7,253,0,255,0,2,255,0,255,0,0,255,192,255,0,0,63,224, + // 0x006c l + 4,29,29,10,3,0,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 30,21,168,36,3,0,84,1,190,128,0,111,224,0,254,31,255,248,7,255,254,0,255,127,255,254,47,255,255,128,255,254,155,255,191,166,255,208,255,240,0,255,252,0,63,224,255,192,0,127,240,0,31,240,255,192,0,63,224,0,15,240,255,64,0,63,208,0,15,240,255,64,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240, + // 0x006e n + 18,21,105,24,3,0,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x006f o + 19,22,110,23,2,255,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x0070 p + 19,31,155,24,3,246,84,1,191,128,0,254,15,255,248,0,255,63,255,255,0,255,254,155,255,192,255,240,0,191,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,47,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,255,63,255,253,0,255,7,255,224,0,255,0,21,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x0071 q + 19,31,155,24,2,246,0,27,232,1,80,1,255,255,131,244,7,255,255,247,244,15,254,155,255,244,63,240,0,127,244,63,208,0,47,244,191,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,11,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,63,244,47,248,1,255,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,64,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,0,0, + // 0x0072 r + 13,21,84,16,3,0,84,0,191,64,253,11,255,64,254,47,255,64,255,127,255,0,255,253,0,0,255,240,0,0,255,192,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0073 s + 15,22,88,18,2,255,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,85,0,0, + // 0x0074 t + 14,26,104,15,0,255,0,62,0,0,0,126,0,0,0,190,0,0,0,254,0,0,2,255,85,64,47,255,255,208,127,255,255,208,43,255,170,128,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,255,0,0,0,255,128,0,0,255,255,224,0,63,255,224,0,11,255,208,0,0,84,0, + // 0x0075 u + 18,22,110,24,3,255,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x0076 v + 20,21,105,20,0,0,85,0,0,0,85,191,128,0,2,254,127,192,0,3,252,63,208,0,7,252,31,224,0,11,244,15,240,0,15,240,11,244,0,31,224,7,248,0,63,208,3,252,0,63,192,2,253,0,127,128,0,255,0,255,0,0,255,0,255,0,0,127,130,253,0,0,63,195,252,0,0,47,195,248,0,0,31,215,244,0,0,15,235,240,0,0,11,255,224,0,0,3,255,192,0,0,3,255,192,0,0,1,255,64,0, + // 0x0077 w + 30,21,168,31,0,0,106,64,0,26,144,0,6,160,127,192,0,63,240,0,15,240,63,192,0,127,240,0,31,224,47,208,0,255,244,0,47,208,31,224,0,255,248,0,63,192,15,240,1,253,252,0,63,192,15,240,2,248,253,0,127,128,11,244,3,244,254,0,191,64,7,248,3,240,191,0,255,0,3,252,11,240,127,0,254,0,3,252,15,224,63,65,253,0,2,253,15,208,63,130,252,0,1,254,31,192,47,195,252,0,0,255,47,192,15,211,248,0,0,191,63,64,15,231,244,0,0,127,127,0,11,235,240,0,0,63,191,0,7,255,240,0,0,63,254,0,3,255,208,0,0,47,253,0,3,255,192,0,0,31,252,0,2,255,192,0,0,15,248,0,0,255,128,0, + // 0x0078 x + 19,21,105,21,1,0,85,64,0,5,84,127,192,0,31,240,47,240,0,63,208,15,244,0,255,128,7,252,1,255,0,2,255,3,253,0,0,255,75,248,0,0,127,239,240,0,0,47,255,192,0,0,15,255,128,0,0,7,255,0,0,0,15,255,64,0,0,47,255,192,0,0,63,239,240,0,0,255,79,248,0,2,255,3,253,0,7,252,1,255,0,15,244,0,255,128,47,240,0,63,208,127,192,0,31,240,255,64,0,15,252, + // 0x0079 y + 20,31,155,20,0,246,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x007a z + 16,21,84,18,1,0,21,85,85,84,63,255,255,253,63,255,255,253,42,170,171,252,0,0,11,248,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,254,191,255,255,254,191,255,255,254, + // 0x007b { + 13,33,132,15,1,250,0,0,191,64,0,11,255,64,0,47,255,64,0,63,244,0,0,127,192,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,191,64,0,0,255,0,0,27,254,0,0,255,244,0,0,255,128,0,0,255,248,0,0,7,254,0,0,0,255,0,0,0,191,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,192,0,0,63,245,0,0,47,255,64,0,11,255,64,0,0,111,64, + // 0x007c | + 3,38,38,21,9,247,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252, + // 0x007d } + 13,33,132,15,1,250,191,64,0,0,191,244,0,0,191,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,191,0,0,0,127,128,0,0,63,245,0,0,11,255,128,0,1,255,128,0,15,255,128,0,63,228,0,0,191,128,0,0,191,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,1,255,0,0,27,254,0,0,191,252,0,0,191,240,0,0,190,64,0,0, + // 0x007e ~ + 18,6,30,22,2,10,31,254,0,0,32,191,255,244,1,240,255,255,255,255,240,244,7,255,255,224,128,0,47,255,64,0,0,0,16,0, + // 0x007f - 0x009a Control Characters + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00a0 "�" + 0,0,0,10,0,0, + // 0x00a1 ¡ + 6,28,56,10,2,249,10,64,63,208,127,224,127,224,63,208,10,64,0,0,0,0,0,0,31,128,31,128,31,128,31,192,47,192,47,192,47,192,47,192,47,192,63,192,63,192,63,192,63,192,63,208,63,208,63,208,63,208,63,208,63,208, + // 0x00a2 ¢ + 16,29,116,22,3,255,0,0,164,0,0,1,248,0,0,1,248,0,0,1,253,0,0,47,255,253,2,255,255,253,11,255,255,252,31,253,0,104,63,240,0,0,63,192,0,0,127,192,0,0,191,128,0,0,191,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,191,128,0,0,127,128,0,0,127,192,0,0,63,224,0,0,47,248,0,24,15,255,235,252,3,255,255,252,0,191,255,252,0,6,254,128,0,1,244,0,0,1,244,0,0,1,244,0,0,0,80,0, + // 0x00a3 £ + 20,28,140,22,1,0,0,0,5,80,0,0,1,255,255,144,0,15,255,255,244,0,63,255,255,240,0,127,224,2,224,0,191,128,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,191,255,255,253,0,191,255,255,253,0,191,255,255,253,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,11,244,0,0,0,127,250,170,170,169,191,255,255,255,254,191,255,255,255,254,191,255,255,255,254, + // 0x00a4 ¤ + 17,18,90,22,2,4,8,0,0,2,0,127,6,249,15,192,127,255,255,255,192,31,255,255,255,0,11,249,7,252,0,15,224,0,254,0,15,192,0,63,0,31,128,0,63,0,47,64,0,47,64,31,128,0,47,0,31,192,0,63,0,15,208,0,190,0,7,248,7,252,0,15,255,255,255,0,63,255,255,255,192,127,11,253,31,192,28,0,0,7,0,0,0,0,0,0, + // 0x00a5 ¥ + 21,27,162,22,0,0,127,192,0,0,63,192,47,208,0,0,191,64,15,240,0,0,255,0,11,244,0,2,253,0,3,252,0,3,252,0,2,253,0,11,244,0,0,255,0,15,224,0,0,191,64,47,192,0,0,63,192,63,128,0,0,47,208,191,0,0,0,15,240,254,0,0,0,11,246,252,0,0,0,3,255,248,0,0,0,1,255,240,0,0,2,255,255,255,240,0,2,255,255,255,240,0,1,170,191,234,160,0,0,0,63,192,0,0,0,0,63,192,0,0,0,85,127,213,80,0,2,255,255,255,240,0,2,255,255,255,240,0,0,85,127,213,80,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x00a6 ¦ + 3,38,38,21,9,247,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,0,0,0,0,0,0,0,0,168,252,252,252,252,252,252,252,252,252,252,252,252,252,252, + // 0x00a7 § + 15,30,120,19,2,255,0,191,254,64,11,255,255,244,47,255,255,240,63,128,1,224,127,0,0,0,127,64,0,0,63,192,0,0,47,248,0,0,11,255,208,0,3,255,253,0,15,251,255,128,63,128,191,240,127,0,11,244,126,0,3,252,127,0,1,252,127,64,1,252,63,224,3,248,31,254,11,240,3,255,255,208,0,127,255,128,0,2,255,224,0,0,47,244,0,0,7,248,0,0,3,252,0,0,3,248,228,0,11,244,255,234,191,240,255,255,255,192,31,255,249,0,0,0,0,0, + // 0x00a8 ¨ + 12,5,15,22,5,23,46,0,188,127,64,254,127,128,254,63,0,189,0,0,0, + // 0x00a9 © + 28,29,203,32,2,255,0,0,1,85,64,0,0,0,0,191,255,249,0,0,0,11,255,171,255,208,0,0,63,208,0,11,248,0,0,253,0,0,0,190,0,3,240,0,0,0,47,128,15,192,2,255,228,11,208,31,0,31,255,252,2,240,62,0,127,230,248,0,244,124,0,254,0,0,0,188,184,1,252,0,0,0,60,244,3,244,0,0,0,61,244,3,240,0,0,0,46,240,3,240,0,0,0,46,240,3,240,0,0,0,46,240,3,240,0,0,0,46,244,3,240,0,0,0,46,248,3,244,0,0,0,61,188,1,248,0,0,0,124,124,0,254,0,0,0,188,62,0,127,234,248,0,244,31,64,31,255,248,3,240,15,192,2,255,208,11,208,3,240,0,0,0,47,128,0,254,0,0,1,254,0,0,63,224,0,27,248,0,0,7,255,255,255,208,0,0,0,127,255,249,0,0,0,0,0,85,0,0,0, + // 0x00aa ª + 11,14,42,14,1,14,0,85,0,31,255,208,63,255,244,24,1,252,0,0,252,0,5,252,11,255,252,63,234,252,189,0,188,252,0,252,252,2,252,191,175,252,63,254,60,6,144,20, + // 0x00ab « + 18,16,80,21,1,2,0,11,64,7,64,0,31,224,31,224,0,63,192,63,192,0,255,0,255,64,3,253,3,253,0,11,248,11,248,0,47,224,31,240,0,127,192,127,192,0,63,192,63,208,0,31,240,31,240,0,11,252,7,252,0,2,254,2,254,0,0,255,64,191,128,0,63,208,63,208,0,15,224,15,224,0,6,0,3,0, + // 0x00ac ¬ + 18,11,55,22,2,4,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,0,0,7,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,0,0, + // 0x00ad ­ + 10,4,12,12,1,8,191,255,224,191,255,240,191,255,240,106,170,144, + // 0x00ae ® + 28,29,203,32,2,255,0,0,1,85,64,0,0,0,0,191,255,249,0,0,0,11,255,171,255,208,0,0,63,208,0,11,248,0,0,253,0,0,0,190,0,3,240,0,0,0,47,128,15,192,127,254,64,11,208,31,0,127,255,240,2,240,62,0,127,171,252,0,244,124,0,125,0,253,0,188,184,0,125,0,189,0,60,244,0,125,0,189,0,61,244,0,125,0,252,0,46,240,0,126,7,252,0,46,240,0,127,255,240,0,46,240,0,127,255,128,0,46,244,0,126,15,192,0,46,248,0,125,7,240,0,61,188,0,125,3,244,0,124,124,0,125,1,252,0,188,62,0,125,0,190,0,244,31,64,125,0,63,3,240,15,192,125,0,31,139,208,3,240,0,0,0,47,128,0,254,0,0,1,254,0,0,63,224,0,27,248,0,0,7,255,255,255,208,0,0,0,127,255,249,0,0,0,0,0,85,0,0,0, + // 0x00af ¯ + 19,4,20,19,0,28,170,170,170,170,168,255,255,255,255,252,255,255,255,255,252,0,0,0,0,0, + // 0x00b0 ° + 13,13,52,16,2,15,0,85,0,0,11,255,224,0,47,255,252,0,127,65,254,0,253,0,63,0,252,0,47,0,252,0,47,64,252,0,47,0,253,0,63,0,127,129,254,0,47,255,252,0,11,255,224,0,0,85,0,0, + // 0x00b1 ± + 18,23,115,22,2,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,85,87,249,85,80,255,255,255,255,240,255,255,255,255,240,170,171,254,170,160,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,1,80,0,0,0,0,0,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240, + // 0x00b2 ² + 11,18,54,14,1,15,0,84,0,31,255,192,191,255,240,126,71,248,16,1,252,0,1,252,0,1,248,0,3,244,0,11,224,0,47,192,0,191,0,2,252,0,11,240,0,47,192,0,191,170,168,255,255,252,255,255,252,0,0,0, + // 0x00b3 ³ + 12,18,54,14,1,15,0,84,0,31,255,192,255,255,240,125,7,248,16,1,252,0,1,252,0,2,244,5,95,224,11,255,64,11,255,224,0,7,248,0,0,252,0,0,253,0,0,253,228,3,252,255,255,244,191,255,208,5,84,0, + // 0x00b4 ´ + 9,6,18,12,1,23,0,255,192,2,255,0,7,252,0,15,240,0,47,192,0,126,0,0, + // 0x00b5 µ + 18,31,155,24,3,246,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,64,0,47,240,255,64,0,63,240,255,192,0,191,240,255,244,2,255,240,255,255,255,255,240,255,255,255,203,240,255,47,254,7,240,255,1,64,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x00b6 ¶ + 19,34,170,25,2,251,0,27,255,255,252,2,255,255,255,252,15,255,255,234,252,47,255,255,192,124,63,255,255,192,124,127,255,255,192,124,191,255,255,192,124,255,255,255,192,124,255,255,255,192,124,255,255,255,192,124,255,255,255,192,124,255,255,255,192,124,191,255,255,192,124,127,255,255,192,124,63,255,255,192,124,63,255,255,192,124,15,255,255,192,124,3,255,255,192,124,0,111,255,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124,0,0,7,192,124, + // 0x00b7 · + 6,6,12,10,2,10,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x00b8 ¸ + 8,10,20,8,0,246,7,208,15,192,31,244,6,253,0,191,0,127,85,254,255,252,255,224,0,0, + // 0x00b9 ¹ + 8,17,34,14,2,15,1,254,11,254,63,254,255,190,248,190,16,190,0,190,0,190,0,190,0,190,0,190,0,190,0,190,0,190,0,190,0,190,0,0, + // 0x00ba º + 12,14,42,14,1,14,0,21,0,7,255,224,31,255,252,63,64,189,125,0,63,188,0,47,252,0,47,252,0,47,188,0,47,125,0,63,63,0,190,31,251,252,7,255,240,0,106,0, + // 0x00bb » + 17,16,80,21,2,2,44,0,44,0,0,255,0,255,0,0,191,128,127,128,0,63,208,47,224,0,15,244,15,244,0,3,252,3,252,0,1,255,1,255,0,0,191,128,127,192,0,191,128,191,128,2,254,1,255,0,7,252,7,252,0,15,240,15,240,0,63,208,63,208,0,255,64,191,128,0,254,0,254,0,0,24,0,24,0,0, + // 0x00bc ¼ + 28,27,189,29,1,0,0,191,64,0,0,252,0,3,255,64,0,2,248,0,31,255,64,0,7,240,0,191,127,64,0,15,208,0,61,63,64,0,47,192,0,16,63,64,0,63,0,0,0,63,64,0,190,0,0,0,63,64,1,252,0,0,0,63,64,3,244,0,0,0,63,64,7,240,0,0,0,63,64,15,192,5,64,0,63,64,47,128,15,224,0,63,64,127,0,63,224,0,63,64,253,0,191,224,0,63,65,252,1,255,224,0,63,67,244,3,235,224,0,0,11,224,11,203,224,0,0,15,192,31,75,224,0,0,63,64,62,11,224,0,0,127,0,188,11,224,0,0,253,1,240,11,224,0,2,248,3,255,255,255,0,3,240,3,255,255,255,0,15,224,2,170,175,250,0,31,192,0,0,11,224,0,63,64,0,0,11,224,0,190,0,0,0,11,224, + // 0x00bd ½ + 28,27,189,30,1,0,0,255,0,0,3,244,0,7,255,0,0,11,240,0,47,255,0,0,15,192,0,255,127,0,0,47,128,0,188,63,0,0,127,0,0,16,63,0,0,253,0,0,0,63,0,2,252,0,0,0,63,0,3,240,0,0,0,63,0,11,224,0,0,0,63,0,31,192,0,0,0,63,0,63,64,106,64,0,63,0,127,11,255,244,0,63,0,253,63,255,252,0,63,2,248,31,65,254,0,63,3,240,4,0,190,0,63,15,208,0,0,190,0,0,31,192,0,0,190,0,0,63,64,0,1,252,0,0,190,0,0,3,244,0,0,252,0,0,15,224,0,3,248,0,0,63,128,0,7,240,0,0,254,0,0,15,208,0,3,248,0,0,47,128,0,15,224,0,0,63,0,0,63,255,254,0,254,0,0,63,255,255,1,252,0,0,63,255,255, + // 0x00be ¾ + 29,28,224,30,1,0,0,85,0,0,0,0,0,0,31,255,208,0,0,47,192,0,255,255,244,0,0,63,0,0,125,3,252,0,0,254,0,0,0,0,252,0,1,252,0,0,0,0,252,0,3,244,0,0,0,2,248,0,11,240,0,0,5,95,240,0,15,192,0,0,11,255,128,0,47,128,0,0,11,255,240,0,127,0,0,0,0,2,252,0,253,0,0,0,0,0,253,2,252,0,84,0,0,0,189,3,240,3,248,0,0,0,253,11,224,15,248,0,228,6,252,31,192,47,248,0,255,255,244,63,64,63,248,0,191,255,208,127,0,250,248,0,1,84,0,253,2,242,248,0,0,0,2,248,7,210,248,0,0,0,7,240,15,130,248,0,0,0,15,208,47,2,248,0,0,0,31,192,125,2,248,0,0,0,63,64,255,255,255,192,0,0,190,0,255,255,255,192,0,0,252,0,170,171,254,128,0,3,248,0,0,2,248,0,0,7,240,0,0,2,248,0,0,15,208,0,0,2,248,0, + // 0x00bf ¿ + 15,29,116,17,1,248,0,1,160,0,0,7,252,0,0,11,253,0,0,11,253,0,0,7,252,0,0,1,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,248,0,0,2,248,0,0,3,248,0,0,11,244,0,0,31,240,0,0,191,192,0,2,255,64,0,15,252,0,0,47,240,0,0,127,192,0,0,191,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,20,127,228,6,252,63,255,255,252,15,255,255,252,1,255,255,128,0,1,64,0, + // 0x00c0 À + 25,36,252,25,0,0,0,3,255,0,0,0,0,0,0,255,128,0,0,0,0,0,63,192,0,0,0,0,0,15,240,0,0,0,0,0,3,248,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c1 Á + 25,36,252,25,0,0,0,0,0,31,244,0,0,0,0,0,63,224,0,0,0,0,0,191,128,0,0,0,0,1,254,0,0,0,0,0,3,248,0,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c2  + 25,36,252,25,0,0,0,0,15,252,0,0,0,0,0,63,254,0,0,0,0,0,255,255,64,0,0,0,2,253,47,208,0,0,0,11,244,11,244,0,0,0,31,128,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c3 à + 25,35,245,25,0,0,0,2,254,0,61,0,0,0,11,255,224,189,0,0,0,15,255,255,252,0,0,0,47,2,255,240,0,0,0,46,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c4 Ä + 25,35,245,25,0,0,0,2,240,7,208,0,0,0,3,248,15,240,0,0,0,3,252,15,240,0,0,0,2,244,7,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c5 Å + 25,34,238,25,0,0,0,0,0,64,0,0,0,0,0,31,252,0,0,0,0,0,127,255,0,0,0,0,0,252,15,64,0,0,0,0,244,11,128,0,0,0,0,244,15,128,0,0,0,0,190,127,64,0,0,0,0,63,254,0,0,0,0,0,47,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x00c6 Æ + 32,27,216,34,0,0,0,0,0,191,255,255,255,255,0,0,0,255,255,255,255,255,0,0,2,255,255,255,255,255,0,0,3,253,127,229,85,85,0,0,11,248,63,208,0,0,0,0,15,240,63,208,0,0,0,0,31,224,63,208,0,0,0,0,63,192,63,208,0,0,0,0,127,128,63,208,0,0,0,0,255,0,63,208,0,0,0,1,255,0,63,208,0,0,0,3,253,0,63,255,255,253,0,7,252,0,63,255,255,253,0,11,244,0,63,255,255,253,0,15,240,0,63,234,170,168,0,47,229,85,127,208,0,0,0,63,255,255,255,208,0,0,0,191,255,255,255,208,0,0,0,255,255,255,255,208,0,0,2,254,0,0,63,208,0,0,3,252,0,0,63,208,0,0,7,252,0,0,63,208,0,0,15,244,0,0,63,208,0,0,31,240,0,0,63,234,170,170,63,208,0,0,63,255,255,255,127,192,0,0,63,255,255,255,255,64,0,0,63,255,255,255, + // 0x00c7 Ç + 21,38,228,24,2,246,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,7,244,0,0,0,0,11,192,0,0,0,0,15,248,0,0,0,0,6,254,0,0,0,0,0,127,0,0,0,0,0,63,0,0,0,0,85,255,0,0,0,0,191,253,0,0,0,0,191,224,0,0,0,0,0,0,0,0, + // 0x00c8 È + 16,36,144,21,3,0,2,255,0,0,0,255,128,0,0,63,208,0,0,15,240,0,0,3,252,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x00c9 É + 16,36,144,21,3,0,0,0,15,248,0,0,63,240,0,0,127,192,0,0,255,0,0,3,248,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x00ca Ê + 16,36,144,21,3,0,0,15,252,0,0,63,255,0,0,191,255,128,2,253,47,224,7,244,7,244,15,192,0,253,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x00cb Ë + 16,35,140,21,3,0,1,244,3,208,3,252,15,240,3,252,15,240,2,244,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x00cc Ì + 11,36,108,13,1,0,191,208,0,47,240,0,11,248,0,2,252,0,0,191,0,0,47,128,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x00cd Í + 12,36,108,13,1,0,0,3,255,0,11,252,0,31,240,0,63,192,0,191,0,1,248,0,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x00ce Î + 14,36,144,13,0,0,0,255,208,0,2,255,240,0,7,255,252,0,31,225,254,0,63,128,63,128,253,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,0,47,255,255,0,11,255,249,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,11,255,253,0,47,255,255,0,47,255,255,0, + // 0x00cf Ï + 12,35,105,13,1,0,125,0,248,255,2,253,255,2,253,126,0,252,0,0,0,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x00d0 Ð + 25,27,189,28,1,0,3,255,255,254,64,0,0,3,255,255,255,244,0,0,3,255,255,255,255,0,0,3,253,85,111,255,192,0,3,252,0,1,255,240,0,3,252,0,0,47,248,0,3,252,0,0,11,252,0,3,252,0,0,3,254,0,3,252,0,0,2,255,0,3,252,0,0,0,255,0,3,252,0,0,0,255,64,7,252,0,0,0,255,64,255,255,255,192,0,255,128,255,255,255,192,0,191,128,255,255,255,192,0,255,64,87,253,85,64,0,255,64,3,252,0,0,0,255,64,3,252,0,0,1,255,0,3,252,0,0,2,255,0,3,252,0,0,3,253,0,3,252,0,0,15,252,0,3,252,0,0,63,244,0,3,252,0,2,255,224,0,3,253,86,191,255,128,0,3,255,255,255,253,0,0,3,255,255,255,224,0,0,3,255,255,233,0,0,0, + // 0x00d1 Ñ + 23,35,210,29,3,0,0,7,253,0,124,0,0,15,255,209,248,0,0,63,255,255,240,0,0,61,7,255,224,0,0,124,0,127,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x00d2 Ò + 26,37,3,30,2,255,0,1,255,64,0,0,0,0,0,191,192,0,0,0,0,0,47,224,0,0,0,0,0,11,244,0,0,0,0,0,1,252,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x00d3 Ó + 26,37,3,30,2,255,0,0,0,15,252,0,0,0,0,0,31,240,0,0,0,0,0,63,208,0,0,0,0,0,255,0,0,0,0,0,1,252,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x00d4 Ô + 26,37,3,30,2,255,0,0,11,253,0,0,0,0,0,31,255,0,0,0,0,0,127,255,192,0,0,0,0,255,15,240,0,0,0,3,248,3,252,0,0,0,15,208,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x00d5 Õ + 26,36,252,30,2,255,0,0,191,64,31,0,0,0,3,255,244,63,0,0,0,11,255,255,253,0,0,0,15,129,255,248,0,0,0,15,0,27,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x00d6 Ö + 26,36,252,30,2,255,0,0,248,2,224,0,0,0,2,253,7,244,0,0,0,2,253,7,248,0,0,0,0,252,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x00d7 × + 17,17,85,22,2,5,8,0,0,5,0,47,0,0,31,64,127,192,0,127,192,31,240,1,255,0,7,252,7,252,0,1,255,31,240,0,0,127,255,192,0,0,31,255,0,0,0,11,253,0,0,0,31,255,0,0,0,127,255,192,0,1,255,47,240,0,7,252,11,252,0,31,240,1,255,0,63,192,0,127,192,63,0,0,31,128,8,0,0,6,0, + // 0x00d8 Ø + 26,30,210,30,2,254,0,0,5,165,0,120,0,0,2,255,255,244,254,0,0,47,255,255,255,252,0,0,191,255,255,255,244,0,2,255,228,1,191,244,0,7,255,0,0,63,252,0,15,252,0,0,127,255,0,47,240,0,0,255,255,64,63,224,0,3,252,255,128,63,208,0,11,240,127,192,127,192,0,15,208,63,192,191,192,0,63,128,63,208,191,128,0,191,0,63,208,191,128,1,253,0,63,208,191,128,3,248,0,63,224,191,128,11,240,0,63,208,191,128,31,192,0,63,208,127,192,63,128,0,63,208,127,192,255,0,0,63,192,63,210,252,0,0,191,192,63,227,244,0,0,255,128,31,255,240,0,1,255,0,15,255,192,0,3,254,0,7,255,128,0,31,252,0,2,255,244,1,255,244,0,2,255,255,255,255,208,0,7,255,255,255,255,0,0,15,225,255,255,228,0,0,3,192,1,84,0,0,0,0,0,0,0,0,0,0, + // 0x00d9 Ù + 22,37,222,28,3,255,0,31,248,0,0,0,0,7,252,0,0,0,0,1,255,0,0,0,0,0,127,128,0,0,0,0,31,208,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x00da Ú + 22,37,222,28,3,255,0,0,0,191,192,0,0,0,1,255,64,0,0,0,3,253,0,0,0,0,11,244,0,0,0,0,31,208,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x00db Û + 22,37,222,28,3,255,0,0,191,224,0,0,0,1,255,244,0,0,0,3,255,252,0,0,0,15,240,255,0,0,0,63,192,63,192,0,0,190,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x00dc Ü + 22,36,216,28,3,255,0,11,128,47,0,0,0,31,208,63,128,0,0,47,208,127,128,0,0,15,192,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x00dd Ý + 22,36,216,22,0,0,0,0,0,191,192,0,0,0,1,255,64,0,0,0,3,253,0,0,0,0,11,244,0,0,0,0,31,208,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x00de Þ + 19,27,135,23,3,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,165,0,0,127,255,255,244,0,127,255,255,254,0,127,255,255,255,192,127,128,1,255,208,127,128,0,63,240,127,128,0,31,240,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,15,240,127,128,0,47,240,127,128,0,127,224,127,192,27,255,192,127,255,255,255,0,127,255,255,252,0,127,255,255,144,0,127,213,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x00df ß + 21,30,180,25,3,255,0,111,255,144,0,0,3,255,255,253,0,0,31,255,255,255,128,0,63,249,6,255,208,0,127,192,0,63,224,0,191,128,0,31,240,0,255,64,0,31,224,0,255,0,0,47,208,0,255,0,0,127,192,0,255,0,2,255,0,0,255,0,11,252,0,0,255,0,47,240,0,0,255,0,63,192,0,0,255,0,127,128,0,0,255,0,127,192,0,0,255,0,63,244,0,0,255,0,31,254,0,0,255,0,7,255,192,0,255,0,0,255,240,0,255,0,0,47,252,0,255,0,0,7,255,0,255,0,0,1,255,0,255,0,0,0,255,64,255,0,0,0,255,64,255,0,0,0,255,0,255,3,144,2,255,0,255,3,255,255,253,0,255,3,255,255,248,0,255,0,191,255,208,0,0,0,1,84,0,0, + // 0x00e0 à + 18,30,150,22,1,255,0,127,208,0,0,0,47,240,0,0,0,11,248,0,0,0,2,253,0,0,0,0,191,0,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e1 á + 18,30,150,22,1,255,0,0,3,255,0,0,0,7,252,0,0,0,15,244,0,0,0,63,192,0,0,0,191,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e2 â + 18,30,150,22,1,255,0,2,255,64,0,0,7,255,192,0,0,31,255,240,0,0,63,195,252,0,0,254,0,255,0,3,244,0,47,128,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e3 ã + 18,29,145,22,1,255,0,47,208,7,192,0,255,253,15,192,2,255,255,255,64,3,224,127,254,0,3,192,6,248,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e4 ä + 18,29,145,22,1,255,0,62,0,184,0,0,191,1,253,0,0,191,65,253,0,0,62,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e5 å + 18,33,165,22,1,255,0,0,16,0,0,0,2,255,64,0,0,15,255,224,0,0,15,66,240,0,0,31,0,240,0,0,31,1,240,0,0,15,135,240,0,0,11,255,208,0,0,1,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x00e6 æ + 31,22,176,33,1,255,0,6,254,64,1,191,144,0,2,255,255,244,31,255,252,0,7,255,255,253,127,255,255,0,3,254,87,255,255,149,255,192,1,128,0,127,252,0,47,224,0,0,0,63,244,0,15,240,0,0,0,47,240,0,15,244,0,0,0,47,224,0,11,244,0,0,21,127,229,85,91,248,0,111,255,255,255,255,255,248,3,255,255,255,255,255,255,248,15,254,84,63,250,170,170,164,47,240,0,47,224,0,0,0,63,208,0,63,224,0,0,0,63,192,0,63,240,0,0,0,127,192,0,63,244,0,0,0,63,192,0,255,252,0,0,0,63,224,3,254,255,64,6,224,31,255,255,240,255,255,255,224,11,255,255,192,63,255,255,224,1,255,254,0,7,255,255,64,0,5,64,0,0,21,64,0, + // 0x00e7 ç + 15,31,124,19,2,246,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,2,248,0,0,3,240,0,0,7,253,0,0,1,255,64,0,0,47,128,0,0,31,192,0,21,127,128,0,63,255,0,0,63,248,0,0,0,0,0, + // 0x00e8 è + 18,30,150,22,2,255,1,255,64,0,0,0,191,192,0,0,0,47,224,0,0,0,11,244,0,0,0,1,252,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x00e9 é + 18,30,150,22,2,255,0,0,15,252,0,0,0,31,240,0,0,0,63,208,0,0,0,191,64,0,0,1,252,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x00ea ê + 18,30,150,22,2,255,0,11,254,0,0,0,31,255,64,0,0,63,255,192,0,0,255,15,240,0,3,248,3,252,0,15,208,0,190,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x00eb ë + 18,29,145,22,2,255,0,248,2,224,0,2,253,7,248,0,2,253,7,248,0,0,252,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x00ec ì + 8,29,58,10,0,0,255,128,127,208,31,240,7,248,1,253,0,63,0,0,0,0,1,84,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252,3,252, + // 0x00ed í + 9,29,87,10,3,0,2,255,64,3,253,0,15,244,0,47,208,0,127,64,0,253,0,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x00ee î + 14,29,116,10,254,0,0,127,224,0,0,255,244,0,3,255,253,0,15,240,255,0,47,192,47,192,190,0,7,240,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x00ef ï + 12,28,84,10,255,0,46,0,124,127,128,254,127,128,255,63,0,189,0,0,0,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x00f0 ð + 19,30,150,23,2,255,0,13,0,6,0,0,47,208,63,64,0,63,250,255,128,0,11,255,252,0,0,1,255,224,0,0,11,255,244,0,0,127,251,252,0,0,127,65,255,0,0,40,0,191,128,0,0,0,63,192,0,0,0,31,224,0,47,255,143,240,2,255,255,251,244,11,255,255,255,248,47,249,1,191,252,63,224,0,31,252,127,192,0,11,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,7,248,191,192,0,11,244,63,208,0,31,240,31,248,0,127,208,11,255,255,255,128,2,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f1 ñ + 18,28,140,24,3,0,0,191,64,31,0,3,255,244,63,0,11,255,255,253,0,15,129,255,252,0,15,0,27,224,0,0,0,0,0,0,0,0,0,0,0,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x00f2 ò + 19,30,150,23,2,255,0,191,192,0,0,0,63,224,0,0,0,15,244,0,0,0,3,252,0,0,0,0,255,0,0,0,0,47,64,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f3 ó + 19,30,150,23,2,255,0,0,3,254,0,0,0,15,252,0,0,0,31,240,0,0,0,63,192,0,0,0,254,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f4 ô + 19,30,150,23,2,255,0,3,255,0,0,0,15,255,192,0,0,47,255,224,0,0,127,135,248,0,1,253,1,253,0,3,240,0,63,64,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f5 õ + 19,29,145,23,2,255,0,127,208,11,128,1,255,253,31,64,3,255,255,255,0,7,208,127,253,0,11,128,7,244,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f6 ö + 19,29,145,23,2,255,0,125,0,248,0,0,255,2,252,0,0,255,2,252,0,0,125,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x00f7 ÷ + 18,19,95,22,2,4,0,0,64,0,0,0,3,248,0,0,0,7,252,0,0,0,7,252,0,0,0,3,248,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,3,248,0,0,0,7,252,0,0,0,7,252,0,0,0,3,248,0,0,0,0,80,0,0, + // 0x00f8 ø + 19,23,115,23,2,254,0,6,254,67,208,0,191,255,255,240,3,255,255,255,192,15,255,171,255,192,47,244,0,255,224,63,208,1,255,240,127,192,3,255,248,191,128,15,247,252,255,64,47,195,252,255,0,63,67,252,255,0,254,3,252,255,2,252,3,252,255,7,240,3,252,255,79,224,3,252,191,175,192,7,248,63,255,0,15,244,63,253,0,47,240,15,253,0,191,208,11,255,255,255,128,15,255,255,254,0,63,175,255,224,0,11,0,84,0,0,0,0,0,0,0, + // 0x00f9 ù + 18,30,150,24,3,255,1,255,64,0,0,0,127,192,0,0,0,47,240,0,0,0,11,244,0,0,0,1,252,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x00fa ú + 18,30,150,24,3,255,0,0,15,252,0,0,0,31,244,0,0,0,63,208,0,0,0,191,64,0,0,1,253,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x00fb û + 18,30,150,24,3,255,0,11,253,0,0,0,31,255,0,0,0,63,255,192,0,0,255,15,240,0,3,248,3,252,0,15,208,0,190,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x00fc ü + 18,29,145,24,3,255,0,248,2,224,0,2,253,7,244,0,2,253,7,248,0,0,252,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x00fd ý + 20,39,195,20,0,246,0,0,2,255,0,0,0,7,253,0,0,0,15,244,0,0,0,47,208,0,0,0,127,64,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x00fe þ + 19,39,195,24,3,246,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,191,128,0,255,15,255,248,0,255,127,255,255,0,255,254,155,255,128,255,240,0,127,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,31,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,255,63,255,253,0,255,7,255,240,0,255,0,21,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x00ff ÿ + 20,38,190,20,0,246,0,62,0,188,0,0,191,65,254,0,0,191,65,254,0,0,63,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_ASCII_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_ASCII_28.cpp new file mode 100644 index 000000000000..246f9fb60fb2 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_ASCII_28.cpp @@ -0,0 +1,222 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium ASCII 38pt, capital 'A' height: 28px, width: 100%, range: 0x0020-0x007e +extern const uint8_t NotoSans_Medium_ASCII_28[12031] = { + 130,28,32,0,126,0,37,246, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 6,28,56,10,2,255,63,224,63,224,63,208,63,208,63,208,63,208,63,208,63,192,47,192,47,192,47,192,47,192,47,192,31,192,31,192,31,192,31,192,31,128,15,128,0,0,0,0,0,0,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x0022 " + 12,10,30,16,2,17,127,65,254,127,64,254,127,64,254,127,64,253,63,0,253,63,0,253,63,0,252,63,0,188,63,0,188,42,0,104, + // 0x0023 # + 23,27,162,25,1,0,0,0,253,0,253,0,0,0,252,0,252,0,0,0,252,0,252,0,0,1,248,1,248,0,0,2,248,2,248,0,0,3,244,2,244,0,0,3,240,3,240,0,0,7,240,7,240,0,47,255,255,255,255,248,47,255,255,255,255,248,26,175,250,175,250,164,0,15,192,15,192,0,0,15,192,15,192,0,0,31,192,31,192,0,0,31,128,47,128,0,0,47,64,47,64,0,255,255,255,255,255,192,255,255,255,255,255,208,255,255,255,255,255,208,0,190,0,190,0,0,0,189,0,189,0,0,0,252,0,252,0,0,0,252,0,252,0,0,0,252,1,252,0,0,1,248,1,248,0,0,2,244,2,244,0,0,2,244,3,244,0,0, + // 0x0024 $ + 18,32,160,22,2,253,0,1,240,0,0,0,1,240,0,0,0,1,240,0,0,0,27,250,80,0,2,255,255,255,64,15,255,255,255,192,63,255,255,255,64,127,209,240,27,0,255,65,240,0,0,255,1,240,0,0,255,65,240,0,0,191,193,240,0,0,63,250,240,0,0,47,255,240,0,0,7,255,255,64,0,0,191,255,244,0,0,7,255,255,0,0,1,255,255,192,0,1,240,191,208,0,1,240,47,224,0,1,240,15,240,0,1,240,31,224,144,1,240,63,208,254,81,246,255,192,255,255,255,255,64,255,255,255,252,0,27,255,255,144,0,0,2,240,0,0,0,1,240,0,0,0,1,240,0,0,0,1,240,0,0,0,0,0,0,0, + // 0x0025 % + 30,29,232,32,1,255,0,21,0,0,0,0,0,0,2,255,224,0,0,127,0,0,11,255,248,0,0,253,0,0,31,230,253,0,1,252,0,0,47,128,190,0,3,244,0,0,63,64,127,0,11,240,0,0,63,0,63,0,15,208,0,0,127,0,63,64,47,128,0,0,127,0,63,64,63,0,0,0,127,0,63,64,254,0,0,0,127,0,63,65,252,0,0,0,63,0,63,3,244,6,144,0,63,64,127,7,240,191,252,0,47,128,190,15,210,255,255,0,15,230,253,47,195,248,127,128,11,255,248,63,71,240,31,192,2,255,224,190,11,224,15,208,0,21,0,252,15,208,15,224,0,0,3,248,15,208,11,224,0,0,7,240,15,208,11,224,0,0,15,224,15,208,11,224,0,0,31,192,15,208,11,224,0,0,63,64,15,224,15,208,0,0,191,0,11,224,15,208,0,0,253,0,7,240,47,192,0,2,248,0,3,254,191,128,0,3,240,0,0,255,255,0,0,15,224,0,0,127,248,0,0,0,0,0,0,1,64,0, + // 0x0026 & + 26,29,203,28,2,255,0,1,101,0,0,0,0,0,47,255,224,0,0,0,0,255,255,252,0,0,0,3,255,239,255,0,0,0,7,253,1,255,0,0,0,11,244,0,191,64,0,0,11,240,0,127,64,0,0,11,244,0,191,64,0,0,7,248,0,255,0,0,0,3,253,3,254,0,0,0,1,255,31,252,0,0,0,0,191,255,240,0,0,0,0,63,255,128,0,0,0,0,127,253,0,0,0,0,2,255,255,0,0,191,64,15,254,255,192,0,255,0,63,244,63,240,1,254,0,127,208,15,252,3,253,0,255,128,3,255,3,252,0,255,0,0,255,223,244,0,255,0,0,63,255,240,0,255,0,0,15,255,192,0,255,128,0,3,255,128,0,191,208,0,15,255,208,0,127,249,1,191,255,244,0,47,255,255,255,223,253,0,11,255,255,254,3,255,64,0,191,255,224,0,255,208,0,1,80,0,0,0,0, + // 0x0027 ' + 5,10,20,9,2,17,127,64,127,64,127,64,127,64,63,0,63,0,63,0,63,0,63,0,42,0, + // 0x0028 ( + 10,33,99,12,1,250,0,31,208,0,63,128,0,255,0,1,253,0,3,252,0,7,248,0,11,240,0,15,240,0,31,208,0,47,192,0,63,192,0,63,192,0,63,128,0,127,128,0,127,64,0,127,64,0,127,64,0,127,64,0,127,64,0,127,128,0,63,128,0,63,192,0,63,192,0,47,192,0,31,224,0,15,240,0,11,240,0,7,248,0,3,252,0,1,253,0,0,191,0,0,63,128,0,31,208, + // 0x0029 ) + 10,33,99,12,1,250,127,0,0,63,192,0,15,224,0,11,240,0,3,248,0,2,252,0,1,254,0,0,255,0,0,191,0,0,127,64,0,63,128,0,63,192,0,63,192,0,47,192,0,47,208,0,47,208,0,47,208,0,47,208,0,47,208,0,47,192,0,63,192,0,63,192,0,63,128,0,127,128,0,191,0,0,255,0,1,254,0,2,252,0,3,248,0,11,240,0,15,224,0,63,192,0,127,0,0, + // 0x002a * + 19,18,90,21,1,11,0,2,253,0,0,0,2,252,0,0,0,1,252,0,0,0,1,252,0,0,0,0,252,0,0,36,0,252,0,96,63,208,248,111,240,127,255,255,255,240,127,255,255,255,244,5,107,255,149,64,0,7,255,0,0,0,15,239,192,0,0,63,143,224,0,0,191,7,244,0,1,255,3,252,0,3,253,1,254,0,0,124,0,244,0,0,0,0,0,0, + // 0x002b + + 18,19,95,22,2,4,0,1,160,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,3,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0,0,2,244,0,0, + // 0x002c , + 7,10,20,10,1,251,5,80,15,248,15,240,15,240,31,224,47,192,63,192,63,64,63,0,126,0, + // 0x002d - + 10,4,12,12,1,8,191,255,224,191,255,240,191,255,240,106,170,144, + // 0x002e . + 6,6,12,10,2,255,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x002f / + 14,27,108,15,0,0,0,0,15,240,0,0,15,224,0,0,47,208,0,0,63,192,0,0,127,128,0,0,191,0,0,0,255,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,244,0,0,15,240,0,0,31,224,0,0,47,192,0,0,63,192,0,0,127,64,0,0,191,0,0,0,254,0,0,1,253,0,0,3,252,0,0,3,248,0,0,11,240,0,0,15,240,0,0,31,208,0,0,47,192,0,0,63,128,0,0,127,64,0,0, + // 0x0030 0 + 19,29,145,22,1,255,0,1,101,0,0,0,47,255,240,0,0,255,255,253,0,3,255,255,255,64,7,254,0,191,192,15,244,0,63,208,31,240,0,15,240,47,224,0,15,240,63,208,0,11,244,63,192,0,7,248,63,192,0,7,252,63,192,0,3,252,63,192,0,3,252,127,192,0,3,252,127,128,0,3,252,127,192,0,3,252,63,192,0,3,252,63,192,0,3,252,63,192,0,7,252,63,192,0,7,248,47,208,0,11,244,31,224,0,15,240,15,240,0,31,240,11,248,0,63,208,3,254,1,255,192,1,255,255,255,64,0,191,255,253,0,0,27,255,224,0,0,0,20,0,0, + // 0x0031 1 + 11,27,81,22,3,0,0,3,252,0,31,252,0,191,252,2,255,252,15,255,252,127,227,252,191,131,252,45,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252, + // 0x0032 2 + 19,28,140,22,1,0,0,1,101,0,0,0,127,255,244,0,7,255,255,254,0,47,255,255,255,128,47,244,1,255,192,11,128,0,63,224,1,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,31,240,0,0,0,47,224,0,0,0,63,192,0,0,0,191,128,0,0,1,255,0,0,0,3,253,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,128,0,0,3,254,0,0,0,15,248,0,0,0,63,250,170,170,168,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252, + // 0x0033 3 + 19,29,145,22,1,255,0,1,85,0,0,1,191,255,244,0,15,255,255,255,0,63,255,255,255,192,31,224,0,191,208,10,0,0,63,224,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,224,0,0,0,63,192,0,0,1,255,64,0,42,191,253,0,0,63,255,208,0,0,63,255,248,0,0,42,191,255,128,0,0,0,191,224,0,0,0,31,240,0,0,0,15,248,0,0,0,11,248,0,0,0,7,248,0,0,0,11,248,0,0,0,15,244,16,0,0,63,240,126,64,1,255,224,127,255,255,255,192,127,255,255,254,0,11,255,255,224,0,0,5,80,0,0, + // 0x0034 4 + 20,28,140,22,1,0,0,0,0,21,0,0,0,1,255,64,0,0,3,255,64,0,0,11,255,64,0,0,31,255,64,0,0,63,191,64,0,0,191,191,64,0,1,252,191,64,0,3,244,191,64,0,15,240,191,64,0,31,192,191,64,0,63,64,191,64,0,254,0,191,64,2,252,0,191,64,7,244,0,191,64,15,224,0,191,64,47,192,0,191,64,127,64,0,191,64,255,85,85,255,149,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64, + // 0x0035 5 + 18,28,140,22,2,255,15,255,255,255,0,31,255,255,255,0,31,255,255,255,0,31,229,85,85,0,31,208,0,0,0,47,192,0,0,0,47,192,0,0,0,47,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,235,249,0,0,63,255,255,240,0,63,255,255,253,0,31,234,175,255,64,0,0,1,255,192,0,0,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,224,0,0,0,31,224,0,0,0,47,208,0,0,0,63,192,64,0,0,255,192,254,64,27,255,0,255,255,255,253,0,255,255,255,244,0,31,255,255,64,0,0,21,64,0,0, + // 0x0036 6 + 18,29,145,22,2,255,0,0,5,85,0,0,2,255,255,0,0,47,255,255,0,0,255,255,255,0,3,255,128,0,0,11,252,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,127,128,0,0,0,191,64,0,0,0,255,6,255,224,0,255,47,255,253,0,255,191,255,255,64,255,249,1,255,192,255,208,0,63,208,255,128,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,191,0,0,15,240,127,128,0,15,240,63,192,0,31,224,47,224,0,63,208,15,253,1,255,192,7,255,255,255,0,1,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x0037 7 + 19,27,135,22,1,0,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252,21,85,85,91,248,0,0,0,15,244,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,191,128,0,0,0,255,0,0,0,2,254,0,0,0,3,252,0,0,0,7,248,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,191,64,0,0,0,255,0,0,0,2,254,0,0,0,3,252,0,0,0,11,248,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,64,0,0, + // 0x0038 8 + 19,29,145,22,1,255,0,1,85,0,0,0,47,255,248,0,1,255,255,255,0,7,255,235,255,192,15,248,0,127,224,31,240,0,15,240,31,224,0,15,240,31,208,0,15,240,31,224,0,15,240,15,240,0,31,224,7,253,0,127,192,2,255,131,255,0,0,191,255,252,0,0,31,255,208,0,0,63,255,244,0,1,255,239,255,0,11,253,1,255,192,31,240,0,63,240,63,208,0,15,244,63,192,0,3,252,63,128,0,3,252,127,128,0,3,252,63,192,0,3,252,63,208,0,11,248,31,248,0,47,240,15,255,255,255,208,2,255,255,255,64,0,111,255,248,0,0,0,84,0,0, + // 0x0039 9 + 19,29,145,22,1,255,0,1,85,0,0,0,47,255,224,0,1,255,255,253,0,7,255,255,255,64,15,253,1,255,192,31,240,0,63,224,63,192,0,15,240,63,192,0,11,244,63,128,0,7,248,127,128,0,3,248,63,128,0,3,252,63,192,0,7,252,63,192,0,15,252,47,240,0,47,252,15,253,1,255,252,7,255,255,247,252,1,255,255,211,248,0,47,254,7,248,0,0,0,7,244,0,0,0,11,240,0,0,0,15,240,0,0,0,47,208,0,0,0,127,192,0,0,1,255,64,0,0,31,254,0,7,255,255,248,0,7,255,255,208,0,7,255,253,0,0,0,85,0,0,0, + // 0x003a : + 6,22,44,10,2,255,31,128,63,224,127,224,127,224,63,208,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,128,63,224,127,224,127,224,63,208,5,0, + // 0x003b ; + 7,26,52,10,1,251,7,224,15,244,31,248,31,248,15,240,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,80,15,244,15,240,31,224,47,208,63,192,63,128,63,0,126,0,189,0, + // 0x003c < + 18,19,95,22,2,4,0,0,0,0,176,0,0,0,11,240,0,0,0,191,240,0,0,11,255,144,0,0,191,248,0,0,11,255,128,0,0,191,248,0,0,11,255,128,0,0,191,244,0,0,0,255,128,0,0,0,255,244,0,0,0,47,255,128,0,0,1,255,249,0,0,0,31,255,208,0,0,0,191,254,0,0,0,11,255,224,0,0,0,127,240,0,0,0,6,240,0,0,0,0,32, + // 0x003d = + 18,11,55,22,2,8,170,170,170,170,144,255,255,255,255,224,255,255,255,255,224,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,224,255,255,255,255,224,255,255,255,255,224, + // 0x003e > + 18,19,95,22,2,4,208,0,0,0,0,253,0,0,0,0,255,208,0,0,0,127,253,0,0,0,7,255,208,0,0,0,127,253,0,0,0,2,255,208,0,0,0,47,253,0,0,0,2,255,208,0,0,0,63,240,0,0,1,255,240,0,0,47,255,64,0,7,255,244,0,0,191,254,0,0,27,255,224,0,0,255,253,0,0,0,255,144,0,0,0,248,0,0,0,0,64,0,0,0,0, + // 0x003f ? + 16,29,116,17,0,255,0,21,84,0,7,255,255,128,127,255,255,240,63,255,255,252,47,64,7,253,4,0,1,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,1,254,0,0,3,252,0,0,31,248,0,0,127,224,0,2,255,128,0,7,253,0,0,15,240,0,0,31,208,0,0,47,192,0,0,47,128,0,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,128,0,0,127,208,0,0,127,224,0,0,127,224,0,0,63,192,0,0,5,0,0, + // 0x0040 @ + 30,31,248,34,2,252,0,0,2,255,255,144,0,0,0,0,127,255,255,253,0,0,0,3,255,254,191,255,192,0,0,31,253,0,0,127,240,0,0,127,208,0,0,7,252,0,1,254,0,0,0,0,255,0,3,248,0,0,0,0,63,64,11,240,0,43,249,64,47,192,15,192,2,255,255,240,15,208,47,128,15,255,255,240,11,224,63,0,63,208,11,240,7,240,127,0,191,64,11,240,3,240,190,0,254,0,11,224,3,240,189,0,252,0,11,224,3,240,253,1,252,0,11,224,3,240,253,1,252,0,15,224,3,240,253,1,252,0,15,224,7,224,253,1,252,0,15,224,11,208,253,0,253,0,47,224,15,192,190,0,191,64,127,240,63,128,127,0,63,255,249,255,255,0,63,0,31,255,224,191,252,0,63,128,1,254,64,31,144,0,31,208,0,0,0,0,0,0,15,240,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,255,208,0,0,108,0,0,0,63,255,166,175,252,0,0,0,7,255,255,255,252,0,0,0,0,111,255,255,144,0,0,0,0,0,21,64,0,0,0, + // 0x0041 A + 25,28,196,25,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0042 B + 20,27,135,25,3,0,127,255,255,228,0,127,255,255,255,128,127,255,255,255,224,127,213,86,255,244,127,128,0,31,252,127,128,0,11,252,127,128,0,3,252,127,128,0,3,252,127,128,0,7,252,127,128,0,15,244,127,128,0,127,240,127,255,255,255,128,127,255,255,248,0,127,255,255,255,64,127,234,170,255,240,127,128,0,31,252,127,128,0,3,253,127,128,0,2,254,127,128,0,1,255,127,128,0,1,255,127,128,0,2,255,127,128,0,3,254,127,128,0,15,252,127,213,86,255,248,127,255,255,255,240,127,255,255,255,64,127,255,255,228,0, + // 0x0043 C + 21,29,174,24,2,255,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0044 D + 23,27,162,28,3,0,127,255,255,228,0,0,127,255,255,255,64,0,127,255,255,255,240,0,127,213,86,255,252,0,127,128,0,31,255,0,127,128,0,2,255,128,127,128,0,0,191,192,127,128,0,0,63,224,127,128,0,0,47,240,127,128,0,0,15,240,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,248,127,128,0,0,11,248,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,31,240,127,128,0,0,47,240,127,128,0,0,63,208,127,128,0,0,255,192,127,128,0,3,255,64,127,128,0,47,254,0,127,213,107,255,248,0,127,255,255,255,208,0,127,255,255,254,0,0,127,255,255,144,0,0, + // 0x0045 E + 16,27,108,21,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0046 F + 16,27,108,20,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0, + // 0x0047 G + 23,29,174,28,2,255,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0, + // 0x0048 H + 22,27,162,28,3,0,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,127,234,170,170,175,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240, + // 0x0049 I + 11,27,81,13,1,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x004a J + 11,35,105,11,253,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,244,0,15,244,0,31,240,64,127,240,255,255,208,255,255,64,255,252,0,21,64,0, + // 0x004b K + 21,27,162,24,3,0,127,128,0,2,255,0,127,128,0,7,253,0,127,128,0,31,244,0,127,128,0,63,224,0,127,128,0,255,128,0,127,128,3,255,0,0,127,128,11,252,0,0,127,128,47,240,0,0,127,128,127,192,0,0,127,129,255,64,0,0,127,131,253,0,0,0,127,143,248,0,0,0,127,255,252,0,0,0,127,255,254,0,0,0,127,255,255,64,0,0,127,240,255,192,0,0,127,192,63,224,0,0,127,128,31,244,0,0,127,128,15,252,0,0,127,128,3,255,0,0,127,128,1,255,64,0,127,128,0,191,192,0,127,128,0,63,240,0,127,128,0,15,248,0,127,128,0,11,253,0,127,128,0,3,255,0,127,128,0,0,255,128, + // 0x004c L + 17,27,135,20,3,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64, + // 0x004d M + 29,27,216,35,3,0,127,248,0,0,0,15,255,64,127,252,0,0,0,15,255,64,127,253,0,0,0,47,255,64,127,255,0,0,0,63,255,64,127,191,0,0,0,127,191,64,127,127,64,0,0,191,191,64,127,63,192,0,0,253,191,64,127,47,192,0,1,252,191,64,127,79,224,0,3,248,191,64,127,79,240,0,3,244,191,64,127,71,244,0,7,240,191,64,127,67,248,0,15,224,191,64,127,66,252,0,15,208,191,64,127,65,253,0,47,192,191,64,127,64,254,0,63,128,191,64,127,64,191,0,127,0,191,64,127,64,127,64,191,0,191,64,127,64,63,192,253,0,191,64,127,64,47,193,252,0,191,64,127,64,15,211,248,0,191,64,127,64,15,243,244,0,191,64,127,64,11,255,240,0,191,64,127,64,3,255,224,0,191,64,127,64,3,255,192,0,191,64,127,64,1,255,192,0,191,64,127,64,0,255,128,0,191,64,127,64,0,255,0,0,191,64, + // 0x004e N + 23,27,162,29,3,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x004f O + 26,29,203,30,2,255,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x0050 P + 19,27,135,23,3,0,127,255,255,144,0,127,255,255,253,0,127,255,255,255,64,127,213,91,255,192,127,128,0,127,224,127,128,0,47,240,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,31,240,127,128,0,63,224,127,128,1,255,192,127,255,255,255,128,127,255,255,253,0,127,255,255,224,0,127,234,169,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0051 Q + 26,35,245,30,2,249,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,244,0,0,0,0,1,95,252,0,0,0,0,0,7,255,0,0,0,0,0,1,255,192,0,0,0,0,0,191,224,0,0,0,0,0,47,248,0,0,0,0,0,15,254,0,0,0,0,0,1,85,0, + // 0x0052 R + 21,27,162,24,3,0,127,255,255,144,0,0,127,255,255,253,0,0,127,255,255,255,128,0,127,213,91,255,208,0,127,128,0,127,240,0,127,128,0,31,240,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,240,0,127,128,0,47,240,0,127,128,0,127,208,0,127,213,91,255,128,0,127,255,255,254,0,0,127,255,255,240,0,0,127,255,255,208,0,0,127,128,31,240,0,0,127,128,11,248,0,0,127,128,3,253,0,0,127,128,2,255,0,0,127,128,0,255,128,0,127,128,0,127,192,0,127,128,0,47,240,0,127,128,0,15,244,0,127,128,0,11,252,0,127,128,0,3,254,0,127,128,0,1,255,64, + // 0x0053 S + 17,29,145,21,2,255,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,21,64,0,0, + // 0x0054 T + 21,27,162,21,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x0055 U + 22,28,168,28,3,255,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x0056 V + 23,27,162,23,0,0,255,64,0,0,3,252,127,192,0,0,7,252,63,192,0,0,15,244,47,208,0,0,15,240,31,240,0,0,31,224,15,240,0,0,63,208,11,244,0,0,63,192,7,252,0,0,191,128,3,252,0,0,255,64,2,254,0,0,255,0,1,255,0,2,254,0,0,255,0,3,253,0,0,191,128,3,252,0,0,63,192,11,248,0,0,63,192,15,240,0,0,47,224,15,240,0,0,15,240,47,224,0,0,15,240,63,192,0,0,7,248,63,192,0,0,3,252,191,64,0,0,3,252,255,0,0,0,1,253,254,0,0,0,0,255,253,0,0,0,0,191,252,0,0,0,0,127,248,0,0,0,0,63,244,0,0,0,0,47,240,0,0, + // 0x0057 W + 36,27,243,36,0,0,191,128,0,1,255,0,0,3,253,127,192,0,2,255,64,0,3,252,63,192,0,3,255,128,0,7,248,63,208,0,7,255,192,0,11,244,31,224,0,11,255,192,0,15,240,15,240,0,15,239,208,0,15,240,15,240,0,15,223,240,0,31,224,11,244,0,31,203,240,0,47,208,7,248,0,47,199,244,0,63,192,3,252,0,63,131,248,0,63,192,3,252,0,127,67,252,0,127,128,2,253,0,191,2,252,0,191,64,1,254,0,255,0,254,0,255,0,0,255,0,254,0,255,0,255,0,0,255,1,253,0,191,1,254,0,0,191,66,252,0,127,66,253,0,0,127,131,248,0,63,131,252,0,0,63,195,244,0,63,195,252,0,0,63,199,240,0,47,199,248,0,0,47,219,240,0,15,219,240,0,0,31,223,224,0,15,235,240,0,0,15,239,208,0,11,239,224,0,0,15,255,192,0,7,255,208,0,0,11,255,192,0,3,255,192,0,0,7,255,64,0,3,255,192,0,0,3,255,0,0,2,255,128,0,0,2,255,0,0,0,255,64,0, + // 0x0058 X + 23,27,162,23,0,0,63,224,0,0,31,240,31,244,0,0,63,208,11,252,0,0,191,128,3,253,0,0,255,0,1,255,0,3,253,0,0,191,128,7,252,0,0,63,208,15,240,0,0,31,240,47,208,0,0,11,248,127,192,0,0,3,252,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,63,244,0,0,0,0,127,244,0,0,0,0,255,252,0,0,0,2,255,254,0,0,0,3,252,255,64,0,0,15,244,127,192,0,0,31,224,63,224,0,0,63,192,15,240,0,0,191,64,11,252,0,1,255,0,3,254,0,3,253,0,1,255,0,11,248,0,0,191,192,31,240,0,0,63,208,63,208,0,0,47,240,191,192,0,0,15,248, + // 0x0059 Y + 22,27,162,22,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x005a Z + 20,27,135,22,1,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x005b [ + 9,33,99,13,3,250,255,255,128,255,255,128,255,255,128,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,254,0,0,255,255,128,255,255,128,255,255,128, + // 0x005c "\" + 14,27,108,15,0,0,127,64,0,0,63,128,0,0,47,192,0,0,31,208,0,0,15,240,0,0,11,240,0,0,3,248,0,0,3,252,0,0,1,253,0,0,0,254,0,0,0,191,0,0,0,127,64,0,0,63,192,0,0,47,192,0,0,15,224,0,0,15,240,0,0,7,244,0,0,3,248,0,0,2,252,0,0,1,253,0,0,0,255,0,0,0,191,0,0,0,63,128,0,0,63,192,0,0,31,208,0,0,15,224,0,0,11,240, + // 0x005d ] + 9,33,99,13,1,250,255,255,128,255,255,128,255,255,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,0,63,128,255,255,128,255,255,128,255,255,128, + // 0x005e ^ + 19,18,90,22,1,10,0,0,16,0,0,0,0,252,0,0,0,2,253,0,0,0,3,255,0,0,0,7,255,64,0,0,15,223,192,0,0,31,203,208,0,0,63,67,240,0,0,127,2,248,0,0,253,0,252,0,0,252,0,190,0,2,248,0,63,0,3,240,0,47,128,11,224,0,15,192,15,192,0,11,224,47,192,0,3,240,63,64,0,2,248,127,0,0,0,252, + // 0x005f _ + 17,3,15,16,0,250,170,170,170,170,64,255,255,255,255,128,255,255,255,255,128, + // 0x0060 ` + 9,6,18,12,1,23,127,224,0,31,240,0,7,252,0,1,254,0,0,127,64,0,31,192, + // 0x0061 a + 18,22,110,22,1,255,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0062 b + 19,30,150,24,3,255,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,174,128,0,255,15,255,248,0,255,127,255,255,0,255,254,155,255,128,255,240,0,191,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,31,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,254,63,255,253,0,253,11,255,224,0,0,0,21,0,0, + // 0x0063 c + 15,22,88,19,2,255,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x0064 d + 19,30,150,24,2,255,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,27,232,11,244,1,255,255,139,244,7,255,255,247,244,15,254,155,255,244,63,244,0,127,244,63,208,0,47,244,191,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,11,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,63,244,47,248,1,255,244,15,255,255,251,244,3,255,255,211,244,0,127,254,3,244,0,1,64,0,0, + // 0x0065 e + 18,22,110,22,2,255,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0066 f + 15,29,116,14,0,0,0,1,255,248,0,15,255,252,0,63,255,248,0,127,228,96,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,1,255,149,64,47,255,255,192,127,255,255,192,42,255,170,128,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0, + // 0x0067 g + 19,31,155,24,2,246,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x0068 h + 18,29,145,24,3,0,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,1,175,144,0,255,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x0069 i + 5,28,56,10,3,0,191,0,255,64,255,64,191,0,4,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x006a j + 10,38,114,10,254,246,0,47,192,0,63,208,0,63,208,0,47,192,0,1,0,0,0,0,0,0,0,0,21,64,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,65,255,192,255,255,64,255,254,0,255,244,0,0,0,0, + // 0x006b k + 18,29,145,21,3,0,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,21,64,255,0,0,255,128,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,255,192,0,255,2,255,0,0,255,11,252,0,0,255,47,240,0,0,255,127,208,0,0,255,255,240,0,0,255,255,252,0,0,255,227,254,0,0,255,129,255,64,0,255,0,191,192,0,255,0,63,240,0,255,0,15,248,0,255,0,7,253,0,255,0,2,255,0,255,0,0,255,192,255,0,0,63,224, + // 0x006c l + 4,29,29,10,3,0,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x006d m + 30,21,168,36,3,0,84,1,190,128,0,111,224,0,254,31,255,248,7,255,254,0,255,127,255,254,47,255,255,128,255,254,155,255,191,166,255,208,255,240,0,255,252,0,63,224,255,192,0,127,240,0,31,240,255,192,0,63,224,0,15,240,255,64,0,63,208,0,15,240,255,64,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240,255,0,0,63,192,0,15,240, + // 0x006e n + 18,21,105,24,3,0,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x006f o + 19,22,110,23,2,255,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x0070 p + 19,31,155,24,3,246,84,1,191,128,0,254,15,255,248,0,255,63,255,255,0,255,254,155,255,192,255,240,0,191,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,47,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,255,63,255,253,0,255,7,255,224,0,255,0,21,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x0071 q + 19,31,155,24,2,246,0,27,232,1,80,1,255,255,131,244,7,255,255,247,244,15,254,155,255,244,63,240,0,127,244,63,208,0,47,244,191,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,11,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,63,244,47,248,1,255,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,64,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,0,0, + // 0x0072 r + 13,21,84,16,3,0,84,0,191,64,253,11,255,64,254,47,255,64,255,127,255,0,255,253,0,0,255,240,0,0,255,192,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0073 s + 15,22,88,18,2,255,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,85,0,0, + // 0x0074 t + 14,26,104,15,0,255,0,62,0,0,0,126,0,0,0,190,0,0,0,254,0,0,2,255,85,64,47,255,255,208,127,255,255,208,43,255,170,128,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,255,0,0,0,255,128,0,0,255,255,224,0,63,255,224,0,11,255,208,0,0,84,0, + // 0x0075 u + 18,22,110,24,3,255,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x0076 v + 20,21,105,20,0,0,85,0,0,0,85,191,128,0,2,254,127,192,0,3,252,63,208,0,7,252,31,224,0,11,244,15,240,0,15,240,11,244,0,31,224,7,248,0,63,208,3,252,0,63,192,2,253,0,127,128,0,255,0,255,0,0,255,0,255,0,0,127,130,253,0,0,63,195,252,0,0,47,195,248,0,0,31,215,244,0,0,15,235,240,0,0,11,255,224,0,0,3,255,192,0,0,3,255,192,0,0,1,255,64,0, + // 0x0077 w + 30,21,168,31,0,0,106,64,0,26,144,0,6,160,127,192,0,63,240,0,15,240,63,192,0,127,240,0,31,224,47,208,0,255,244,0,47,208,31,224,0,255,248,0,63,192,15,240,1,253,252,0,63,192,15,240,2,248,253,0,127,128,11,244,3,244,254,0,191,64,7,248,3,240,191,0,255,0,3,252,11,240,127,0,254,0,3,252,15,224,63,65,253,0,2,253,15,208,63,130,252,0,1,254,31,192,47,195,252,0,0,255,47,192,15,211,248,0,0,191,63,64,15,231,244,0,0,127,127,0,11,235,240,0,0,63,191,0,7,255,240,0,0,63,254,0,3,255,208,0,0,47,253,0,3,255,192,0,0,31,252,0,2,255,192,0,0,15,248,0,0,255,128,0, + // 0x0078 x + 19,21,105,21,1,0,85,64,0,5,84,127,192,0,31,240,47,240,0,63,208,15,244,0,255,128,7,252,1,255,0,2,255,3,253,0,0,255,75,248,0,0,127,239,240,0,0,47,255,192,0,0,15,255,128,0,0,7,255,0,0,0,15,255,64,0,0,47,255,192,0,0,63,239,240,0,0,255,79,248,0,2,255,3,253,0,7,252,1,255,0,15,244,0,255,128,47,240,0,63,208,127,192,0,31,240,255,64,0,15,252, + // 0x0079 y + 20,31,155,20,0,246,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x007a z + 16,21,84,18,1,0,21,85,85,84,63,255,255,253,63,255,255,253,42,170,171,252,0,0,11,248,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,254,191,255,255,254,191,255,255,254, + // 0x007b { + 13,33,132,15,1,250,0,0,191,64,0,11,255,64,0,47,255,64,0,63,244,0,0,127,192,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,191,64,0,0,255,0,0,27,254,0,0,255,244,0,0,255,128,0,0,255,248,0,0,7,254,0,0,0,255,0,0,0,191,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,192,0,0,63,245,0,0,47,255,64,0,11,255,64,0,0,111,64, + // 0x007c | + 3,38,38,21,9,247,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252, + // 0x007d } + 13,33,132,15,1,250,191,64,0,0,191,244,0,0,191,252,0,0,7,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,191,0,0,0,127,128,0,0,63,245,0,0,11,255,128,0,1,255,128,0,15,255,128,0,63,228,0,0,191,128,0,0,191,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,1,255,0,0,27,254,0,0,191,252,0,0,191,240,0,0,190,64,0,0, + // 0x007e ~ + 18,6,30,22,2,10,31,254,0,0,32,191,255,244,1,240,255,255,255,255,240,244,7,255,255,224,128,0,47,255,64,0,0,0,16,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Cyrillic_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Cyrillic_28.cpp new file mode 100644 index 000000000000..00448f3064ad --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Cyrillic_28.cpp @@ -0,0 +1,322 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Cyrillic 38pt, capital 'A' height: 28px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +extern const uint8_t NotoSans_Medium_Cyrillic_28[10988] = { + 130,28,1,4,145,4,37,246, // unifont_t + // 0x0401 Ё + 16,35,140,21,3,0,1,244,3,208,3,252,15,240,3,252,15,240,2,244,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0402 Ђ + 255, + // 0x0403 Ѓ + 255, + // 0x0404 Є + 22,29,174,25,2,255,0,0,1,105,64,0,0,1,191,255,254,64,0,15,255,255,255,208,0,127,255,255,255,192,1,255,244,0,111,128,3,255,64,0,1,0,15,252,0,0,0,0,31,244,0,0,0,0,63,224,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,234,170,170,144,0,191,255,255,255,208,0,191,255,255,255,208,0,191,234,170,170,144,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,224,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,128,0,191,255,255,255,128,0,31,255,255,255,128,0,1,255,255,254,0,0,0,1,85,0,0, + // 0x0405 Ѕ + 255, + // 0x0406 І + 11,27,81,13,1,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x0407 Ї + 12,35,105,13,1,0,125,0,248,255,2,253,255,2,253,126,0,252,0,0,0,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x0408 Ј + 255, + // 0x0409 Љ + 255, + // 0x040a Њ + 255, + // 0x040b Ћ + 255, + // 0x040c Ќ + 255, + // 0x040d Ѝ + 255, + // 0x040e Ў + 255, + // 0x040f Џ + 255, + // 0x0410 А + 25,28,196,25,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0411 Б + 19,27,135,24,3,0,127,255,255,255,192,127,255,255,255,192,127,255,255,255,192,127,213,85,85,64,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,255,254,144,0,127,255,255,253,0,127,255,255,255,128,127,234,171,255,224,127,128,0,127,240,127,128,0,15,244,127,128,0,11,248,127,128,0,7,248,127,128,0,7,248,127,128,0,11,248,127,128,0,15,244,127,128,0,127,240,127,213,107,255,224,127,255,255,255,128,127,255,255,253,0,127,255,255,144,0, + // 0x0412 В + 20,27,135,25,3,0,127,255,255,228,0,127,255,255,255,128,127,255,255,255,224,127,213,86,255,244,127,128,0,31,252,127,128,0,11,252,127,128,0,3,252,127,128,0,3,252,127,128,0,7,252,127,128,0,15,244,127,128,0,127,240,127,255,255,255,128,127,255,255,248,0,127,255,255,255,64,127,234,170,255,240,127,128,0,31,252,127,128,0,3,253,127,128,0,2,254,127,128,0,1,255,127,128,0,1,255,127,128,0,2,255,127,128,0,3,254,127,128,0,15,252,127,213,86,255,248,127,255,255,255,240,127,255,255,255,64,127,255,255,228,0, + // 0x0413 Г + 17,27,135,20,3,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64,127,213,85,85,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0414 Д + 27,35,245,27,0,248,0,0,63,255,255,252,0,0,0,63,255,255,252,0,0,0,63,255,255,252,0,0,0,63,213,91,252,0,0,0,127,128,7,252,0,0,0,127,64,7,252,0,0,0,191,64,7,252,0,0,0,255,0,7,252,0,0,0,255,0,7,252,0,0,1,254,0,7,252,0,0,2,253,0,7,252,0,0,3,252,0,7,252,0,0,3,252,0,7,252,0,0,7,248,0,7,252,0,0,15,244,0,7,252,0,0,15,240,0,7,252,0,0,47,224,0,7,252,0,0,63,192,0,7,252,0,0,127,192,0,7,252,0,0,255,64,0,7,252,0,0,255,0,0,7,252,0,2,254,0,0,7,252,0,3,252,0,0,7,252,0,111,254,170,170,171,254,160,255,255,255,255,255,255,244,255,255,255,255,255,255,244,255,255,255,255,255,255,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,85,0,0,0,0,5,80, + // 0x0415 Е + 16,27,108,21,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0416 Ж + 33,27,243,33,0,0,63,208,0,3,248,0,0,255,128,31,240,0,3,248,0,2,254,0,11,252,0,3,248,0,7,252,0,2,254,0,3,248,0,15,240,0,0,255,64,3,248,0,63,208,0,0,63,192,3,248,0,191,128,0,0,31,240,3,248,1,255,0,0,0,11,248,3,248,3,252,0,0,0,3,253,3,248,15,244,0,0,0,0,255,3,248,47,224,0,0,0,0,127,195,248,127,192,0,0,0,0,47,227,248,255,0,0,0,0,0,15,251,251,253,0,0,0,0,0,15,255,255,253,0,0,0,0,0,47,247,249,255,0,0,0,0,0,127,195,248,191,192,0,0,0,0,255,67,248,63,224,0,0,0,3,254,3,248,15,244,0,0,0,11,252,3,248,7,252,0,0,0,31,240,3,248,2,255,0,0,0,63,208,3,248,0,255,128,0,0,255,128,3,248,0,127,208,0,2,255,0,3,248,0,47,240,0,7,252,0,3,248,0,15,252,0,15,244,0,3,248,0,3,254,0,63,224,0,3,248,0,1,255,64,191,192,0,3,248,0,0,191,192, + // 0x0417 З + 20,29,145,23,1,255,0,1,85,64,0,0,191,255,254,0,11,255,255,255,192,63,255,255,255,240,47,228,0,47,252,14,0,0,11,252,0,0,0,3,253,0,0,0,2,253,0,0,0,3,253,0,0,0,3,252,0,0,0,15,248,0,0,0,191,224,0,170,255,255,64,0,255,255,228,0,0,255,255,254,0,0,170,175,255,224,0,0,0,111,248,0,0,0,7,253,0,0,0,2,255,0,0,0,0,255,0,0,0,0,255,0,0,0,1,255,0,0,0,2,255,80,0,0,11,253,126,64,0,127,252,127,255,255,255,240,127,255,255,255,128,11,255,255,248,0,0,5,84,0,0, + // 0x0418 И + 23,27,162,30,3,0,127,64,0,0,15,252,127,64,0,0,47,252,127,64,0,0,63,252,127,64,0,0,255,252,127,64,0,1,255,252,127,64,0,3,254,252,127,64,0,15,249,252,127,64,0,31,241,252,127,64,0,63,209,252,127,64,0,191,129,252,127,64,1,255,2,252,127,64,3,253,2,252,127,64,11,248,2,252,127,64,31,240,2,252,127,64,63,208,2,252,127,64,191,192,2,252,127,65,255,0,2,252,127,67,253,0,2,252,127,75,252,0,2,252,127,79,240,0,2,252,127,63,224,0,2,252,127,191,192,0,2,252,127,255,64,0,2,252,127,254,0,0,2,252,127,252,0,0,2,252,127,244,0,0,2,252,127,224,0,0,2,252, + // 0x0419 Й + 23,36,216,30,3,0,0,42,64,0,106,0,0,63,128,0,255,0,0,63,192,1,254,0,0,31,249,91,252,0,0,11,255,255,244,0,0,1,255,255,128,0,0,0,1,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,64,0,0,15,252,127,64,0,0,47,252,127,64,0,0,63,252,127,64,0,0,255,252,127,64,0,1,255,252,127,64,0,3,254,252,127,64,0,15,249,252,127,64,0,31,241,252,127,64,0,63,209,252,127,64,0,191,129,252,127,64,1,255,2,252,127,64,3,253,2,252,127,64,11,248,2,252,127,64,31,240,2,252,127,64,63,208,2,252,127,64,191,192,2,252,127,65,255,0,2,252,127,67,253,0,2,252,127,75,252,0,2,252,127,79,240,0,2,252,127,63,224,0,2,252,127,191,192,0,2,252,127,255,64,0,2,252,127,254,0,0,2,252,127,252,0,0,2,252,127,244,0,0,2,252,127,224,0,0,2,252, + // 0x041a К + 21,27,162,24,3,0,127,128,0,2,255,0,127,128,0,7,252,0,127,128,0,31,244,0,127,128,0,63,208,0,127,128,0,255,128,0,127,128,3,254,0,0,127,128,11,252,0,0,127,128,47,240,0,0,127,128,127,192,0,0,127,129,255,64,0,0,127,131,253,0,0,0,127,143,248,0,0,0,127,255,240,0,0,0,127,255,224,0,0,0,127,159,248,0,0,0,127,135,253,0,0,0,127,130,255,64,0,0,127,128,191,192,0,0,127,128,63,240,0,0,127,128,15,252,0,0,127,128,3,254,0,0,127,128,1,255,64,0,127,128,0,191,208,0,127,128,0,47,240,0,127,128,0,15,252,0,127,128,0,3,255,0,127,128,0,0,255,128, + // 0x041b Л + 24,28,168,27,0,255,0,0,255,255,255,254,0,0,255,255,255,254,0,0,255,255,255,254,0,1,254,85,86,254,0,1,253,0,1,254,0,2,253,0,1,254,0,2,252,0,1,254,0,3,252,0,1,254,0,3,252,0,1,254,0,3,252,0,1,254,0,3,248,0,1,254,0,7,248,0,1,254,0,11,244,0,1,254,0,11,240,0,1,254,0,15,240,0,1,254,0,15,240,0,1,254,0,15,240,0,1,254,0,31,224,0,1,254,0,47,208,0,1,254,0,63,208,0,1,254,0,63,192,0,1,254,0,127,192,0,1,254,0,255,64,0,1,254,2,255,0,0,1,254,255,254,0,0,1,254,255,252,0,0,1,254,255,224,0,0,1,254,21,0,0,0,0,0, + // 0x041c М + 29,27,216,35,3,0,127,248,0,0,0,15,255,64,127,252,0,0,0,15,255,64,127,253,0,0,0,47,255,64,127,255,0,0,0,63,255,64,127,191,0,0,0,127,191,64,127,127,64,0,0,191,191,64,127,63,192,0,0,253,191,64,127,47,192,0,1,252,191,64,127,79,224,0,3,248,191,64,127,79,240,0,3,244,191,64,127,71,244,0,7,240,191,64,127,67,248,0,15,224,191,64,127,66,252,0,15,208,191,64,127,65,253,0,47,192,191,64,127,64,254,0,63,128,191,64,127,64,191,0,127,0,191,64,127,64,127,64,191,0,191,64,127,64,63,192,253,0,191,64,127,64,47,193,252,0,191,64,127,64,15,211,248,0,191,64,127,64,15,243,244,0,191,64,127,64,11,255,240,0,191,64,127,64,3,255,224,0,191,64,127,64,3,255,192,0,191,64,127,64,1,255,192,0,191,64,127,64,0,255,128,0,191,64,127,64,0,255,0,0,191,64, + // 0x041d Н + 22,27,162,28,3,0,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,127,234,170,170,175,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240, + // 0x041e О + 26,29,203,30,2,255,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x041f П + 22,27,162,28,3,0,127,255,255,255,255,208,127,255,255,255,255,208,127,255,255,255,255,208,127,213,85,85,127,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208,127,128,0,0,63,208, + // 0x0420 Р + 19,27,135,23,3,0,127,255,255,144,0,127,255,255,253,0,127,255,255,255,64,127,213,91,255,192,127,128,0,127,224,127,128,0,47,240,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,31,240,127,128,0,63,224,127,128,1,255,192,127,255,255,255,128,127,255,255,253,0,127,255,255,224,0,127,234,169,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0421 С + 21,29,174,24,2,255,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0422 Т + 21,27,162,21,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x0423 У + 24,28,168,24,0,255,127,192,0,0,1,255,63,224,0,0,3,253,31,240,0,0,7,252,11,248,0,0,11,248,3,252,0,0,15,240,2,254,0,0,47,224,0,255,0,0,63,192,0,191,128,0,127,192,0,63,192,0,255,64,0,47,224,1,255,0,0,15,240,2,253,0,0,11,248,3,252,0,0,3,252,11,248,0,0,2,253,15,240,0,0,0,255,31,224,0,0,0,191,127,192,0,0,0,63,255,192,0,0,0,47,255,64,0,0,0,15,255,0,0,0,0,11,253,0,0,0,0,15,252,0,0,0,0,31,244,0,0,0,0,127,240,0,0,30,86,255,208,0,0,31,255,255,64,0,0,31,255,253,0,0,0,31,255,224,0,0,0,0,84,0,0,0,0, + // 0x0424 Ф + 28,29,203,31,2,255,0,0,0,169,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,6,255,255,254,64,0,0,191,255,255,255,248,0,3,255,255,255,255,255,64,15,255,150,254,91,255,192,47,248,1,254,0,127,240,63,208,1,254,0,15,244,191,128,1,254,0,11,252,255,64,1,254,0,3,252,255,0,1,254,0,3,252,255,0,1,254,0,3,253,255,0,1,254,0,3,253,255,0,1,254,0,3,252,255,64,1,254,0,3,252,191,128,1,254,0,11,248,63,208,1,254,0,31,244,47,248,1,254,0,127,240,15,255,145,254,27,255,192,3,255,255,255,255,255,0,0,127,255,255,255,248,0,0,6,255,255,254,64,0,0,0,2,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,0,84,0,0,0, + // 0x0425 Х + 23,27,162,23,0,0,63,224,0,0,31,240,31,244,0,0,63,208,11,252,0,0,191,128,3,253,0,0,255,0,1,255,0,3,253,0,0,191,128,7,252,0,0,63,208,15,240,0,0,31,240,47,208,0,0,11,248,127,192,0,0,3,252,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,63,244,0,0,0,0,127,244,0,0,0,0,255,252,0,0,0,2,255,254,0,0,0,3,252,255,64,0,0,15,244,127,192,0,0,31,224,63,224,0,0,63,192,15,240,0,0,191,64,11,252,0,1,255,0,3,254,0,3,253,0,1,255,0,11,248,0,0,191,192,31,240,0,0,63,208,63,208,0,0,47,240,191,192,0,0,15,248, + // 0x0426 Ц + 25,35,245,29,3,248,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,128,0,0,63,208,0,127,234,170,170,191,229,64,127,255,255,255,255,255,192,127,255,255,255,255,255,192,127,255,255,255,255,255,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,21,64, + // 0x0427 Ч + 22,27,162,27,2,0,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,127,192,0,0,63,208,63,192,0,0,63,208,63,208,0,0,63,208,63,244,0,7,255,208,31,255,255,255,255,208,11,255,255,255,255,208,1,255,255,254,127,208,0,26,170,64,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208, + // 0x0428 Ш + 33,27,243,40,3,0,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,128,0,3,252,0,0,63,192,127,234,170,171,254,170,170,191,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192, + // 0x0429 Щ + 37,35,94,40,3,248,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,128,0,7,252,0,0,63,192,0,127,234,170,171,254,170,170,191,213,0,127,255,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,21,0, + // 0x042a Ъ + 25,27,189,27,0,0,255,255,252,0,0,0,0,255,255,252,0,0,0,0,255,255,252,0,0,0,0,85,91,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,7,255,255,233,0,0,0,7,255,255,255,208,0,0,7,255,255,255,248,0,0,7,254,170,191,254,0,0,7,252,0,7,255,0,0,7,252,0,0,255,64,0,7,252,0,0,191,128,0,7,252,0,0,127,192,0,7,252,0,0,127,192,0,7,252,0,0,191,128,0,7,252,0,0,255,64,0,7,252,0,7,255,0,0,7,253,86,191,253,0,0,7,255,255,255,248,0,0,7,255,255,255,208,0,0,7,255,255,249,0,0, + // 0x042b Ы + 27,27,189,33,3,0,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,128,0,0,0,11,248,127,255,254,64,0,11,248,127,255,255,252,0,11,248,127,255,255,255,64,11,248,127,234,175,255,192,11,248,127,128,0,127,240,11,248,127,128,0,31,240,11,248,127,128,0,15,244,11,248,127,128,0,11,244,11,248,127,128,0,15,244,11,248,127,128,0,15,244,11,248,127,128,0,31,240,11,248,127,128,0,127,240,11,248,127,213,91,255,192,11,248,127,255,255,255,64,11,248,127,255,255,252,0,11,248,127,255,254,128,0,11,248, + // 0x042c Ь + 20,27,135,24,3,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,255,255,144,0,127,255,255,254,0,127,255,255,255,208,127,234,171,255,240,127,128,0,31,252,127,128,0,7,252,127,128,0,3,253,127,128,0,3,253,127,128,0,3,253,127,128,0,3,253,127,128,0,7,252,127,128,0,47,248,127,213,90,255,240,127,255,255,255,208,127,255,255,255,0,127,255,255,160,0, + // 0x042d Э + 21,29,174,24,1,255,0,21,84,0,0,0,27,255,255,224,0,0,191,255,255,254,0,0,63,255,255,255,192,0,63,144,6,255,240,0,4,0,0,47,252,0,0,0,0,11,253,0,0,0,0,3,255,0,0,0,0,0,255,0,0,0,0,0,255,128,0,0,0,0,191,128,0,0,0,0,127,192,0,255,255,255,255,192,0,255,255,255,255,192,0,255,255,255,255,192,0,170,170,170,255,192,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,11,252,0,0,0,0,63,248,0,126,80,27,255,240,0,127,255,255,255,192,0,127,255,255,253,0,0,47,255,255,208,0,0,0,21,80,0,0,0, + // 0x042e Ю + 35,29,5,40,3,255,0,0,0,0,0,90,80,0,0,127,128,0,0,47,255,255,64,0,127,128,0,1,255,255,255,240,0,127,128,0,11,255,255,255,252,0,127,128,0,31,254,64,31,255,0,127,128,0,63,240,0,1,255,128,127,128,0,191,192,0,0,127,192,127,128,0,255,128,0,0,63,224,127,128,1,255,0,0,0,31,240,127,128,2,254,0,0,0,15,244,127,128,3,253,0,0,0,15,248,127,128,3,252,0,0,0,11,248,127,255,255,252,0,0,0,11,252,127,255,255,252,0,0,0,7,252,127,255,255,252,0,0,0,7,252,127,234,171,252,0,0,0,7,252,127,128,3,252,0,0,0,11,248,127,128,3,253,0,0,0,11,248,127,128,3,253,0,0,0,15,244,127,128,2,254,0,0,0,15,240,127,128,1,255,0,0,0,31,240,127,128,0,255,128,0,0,63,224,127,128,0,191,208,0,0,191,192,127,128,0,63,244,0,2,255,128,127,128,0,31,255,64,111,255,0,127,128,0,7,255,255,255,252,0,127,128,0,0,255,255,255,224,0,127,128,0,0,27,255,254,0,0,0,0,0,0,0,21,64,0,0, + // 0x042f Я + 20,27,135,25,1,0,0,2,255,255,255,0,63,255,255,255,1,255,255,255,255,3,255,229,85,255,11,253,0,0,255,15,248,0,0,255,15,240,0,0,255,15,240,0,0,255,15,240,0,0,255,15,244,0,0,255,11,252,0,0,255,7,254,0,0,255,2,255,233,85,255,0,191,255,255,255,0,31,255,255,255,0,3,255,255,255,0,11,248,0,255,0,31,240,0,255,0,63,208,0,255,0,191,192,0,255,1,255,64,0,255,3,254,0,0,255,11,252,0,0,255,15,244,0,0,255,63,240,0,0,255,191,192,0,0,255,255,128,0,0,255, + // 0x0430 а + 18,22,110,22,1,255,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0431 б + 19,30,150,23,2,255,0,0,0,22,244,0,0,111,255,248,0,11,255,255,248,0,127,255,255,228,1,255,254,80,0,7,255,64,0,0,15,248,0,0,0,31,240,0,0,0,63,192,0,0,0,63,192,0,0,0,127,129,191,228,0,191,75,255,255,0,191,127,255,255,192,255,255,65,191,224,255,244,0,31,240,255,208,0,15,248,255,64,0,7,252,255,0,0,7,252,255,64,0,3,252,255,64,0,3,252,191,64,0,3,252,127,128,0,7,252,63,192,0,7,248,63,208,0,15,244,31,240,0,47,240,15,253,0,191,208,3,255,255,255,128,0,255,255,254,0,0,31,255,224,0,0,0,84,0,0, + // 0x0432 в + 18,21,105,23,3,0,85,85,85,0,0,255,255,255,244,0,255,255,255,255,0,255,170,175,255,128,255,0,0,191,192,255,0,0,63,192,255,0,0,63,192,255,0,0,127,192,255,64,22,255,0,255,255,255,248,0,255,255,255,228,0,255,255,255,255,0,255,0,0,191,192,255,0,0,47,224,255,0,0,31,224,255,0,0,31,224,255,0,0,63,224,255,0,1,255,192,255,255,255,255,128,255,255,255,253,0,255,255,255,144,0, + // 0x0433 г + 13,21,84,17,3,0,85,85,85,64,255,255,255,192,255,255,255,192,255,255,255,192,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0434 д + 23,29,174,23,0,248,0,1,85,85,84,0,0,2,255,255,253,0,0,2,255,255,253,0,0,3,254,171,253,0,0,3,252,2,253,0,0,3,248,2,253,0,0,3,248,2,253,0,0,7,244,2,253,0,0,11,240,2,253,0,0,15,240,2,253,0,0,15,224,2,253,0,0,47,208,2,253,0,0,63,192,2,253,0,0,127,128,2,253,0,0,255,64,2,253,0,1,255,0,2,253,0,3,253,0,2,253,0,11,252,0,2,253,0,127,255,255,255,255,244,127,255,255,255,255,244,127,255,255,255,255,244,127,64,0,0,7,244,127,64,0,0,7,244,127,64,0,0,7,244,127,64,0,0,7,244,127,64,0,0,7,244,127,64,0,0,7,244,127,64,0,0,7,244,0,0,0,0,0,0, + // 0x0435 е + 18,22,110,22,2,255,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0436 ж + 30,21,168,30,0,0,21,64,0,21,64,0,21,64,31,240,0,63,192,0,255,64,11,248,0,63,192,3,253,0,3,253,0,63,192,11,248,0,0,255,64,63,192,31,240,0,0,63,192,63,192,63,192,0,0,31,240,63,192,255,0,0,0,7,248,63,195,253,0,0,0,2,253,63,203,244,0,0,0,0,255,127,223,224,0,0,0,0,127,255,255,192,0,0,0,0,255,127,223,240,0,0,0,3,253,63,203,248,0,0,0,11,248,63,195,253,0,0,0,31,240,63,192,255,64,0,0,127,192,63,192,63,192,0,0,255,0,63,192,31,240,0,3,253,0,63,192,11,252,0,15,248,0,63,192,2,254,0,47,224,0,63,192,0,255,128,191,192,0,63,192,0,63,208, + // 0x0437 з + 17,22,110,19,1,255,1,175,249,0,0,63,255,255,224,0,63,255,255,252,0,47,229,91,254,0,4,0,0,255,0,0,0,0,191,0,0,0,0,191,0,0,0,1,254,0,0,0,91,252,0,0,191,255,224,0,0,191,255,128,0,0,191,255,248,0,0,0,7,255,0,0,0,0,255,64,0,0,0,127,128,0,0,0,127,128,0,0,0,191,128,185,0,6,255,0,191,255,255,254,0,191,255,255,248,0,47,255,255,128,0,0,21,80,0,0, + // 0x0438 и + 19,21,105,25,3,0,85,0,0,5,84,255,0,0,31,252,255,0,0,63,252,255,0,0,191,252,255,0,1,255,252,255,0,3,254,252,255,0,11,246,252,255,0,31,226,252,255,0,63,194,252,255,0,191,66,252,255,0,255,2,252,255,3,252,2,252,255,11,248,2,252,255,15,240,2,252,255,63,208,2,252,255,127,128,2,252,255,255,0,2,252,255,253,0,2,252,255,248,0,2,252,255,240,0,2,252,255,208,0,2,252, + // 0x0439 й + 19,29,145,25,3,0,11,240,0,15,224,7,244,0,31,208,3,252,0,127,192,2,255,171,255,64,0,191,255,253,0,0,11,255,144,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,84,255,0,0,31,252,255,0,0,63,252,255,0,0,191,252,255,0,1,255,252,255,0,3,254,252,255,0,11,246,252,255,0,31,226,252,255,0,63,194,252,255,0,191,66,252,255,0,255,2,252,255,3,252,2,252,255,11,248,2,252,255,15,240,2,252,255,63,208,2,252,255,127,128,2,252,255,255,0,2,252,255,253,0,2,252,255,248,0,2,252,255,240,0,2,252,255,208,0,2,252, + // 0x043a к + 18,21,105,21,3,0,85,0,0,85,64,255,0,0,255,0,255,0,3,253,0,255,0,15,244,0,255,0,47,224,0,255,0,191,128,0,255,1,255,0,0,255,7,252,0,0,255,15,240,0,0,255,127,208,0,0,255,255,128,0,0,255,127,224,0,0,255,15,244,0,0,255,7,253,0,0,255,1,255,0,0,255,0,191,192,0,255,0,47,240,0,255,0,15,248,0,255,0,3,254,0,255,0,0,255,64,255,0,0,127,208, + // 0x043b л + 20,22,110,23,0,255,0,5,85,85,85,0,15,255,255,254,0,15,255,255,254,0,15,255,255,254,0,15,224,2,254,0,15,224,2,254,0,15,208,2,254,0,31,208,2,254,0,31,208,2,254,0,47,192,2,254,0,63,192,2,254,0,63,192,2,254,0,63,128,2,254,0,127,64,2,254,0,191,0,2,254,0,255,0,2,254,2,254,0,2,254,7,253,0,2,254,255,252,0,2,254,255,240,0,2,254,255,192,0,2,254,4,0,0,0,0, + // 0x043c м + 24,21,126,29,3,0,85,80,0,0,5,84,255,240,0,0,47,253,255,244,0,0,63,253,255,252,0,0,127,253,255,252,0,0,191,253,254,254,0,0,254,253,255,191,0,1,253,253,255,63,64,3,249,253,255,63,128,7,241,253,255,31,192,11,241,253,255,15,208,15,209,253,255,11,240,31,193,253,255,3,244,63,129,253,255,3,248,63,65,253,255,1,252,191,1,253,255,0,253,253,1,253,255,0,191,252,1,253,255,0,127,248,1,253,255,0,63,244,1,253,255,0,47,240,1,253,255,0,15,208,1,253, + // 0x043d н + 19,21,105,24,3,0,85,0,0,5,80,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,64,0,11,244,255,255,255,255,244,255,255,255,255,244,255,255,255,255,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244,255,0,0,11,244, + // 0x043e о + 19,22,110,23,2,255,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x043f п + 18,21,105,24,3,0,85,85,85,85,80,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x0440 р + 19,31,155,24,3,246,84,1,191,128,0,254,15,255,248,0,255,63,255,255,0,255,254,155,255,192,255,240,0,191,208,255,192,0,47,240,255,128,0,15,240,255,64,0,15,244,255,64,0,11,244,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,64,0,11,244,255,64,0,15,244,255,128,0,15,240,255,192,0,47,240,255,224,0,63,224,255,248,1,255,192,255,255,255,255,64,255,63,255,253,0,255,7,255,224,0,255,0,21,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x0441 с + 15,22,88,19,2,255,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x0442 т + 17,21,105,19,1,0,85,85,85,85,64,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0,0,11,244,0,0, + // 0x0443 у + 20,31,155,20,0,246,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x0444 ф + 25,39,17,29,2,246,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,111,249,64,0,0,0,47,255,255,248,0,0,1,255,255,255,255,128,0,7,255,239,251,255,224,0,15,253,11,240,47,248,0,63,240,11,240,7,253,0,127,192,11,240,2,255,0,191,128,11,240,0,255,0,255,64,11,240,0,255,64,255,0,11,240,0,191,64,255,0,11,240,0,191,128,255,0,11,240,0,191,128,255,64,11,240,0,191,64,255,64,11,240,0,255,0,127,192,11,240,1,255,0,63,208,11,240,3,254,0,31,244,11,240,15,252,0,11,255,75,240,191,244,0,2,255,255,255,255,208,0,0,127,255,255,255,0,0,0,7,255,255,228,0,0,0,0,11,244,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,0,0, + // 0x0445 х + 19,21,105,21,1,0,85,64,0,5,84,127,192,0,31,240,47,240,0,63,208,15,244,0,255,128,7,252,1,255,0,2,255,3,253,0,0,255,75,248,0,0,127,239,240,0,0,47,255,192,0,0,15,255,128,0,0,7,255,0,0,0,15,255,64,0,0,47,255,192,0,0,63,239,240,0,0,255,79,248,0,2,255,3,253,0,7,252,1,255,0,15,244,0,255,128,47,240,0,63,208,127,192,0,31,240,255,64,0,15,252, + // 0x0446 ц + 21,29,174,25,3,248,85,0,0,5,80,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,0,0,15,240,0,255,64,0,15,244,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,0,0, + // 0x0447 ч + 19,21,105,24,2,0,21,64,0,1,84,127,128,0,7,248,127,128,0,7,248,127,128,0,7,248,127,128,0,7,248,127,128,0,7,248,127,128,0,7,248,127,128,0,7,248,127,192,0,7,248,63,192,0,11,248,63,224,1,191,248,47,255,255,255,248,15,255,255,251,248,1,255,254,71,248,0,5,64,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248, + // 0x0448 ш + 29,21,168,35,3,0,85,0,0,85,0,0,21,64,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,64,0,191,128,0,127,128,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,128, + // 0x0449 щ + 32,29,232,35,3,248,85,0,0,85,0,0,21,64,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,127,128,255,64,0,191,128,0,127,192,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0, + // 0x044a ъ + 25,21,147,27,0,0,21,85,84,0,0,0,0,191,255,252,0,0,0,0,191,255,252,0,0,0,0,127,255,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,253,0,0,0,0,0,3,255,255,255,144,0,0,3,255,255,255,252,0,0,3,255,255,255,255,0,0,3,252,0,2,255,64,0,3,252,0,0,191,128,0,3,252,0,0,127,192,0,3,252,0,0,127,128,0,3,252,0,0,191,128,0,3,252,0,7,255,0,0,3,255,255,255,253,0,0,3,255,255,255,244,0,0,3,255,255,254,64,0, + // 0x044b ы + 24,21,126,30,3,0,85,0,0,0,0,85,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,0,0,0,0,255,255,64,0,0,0,255,255,255,255,208,0,255,255,255,255,252,0,255,255,255,255,255,0,255,255,0,1,255,128,255,255,0,0,127,192,255,255,0,0,63,192,255,255,0,0,63,192,255,255,0,0,191,128,255,255,0,6,255,64,255,255,255,255,254,0,255,255,255,255,248,0,255,255,255,254,128,0,255, + // 0x044c ь + 18,21,105,23,3,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,64,0,0,0,255,255,255,244,0,255,255,255,255,0,255,255,255,255,192,255,0,0,127,224,255,0,0,31,240,255,0,0,15,240,255,0,0,15,240,255,0,0,47,224,255,0,1,191,208,255,255,255,255,128,255,255,255,254,0,255,255,255,160,0, + // 0x044d э + 16,22,88,19,1,255,6,191,144,0,127,255,254,0,63,255,255,208,63,150,255,240,0,0,15,248,0,0,3,252,0,0,2,253,0,0,1,254,0,0,1,255,11,255,255,255,11,255,255,255,11,255,255,255,0,0,0,255,0,0,1,254,0,0,2,254,0,0,3,252,0,0,15,252,228,0,127,240,255,255,255,208,255,255,255,64,127,255,248,0,0,85,0,0, + // 0x044e ю + 27,22,154,32,3,255,85,0,0,2,191,144,0,255,0,0,63,255,252,0,255,0,1,255,255,255,64,255,0,3,255,170,255,192,255,0,11,252,0,63,240,255,0,15,240,0,15,244,255,0,47,224,0,11,248,255,0,63,208,0,3,252,255,64,63,192,0,3,252,255,255,255,192,0,3,252,255,255,255,192,0,3,252,255,255,255,192,0,3,252,255,0,63,192,0,3,252,255,0,63,192,0,3,252,255,0,47,208,0,7,252,255,0,31,240,0,11,248,255,0,15,244,0,31,240,255,0,7,254,0,127,224,255,0,2,255,255,255,192,255,0,0,191,255,254,0,255,0,0,31,255,244,0,0,0,0,0,85,0,0, + // 0x044f я + 18,21,105,22,1,0,0,5,85,85,64,1,255,255,255,208,11,255,255,255,208,47,254,170,191,208,63,224,0,47,208,63,192,0,47,208,127,128,0,47,208,127,128,0,47,208,63,192,0,47,208,47,248,0,47,208,15,255,255,255,208,3,255,255,255,208,0,127,255,255,208,0,127,128,47,208,0,255,0,47,208,3,253,0,47,208,11,252,0,47,208,15,240,0,47,208,63,224,0,47,208,191,192,0,47,208,255,64,0,47,208, + // 0x0450 ѐ + 255, + // 0x0451 ё + 18,29,145,22,2,255,0,248,2,224,0,2,252,7,244,0,2,253,7,244,0,0,248,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0452 ђ + 255, + // 0x0453 ѓ + 255, + // 0x0454 є + 16,22,88,19,2,255,0,6,255,144,0,191,255,254,3,255,255,253,15,255,150,252,47,244,0,4,63,208,0,0,127,192,0,0,191,64,0,0,255,0,0,0,255,255,255,224,255,255,255,224,255,255,255,224,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,224,0,0,31,253,0,29,11,255,255,253,2,255,255,253,0,47,255,248,0,0,85,0, + // 0x0455 ѕ + 255, + // 0x0456 і + 5,28,56,10,3,0,191,0,255,64,255,64,191,0,4,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0, + // 0x0457 ї + 12,28,84,10,255,0,46,0,124,127,128,254,127,128,255,63,0,189,0,0,0,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x0458 ј + 255, + // 0x0459 љ + 255, + // 0x045a њ + 255, + // 0x045b ћ + 255, + // 0x045c ќ + 255, + // 0x045d ѝ + 255, + // 0x045e ў + 255, + // 0x045f џ + 255, + // 0x0460 Ѡ + 255, + // 0x0461 ѡ + 255, + // 0x0462 Ѣ + 255, + // 0x0463 ѣ + 255, + // 0x0464 Ѥ + 255, + // 0x0465 ѥ + 255, + // 0x0466 Ѧ + 255, + // 0x0467 ѧ + 255, + // 0x0468 Ѩ + 255, + // 0x0469 ѩ + 255, + // 0x046a Ѫ + 255, + // 0x046b ѫ + 255, + // 0x046c Ѭ + 255, + // 0x046d ѭ + 255, + // 0x046e Ѯ + 255, + // 0x046f ѯ + 255, + // 0x0470 Ѱ + 255, + // 0x0471 ѱ + 255, + // 0x0472 Ѳ + 255, + // 0x0473 ѳ + 255, + // 0x0474 Ѵ + 255, + // 0x0475 ѵ + 255, + // 0x0476 Ѷ + 255, + // 0x0477 ѷ + 255, + // 0x0478 Ѹ + 255, + // 0x0479 ѹ + 255, + // 0x047a Ѻ + 255, + // 0x047b ѻ + 255, + // 0x047c Ѽ + 255, + // 0x047d ѽ + 255, + // 0x047e Ѿ + 255, + // 0x047f ѿ + 255, + // 0x0480 Ҁ + 255, + // 0x0481 ҁ + 255, + // 0x0482 ҂ + 255, + // 0x0483 ҃ + 255, + // 0x0484 ҄ + 255, + // 0x0485 ҅ + 255, + // 0x0486 ҆ + 255, + // 0x0487 ҇ + 255, + // 0x0488 ҈ + 255, + // 0x0489 ҉ + 255, + // 0x048a Ҋ + 255, + // 0x048b ҋ + 255, + // 0x048c Ҍ + 255, + // 0x048d ҍ + 255, + // 0x048e Ҏ + 255, + // 0x048f ҏ + 255, + // 0x0490 Ґ + 17,33,165,21,3,0,0,0,0,47,128,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,127,255,255,255,192,127,255,255,255,192,127,255,255,255,192,127,213,85,85,64,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x0491 ґ + 14,27,108,17,3,0,0,0,5,64,0,0,31,208,0,0,31,208,0,0,31,208,0,0,31,208,0,0,31,208,85,85,111,208,255,255,255,208,255,255,255,208,255,170,170,144,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Greek_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Greek_28.cpp new file mode 100644 index 000000000000..015ed9f794a6 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Greek_28.cpp @@ -0,0 +1,178 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Greek 38pt, capital 'A' height: 28px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +extern const uint8_t NotoSans_Medium_Greek_28[10071] = { + 130,28,134,3,206,3,37,246, // unifont_t + // 0x0386 Ά + 28,28,196,28,0,0,5,84,0,5,64,0,0,15,248,0,63,240,0,0,31,240,0,127,244,0,0,47,208,0,191,248,0,0,63,128,0,255,252,0,0,127,0,1,253,253,0,0,189,0,3,252,255,0,0,0,0,3,248,191,0,0,0,0,11,244,127,128,0,0,0,15,240,63,192,0,0,0,31,224,47,208,0,0,0,47,208,31,224,0,0,0,63,192,15,240,0,0,0,127,128,11,244,0,0,0,255,0,3,252,0,0,0,255,0,3,252,0,0,2,254,85,86,254,0,0,3,255,255,255,255,0,0,7,255,255,255,255,64,0,11,255,255,255,255,128,0,15,240,0,0,127,192,0,31,224,0,0,63,208,0,63,208,0,0,31,240,0,63,192,0,0,15,240,0,191,128,0,0,11,248,0,255,64,0,0,7,252,1,255,0,0,0,3,253,2,254,0,0,0,2,254, + // 0x0387 · + 255, + // 0x0388 Έ + 26,28,196,28,0,0,5,84,0,0,0,0,0,15,248,7,255,255,255,240,31,240,7,255,255,255,240,47,208,7,255,255,255,240,63,128,7,253,85,85,80,127,0,7,248,0,0,0,189,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,255,255,255,192,0,0,7,255,255,255,192,0,0,7,255,255,255,192,0,0,7,254,170,170,128,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,248,0,0,0,0,0,7,254,170,170,144,0,0,7,255,255,255,240,0,0,7,255,255,255,240,0,0,7,255,255,255,240, + // 0x0389 Ή + 32,28,224,35,0,0,5,84,0,0,0,0,0,0,15,248,7,248,0,0,1,254,31,240,7,248,0,0,1,254,47,208,7,248,0,0,1,254,63,128,7,248,0,0,1,254,127,0,7,248,0,0,1,254,189,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,255,255,255,255,254,0,0,7,255,255,255,255,254,0,0,7,255,255,255,255,254,0,0,7,254,170,170,171,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254,0,0,7,248,0,0,1,254, + // 0x038a Ί + 20,28,140,21,0,0,5,84,0,0,0,15,248,63,255,254,31,240,63,255,254,47,208,27,255,248,63,128,0,191,128,127,0,0,191,64,189,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,64,0,0,0,191,128,0,0,31,255,249,0,0,63,255,254,0,0,63,255,254, + // 0x038b ΋ + 255, + // 0x038c Ό + 33,29,5,35,0,255,5,84,0,0,22,148,0,0,0,15,248,0,11,255,255,224,0,0,31,240,0,191,255,255,253,0,0,47,208,2,255,255,255,255,128,0,63,128,11,255,144,6,255,224,0,127,0,31,252,0,0,63,244,0,189,0,63,240,0,0,15,252,0,0,0,127,192,0,0,7,253,0,0,0,255,128,0,0,3,254,0,0,0,255,64,0,0,1,255,0,0,1,255,0,0,0,0,255,0,0,2,255,0,0,0,0,255,64,0,2,254,0,0,0,0,255,64,0,2,254,0,0,0,0,255,128,0,2,254,0,0,0,0,255,128,0,2,254,0,0,0,0,255,128,0,2,254,0,0,0,0,255,64,0,1,255,0,0,0,0,255,64,0,1,255,0,0,0,0,255,0,0,0,255,64,0,0,2,255,0,0,0,255,192,0,0,3,254,0,0,0,127,208,0,0,7,252,0,0,0,63,240,0,0,15,252,0,0,0,31,253,0,0,127,240,0,0,0,11,255,144,7,255,208,0,0,0,2,255,255,255,255,64,0,0,0,0,127,255,255,252,0,0,0,0,0,7,255,255,144,0,0,0,0,0,0,5,80,0,0,0, + // 0x038d ΍ + 255, + // 0x038e Ύ + 31,28,224,31,0,0,5,84,0,0,0,0,0,0,15,248,63,224,0,0,15,248,31,240,31,240,0,0,31,240,47,208,15,248,0,0,63,224,63,128,3,252,0,0,127,192,127,0,2,254,0,0,255,64,189,0,0,255,0,1,255,0,0,0,0,191,128,3,253,0,0,0,0,63,208,7,252,0,0,0,0,47,240,15,244,0,0,0,0,15,244,31,224,0,0,0,0,7,252,63,192,0,0,0,0,3,253,191,128,0,0,0,0,1,255,255,0,0,0,0,0,0,255,254,0,0,0,0,0,0,127,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0, + // 0x038f Ώ + 32,28,224,33,0,0,5,84,0,0,90,80,0,0,15,248,0,31,255,255,128,0,31,240,1,255,255,255,248,0,47,208,7,255,255,255,255,0,63,128,31,254,64,11,255,192,127,0,63,244,0,0,191,224,189,0,191,208,0,0,47,244,0,0,255,128,0,0,15,248,0,2,255,0,0,0,7,252,0,3,254,0,0,0,3,253,0,3,253,0,0,0,3,254,0,3,252,0,0,0,2,254,0,7,252,0,0,0,2,255,0,7,252,0,0,0,1,255,0,3,252,0,0,0,1,254,0,3,252,0,0,0,2,254,0,3,253,0,0,0,2,253,0,2,254,0,0,0,3,252,0,1,255,0,0,0,7,252,0,0,255,0,0,0,11,244,0,0,127,192,0,0,15,240,0,0,47,224,0,0,63,192,0,0,15,244,0,0,255,64,0,0,2,254,0,3,253,0,0,6,170,255,128,31,250,170,0,11,255,255,192,31,255,255,0,11,255,255,192,31,255,255,0,11,255,255,192,31,255,255, + // 0x0390 ΐ + 255, + // 0x0391 Α + 25,28,196,25,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0392 Β + 20,27,135,25,3,0,127,255,255,228,0,127,255,255,255,128,127,255,255,255,224,127,213,86,255,244,127,128,0,31,252,127,128,0,11,252,127,128,0,3,252,127,128,0,3,252,127,128,0,7,252,127,128,0,15,244,127,128,0,127,240,127,255,255,255,128,127,255,255,248,0,127,255,255,255,64,127,234,170,255,240,127,128,0,31,252,127,128,0,3,253,127,128,0,2,254,127,128,0,1,255,127,128,0,1,255,127,128,0,2,255,127,128,0,3,254,127,128,0,15,252,127,213,86,255,248,127,255,255,255,240,127,255,255,255,64,127,255,255,228,0, + // 0x0393 Γ + 15,27,108,19,3,0,127,255,255,252,127,255,255,252,127,255,255,252,127,213,85,84,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0, + // 0x0394 Δ + 25,28,196,25,0,0,0,0,1,80,0,0,0,0,0,15,248,0,0,0,0,0,47,252,0,0,0,0,0,63,254,0,0,0,0,0,127,255,0,0,0,0,0,191,127,64,0,0,0,0,254,63,128,0,0,0,1,253,47,192,0,0,0,3,252,31,208,0,0,0,3,248,15,240,0,0,0,11,244,11,244,0,0,0,15,240,7,248,0,0,0,31,224,3,252,0,0,0,63,192,2,253,0,0,0,63,192,0,255,0,0,0,191,64,0,255,0,0,0,255,0,0,127,128,0,1,254,0,0,63,192,0,3,253,0,0,47,208,0,3,252,0,0,31,240,0,11,248,0,0,15,240,0,15,240,0,0,11,248,0,31,240,0,0,3,252,0,47,208,0,0,3,253,0,63,234,170,170,171,254,0,191,255,255,255,255,255,0,191,255,255,255,255,255,64,191,255,255,255,255,255,64, + // 0x0395 Ε + 16,27,108,21,3,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0396 Ζ + 20,27,135,22,1,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x0397 Η + 22,27,162,28,3,0,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,127,234,170,170,175,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240, + // 0x0398 Θ + 26,29,203,30,2,255,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,129,170,170,160,63,208,191,130,255,255,244,63,224,191,130,255,255,244,63,224,191,130,255,255,244,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x0399 Ι + 11,27,81,13,1,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x039a Κ + 21,27,162,24,3,0,127,128,0,2,255,0,127,128,0,7,253,0,127,128,0,31,244,0,127,128,0,63,224,0,127,128,0,255,128,0,127,128,3,255,0,0,127,128,11,252,0,0,127,128,47,240,0,0,127,128,127,192,0,0,127,129,255,64,0,0,127,131,253,0,0,0,127,143,248,0,0,0,127,255,252,0,0,0,127,255,254,0,0,0,127,255,255,64,0,0,127,240,255,192,0,0,127,192,63,224,0,0,127,128,31,244,0,0,127,128,15,252,0,0,127,128,3,255,0,0,127,128,1,255,64,0,127,128,0,191,192,0,127,128,0,63,240,0,127,128,0,15,248,0,127,128,0,11,253,0,127,128,0,3,255,0,127,128,0,0,255,128, + // 0x039b Λ + 24,28,168,24,0,0,0,0,5,80,0,0,0,0,31,244,0,0,0,0,63,248,0,0,0,0,63,252,0,0,0,0,191,253,0,0,0,0,254,254,0,0,0,1,253,191,0,0,0,2,252,127,64,0,0,3,252,63,192,0,0,7,244,47,192,0,0,11,240,31,224,0,0,15,240,15,240,0,0,31,208,11,240,0,0,63,192,7,248,0,0,63,192,3,252,0,0,191,64,2,253,0,0,255,0,1,254,0,0,255,0,0,255,0,2,253,0,0,191,64,3,252,0,0,127,128,7,252,0,0,63,192,11,244,0,0,47,208,15,240,0,0,31,240,31,240,0,0,15,240,47,208,0,0,11,248,63,192,0,0,7,252,127,192,0,0,3,252,255,64,0,0,2,254, + // 0x039c Μ + 29,27,216,35,3,0,127,248,0,0,0,15,255,64,127,252,0,0,0,15,255,64,127,253,0,0,0,47,255,64,127,255,0,0,0,63,255,64,127,191,0,0,0,127,191,64,127,127,64,0,0,191,191,64,127,63,192,0,0,253,191,64,127,47,192,0,1,252,191,64,127,79,224,0,3,248,191,64,127,79,240,0,3,244,191,64,127,71,244,0,7,240,191,64,127,67,248,0,15,224,191,64,127,66,252,0,15,208,191,64,127,65,253,0,47,192,191,64,127,64,254,0,63,128,191,64,127,64,191,0,127,0,191,64,127,64,127,64,191,0,191,64,127,64,63,192,253,0,191,64,127,64,47,193,252,0,191,64,127,64,15,211,248,0,191,64,127,64,15,243,244,0,191,64,127,64,11,255,240,0,191,64,127,64,3,255,224,0,191,64,127,64,3,255,192,0,191,64,127,64,1,255,192,0,191,64,127,64,0,255,128,0,191,64,127,64,0,255,0,0,191,64, + // 0x039d Ν + 23,27,162,29,3,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x039e Ξ + 20,27,135,24,2,0,63,255,255,255,248,63,255,255,255,248,63,255,255,255,248,21,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,255,255,255,192,7,255,255,255,192,7,255,255,255,192,6,170,170,170,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x039f Ο + 26,29,203,30,2,255,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x03a0 Π + 22,27,162,28,3,0,127,255,255,255,255,208,127,255,255,255,255,208,127,255,255,255,255,208,127,213,85,85,127,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208,127,128,0,0,47,208, + // 0x03a1 Ρ + 19,27,135,23,3,0,127,255,255,144,0,127,255,255,253,0,127,255,255,255,64,127,213,91,255,192,127,128,0,127,224,127,128,0,47,240,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,15,244,127,128,0,31,240,127,128,0,63,224,127,128,1,255,192,127,255,255,255,128,127,255,255,253,0,127,255,255,224,0,127,234,169,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0, + // 0x03a2 ΢ + 255, + // 0x03a3 Σ + 20,27,135,22,1,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,63,245,85,85,84,15,248,0,0,0,7,254,0,0,0,1,255,64,0,0,0,191,208,0,0,0,47,240,0,0,0,15,252,0,0,0,3,255,0,0,0,0,255,128,0,0,0,127,192,0,0,0,127,192,0,0,0,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,224,0,0,0,127,192,0,0,1,255,0,0,0,3,253,0,0,0,15,244,0,0,0,47,224,0,0,0,191,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x03a4 Τ + 21,27,162,21,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x03a5 Υ + 22,27,162,22,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x03a6 Φ + 29,29,232,33,2,255,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,21,255,149,0,0,0,0,11,255,255,255,248,0,0,0,191,255,255,255,255,128,0,3,255,255,255,255,255,240,0,15,255,64,191,64,127,252,0,63,244,0,191,64,7,254,0,63,192,0,191,64,1,255,0,191,128,0,191,64,0,255,64,255,64,0,191,64,0,191,128,255,0,0,191,64,0,127,128,255,0,0,191,64,0,63,192,255,0,0,191,64,0,127,192,255,0,0,191,64,0,127,128,255,64,0,191,64,0,191,64,191,128,0,191,64,0,255,0,63,208,0,191,64,2,255,0,47,244,0,191,64,11,253,0,15,254,64,191,64,127,248,0,3,255,255,255,255,255,224,0,0,191,255,255,255,255,64,0,0,11,255,255,255,248,0,0,0,0,22,255,165,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x03a7 Χ + 23,27,162,23,0,0,63,224,0,0,31,240,31,244,0,0,63,208,11,252,0,0,191,128,3,253,0,0,255,0,1,255,0,3,253,0,0,191,128,7,252,0,0,63,208,15,240,0,0,31,240,47,208,0,0,11,248,127,192,0,0,3,252,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,63,244,0,0,0,0,127,244,0,0,0,0,255,252,0,0,0,2,255,254,0,0,0,3,252,255,64,0,0,15,244,127,192,0,0,31,224,63,224,0,0,63,192,15,240,0,0,191,64,11,252,0,1,255,0,3,254,0,3,253,0,1,255,0,11,248,0,0,191,192,31,240,0,0,63,208,63,208,0,0,47,240,191,192,0,0,15,248, + // 0x03a8 Ψ + 26,27,189,32,3,0,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,191,64,3,252,0,47,208,127,128,3,252,0,63,192,63,192,3,252,0,63,192,63,208,3,252,0,191,128,47,240,3,252,0,255,64,15,253,3,252,7,255,0,7,255,235,254,191,252,0,1,255,255,255,255,240,0,0,47,255,255,255,128,0,0,1,191,255,228,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0, + // 0x03a9 Ω + 26,28,196,28,1,0,0,0,5,165,0,0,0,0,2,255,255,244,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,3,255,228,1,191,248,0,11,255,0,0,31,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,127,192,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,192,63,192,0,0,0,127,192,47,208,0,0,0,191,64,31,240,0,0,0,255,0,11,244,0,0,2,253,0,3,252,0,0,7,252,0,0,255,0,0,31,240,0,0,127,192,0,127,192,0,106,175,244,2,255,170,144,255,255,248,3,255,255,224,255,255,248,3,255,255,224,255,255,248,3,255,255,224, + // 0x03aa Ϊ + 255, + // 0x03ab Ϋ + 255, + // 0x03ac ά + 21,31,186,24,2,255,0,0,5,84,0,0,0,0,31,244,0,0,0,0,47,224,0,0,0,0,63,192,0,0,0,0,63,64,0,0,0,0,191,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,232,1,80,0,1,255,255,131,244,0,7,255,255,247,244,0,15,254,155,255,244,0,63,240,0,127,244,0,63,208,0,47,244,0,191,192,0,15,244,0,191,64,0,15,244,0,255,64,0,11,244,0,255,0,0,11,244,0,255,0,0,7,244,0,255,0,0,7,244,0,255,0,0,11,244,0,255,64,0,11,244,0,191,128,0,15,244,0,127,192,0,15,244,0,63,224,0,63,244,0,47,248,1,255,252,0,15,255,255,247,255,192,3,255,255,210,255,192,0,191,254,0,255,192,0,1,64,0,5,0, + // 0x03ad έ + 16,31,124,18,1,255,0,0,5,84,0,0,31,240,0,0,47,224,0,0,63,192,0,0,127,64,0,0,190,0,0,0,252,0,0,0,0,0,0,0,0,0,0,27,254,144,1,255,255,254,11,255,255,254,15,254,86,253,31,240,0,8,47,208,0,0,47,208,0,0,31,224,0,0,11,253,0,0,2,255,255,0,0,127,255,0,7,255,255,0,47,244,0,0,63,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,63,244,0,30,31,255,255,254,7,255,255,254,0,191,255,248,0,1,85,0, + // 0x03ae ή + 18,40,200,24,3,246,0,1,85,0,0,0,3,255,0,0,0,3,252,0,0,0,7,248,0,0,0,11,240,0,0,0,15,208,0,0,0,15,128,0,0,0,0,0,0,0,0,0,0,0,0,84,1,191,144,0,254,31,255,252,0,255,127,255,255,0,255,254,155,255,128,255,240,0,191,192,255,208,0,63,208,255,192,0,47,208,255,128,0,47,224,255,64,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,0,0, + // 0x03af ί + 10,31,93,13,3,255,1,85,0,3,253,0,7,252,0,15,240,0,15,224,0,31,192,0,47,64,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,64,0,191,208,0,63,255,208,47,255,208,7,255,208,0,21,0, + // 0x03b0 ΰ + 255, + // 0x03b1 α + 21,22,132,24,2,255,0,27,232,1,80,0,1,255,255,131,244,0,7,255,255,247,244,0,15,254,155,255,244,0,63,240,0,127,244,0,63,208,0,47,244,0,191,192,0,15,244,0,191,64,0,15,244,0,255,64,0,11,244,0,255,0,0,11,244,0,255,0,0,7,244,0,255,0,0,7,244,0,255,0,0,11,244,0,255,64,0,11,244,0,191,128,0,15,244,0,127,192,0,15,244,0,63,224,0,63,244,0,47,248,1,255,252,0,15,255,255,247,255,192,3,255,255,210,255,192,0,191,254,0,255,192,0,1,64,0,5,0, + // 0x03b2 β + 19,39,195,24,3,246,0,31,255,128,0,2,255,255,248,0,11,255,255,254,0,47,253,23,255,64,63,224,0,255,192,127,192,0,63,192,191,64,0,63,192,255,64,0,63,192,255,0,0,63,192,255,0,0,63,192,255,0,0,191,64,255,0,2,254,0,255,6,175,248,0,255,7,255,128,0,255,7,255,248,0,255,1,91,255,64,255,0,0,127,192,255,0,0,47,240,255,0,0,15,240,255,0,0,11,244,255,0,0,11,244,255,0,0,11,248,255,0,0,15,244,255,0,0,15,244,255,64,0,47,240,255,228,1,255,208,255,255,255,255,128,255,255,255,254,0,255,111,255,224,0,255,0,84,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + // 0x03b3 γ + 19,29,145,20,0,248,85,0,0,1,84,191,64,0,3,252,127,192,0,3,252,63,192,0,3,252,47,208,0,3,252,15,240,0,7,248,15,240,0,7,248,11,244,0,11,244,3,252,0,15,240,3,252,0,15,240,1,253,0,31,224,0,255,0,47,208,0,191,0,63,192,0,127,64,127,64,0,63,192,255,0,0,47,194,253,0,0,31,215,252,0,0,15,255,240,0,0,11,255,208,0,0,3,255,128,0,0,3,254,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0,0,2,253,0,0, + // 0x03b4 δ + 20,30,150,23,1,255,0,1,191,249,0,0,15,255,255,208,0,63,255,255,248,0,191,208,31,240,0,255,0,1,224,0,254,0,0,0,0,255,0,0,0,0,255,64,0,0,0,191,224,0,0,0,47,253,0,0,0,11,255,192,0,0,7,255,248,0,0,127,255,255,0,1,255,129,255,192,7,253,0,63,240,15,244,0,15,248,47,224,0,7,252,63,192,0,3,253,63,192,0,2,254,127,128,0,1,254,127,128,0,1,254,127,192,0,2,254,63,192,0,3,253,63,224,0,3,252,47,244,0,15,248,15,254,0,127,240,3,255,255,255,208,0,255,255,255,64,0,31,255,248,0,0,0,84,0,0, + // 0x03b5 ε + 16,22,88,18,1,255,0,27,254,144,1,255,255,254,11,255,255,254,15,254,86,253,31,240,0,8,47,208,0,0,47,208,0,0,31,224,0,0,11,253,0,0,2,255,255,0,0,127,255,0,7,255,255,0,47,244,0,0,63,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,63,244,0,30,31,255,255,254,7,255,255,254,0,191,255,248,0,1,85,0, + // 0x03b6 ζ + 16,37,148,18,2,248,63,255,255,254,63,255,255,254,63,255,255,254,0,0,7,252,0,0,15,240,0,0,63,208,0,0,191,128,0,1,255,0,0,3,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,15,240,0,0,47,224,0,0,63,192,0,0,127,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,64,0,0,255,192,0,0,127,240,0,0,63,254,64,0,15,255,254,0,2,255,255,240,0,47,255,252,0,0,111,253,0,0,3,254,0,0,2,254,0,0,1,253,0,0,2,252,0,0,3,252,0,0,11,244,0,0,10,160, + // 0x03b7 η + 18,31,155,24,3,246,84,1,191,144,0,254,31,255,252,0,255,127,255,255,0,255,254,155,255,128,255,240,0,191,192,255,208,0,63,208,255,192,0,47,208,255,128,0,47,224,255,64,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,31,224,0,0,0,0,0, + // 0x03b8 θ + 19,30,150,23,2,255,0,27,255,64,0,0,191,255,244,0,3,255,255,253,0,11,254,70,255,0,15,240,0,127,192,47,208,0,63,208,63,192,0,31,224,127,128,0,15,240,191,128,0,15,240,191,64,0,11,244,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,255,255,255,255,248,255,255,255,255,252,255,255,255,255,252,255,0,0,7,248,255,0,0,7,248,255,0,0,7,248,191,64,0,11,244,191,64,0,11,244,127,128,0,15,240,63,192,0,15,240,47,208,0,47,208,15,240,0,63,192,11,252,1,255,128,3,255,255,255,0,0,255,255,252,0,0,47,255,208,0,0,0,84,0,0, + // 0x03b9 ι + 10,22,66,13,3,255,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,64,0,191,208,0,63,255,208,47,255,208,7,255,208,0,21,0, + // 0x03ba κ + 18,21,105,21,3,0,85,0,0,21,64,255,64,0,255,128,255,64,3,254,0,255,64,11,252,0,255,64,47,240,0,255,64,127,192,0,255,65,255,64,0,255,67,253,0,0,255,15,248,0,0,255,63,240,0,0,255,191,240,0,0,255,255,252,0,0,255,247,254,0,0,255,192,255,64,0,255,64,127,192,0,255,64,47,240,0,255,64,15,248,0,255,64,7,253,0,255,64,2,255,0,255,64,0,255,192,255,64,0,63,224, + // 0x03bb λ + 21,30,180,20,0,255,191,228,0,0,0,0,255,255,0,0,0,0,255,255,192,0,0,0,81,191,224,0,0,0,0,31,240,0,0,0,0,11,248,0,0,0,0,3,252,0,0,0,0,2,253,0,0,0,0,1,254,0,0,0,0,2,255,0,0,0,0,3,255,64,0,0,0,7,255,192,0,0,0,11,255,192,0,0,0,15,223,224,0,0,0,31,207,240,0,0,0,63,203,244,0,0,0,63,67,248,0,0,0,191,3,252,0,0,0,255,2,253,0,0,1,254,0,255,0,0,2,253,0,255,0,0,3,252,0,127,128,0,7,248,0,63,192,0,15,244,0,63,208,0,15,240,0,31,240,0,31,224,0,15,244,0,63,208,0,11,255,64,63,192,0,7,255,64,191,192,0,2,255,64,0,0,0,0,20,0, + // 0x03bc μ + 21,31,186,24,3,246,85,0,0,5,80,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,31,240,0,255,0,0,47,240,0,255,64,0,63,240,0,255,128,0,63,240,0,255,192,0,191,240,0,255,244,7,255,244,0,255,255,255,239,255,64,255,255,255,199,255,64,255,47,254,2,255,64,255,1,64,0,20,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0, + // 0x03bd ν + 19,21,105,20,0,0,85,0,0,1,84,191,64,0,3,252,127,192,0,3,252,63,192,0,3,252,47,208,0,3,252,15,240,0,7,248,15,240,0,7,248,11,244,0,11,244,3,252,0,15,240,3,252,0,15,240,1,253,0,31,224,0,255,0,47,208,0,255,0,63,192,0,127,64,127,64,0,63,192,255,0,0,47,194,253,0,0,31,215,252,0,0,15,255,240,0,0,11,255,208,0,0,7,255,128,0,0,3,254,0,0, + // 0x03be ξ + 16,37,148,19,2,248,47,255,255,254,63,255,255,255,63,255,255,255,0,111,228,0,2,253,0,0,15,240,0,0,31,208,0,0,47,192,0,0,47,192,0,0,47,208,0,0,31,240,0,0,15,252,0,0,3,255,234,168,0,127,255,252,0,191,255,252,7,255,149,84,31,244,0,0,63,192,0,0,191,128,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,255,192,0,0,127,224,0,0,63,254,64,0,15,255,254,64,2,255,255,240,0,47,255,252,0,0,111,253,0,0,3,254,0,0,1,254,0,0,1,254,0,0,2,253,0,0,3,252,0,0,7,248,0,0,10,160, + // 0x03bf ο + 19,22,110,23,2,255,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x03c0 π + 25,22,154,26,0,255,21,85,85,85,85,85,64,127,255,255,255,255,255,192,127,255,255,255,255,255,192,42,191,234,170,191,234,128,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,192,0,0,63,192,0,63,208,0,0,63,192,0,63,255,64,0,63,192,0,31,255,64,0,63,192,0,7,255,64,0,0,0,0,0,84,0, + // 0x03c1 ρ + 19,31,155,23,2,246,0,6,254,64,0,0,127,255,248,0,2,255,255,255,0,11,255,171,255,192,15,248,0,127,224,47,224,0,31,240,63,192,0,15,244,63,192,0,11,248,127,192,0,7,252,127,128,0,3,252,127,128,0,3,252,127,128,0,3,252,127,128,0,3,252,127,128,0,7,252,127,128,0,11,248,127,128,0,15,244,127,192,0,47,240,127,248,0,255,192,127,255,255,255,64,127,255,255,253,0,127,75,255,224,0,127,128,20,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,0,0,0,0,0, + // 0x03c2 ς + 16,29,116,19,2,248,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,255,64,0,0,191,192,0,0,127,208,0,0,63,244,0,0,31,255,64,0,7,255,254,0,1,255,255,224,0,31,255,252,0,0,111,253,0,0,3,254,0,0,2,254,0,0,1,253,0,0,2,252,0,0,3,252,0,0,11,244,0,0,10,160, + // 0x03c3 σ + 21,22,132,24,2,255,0,0,85,85,85,0,0,47,255,255,255,64,1,255,255,255,255,64,11,255,234,255,170,64,31,252,0,63,128,0,63,224,0,47,208,0,127,192,0,15,240,0,191,128,0,15,240,0,255,64,0,11,244,0,255,0,0,7,248,0,255,0,0,7,248,0,255,0,0,7,252,0,255,0,0,7,248,0,255,64,0,11,248,0,191,128,0,15,244,0,127,192,0,15,240,0,63,224,0,63,224,0,31,248,1,255,192,0,11,255,255,255,64,0,2,255,255,253,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x03c4 τ + 18,22,110,19,0,255,21,85,85,85,80,127,255,255,255,240,127,255,255,255,240,42,175,250,170,160,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,244,0,0,0,11,253,0,0,0,3,255,255,192,0,1,255,255,192,0,0,127,255,128,0,0,1,84,0, + // 0x03c5 υ + 18,22,110,23,3,255,85,0,0,85,0,255,0,0,127,128,255,0,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,47,208,255,0,0,47,208,255,0,0,47,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,47,224,255,0,0,47,208,255,0,0,63,208,255,0,0,63,192,255,64,0,127,192,191,192,0,255,64,63,224,7,255,0,47,255,255,252,0,15,255,255,240,0,1,255,255,64,0,0,5,80,0,0, + // 0x03c6 φ + 25,39,17,29,2,246,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,111,250,64,0,0,0,47,255,255,248,0,0,1,255,255,255,255,128,0,7,255,239,250,255,224,0,15,252,11,240,47,248,0,63,240,11,240,7,253,0,127,192,11,240,2,255,0,191,128,11,240,0,255,0,255,64,11,240,0,255,64,255,0,11,240,0,191,64,255,0,11,240,0,191,128,255,0,11,240,0,191,128,255,64,11,240,0,191,64,191,128,11,240,0,255,64,127,192,11,240,1,255,0,63,208,11,240,3,254,0,31,244,11,240,11,252,0,11,254,11,240,127,244,0,2,255,255,255,255,208,0,0,127,255,255,255,0,0,0,6,255,255,228,0,0,0,0,11,244,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,0,0, + // 0x03c7 χ + 22,31,186,23,1,246,105,0,0,0,21,80,255,208,0,0,63,192,255,240,0,0,191,128,239,248,0,0,255,0,3,252,0,2,253,0,1,254,0,3,252,0,0,255,0,11,240,0,0,127,128,31,224,0,0,63,192,63,192,0,0,31,224,127,64,0,0,15,240,255,0,0,0,7,249,253,0,0,0,3,255,252,0,0,0,2,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,255,192,0,0,0,1,255,224,0,0,0,3,255,240,0,0,0,11,251,248,0,0,0,31,227,252,0,0,0,63,194,254,0,0,0,191,64,255,0,0,0,255,0,191,128,0,3,252,0,63,192,0,7,248,0,47,224,0,15,240,0,15,249,64,47,208,0,11,255,224,127,192,0,3,255,224,255,0,0,0,191,224,0,0,0,0,0,0, + // 0x03c8 ψ + 24,39,234,29,3,246,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,85,0,15,224,1,84,255,0,15,224,3,252,255,0,15,224,3,252,255,0,15,224,2,252,255,0,15,224,2,253,255,0,15,224,1,254,255,0,15,224,0,254,255,0,15,224,0,254,255,0,15,224,0,255,255,0,15,224,0,255,255,0,15,224,0,255,255,0,15,224,0,255,255,0,15,224,0,254,255,0,15,224,1,254,191,0,15,224,2,253,127,128,15,224,7,252,63,208,15,224,31,244,47,249,15,225,191,240,15,255,255,255,255,192,2,255,255,255,254,0,0,47,255,255,224,0,0,0,31,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,0,0,0,0, + // 0x03c9 ω + 27,22,154,31,2,255,0,85,0,0,0,84,0,3,252,0,0,0,255,0,11,244,0,0,0,63,128,15,240,0,0,0,47,192,47,208,0,0,0,15,224,63,192,0,0,0,15,240,63,192,0,0,0,11,244,127,128,0,169,0,7,248,127,64,1,253,0,7,248,191,64,1,253,0,3,248,191,64,1,253,0,3,252,191,64,1,253,0,3,252,191,64,1,253,0,3,248,127,64,1,253,0,7,248,127,128,1,254,0,7,244,63,192,2,255,0,15,240,47,208,3,255,0,31,240,31,244,11,239,192,127,208,11,255,255,207,255,255,192,3,255,255,67,255,255,0,0,191,253,0,255,248,0,0,1,64,0,5,64,0, + // 0x03ca ϊ + 255, + // 0x03cb ϋ + 255, + // 0x03cc ό + 19,31,155,23,2,255,0,0,5,84,0,0,0,15,248,0,0,0,15,240,0,0,0,47,208,0,0,0,63,192,0,0,0,63,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x03cd ύ + 18,31,155,23,3,255,0,0,21,80,0,0,0,127,192,0,0,0,191,128,0,0,0,255,0,0,0,1,253,0,0,0,2,248,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,85,0,255,0,0,127,128,255,0,0,127,192,255,0,0,63,192,255,0,0,63,192,255,0,0,47,208,255,0,0,47,208,255,0,0,47,224,255,0,0,31,224,255,0,0,31,224,255,0,0,31,224,255,0,0,47,224,255,0,0,47,208,255,0,0,63,208,255,0,0,63,192,255,64,0,127,192,191,192,0,255,64,63,224,7,255,0,47,255,255,252,0,15,255,255,240,0,1,255,255,64,0,0,5,80,0,0, + // 0x03ce ώ + 27,31,217,31,2,255,0,0,0,5,84,0,0,0,0,0,15,248,0,0,0,0,0,15,240,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,0,0,0,0,63,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,84,0,3,252,0,0,0,255,0,11,244,0,0,0,63,128,15,240,0,0,0,47,192,47,208,0,0,0,15,224,63,192,0,0,0,15,240,63,192,0,0,0,11,244,127,128,0,169,0,7,248,127,64,1,253,0,7,248,191,64,1,253,0,3,248,191,64,1,253,0,3,252,191,64,1,253,0,3,252,191,64,1,253,0,3,248,127,64,1,253,0,7,248,127,128,1,254,0,7,244,63,192,2,255,0,15,240,47,208,3,255,0,31,240,31,244,11,239,192,127,208,11,255,255,207,255,255,192,3,255,255,67,255,255,0,0,191,253,0,255,248,0,0,1,64,0,5,64,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Katakana_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Katakana_28.cpp new file mode 100644 index 000000000000..b04da12e00d6 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Katakana_28.cpp @@ -0,0 +1,238 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Katakana 38pt, capital 'A' height: 28px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +extern const uint8_t NotoSans_Medium_Katakana_28[12298] = { + 162,28,160,48,104,136,37,246, // unifont_t + // 0x30a0 ゠ + 160,48,18,8,40,38,10,10,127,255,255,255,208,21,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,64,127,255,255,255,208, + // 0x30a1 ァ + 161,48,27,26,182,38,6,251,106,85,85,85,85,86,144,127,255,255,255,255,255,244,127,255,255,255,255,255,252,127,255,255,255,255,255,244,0,0,0,0,0,47,224,0,0,0,0,0,127,192,0,0,10,164,0,255,64,0,0,11,244,3,254,0,0,0,11,244,15,252,0,0,0,11,240,63,240,0,0,0,11,240,255,192,0,0,0,11,240,63,0,0,0,0,15,240,4,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,0,0,31,208,0,0,0,0,0,63,192,0,0,0,0,0,191,128,0,0,0,0,0,255,0,0,0,0,0,3,254,0,0,0,0,0,31,252,0,0,0,0,0,191,240,0,0,0,0,7,255,192,0,0,0,0,2,255,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a2 ア + 162,48,32,31,248,38,4,253,127,170,170,170,170,170,170,224,127,255,255,255,255,255,255,252,127,255,255,255,255,255,255,254,127,255,255,255,255,255,255,252,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,255,192,0,0,0,85,0,2,255,0,0,0,0,255,64,11,253,0,0,0,0,255,64,47,248,0,0,0,0,191,64,191,224,0,0,0,0,191,67,255,192,0,0,0,0,255,71,255,0,0,0,0,0,255,1,248,0,0,0,0,0,255,0,16,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,253,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,240,0,0,0,0,0,0,127,224,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,127,253,0,0,0,0,0,3,255,244,0,0,0,0,0,2,255,192,0,0,0,0,0,0,126,0,0,0,0,0,0,0,16,0,0,0,0,0,0, + // 0x30a3 ィ + 163,48,26,27,189,38,4,252,0,0,0,0,0,2,0,0,0,0,0,0,15,192,0,0,0,0,0,63,240,0,0,0,0,0,255,224,0,0,0,0,7,255,128,0,0,0,0,47,253,0,0,0,0,0,255,244,0,0,0,0,7,255,192,0,0,0,0,63,254,0,0,0,0,2,255,244,0,0,0,0,127,255,224,0,0,0,7,255,255,224,0,0,1,191,255,239,224,0,0,127,255,253,31,224,0,0,63,255,128,31,224,0,0,47,244,0,31,224,0,0,14,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0,0,0,0,31,224,0,0, + // 0x30a4 イ + 164,48,30,31,248,38,3,254,0,0,0,0,0,0,15,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,127,252,0,0,0,0,0,2,255,224,0,0,0,0,0,31,255,64,0,0,0,0,0,191,252,0,0,0,0,0,7,255,224,0,0,0,0,0,127,255,64,0,0,0,0,7,255,255,0,0,0,0,0,191,255,255,0,0,0,0,27,255,254,255,0,0,0,6,255,255,208,255,0,0,0,191,255,253,0,255,0,0,0,191,255,144,0,255,0,0,0,63,244,0,0,255,0,0,0,46,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0, + // 0x30a5 ゥ + 165,48,25,29,203,38,7,251,0,0,5,80,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,0,0,15,224,0,0,0,149,85,95,245,85,104,0,255,255,255,255,255,255,128,255,255,255,255,255,255,192,255,255,255,255,255,255,128,254,0,0,0,0,255,64,254,0,0,0,0,255,0,254,0,0,0,0,255,0,254,0,0,0,1,254,0,254,0,0,0,3,253,0,254,0,0,0,3,252,0,254,0,0,0,11,252,0,0,0,0,0,15,244,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,1,255,192,0,0,0,0,7,255,0,0,0,0,0,47,253,0,0,0,0,1,255,244,0,0,0,0,47,255,208,0,0,0,27,255,255,0,0,0,0,15,255,244,0,0,0,0,3,255,64,0,0,0,0,1,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a6 ウ + 166,48,29,34,16,38,5,253,0,0,1,170,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,128,255,170,170,170,170,170,255,64,254,0,0,0,0,0,255,0,254,0,0,0,0,1,255,0,254,0,0,0,0,2,255,0,254,0,0,0,0,3,254,0,254,0,0,0,0,3,253,0,254,0,0,0,0,7,252,0,254,0,0,0,0,15,248,0,255,0,0,0,0,15,244,0,169,0,0,0,0,47,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,128,0,0,0,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,191,244,0,0,0,0,0,3,255,224,0,0,0,0,0,47,255,64,0,0,0,0,2,255,253,0,0,0,0,1,191,255,244,0,0,0,0,3,255,255,64,0,0,0,0,1,255,248,0,0,0,0,0,0,191,64,0,0,0,0,0,0,16,0,0,0,0,0, + // 0x30a7 ェ + 167,48,28,22,154,38,5,254,6,149,85,85,85,86,144,7,255,255,255,255,255,224,7,255,255,255,255,255,224,7,255,255,255,255,255,224,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,58,170,170,255,170,170,173,127,255,255,255,255,255,253,127,255,255,255,255,255,253,127,255,255,255,255,255,253,0,0,0,0,0,0,0, + // 0x30a8 エ + 168,48,32,26,208,38,3,0,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,11,255,255,255,255,255,255,240,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x30a9 ォ + 169,48,27,27,189,38,6,252,0,0,0,3,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,0,25,85,85,86,253,85,84,47,255,255,255,255,255,252,47,255,255,255,255,255,252,47,255,255,255,255,255,252,0,0,0,31,252,0,0,0,0,0,63,252,0,0,0,0,0,255,252,0,0,0,0,3,255,252,0,0,0,0,15,249,252,0,0,0,0,127,241,252,0,0,0,1,255,193,252,0,0,0,11,255,1,252,0,0,0,127,248,1,252,0,0,2,255,224,1,253,0,0,47,255,64,1,253,0,0,127,252,0,1,253,0,0,47,224,0,1,253,0,0,15,0,4,2,253,0,0,0,0,11,255,253,0,0,0,0,11,255,252,0,0,0,0,11,255,244,0,0,0,0,0,5,64,0,0, + // 0x30aa オ + 170,48,32,32,0,38,3,254,0,0,0,0,15,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,31,255,255,255,255,255,255,253,31,255,255,255,255,255,255,253,31,255,255,255,255,255,255,253,26,170,170,170,191,254,170,168,0,0,0,0,191,244,0,0,0,0,0,1,255,244,0,0,0,0,0,7,255,244,0,0,0,0,0,15,255,244,0,0,0,0,0,63,231,244,0,0,0,0,0,255,199,244,0,0,0,0,7,255,3,248,0,0,0,0,31,252,3,248,0,0,0,0,191,240,3,248,0,0,0,3,255,192,3,248,0,0,0,31,255,0,3,248,0,0,0,255,248,0,3,248,0,0,11,255,208,0,3,248,0,0,127,255,0,0,3,248,0,0,191,248,0,0,3,248,0,0,63,208,0,0,3,248,0,0,14,0,0,0,7,248,0,0,0,0,0,191,255,248,0,0,0,0,0,191,255,248,0,0,0,0,0,191,255,240,0,0,0,0,0,127,255,128,0,0, + // 0x30ab カ + 171,48,29,33,8,38,4,253,0,0,2,254,0,0,0,0,0,0,2,254,0,0,0,0,0,0,2,254,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,255,128,127,255,255,255,255,255,255,128,106,170,171,254,170,170,191,64,0,0,3,252,0,0,127,64,0,0,7,248,0,0,127,64,0,0,11,244,0,0,127,64,0,0,11,244,0,0,127,64,0,0,15,240,0,0,191,0,0,0,31,240,0,0,191,0,0,0,47,224,0,0,191,0,0,0,63,192,0,0,191,0,0,0,127,192,0,0,255,0,0,0,255,128,0,0,255,0,0,1,255,0,0,0,254,0,0,3,254,0,0,0,254,0,0,11,252,0,0,1,253,0,0,31,248,0,0,2,253,0,0,127,240,0,0,3,252,0,1,255,208,0,0,3,252,0,7,255,64,1,64,15,252,0,47,254,0,2,255,255,244,0,255,248,0,2,255,255,240,0,63,224,0,1,255,255,208,0,11,64,0,0,170,250,0,0,0,0,0,0,0,0,0,0, + // 0x30ac ガ + 172,48,33,35,59,38,3,253,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,252,0,0,0,1,170,0,0,112,190,0,0,0,1,255,0,1,252,63,0,0,0,1,255,0,0,189,31,128,0,0,1,254,0,0,63,15,192,0,0,1,254,0,0,47,69,0,0,0,1,254,0,0,15,64,0,0,0,1,254,0,0,0,0,0,58,170,170,255,170,170,168,0,0,63,255,255,255,255,255,255,128,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,0,0,3,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,7,248,0,0,63,128,0,0,0,11,244,0,0,127,128,0,0,0,15,240,0,0,127,64,0,0,0,31,240,0,0,127,64,0,0,0,47,224,0,0,127,64,0,0,0,63,192,0,0,191,0,0,0,0,127,192,0,0,191,0,0,0,0,255,64,0,0,255,0,0,0,2,255,0,0,0,255,0,0,0,3,254,0,0,0,254,0,0,0,15,252,0,0,0,254,0,0,0,63,244,0,0,1,253,0,0,0,191,224,0,0,3,253,0,0,3,255,192,0,0,7,252,0,0,31,255,0,1,255,255,252,0,0,191,252,0,1,255,255,244,0,0,63,240,0,1,255,255,224,0,0,15,128,0,0,255,255,64,0,0,1,0,0,0,0,0,0,0,0, + // 0x30ad キ + 173,48,30,33,8,38,4,253,0,0,6,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,248,0,0,16,0,0,0,3,252,0,91,248,0,0,0,3,253,191,255,248,0,0,0,107,255,255,255,252,0,106,255,255,255,255,255,232,0,255,255,255,255,254,80,0,0,255,255,255,255,0,0,0,0,191,250,64,255,0,0,0,0,100,0,0,255,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,128,0,0,0,0,0,0,63,192,0,22,224,0,0,0,63,193,111,255,240,0,0,0,63,255,255,255,240,0,1,111,255,255,255,255,240,90,255,255,255,255,255,164,0,255,255,255,255,249,64,0,0,255,255,255,159,240,0,0,0,191,249,64,15,240,0,0,0,100,0,0,11,244,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,254,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,64,0,0,0, + // 0x30ae ギ + 174,48,33,35,59,38,3,253,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,32,252,0,0,0,0,16,0,1,244,127,0,0,0,11,244,0,0,252,47,64,0,0,11,248,0,0,126,15,192,0,0,7,248,0,0,63,10,0,0,0,3,252,0,0,31,64,0,0,0,3,252,0,0,108,0,0,0,0,2,252,5,191,252,0,0,0,0,2,255,255,255,252,0,0,0,22,191,255,255,255,253,0,0,191,255,255,255,255,254,80,0,0,191,255,255,255,229,0,0,0,0,127,255,250,255,0,0,0,0,0,63,164,0,191,64,0,0,0,0,16,0,0,127,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,16,0,0,0,0,63,192,0,111,240,0,0,0,0,47,230,191,255,244,0,0,0,1,127,255,255,255,248,0,0,22,255,255,255,255,255,164,0,191,255,255,255,255,249,64,0,0,191,255,255,255,244,0,0,0,0,127,255,249,75,244,0,0,0,0,63,148,0,7,248,0,0,0,0,16,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,249,0,0,0,0, + // 0x30af ク + 175,48,31,34,16,38,3,253,0,0,0,41,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,64,0,0,0,0,0,3,255,0,0,1,0,0,0,11,255,255,255,255,128,0,0,31,255,255,255,255,244,0,0,63,255,255,255,255,240,0,0,255,213,85,85,127,224,0,2,255,64,0,0,63,208,0,11,254,0,0,0,191,192,0,47,252,0,0,0,255,128,0,191,240,0,0,1,255,64,3,255,192,0,0,2,255,0,31,255,0,0,0,3,253,0,127,248,0,0,0,11,252,0,31,224,0,0,0,31,244,0,3,64,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,63,244,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,47,254,0,0,0,0,0,2,255,248,0,0,0,0,0,31,255,208,0,0,0,0,2,255,255,0,0,0,0,0,127,255,244,0,0,0,0,0,63,255,128,0,0,0,0,0,15,248,0,0,0,0,0,0,2,128,0,0,0,0,0, + // 0x30b0 グ + 176,48,35,36,68,38,2,252,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,5,31,192,0,0,0,56,0,0,63,11,208,0,0,0,127,208,0,47,131,240,0,0,0,191,192,0,15,194,244,0,0,0,255,64,0,7,224,224,0,0,2,255,0,0,3,240,0,0,0,7,253,0,0,5,128,0,0,0,15,255,255,255,255,128,0,0,0,47,255,255,255,255,240,0,0,0,127,255,255,255,255,240,0,0,0,255,213,85,85,191,208,0,0,3,255,0,0,0,191,192,0,0,15,252,0,0,0,255,128,0,0,63,244,0,0,0,255,64,0,0,255,208,0,0,2,255,0,0,7,255,128,0,0,3,253,0,0,47,253,0,0,0,11,252,0,0,191,244,0,0,0,15,248,0,0,47,192,0,0,0,47,240,0,0,6,0,0,0,0,127,208,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,127,253,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,47,255,192,0,0,0,0,0,7,255,254,0,0,0,0,0,0,191,255,240,0,0,0,0,0,0,127,255,64,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,2,64,0,0,0,0,0,0, + // 0x30b1 ケ + 177,48,33,33,41,38,2,253,0,0,47,224,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,15,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,63,224,0,3,252,0,0,0,0,255,192,0,3,252,0,0,0,2,255,64,0,3,252,0,0,0,11,255,0,0,7,252,0,0,0,47,252,0,0,11,248,0,0,0,191,244,0,0,15,244,0,0,0,47,208,0,0,15,240,0,0,0,3,64,0,0,31,240,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,15,255,128,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,1,0,0,0,0,0,0, + // 0x30b2 ゲ + 178,48,35,36,68,38,2,252,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,63,64,0,0,16,0,0,0,46,31,192,0,0,63,208,0,0,63,11,208,0,0,63,208,0,0,31,131,240,0,0,127,192,0,0,15,194,244,0,0,191,128,0,0,7,224,64,0,0,255,64,0,0,3,224,0,0,1,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,255,255,255,255,255,255,64,0,11,255,255,255,255,255,255,64,0,31,255,255,255,255,255,255,64,0,63,255,255,255,255,255,255,64,0,191,192,0,7,248,0,0,0,1,255,128,0,11,248,0,0,0,3,255,0,0,11,244,0,0,0,15,253,0,0,15,244,0,0,0,63,248,0,0,15,240,0,0,0,255,224,0,0,31,240,0,0,0,63,192,0,0,47,224,0,0,0,7,0,0,0,63,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,47,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,0,15,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b3 コ + 179,48,27,28,196,38,6,254,191,255,255,255,255,255,248,191,255,255,255,255,255,248,191,255,255,255,255,255,248,191,255,255,255,255,255,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,0,0,0,0,0,11,248,0,0,0,0,0,11,248,0,0,0,0,0,0,0, + // 0x30b4 ゴ + 180,48,31,36,32,38,5,253,0,0,0,0,0,0,1,0,0,0,0,0,0,4,15,192,0,0,0,0,0,62,15,208,0,0,0,0,0,63,67,240,0,0,0,0,0,31,194,248,0,0,0,0,0,11,208,252,0,0,0,0,0,3,240,64,0,0,0,0,0,2,64,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,255,255,255,255,255,255,248,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,1,84,0, + // 0x30b5 サ + 181,48,33,33,41,38,2,253,0,0,170,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,191,255,255,255,255,255,255,255,192,186,170,255,170,170,175,250,170,192,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,255,0,0,15,224,0,0,0,0,255,0,0,15,224,0,0,0,0,255,0,0,15,224,0,0,0,0,255,0,0,31,224,0,0,0,0,255,0,0,31,208,0,0,0,0,255,0,0,47,208,0,0,0,0,255,0,0,63,192,0,0,0,0,85,0,0,63,192,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,191,255,0,0,0,0,0,0,0,191,248,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,9,0,0,0,0,0, + // 0x30b6 ザ + 182,48,36,34,50,38,1,252,0,0,0,0,0,0,0,1,240,0,0,170,64,0,15,244,177,240,0,0,191,64,0,15,240,244,248,0,0,191,64,0,15,240,248,124,0,0,191,64,0,15,240,124,61,0,0,191,0,0,11,240,61,40,0,0,191,0,0,11,240,45,0,0,0,191,0,0,11,240,0,0,0,0,191,0,0,11,240,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,58,170,255,234,170,175,250,170,144,0,0,191,0,0,11,240,0,0,0,0,191,0,0,15,240,0,0,0,0,191,0,0,15,240,0,0,0,0,191,0,0,15,240,0,0,0,0,191,0,0,15,240,0,0,0,0,191,64,0,15,240,0,0,0,0,191,64,0,15,240,0,0,0,0,191,64,0,31,224,0,0,0,0,191,64,0,47,208,0,0,0,0,21,0,0,63,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,191,255,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,1,0,0,0,0,0, + // 0x30b7 シ + 183,48,31,31,248,38,4,254,0,2,64,0,0,0,0,0,0,7,240,0,0,0,0,0,0,15,254,0,0,0,0,0,0,31,255,208,0,0,0,0,0,2,255,248,0,0,0,0,0,0,63,254,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,16,0,0,0,0,61,0,0,0,0,0,0,192,127,192,0,0,0,0,2,224,255,248,0,0,0,0,3,244,127,255,64,0,0,0,15,252,11,255,224,0,0,0,63,244,0,255,240,0,0,0,191,224,0,31,192,0,0,2,255,192,0,3,128,0,0,11,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,255,252,0,0,0,0,0,7,255,224,0,0,0,0,0,127,255,64,0,0,0,0,11,255,248,0,0,0,0,1,255,255,208,0,0,0,1,191,255,254,0,0,0,0,31,255,255,224,0,0,0,0,15,255,254,0,0,0,0,0,7,255,144,0,0,0,0,0,2,228,0,0,0,0,0,0, + // 0x30b8 ジ + 184,48,33,32,32,38,3,254,0,0,0,0,0,0,1,176,0,0,0,128,0,0,0,2,248,0,0,3,248,0,0,11,192,253,0,0,11,255,64,0,11,224,127,0,0,11,255,224,0,3,240,63,64,0,1,255,253,0,1,252,15,192,0,0,47,255,64,0,253,9,0,0,0,3,255,0,0,126,0,0,0,0,0,188,0,0,32,0,0,0,0,0,4,0,0,0,0,0,30,0,0,0,0,0,0,96,0,63,224,0,0,0,0,0,240,0,191,253,0,0,0,0,2,252,0,47,255,128,0,0,0,7,253,0,7,255,244,0,0,0,31,252,0,0,127,244,0,0,0,63,240,0,0,15,224,0,0,0,255,208,0,0,1,192,0,0,3,255,128,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,15,255,128,0,0,0,0,0,0,127,253,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,47,255,192,0,0,0,0,0,6,255,253,0,0,0,0,0,1,191,255,240,0,0,0,0,1,111,255,255,64,0,0,0,0,15,255,255,244,0,0,0,0,0,7,255,254,64,0,0,0,0,0,3,255,208,0,0,0,0,0,0,1,228,0,0,0,0,0,0,0, + // 0x30b9 ス + 185,48,30,30,240,38,4,253,3,255,255,255,255,255,208,0,3,255,255,255,255,255,248,0,3,255,255,255,255,255,244,0,3,255,255,255,255,255,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,1,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,63,224,0,0,0,0,0,0,191,192,0,0,0,0,0,1,255,64,0,0,0,0,0,7,255,0,0,0,0,0,0,15,255,64,0,0,0,0,0,63,255,224,0,0,0,0,0,255,255,248,0,0,0,0,7,255,95,254,0,0,0,0,31,253,7,255,128,0,0,0,191,244,1,255,224,0,0,3,255,208,0,127,244,0,0,47,255,0,0,31,253,0,1,255,252,0,0,7,255,64,31,255,224,0,0,2,255,192,255,255,64,0,0,0,191,240,255,252,0,0,0,0,63,240,63,208,0,0,0,0,15,192,13,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0, + // 0x30ba ズ + 186,48,34,36,68,38,3,253,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,180,127,0,0,0,0,0,0,0,252,47,64,0,0,0,0,0,0,190,15,192,0,0,0,0,0,0,63,11,208,0,0,0,0,0,0,95,131,64,3,255,255,255,255,255,255,64,0,3,255,255,255,255,255,252,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,255,252,0,0,0,0,0,7,255,79,255,0,0,0,0,0,31,253,3,255,192,0,0,0,0,191,244,0,255,240,0,0,0,7,255,208,0,63,252,0,0,0,47,255,64,0,15,254,0,0,1,255,252,0,0,3,255,128,0,31,255,224,0,0,0,255,208,0,255,255,64,0,0,0,127,244,0,127,248,0,0,0,0,47,240,0,47,208,0,0,0,0,11,192,0,9,0,0,0,0,0,2,0,0, + // 0x30bb セ + 187,48,32,32,0,38,2,254,0,0,42,128,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,96,0,0,63,192,0,0,111,248,0,0,63,192,1,191,255,255,0,0,63,214,255,255,255,253,0,0,63,255,255,255,255,252,1,111,255,255,255,254,79,244,191,255,255,255,249,0,47,240,191,255,255,228,0,0,63,192,191,255,191,192,0,0,255,128,127,144,63,192,0,2,255,0,0,0,63,192,0,7,253,0,0,0,63,192,0,15,248,0,0,0,63,192,0,63,240,0,0,0,63,192,0,255,192,0,0,0,63,192,0,47,64,0,0,0,63,192,0,5,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,244,0,0,5,176,0,0,31,255,235,255,255,240,0,0,15,255,255,255,255,240,0,0,3,255,255,255,255,240,0,0,0,111,255,255,234,80, + // 0x30bc ゼ + 188,48,36,35,59,38,1,253,0,0,0,0,0,0,0,7,192,0,0,0,0,0,0,1,11,224,0,0,0,0,0,0,15,195,240,0,0,31,240,0,0,11,209,248,0,0,31,240,0,0,3,240,253,0,0,31,224,0,0,2,244,120,0,0,31,224,0,0,0,252,0,0,0,31,224,0,0,0,96,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,1,180,0,0,0,31,224,0,1,191,254,0,0,0,31,224,6,255,255,255,64,0,0,31,251,255,255,255,255,0,0,0,111,255,255,255,255,252,0,5,191,255,255,255,249,11,248,0,127,255,255,255,228,0,15,240,0,63,255,255,244,0,0,63,208,0,63,254,175,224,0,0,191,192,0,62,64,31,224,0,0,255,0,0,0,0,31,224,0,3,254,0,0,0,0,31,224,0,15,252,0,0,0,0,31,224,0,47,240,0,0,0,0,31,224,0,127,208,0,0,0,0,31,224,0,11,64,0,0,0,0,31,224,0,1,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,253,0,0,90,248,0,0,0,15,255,255,255,255,248,0,0,0,7,255,255,255,255,248,0,0,0,1,255,255,255,255,248,0,0,0,0,6,170,170,149,0,0, + // 0x30bd ソ + 189,48,29,30,240,38,4,254,0,0,0,0,0,0,64,0,7,64,0,0,0,0,255,128,127,192,0,0,0,0,255,64,127,224,0,0,0,1,255,0,47,244,0,0,0,1,255,0,15,252,0,0,0,2,254,0,7,253,0,0,0,3,253,0,3,255,0,0,0,3,252,0,1,255,128,0,0,7,252,0,0,255,192,0,0,15,248,0,0,63,240,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,208,0,0,63,224,0,0,10,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,2,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,15,252,0,0,0,0,0,0,63,244,0,0,0,0,0,0,191,224,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,47,253,0,0,0,0,0,1,255,244,0,0,0,0,0,11,255,208,0,0,0,0,0,127,255,64,0,0,0,0,7,255,252,0,0,0,0,0,11,255,224,0,0,0,0,0,1,254,0,0,0,0,0,0,0,116,0,0,0,0,0, + // 0x30be ゾ + 190,48,32,35,24,38,4,253,0,0,0,0,0,0,0,160,0,0,0,0,0,1,131,240,0,0,0,0,0,15,193,252,0,0,0,0,0,7,240,189,0,0,0,0,0,3,244,63,0,0,0,0,0,0,252,45,11,0,0,0,0,0,184,0,191,128,0,0,0,2,144,0,255,192,0,0,0,3,254,0,127,224,0,0,0,3,253,0,47,244,0,0,0,7,252,0,15,252,0,0,0,11,252,0,7,253,0,0,0,15,248,0,3,255,0,0,0,15,240,0,1,255,128,0,0,31,240,0,0,255,192,0,0,63,224,0,0,63,224,0,0,63,208,0,0,47,64,0,0,191,192,0,0,8,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,127,240,0,0,0,0,0,1,255,192,0,0,0,0,0,7,255,64,0,0,0,0,0,31,254,0,0,0,0,0,0,191,248,0,0,0,0,0,3,255,224,0,0,0,0,0,31,255,128,0,0,0,0,1,255,253,0,0,0,0,0,31,255,240,0,0,0,0,0,15,255,128,0,0,0,0,0,3,253,0,0,0,0,0,0,0,144,0,0,0,0,0, + // 0x30bf タ + 191,48,31,34,16,38,3,253,0,0,0,46,64,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,2,255,0,0,0,0,0,0,3,255,85,85,90,0,0,0,15,255,255,255,255,224,0,0,47,255,255,255,255,244,0,0,127,255,255,255,255,240,0,0,255,192,0,0,63,224,0,3,255,0,0,0,127,192,0,15,253,0,0,0,191,192,0,63,244,0,0,0,255,64,0,255,224,0,0,1,255,0,3,255,128,176,0,3,254,0,31,254,2,254,0,11,252,0,191,244,7,255,192,15,248,0,63,208,1,255,248,63,240,0,11,0,0,63,255,191,208,0,0,0,0,7,255,255,192,0,0,0,0,0,255,255,0,0,0,0,0,0,47,255,64,0,0,0,0,0,47,255,224,0,0,0,0,0,191,255,248,0,0,0,0,2,255,239,254,0,0,0,0,15,255,11,252,0,0,0,0,127,252,1,244,0,0,0,3,255,240,0,80,0,0,0,47,255,128,0,0,0,0,6,255,253,0,0,0,0,0,191,255,224,0,0,0,0,0,191,255,64,0,0,0,0,0,47,244,0,0,0,0,0,0,6,64,0,0,0,0,0, + // 0x30c0 ダ + 192,48,35,37,77,38,2,252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,64,0,0,0,0,0,0,10,15,192,0,0,0,63,128,0,63,11,224,0,0,0,127,208,0,31,195,240,0,0,0,255,192,0,11,209,244,0,0,1,255,64,0,3,240,64,0,0,3,254,0,0,3,224,0,0,0,11,255,255,255,255,192,0,0,0,15,255,255,255,255,244,0,0,0,63,255,255,255,255,240,0,0,0,191,213,85,85,127,224,0,0,2,255,64,0,0,63,192,0,0,7,254,0,0,0,191,192,0,0,31,252,0,0,0,255,128,0,0,127,240,0,0,1,255,0,0,2,255,192,0,0,3,254,0,0,11,255,0,248,0,7,253,0,0,63,252,3,255,64,15,248,0,0,191,240,7,255,224,31,240,0,0,31,128,0,191,252,63,224,0,0,5,0,0,31,255,255,192,0,0,0,0,0,3,255,255,64,0,0,0,0,0,0,191,255,0,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,255,255,252,0,0,0,0,0,7,255,175,254,0,0,0,0,0,47,254,7,252,0,0,0,0,0,255,248,0,240,0,0,0,0,11,255,208,0,0,0,0,0,0,127,255,64,0,0,0,0,0,7,255,252,0,0,0,0,0,0,191,255,208,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0, + // 0x30c1 チ + 193,48,32,32,0,38,3,253,0,0,0,0,0,6,244,0,0,0,0,0,22,255,252,0,1,85,90,175,255,255,254,0,2,255,255,255,255,255,249,0,1,255,255,255,255,228,0,0,0,255,255,239,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,175,254,170,170,170,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,63,248,0,0,0,0,0,1,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,64,0,0,0,0,0, + // 0x30c2 ヂ + 194,48,34,33,41,38,2,252,0,0,0,0,0,0,176,0,0,0,0,0,0,0,111,248,0,0,0,0,0,22,191,255,253,0,0,2,255,255,255,255,255,254,0,0,1,255,255,255,255,254,64,31,0,0,255,255,255,253,0,5,31,128,0,165,84,7,248,0,63,11,192,0,0,0,7,248,0,31,131,240,0,0,0,7,248,0,11,194,240,0,0,0,7,248,0,3,224,64,0,0,0,7,248,0,2,208,0,0,0,0,7,248,0,0,0,0,170,170,170,171,254,170,170,170,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,7,255,208,0,0,0,0,0,0,47,255,64,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,1,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c3 ッ + 195,48,27,25,175,38,6,252,0,0,11,192,0,0,0,0,0,47,208,0,11,144,31,64,15,240,0,15,244,127,128,15,240,0,15,240,63,192,7,248,0,31,240,47,224,3,252,0,47,224,15,240,2,253,0,63,192,11,244,1,254,0,63,192,7,248,0,228,0,191,128,3,252,0,0,0,255,0,2,248,0,0,2,254,0,0,64,0,0,3,252,0,0,0,0,0,15,248,0,0,0,0,0,31,240,0,0,0,0,0,127,208,0,0,0,0,1,255,128,0,0,0,0,7,255,0,0,0,0,0,47,252,0,0,0,0,0,255,240,0,0,0,0,11,255,192,0,0,0,0,191,254,0,0,0,0,31,255,248,0,0,0,0,31,255,192,0,0,0,0,7,253,0,0,0,0,0,1,208,0,0,0,0, + // 0x30c4 ツ + 196,48,32,31,248,38,3,254,0,0,0,4,0,0,0,0,0,0,1,252,0,0,0,0,0,0,3,253,0,0,3,144,27,64,1,255,0,0,3,254,191,192,0,255,64,0,7,253,63,192,0,191,128,0,7,252,47,224,0,63,192,0,11,248,31,240,0,63,208,0,15,244,15,244,0,31,240,0,31,240,7,252,0,15,240,0,47,240,3,253,0,11,240,0,63,208,2,254,0,6,64,0,127,192,1,255,0,0,0,0,255,128,0,254,0,0,0,0,255,0,0,80,0,0,0,2,254,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,192,0,0,0,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,191,244,0,0,0,0,0,3,255,208,0,0,0,0,0,47,255,64,0,0,0,0,1,255,252,0,0,0,0,0,47,255,240,0,0,0,0,7,255,255,64,0,0,0,0,3,255,248,0,0,0,0,0,0,255,144,0,0,0,0,0,0,56,0,0,0,0,0, + // 0x30c5 ヅ + 197,48,34,35,59,38,3,253,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,176,190,0,0,0,0,0,0,2,248,63,64,0,0,0,0,0,0,252,31,192,0,0,0,16,0,0,127,11,208,0,0,6,244,0,0,63,67,64,0,0,7,252,0,0,30,0,0,46,0,3,252,0,0,0,0,0,255,0,2,254,0,0,14,64,0,255,128,0,255,0,0,15,244,0,127,192,0,255,64,0,31,240,0,63,208,0,127,128,0,47,240,0,47,240,0,63,192,0,63,208,0,15,240,0,47,208,0,63,192,0,11,248,0,31,224,0,191,192,0,7,252,0,9,0,0,255,64,0,3,253,0,0,0,1,255,0,0,2,253,0,0,0,3,254,0,0,0,64,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,1,255,224,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,127,254,0,0,0,0,0,0,7,255,244,0,0,0,0,0,0,127,255,208,0,0,0,0,0,11,255,254,0,0,0,0,0,0,11,255,244,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,0,180,0,0,0,0,0,0, + // 0x30c6 テ + 198,48,32,31,248,38,3,253,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,42,170,170,170,170,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,170,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,127,248,0,0,0,0,0,2,255,224,0,0,0,0,0,15,255,128,0,0,0,0,0,2,253,0,0,0,0,0,0,0,96,0,0,0,0,0, + // 0x30c7 デ + 199,48,34,37,77,38,3,252,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,45,31,128,0,0,0,0,0,0,63,15,208,0,0,0,0,0,0,47,131,240,0,191,255,255,255,255,207,194,240,0,191,255,255,255,255,199,224,64,0,191,255,255,255,255,195,144,0,0,106,170,170,170,170,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,254,0,234,170,170,175,254,170,170,169,0,0,0,0,11,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,2,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c8 ト + 200,48,21,31,186,38,12,254,255,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,224,0,0,0,0,191,255,128,0,0,0,191,255,254,0,0,0,191,255,255,244,0,0,191,191,255,255,128,0,191,65,255,255,249,0,191,64,11,255,255,64,191,64,0,127,255,0,191,64,0,6,254,0,191,64,0,0,44,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,255,128,0,0,0,0, + // 0x30c9 ド + 201,48,23,32,192,38,11,253,85,0,0,0,9,0,255,64,0,0,63,0,255,64,0,40,47,192,255,64,0,253,15,208,255,64,0,127,7,240,255,64,0,47,130,244,255,64,0,15,192,128,255,64,0,11,224,0,255,64,0,2,64,0,255,64,0,0,0,0,255,64,0,0,0,0,255,248,0,0,0,0,255,255,224,0,0,0,255,255,255,64,0,0,255,255,255,249,0,0,255,95,255,255,208,0,255,64,191,255,254,0,255,64,6,255,255,0,255,64,0,47,254,0,255,64,0,1,252,0,255,64,0,0,24,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,170,64,0,0,0,0, + // 0x30ca ナ + 202,48,32,33,8,38,3,253,0,0,0,6,168,0,0,0,0,0,0,7,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,64,0,0,0,0,0,11,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,191,244,0,0,0,0,0,7,255,208,0,0,0,0,0,47,255,64,0,0,0,0,0,31,253,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,64,0,0,0,0,0, + // 0x30cb ニ + 203,48,31,25,200,38,3,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,84,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,191,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0x30cc ヌ + 204,48,27,30,210,38,5,253,15,234,170,170,170,191,128,15,255,255,255,255,255,240,15,255,255,255,255,255,244,15,255,255,255,255,255,240,0,0,0,0,0,63,208,0,0,0,0,0,127,192,0,0,0,0,0,191,192,0,0,0,0,0,255,64,0,0,0,0,1,255,0,0,46,0,0,3,254,0,0,191,208,0,7,252,0,0,255,252,0,15,248,0,0,47,255,128,31,240,0,0,7,255,240,63,224,0,0,0,127,254,191,192,0,0,0,15,255,255,128,0,0,0,2,255,255,0,0,0,0,0,127,254,0,0,0,0,0,63,255,192,0,0,0,1,255,255,244,0,0,0,7,255,255,254,0,0,0,47,254,15,255,128,0,0,255,248,2,255,240,0,11,255,224,0,191,244,0,191,255,64,0,31,224,11,255,252,0,0,7,192,255,255,224,0,0,1,0,191,254,0,0,0,0,0,47,244,0,0,0,0,0,10,0,0,0,0,0,0, + // 0x30cd ネ + 205,48,33,34,50,38,3,253,0,0,0,10,164,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,7,255,255,255,255,255,253,0,0,7,255,255,255,255,255,255,64,0,7,255,255,255,255,255,255,128,0,6,170,170,170,170,175,254,0,0,0,0,0,0,0,47,248,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,63,254,0,0,0,0,0,0,2,255,244,3,128,0,0,0,0,47,255,240,15,244,0,0,0,7,255,255,240,47,255,0,0,1,191,255,239,240,11,255,224,0,111,255,254,15,240,1,255,253,0,255,255,224,15,240,0,47,255,64,127,253,0,15,240,0,7,255,0,47,128,0,15,240,0,0,188,0,4,0,0,15,240,0,0,20,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,10,160,0,0,0,0, + // 0x30ce ノ + 206,48,26,30,210,38,5,254,0,0,0,0,0,41,0,0,0,0,0,0,63,240,0,0,0,0,0,127,208,0,0,0,0,0,191,192,0,0,0,0,0,255,192,0,0,0,0,0,255,64,0,0,0,0,2,255,0,0,0,0,0,3,254,0,0,0,0,0,7,252,0,0,0,0,0,15,252,0,0,0,0,0,31,244,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,0,255,192,0,0,0,0,2,255,64,0,0,0,0,7,255,0,0,0,0,0,15,252,0,0,0,0,0,63,244,0,0,0,0,0,255,224,0,0,0,0,3,255,192,0,0,0,0,15,255,0,0,0,0,0,127,252,0,0,0,0,2,255,240,0,0,0,0,31,255,192,0,0,0,1,255,254,0,0,0,0,31,255,244,0,0,0,0,255,255,192,0,0,0,0,63,254,0,0,0,0,0,15,224,0,0,0,0,0,2,0,0,0,0,0,0, + // 0x30cf ハ + 207,48,33,27,243,38,3,0,0,0,16,0,0,40,0,0,0,0,0,63,128,3,252,0,0,0,0,0,127,192,3,254,0,0,0,0,0,127,192,1,255,0,0,0,0,0,191,128,0,255,128,0,0,0,0,255,64,0,127,192,0,0,0,0,255,0,0,63,224,0,0,0,1,255,0,0,31,240,0,0,0,2,254,0,0,15,244,0,0,0,3,253,0,0,11,252,0,0,0,3,252,0,0,3,253,0,0,0,7,252,0,0,3,254,0,0,0,15,244,0,0,1,255,0,0,0,15,240,0,0,0,255,64,0,0,47,240,0,0,0,191,192,0,0,63,208,0,0,0,127,192,0,0,127,192,0,0,0,63,224,0,0,255,128,0,0,0,47,240,0,1,255,0,0,0,0,31,244,0,3,254,0,0,0,0,15,248,0,11,253,0,0,0,0,11,252,0,15,252,0,0,0,0,7,253,0,63,244,0,0,0,0,3,254,0,127,224,0,0,0,0,3,255,0,255,192,0,0,0,0,1,255,64,191,128,0,0,0,0,0,255,64,11,0,0,0,0,0,0,144,0, + // 0x30d0 バ + 208,48,35,32,32,38,2,255,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,47,15,208,0,0,0,0,0,0,47,131,240,0,0,0,0,0,0,15,194,244,0,0,0,0,0,24,7,224,224,0,0,47,208,2,254,3,240,0,0,0,47,224,1,255,1,128,0,0,0,63,208,0,255,128,0,0,0,0,63,192,0,127,192,0,0,0,0,127,192,0,63,224,0,0,0,0,191,128,0,31,240,0,0,0,0,255,64,0,15,248,0,0,0,0,255,0,0,11,252,0,0,0,1,255,0,0,3,253,0,0,0,2,254,0,0,2,255,0,0,0,3,253,0,0,1,255,0,0,0,7,252,0,0,0,255,128,0,0,11,248,0,0,0,127,192,0,0,15,244,0,0,0,63,208,0,0,31,240,0,0,0,63,240,0,0,63,224,0,0,0,31,240,0,0,127,192,0,0,0,15,244,0,0,255,128,0,0,0,15,252,0,1,255,64,0,0,0,7,252,0,3,255,0,0,0,0,3,253,0,11,253,0,0,0,0,3,255,0,15,252,0,0,0,0,2,255,0,63,244,0,0,0,0,0,255,64,191,224,0,0,0,0,0,255,192,127,192,0,0,0,0,0,191,128,6,64,0,0,0,0,0,100,0, + // 0x30d1 パ + 209,48,35,33,41,38,2,254,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,3,255,224,0,0,0,0,0,0,7,209,244,0,0,0,0,0,0,15,64,120,0,0,0,0,0,0,15,0,124,0,0,0,0,0,24,15,64,120,0,0,47,208,2,254,7,209,244,0,0,47,224,1,255,3,255,224,0,0,63,208,0,255,128,127,64,0,0,63,192,0,127,192,0,0,0,0,127,192,0,63,224,0,0,0,0,191,128,0,31,240,0,0,0,0,191,64,0,15,244,0,0,0,0,255,0,0,11,252,0,0,0,1,255,0,0,3,253,0,0,0,2,254,0,0,2,254,0,0,0,3,253,0,0,1,255,0,0,0,3,252,0,0,0,255,128,0,0,11,252,0,0,0,191,192,0,0,15,244,0,0,0,63,208,0,0,31,240,0,0,0,63,224,0,0,63,224,0,0,0,47,240,0,0,63,208,0,0,0,15,244,0,0,191,192,0,0,0,15,248,0,0,255,64,0,0,0,11,252,0,2,255,0,0,0,0,3,253,0,7,254,0,0,0,0,3,254,0,15,252,0,0,0,0,2,255,0,47,244,0,0,0,0,1,255,64,63,240,0,0,0,0,0,255,128,255,208,0,0,0,0,0,255,192,31,128,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0, + // 0x30d2 ヒ + 210,48,25,31,217,38,8,255,85,64,0,0,0,0,0,255,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,184,0,191,64,0,0,7,252,0,191,64,0,1,191,253,0,191,64,0,47,255,254,0,191,64,27,255,255,208,0,191,70,255,255,249,0,0,191,255,255,255,64,0,0,191,255,255,208,0,0,0,191,255,228,0,0,0,0,191,249,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,128,0,0,0,0,0,127,228,0,0,1,107,128,63,255,255,255,255,255,128,47,255,255,255,255,255,128,11,255,255,255,255,255,128,0,107,255,255,254,165,0, + // 0x30d3 ビ + 211,48,29,34,16,38,6,254,0,0,0,0,0,0,36,0,0,0,0,0,0,0,252,0,0,0,0,0,0,180,190,0,106,128,0,0,1,252,63,0,127,192,0,0,0,189,31,128,63,192,0,0,0,63,15,192,63,192,0,0,0,47,129,0,63,192,0,0,0,15,64,0,63,192,0,0,0,4,0,0,63,192,0,0,0,124,0,0,63,192,0,0,7,252,0,0,63,192,0,1,191,254,0,0,63,192,0,47,255,254,0,0,63,192,27,255,255,224,0,0,63,198,255,255,253,0,0,0,63,255,255,255,128,0,0,0,63,255,255,224,0,0,0,0,63,255,244,0,0,0,0,0,63,249,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,244,0,0,0,91,208,0,47,255,255,255,255,255,208,0,15,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,0,107,255,255,255,169,64,0, + // 0x30d4 ピ + 212,48,30,33,8,38,6,254,0,0,0,0,0,1,253,0,0,0,0,0,0,11,255,128,42,128,0,0,0,31,71,208,127,192,0,0,0,61,1,224,63,192,0,0,0,60,0,240,63,192,0,0,0,61,1,224,63,192,0,0,0,31,71,208,63,192,0,0,0,15,255,128,63,192,0,0,0,125,253,0,63,192,0,0,7,252,0,0,63,192,0,0,191,254,0,0,63,192,0,31,255,255,0,0,63,192,11,255,255,224,0,0,63,198,255,255,253,0,0,0,63,255,255,255,128,0,0,0,63,255,255,228,0,0,0,0,63,255,248,0,0,0,0,0,63,249,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,244,0,0,0,91,208,0,47,255,255,255,255,255,208,0,15,255,255,255,255,255,208,0,3,255,255,255,255,255,208,0,0,107,255,255,255,169,64,0, + // 0x30d5 フ + 213,48,28,30,210,38,5,253,191,255,255,255,255,255,240,191,255,255,255,255,255,254,191,255,255,255,255,255,255,191,255,255,255,255,255,254,0,0,0,0,0,3,253,0,0,0,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,11,248,0,0,0,0,0,15,244,0,0,0,0,0,31,240,0,0,0,0,0,47,224,0,0,0,0,0,63,208,0,0,0,0,0,191,192,0,0,0,0,0,255,64,0,0,0,0,2,255,0,0,0,0,0,7,254,0,0,0,0,0,15,252,0,0,0,0,0,63,244,0,0,0,0,0,255,224,0,0,0,0,3,255,192,0,0,0,0,31,255,0,0,0,0,0,191,252,0,0,0,0,7,255,240,0,0,0,0,127,255,192,0,0,0,27,255,254,0,0,0,0,255,255,244,0,0,0,0,191,255,64,0,0,0,0,47,244,0,0,0,0,0,10,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d6 ブ + 214,48,33,36,68,38,4,253,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,129,248,0,0,0,0,0,0,11,208,252,0,0,0,0,0,0,3,240,127,0,0,0,0,0,0,2,248,63,64,0,0,0,0,0,0,252,31,128,0,0,0,0,0,0,190,9,0,191,255,255,255,255,255,248,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,255,252,0,0,0,0,0,0,11,255,224,0,0,0,0,0,1,191,255,128,0,0,0,0,0,111,255,253,0,0,0,0,0,0,255,255,224,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, + // 0x30d7 プ + 215,48,34,35,59,38,4,253,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,62,11,192,0,0,0,0,0,0,60,3,192,0,0,0,0,0,0,120,2,208,0,0,0,0,0,0,124,3,192,127,255,255,255,255,255,254,11,192,127,255,255,255,255,255,255,255,0,127,255,255,255,255,255,255,248,0,127,255,255,255,255,255,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,11,255,224,0,0,0,0,0,1,191,255,128,0,0,0,0,0,111,255,253,0,0,0,0,0,0,255,255,224,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, + // 0x30d8 ヘ + 216,48,34,24,216,38,2,0,0,0,0,189,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,63,255,252,0,0,0,0,0,0,191,255,255,0,0,0,0,0,1,255,130,255,192,0,0,0,0,7,254,0,191,240,0,0,0,0,15,252,0,47,252,0,0,0,0,63,240,0,15,254,0,0,0,0,255,208,0,3,255,128,0,0,2,255,128,0,0,255,224,0,0,11,255,0,0,0,63,248,0,0,47,252,0,0,0,31,253,0,0,191,244,0,0,0,7,255,64,0,63,224,0,0,0,2,255,208,0,15,192,0,0,0,0,191,240,0,7,64,0,0,0,0,63,252,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0, + // 0x30d9 ベ + 217,48,34,29,5,38,2,255,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,1,129,252,0,0,0,0,0,0,15,208,190,0,0,0,0,100,0,7,240,63,64,0,0,3,255,64,2,248,47,192,0,0,15,255,208,0,252,15,64,0,0,63,255,244,0,190,0,0,0,0,191,255,253,0,61,0,0,0,2,255,135,255,64,0,0,0,0,7,254,1,255,208,0,0,0,0,15,252,0,127,240,0,0,0,0,63,240,0,31,252,0,0,0,0,191,208,0,11,255,0,0,0,2,255,128,0,2,255,192,0,0,11,255,0,0,0,191,240,0,0,47,252,0,0,0,63,248,0,0,191,244,0,0,0,15,254,0,0,255,224,0,0,0,3,255,128,0,63,192,0,0,0,1,255,208,0,15,64,0,0,0,0,191,244,0,2,0,0,0,0,0,47,253,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0, + // 0x30da ペ + 218,48,34,29,5,38,2,255,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,1,248,126,0,0,0,0,0,0,3,224,15,0,0,0,0,184,0,3,192,15,64,0,0,3,255,64,3,192,15,64,0,0,15,255,208,3,208,15,0,0,0,63,255,244,1,244,127,0,0,0,191,255,253,0,191,252,0,0,2,255,135,255,64,31,224,0,0,7,254,1,255,208,0,0,0,0,15,252,0,127,240,0,0,0,0,63,240,0,31,252,0,0,0,0,191,208,0,11,255,0,0,0,2,255,128,0,2,255,192,0,0,11,255,0,0,0,191,240,0,0,47,252,0,0,0,63,248,0,0,191,244,0,0,0,15,254,0,0,255,224,0,0,0,3,255,128,0,63,192,0,0,0,1,255,208,0,15,64,0,0,0,0,191,244,0,2,0,0,0,0,0,47,253,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,1,255,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0, + // 0x30db ホ + 219,48,33,32,32,38,3,254,0,0,0,11,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,62,170,170,175,254,170,170,173,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,253,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,5,0,7,244,0,20,0,0,0,15,208,7,244,1,252,0,0,0,31,240,7,244,2,255,0,0,0,63,208,7,244,0,255,128,0,0,191,128,7,244,0,127,208,0,1,255,0,7,244,0,47,240,0,3,253,0,7,244,0,15,244,0,15,252,0,7,244,0,7,252,0,47,240,0,7,244,0,3,254,0,191,208,0,7,244,0,1,255,0,255,128,0,7,244,0,0,255,64,63,0,0,7,244,0,0,60,0,4,0,0,7,244,0,0,16,0,0,0,0,11,244,0,0,0,0,0,0,62,175,244,0,0,0,0,0,0,63,255,244,0,0,0,0,0,0,63,255,240,0,0,0,0,0,0,47,255,128,0,0,0,0, + // 0x30dc ボ + 220,48,35,34,50,38,2,253,0,0,0,0,0,0,0,47,0,0,0,0,2,168,0,125,31,128,0,0,0,3,252,0,63,11,208,0,0,0,3,252,0,47,131,240,0,0,0,3,252,0,15,194,244,0,0,0,3,252,0,7,224,128,0,0,0,3,252,0,2,64,0,0,0,0,3,252,0,0,0,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,26,170,170,171,254,170,170,170,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,3,64,3,252,0,44,0,0,0,11,244,3,252,1,255,0,0,0,31,240,3,252,0,255,128,0,0,63,208,3,252,0,127,192,0,0,191,192,3,252,0,47,240,0,1,255,0,3,252,0,15,244,0,3,254,0,3,252,0,7,252,0,15,252,0,3,252,0,3,254,0,47,240,0,3,252,0,1,255,0,191,224,0,3,252,0,0,191,192,127,192,0,3,252,0,0,63,64,15,0,0,3,252,0,0,40,0,0,0,0,3,252,0,0,0,0,0,0,16,7,252,0,0,0,0,0,0,47,255,252,0,0,0,0,0,0,47,255,248,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,5,170,64,0,0,0,0, + // 0x30dd ポ + 221,48,34,36,68,38,2,253,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,7,192,0,0,0,3,252,0,61,2,208,0,0,0,3,252,0,60,2,224,0,0,0,3,252,0,60,2,208,0,0,0,3,252,0,47,7,192,0,0,0,3,252,0,15,255,64,0,0,0,3,252,0,2,253,0,0,0,0,3,252,0,0,0,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,47,255,255,255,255,255,255,255,0,26,170,170,171,254,170,170,170,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,3,64,3,252,0,44,0,0,0,11,244,3,252,1,255,0,0,0,31,240,3,252,0,255,128,0,0,63,208,3,252,0,127,192,0,0,191,192,3,252,0,47,240,0,1,255,0,3,252,0,15,244,0,3,254,0,3,252,0,7,252,0,15,252,0,3,252,0,3,254,0,47,240,0,3,252,0,1,255,0,191,224,0,3,252,0,0,191,192,127,192,0,3,252,0,0,63,64,15,0,0,3,252,0,0,40,0,0,0,0,3,252,0,0,0,0,0,0,16,7,252,0,0,0,0,0,0,47,255,252,0,0,0,0,0,0,47,255,248,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,5,170,64,0,0,0,0, + // 0x30de マ + 222,48,33,30,14,38,3,253,0,0,0,0,0,0,0,16,0,127,255,255,255,255,255,255,248,0,127,255,255,255,255,255,255,255,0,127,255,255,255,255,255,255,255,64,127,170,170,170,170,170,175,254,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,253,0,0,0,0,64,0,0,47,248,0,0,0,2,224,0,0,191,240,0,0,0,15,252,0,2,255,192,0,0,0,31,255,0,11,255,0,0,0,0,3,255,208,47,252,0,0,0,0,0,191,244,255,240,0,0,0,0,0,47,255,255,192,0,0,0,0,0,11,255,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,0,31,253,0,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,80,0,0,0, + // 0x30df ミ + 223,48,25,31,217,38,6,254,0,126,64,0,0,0,0,0,191,255,144,0,0,0,0,255,255,255,228,0,0,1,191,255,255,255,228,0,0,0,111,255,255,255,128,0,0,0,91,255,255,128,0,0,0,0,27,255,64,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,144,0,0,0,0,0,7,255,228,0,0,0,0,15,255,255,249,0,0,0,15,255,255,255,248,0,0,0,27,255,255,255,224,0,0,0,22,255,255,244,0,0,0,0,6,255,240,0,0,0,0,0,27,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,64,0,0,0,0,0,127,254,64,0,0,0,0,255,255,255,144,0,0,0,255,255,255,255,128,0,0,6,191,255,255,254,64,0,0,1,191,255,255,253,0,0,0,0,191,255,255,0,0,0,0,1,191,253,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0, + // 0x30e0 ム + 224,48,34,32,32,38,2,253,0,0,0,47,224,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,240,0,0,16,0,0,0,0,47,240,0,2,240,0,0,0,0,63,208,0,15,248,0,0,0,0,63,192,0,7,253,0,0,0,0,127,192,0,2,255,0,0,0,0,255,64,0,0,255,64,0,0,0,255,0,0,0,191,192,0,0,1,255,0,0,0,63,208,0,0,3,253,0,0,0,47,240,0,0,3,252,0,0,0,31,248,0,0,11,252,0,21,175,255,252,0,0,15,254,191,255,255,255,254,0,127,255,255,255,255,255,255,255,0,63,255,255,255,255,255,234,255,128,63,255,255,255,169,64,0,255,192,63,254,149,0,0,0,0,127,208,20,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0, + // 0x30e1 メ + 225,48,30,31,248,38,4,254,0,0,0,0,0,2,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,224,0,0,10,0,0,0,63,208,0,0,47,208,0,0,191,192,0,0,127,248,0,0,255,64,0,0,47,255,64,2,255,0,0,0,7,255,224,3,253,0,0,0,0,191,252,11,252,0,0,0,0,31,255,95,244,0,0,0,0,3,255,255,224,0,0,0,0,0,191,255,192,0,0,0,0,0,31,255,128,0,0,0,0,0,7,255,208,0,0,0,0,0,15,255,248,0,0,0,0,0,63,255,254,0,0,0,0,0,255,215,255,192,0,0,0,3,255,129,255,240,0,0,0,15,254,0,127,252,0,0,0,127,248,0,15,255,0,0,2,255,224,0,3,255,192,0,15,255,128,0,0,255,208,0,127,254,0,0,0,127,128,7,255,244,0,0,0,30,0,63,255,192,0,0,0,4,0,127,254,0,0,0,0,0,0,31,224,0,0,0,0,0,0,3,64,0,0,0,0,0,0, + // 0x30e2 モ + 226,48,31,29,232,38,4,254,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,2,170,171,254,170,170,169,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,248,170,170,171,254,170,170,170,164,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,255,128,0,5,64,0,0,2,255,255,255,255,208,0,0,0,255,255,255,255,208,0,0,0,127,255,255,255,208,0,0,0,6,191,255,234,128, + // 0x30e3 ャ + 227,48,28,28,196,38,5,251,0,1,176,0,0,0,0,0,15,240,0,0,0,0,0,11,244,0,0,0,0,0,3,248,0,0,0,0,0,3,252,0,0,6,248,0,2,252,0,27,255,255,0,1,254,111,255,255,254,0,6,255,255,255,255,252,43,255,255,255,250,75,244,127,255,255,249,0,31,240,63,255,255,128,0,63,192,63,144,63,192,0,255,64,0,0,47,192,2,254,0,0,0,31,208,11,252,0,0,0,15,224,47,240,0,0,0,15,240,47,208,0,0,0,11,244,2,64,0,0,0,7,248,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,2,253,0,0,0,0,0,1,254,0,0,0,0,0,0,255,0,0,0,0,0,0,255,64,0,0,0,0,0,127,128,0,0,0,0,0,127,192,0,0,0,0,0,62,64,0,0,0,0,0,0,0,0,0, + // 0x30e4 ヤ + 228,48,33,33,41,38,2,253,0,0,109,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,255,0,0,0,0,4,0,0,0,191,128,0,0,6,254,0,0,0,127,192,0,91,255,255,192,0,0,63,193,175,255,255,255,128,0,0,63,255,255,255,255,255,0,0,27,255,255,255,255,147,254,0,191,255,255,255,254,64,11,252,0,191,255,255,249,0,0,31,240,0,127,255,239,244,0,0,63,224,0,63,144,11,248,0,0,255,192,0,0,0,3,252,0,2,255,0,0,0,0,3,253,0,11,253,0,0,0,0,2,254,0,47,248,0,0,0,0,1,255,0,191,224,0,0,0,0,0,255,0,127,192,0,0,0,0,0,255,64,7,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,1,64,0,0,0,0, + // 0x30e5 ュ + 229,48,28,20,140,38,5,255,0,255,255,255,255,244,0,0,255,255,255,255,252,0,0,255,255,255,255,252,0,0,170,170,170,175,252,0,0,0,0,0,7,252,0,0,0,0,0,7,248,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,31,240,0,0,0,0,0,31,224,0,0,0,0,0,47,208,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,127,255,255,255,255,255,254,127,255,255,255,255,255,254,127,255,255,255,255,255,254,106,170,170,170,170,170,169, + // 0x30e6 ユ + 230,48,32,26,208,38,3,0,0,255,255,255,255,255,208,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,248,0,0,0,0,0,0,15,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x30e7 ョ + 231,48,22,25,150,38,8,252,85,85,85,85,85,80,191,255,255,255,255,224,191,255,255,255,255,224,191,255,255,255,255,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,21,85,85,85,95,224,63,255,255,255,255,224,63,255,255,255,255,224,63,255,255,255,255,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,0,0,0,0,15,224,255,255,255,255,255,224,255,255,255,255,255,224,255,255,255,255,255,224,170,85,85,85,111,224,0,0,0,0,15,224,0,0,0,0,0,0, + // 0x30e8 ヨ + 232,48,27,29,203,38,5,254,42,170,170,170,170,170,168,63,255,255,255,255,255,252,63,255,255,255,255,255,252,63,255,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,10,170,170,170,170,171,252,11,255,255,255,255,255,252,11,255,255,255,255,255,252,11,255,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,126,170,170,170,170,175,252,127,255,255,255,255,255,252,127,255,255,255,255,255,252,127,255,255,255,255,255,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252, + // 0x30e9 ラ + 233,48,29,32,0,38,5,253,1,170,170,170,170,170,160,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,1,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,253,0,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,64,170,170,170,170,170,171,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,244,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,255,192,0,0,0,0,0,3,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,127,248,0,0,0,0,0,2,255,224,0,0,0,0,0,31,255,128,0,0,0,0,1,255,253,0,0,0,0,0,111,255,240,0,0,0,0,11,255,255,128,0,0,0,0,3,255,248,0,0,0,0,0,0,255,128,0,0,0,0,0,0,32,0,0,0,0,0, + // 0x30ea リ + 234,48,22,31,186,38,8,254,170,0,0,0,47,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,240,255,0,0,0,31,224,255,0,0,0,31,224,255,0,0,0,31,224,255,0,0,0,47,224,255,0,0,0,63,208,255,0,0,0,63,208,255,64,0,0,63,192,0,0,0,0,191,192,0,0,0,0,255,128,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,31,252,0,0,0,0,127,244,0,0,0,3,255,224,0,0,0,111,255,64,0,0,11,255,253,0,0,0,15,255,240,0,0,0,3,255,64,0,0,0,0,228,0,0,0, + // 0x30eb ル + 235,48,35,30,14,38,2,254,0,1,254,0,31,240,0,0,0,0,1,254,0,31,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,254,0,15,240,0,0,0,0,1,253,0,15,240,0,0,0,0,1,253,0,15,240,0,0,0,0,1,253,0,15,240,0,0,0,0,2,253,0,15,240,0,0,0,0,2,253,0,15,240,0,0,0,0,2,252,0,15,240,0,0,0,0,3,252,0,15,240,0,0,64,0,3,252,0,15,240,0,3,192,0,3,252,0,15,240,0,11,224,0,7,248,0,15,240,0,47,244,0,15,244,0,15,240,0,191,224,0,15,240,0,15,240,2,255,128,0,47,224,0,15,240,15,255,0,0,127,208,0,15,240,127,248,0,0,255,192,0,15,247,255,224,0,2,255,0,0,15,255,255,128,0,11,254,0,0,15,255,253,0,0,47,252,0,0,31,255,224,0,0,191,240,0,0,31,255,64,0,0,47,208,0,0,11,244,0,0,0,3,0,0,0,2,128,0,0,0, + // 0x30ec レ + 236,48,27,30,210,38,8,254,255,128,0,0,0,0,0,255,128,0,0,0,0,0,191,128,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,0,191,64,0,0,0,0,192,191,64,0,0,0,3,224,191,64,0,0,0,15,244,191,64,0,0,0,63,248,191,64,0,0,0,255,224,191,64,0,0,11,255,128,191,64,0,0,63,254,0,191,64,0,1,255,248,0,191,64,0,31,255,208,0,191,64,0,191,254,0,0,191,64,11,255,244,0,0,191,65,255,255,128,0,0,191,175,255,248,0,0,0,191,255,255,128,0,0,0,255,255,249,0,0,0,0,191,255,64,0,0,0,0,47,224,0,0,0,0,0,5,0,0,0,0,0,0, + // 0x30ed ロ + 237,48,28,28,196,38,5,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,64,0,0,0,0,255,255,64,0,0,0,0,255,0,0,0,0,0,0,0, + // 0x30ee ヮ + 238,48,25,26,182,38,7,251,149,85,85,85,85,168,0,255,255,255,255,255,255,64,255,255,255,255,255,255,128,255,255,255,255,255,255,64,255,0,0,0,0,255,0,255,0,0,0,0,255,0,255,0,0,0,1,255,0,255,0,0,0,1,254,0,255,0,0,0,2,253,0,255,0,0,0,3,252,0,255,0,0,0,7,252,0,255,0,0,0,11,248,0,0,0,0,0,15,240,0,0,0,0,0,47,240,0,0,0,0,0,127,208,0,0,0,0,0,255,128,0,0,0,0,3,255,0,0,0,0,0,15,253,0,0,0,0,0,127,244,0,0,0,0,2,255,224,0,0,0,0,47,255,64,0,0,0,7,255,253,0,0,0,0,31,255,224,0,0,0,0,7,255,64,0,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x30ef ワ + 239,48,30,30,240,38,4,253,126,170,170,170,170,170,254,0,127,255,255,255,255,255,255,192,63,255,255,255,255,255,255,224,63,255,255,255,255,255,255,192,63,192,0,0,0,0,127,192,63,192,0,0,0,0,191,192,63,192,0,0,0,0,191,128,63,192,0,0,0,0,255,128,63,192,0,0,0,0,255,64,63,192,0,0,0,0,255,0,63,192,0,0,0,1,255,0,63,192,0,0,0,3,254,0,127,192,0,0,0,3,253,0,127,192,0,0,0,7,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,31,244,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,2,255,192,0,0,0,0,0,7,255,0,0,0,0,0,0,31,253,0,0,0,0,0,0,191,248,0,0,0,0,0,3,255,224,0,0,0,0,0,47,255,64,0,0,0,0,2,255,253,0,0,0,0,0,111,255,244,0,0,0,0,2,255,255,128,0,0,0,0,0,191,252,0,0,0,0,0,0,47,128,0,0,0,0,0,0,4,0,0,0,0,0, + // 0x30f0 ヰ + 240,48,32,33,8,38,3,253,0,0,0,0,0,85,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,26,170,170,170,170,255,170,168,31,255,255,255,255,255,255,252,31,255,255,255,255,255,255,252,31,255,255,255,255,255,255,252,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,0,0,255,0,0,255,0,0,186,170,255,170,170,255,170,175,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,85,0,0, + // 0x30f1 ヱ + 241,48,33,27,243,38,3,255,15,255,255,255,255,255,255,248,0,15,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,252,0,15,250,170,170,170,170,191,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,208,0,0,0,0,21,64,0,255,128,0,0,0,0,63,224,2,255,0,0,0,0,0,63,224,15,252,0,0,0,0,0,47,208,63,244,0,0,0,0,0,47,208,255,224,0,0,0,0,0,47,208,127,128,0,0,0,0,0,47,208,14,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0, + // 0x30f2 ヲ + 242,48,28,30,210,38,6,253,255,255,255,255,255,255,240,255,255,255,255,255,255,253,255,255,255,255,255,255,254,250,170,170,170,170,171,252,0,0,0,0,0,7,252,0,0,0,0,0,7,248,0,0,0,0,0,11,244,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,31,240,63,255,255,255,255,255,224,63,255,255,255,255,255,192,63,255,255,255,255,255,192,42,170,170,170,170,255,128,0,0,0,0,0,255,0,0,0,0,0,2,254,0,0,0,0,0,7,252,0,0,0,0,0,15,248,0,0,0,0,0,63,240,0,0,0,0,0,255,208,0,0,0,0,3,255,128,0,0,0,0,31,254,0,0,0,0,0,127,248,0,0,0,0,7,255,224,0,0,0,0,127,255,128,0,0,0,27,255,252,0,0,0,0,255,255,224,0,0,0,0,127,254,0,0,0,0,0,31,224,0,0,0,0,0,5,0,0,0,0,0, + // 0x30f3 ン + 243,48,30,30,240,38,5,254,2,128,0,0,0,0,0,0,11,240,0,0,0,0,0,0,31,253,0,0,0,0,0,0,31,255,64,0,0,0,0,0,3,255,224,0,0,0,0,0,0,191,252,0,0,0,0,0,0,31,255,0,0,0,1,64,0,7,255,192,0,0,3,192,0,0,255,192,0,0,11,224,0,0,63,0,0,0,15,240,0,0,12,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,128,0,0,0,0,0,7,255,0,0,0,0,0,0,31,253,0,0,0,0,0,0,127,244,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,63,254,0,0,0,0,0,1,255,248,0,0,0,0,0,11,255,208,0,0,0,0,0,191,255,0,0,0,0,0,11,255,248,0,0,0,0,1,255,255,208,0,0,0,1,191,255,254,0,0,0,0,191,255,255,224,0,0,0,0,127,255,254,0,0,0,0,0,47,255,144,0,0,0,0,0,15,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f4 ヴ + 244,48,32,36,32,38,4,252,0,0,0,0,0,0,3,240,0,0,0,0,0,6,194,244,0,0,1,255,0,11,224,252,0,0,0,255,0,3,240,190,0,0,0,255,0,1,248,63,0,0,0,255,0,0,252,24,0,0,0,255,0,0,120,0,0,0,0,255,0,0,0,0,170,170,170,255,170,170,173,0,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,128,255,0,0,0,0,0,255,64,255,0,0,0,0,0,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,2,255,0,255,0,0,0,0,3,254,0,255,0,0,0,0,3,253,0,255,0,0,0,0,7,252,0,255,0,0,0,0,15,248,0,255,0,0,0,0,15,244,0,0,0,0,0,0,47,240,0,0,0,0,0,0,127,208,0,0,0,0,0,0,255,192,0,0,0,0,0,3,255,64,0,0,0,0,0,11,254,0,0,0,0,0,0,63,252,0,0,0,0,0,0,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,191,255,0,0,0,0,0,27,255,252,0,0,0,0,3,255,255,208,0,0,0,0,2,255,254,0,0,0,0,0,0,191,224,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f5 ヵ + 245,48,25,28,196,38,6,252,0,0,5,64,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,208,0,0,0,0,0,31,192,0,0,0,41,85,111,229,85,100,0,127,255,255,255,255,255,64,127,255,255,255,255,255,64,127,255,255,255,255,255,64,0,0,63,192,0,63,64,0,0,63,128,0,63,64,0,0,63,64,0,127,64,0,0,127,0,0,127,0,0,0,191,0,0,127,0,0,0,254,0,0,127,0,0,1,253,0,0,191,0,0,3,252,0,0,191,0,0,11,248,0,0,255,0,0,15,240,0,0,254,0,0,63,224,0,0,254,0,0,191,192,0,1,253,0,2,255,0,0,2,252,0,15,253,0,58,155,252,0,191,248,0,63,255,248,0,127,224,0,63,255,240,0,15,64,0,47,255,128,0,0,0,0,0,0,0,0, + // 0x30f6 ヶ + 246,48,28,28,196,38,5,251,0,2,232,0,0,0,0,0,2,254,0,0,0,0,0,3,252,0,0,0,0,0,7,252,0,0,0,0,0,11,244,0,0,0,0,0,15,240,0,0,0,0,0,47,255,255,255,255,254,0,63,255,255,255,255,254,0,191,255,255,255,255,254,1,255,85,86,254,85,85,3,253,0,2,252,0,0,15,248,0,2,252,0,0,63,240,0,3,252,0,0,255,192,0,3,248,0,0,255,64,0,7,248,0,0,29,0,0,15,244,0,0,0,0,0,15,240,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,0,0,0,0,255,128,0,0,0,0,2,255,0,0,0,0,0,11,253,0,0,0,0,0,47,248,0,0,0,0,0,255,240,0,0,0,0,11,255,192,0,0,0,0,3,255,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f7 ヷ + 247,48,32,37,40,38,4,252,0,0,0,0,0,0,0,144,0,0,0,0,0,6,67,240,0,0,0,0,0,31,194,248,0,0,0,0,0,15,208,252,0,0,0,0,0,3,240,190,0,0,0,0,0,2,244,36,0,0,0,0,0,0,128,0,250,170,170,170,170,170,248,0,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,64,255,0,0,0,0,0,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,2,254,0,255,0,0,0,0,3,254,0,255,0,0,0,0,3,253,0,255,0,0,0,0,7,252,0,255,0,0,0,0,11,252,0,255,0,0,0,0,15,248,0,255,0,0,0,0,31,240,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,64,0,0,0,0,0,7,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,127,244,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,192,0,0,0,0,0,127,254,0,0,0,0,0,7,255,248,0,0,0,0,1,191,255,208,0,0,0,0,7,255,254,0,0,0,0,0,1,255,244,0,0,0,0,0,0,191,64,0,0,0,0,0,0,16,0,0,0,0,0, + // 0x30f8 ヸ + 248,48,33,35,59,38,3,253,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,5,47,0,0,0,0,0,0,85,31,15,64,0,0,0,0,1,254,15,75,192,0,0,0,0,1,254,11,199,192,0,0,0,0,1,254,3,195,128,0,0,0,0,1,254,3,208,0,0,0,0,0,1,254,0,0,0,42,170,170,170,170,255,170,164,0,47,255,255,255,255,255,255,248,0,47,255,255,255,255,255,255,248,0,47,255,255,255,255,255,255,248,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,0,1,253,0,1,254,0,0,0,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,254,0,234,170,170,170,171,255,170,169,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,169,0,0,0, + // 0x30f9 ヹ + 249,48,34,34,50,38,2,254,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,184,63,64,0,0,0,0,0,0,252,15,192,0,0,0,0,0,0,127,15,208,0,0,0,0,0,0,63,7,208,0,0,0,0,0,0,31,64,0,0,0,0,0,0,0,4,16,0,7,255,255,255,255,255,255,252,0,7,255,255,255,255,255,255,255,0,7,255,255,255,255,255,255,254,0,7,250,170,170,170,170,175,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,240,0,0,0,0,5,80,0,127,192,0,0,0,0,31,240,1,255,64,0,0,0,0,15,240,7,254,0,0,0,0,0,15,240,31,252,0,0,0,0,0,15,240,127,240,0,0,0,0,0,15,240,63,192,0,0,0,0,0,15,240,11,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0, + // 0x30fa ヺ + 250,48,32,37,40,38,4,252,0,0,0,0,0,0,0,144,0,0,0,0,0,6,67,240,0,0,0,0,0,31,194,248,0,0,0,0,0,15,208,252,0,0,0,0,0,7,240,190,0,0,0,0,0,3,244,36,0,0,0,0,0,1,144,0,191,255,255,255,255,255,248,0,191,255,255,255,255,255,255,0,191,255,255,255,255,255,255,0,126,170,170,170,170,171,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,244,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,224,0,26,170,170,170,170,191,192,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,31,248,0,0,0,0,0,0,63,240,0,0,0,0,0,1,255,192,0,0,0,0,0,11,255,64,0,0,0,0,0,47,253,0,0,0,0,0,2,255,244,0,0,0,0,0,31,255,208,0,0,0,0,6,255,254,0,0,0,0,0,127,255,244,0,0,0,0,0,63,255,128,0,0,0,0,0,15,248,0,0,0,0,0,0,2,64,0,0,0,0,0, + // 0x30fb ・ + 251,48,10,9,27,38,14,10,1,164,0,15,255,0,63,255,192,63,255,192,127,255,208,63,255,192,63,255,192,31,255,0,2,248,0, + // 0x30fc ー + 252,48,32,6,48,38,3,11,21,85,85,85,85,85,85,84,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0, + // 0x30fd ヽ + 253,48,18,19,95,38,11,3,10,0,0,0,0,63,128,0,0,0,255,224,0,0,0,127,248,0,0,0,31,254,0,0,0,7,255,128,0,0,1,255,224,0,0,0,127,248,0,0,0,31,254,0,0,0,7,255,64,0,0,1,255,208,0,0,0,191,240,0,0,0,47,252,0,0,0,15,255,0,0,0,3,255,128,0,0,1,255,208,0,0,0,191,208,0,0,0,63,0,0,0,0,8,0, + // 0x30fe ヾ + 254,48,21,24,144,38,10,3,0,0,0,2,240,0,0,0,1,66,248,0,0,0,15,192,252,0,0,0,11,240,127,0,0,0,3,244,63,64,5,0,1,252,31,64,47,128,0,254,4,0,255,224,0,56,0,0,191,248,0,0,0,0,31,254,0,0,0,0,7,255,128,0,0,0,1,255,224,0,0,0,0,127,248,0,0,0,0,31,253,0,0,0,0,7,255,64,0,0,0,2,255,208,0,0,0,0,191,240,0,0,0,0,63,252,0,0,0,0,15,255,0,0,0,0,3,255,128,0,0,0,1,255,208,0,0,0,0,191,208,0,0,0,0,63,0,0,0,0,0,8,0,0, + // 0x30ff ヿ + 255,48,23,33,198,38,7,253,106,170,170,170,170,168,191,255,255,255,255,252,191,255,255,255,255,252,191,255,255,255,255,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252, + // 0x4eee 仮 + 238,78,36,36,68,38,1,252,0,0,36,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,15,255,255,255,255,248,0,1,254,15,255,255,255,255,248,0,2,252,15,255,255,255,255,248,0,7,248,15,245,85,85,85,80,0,15,240,15,224,0,0,0,0,0,31,224,15,224,0,0,0,0,0,63,192,15,224,0,0,0,0,0,255,192,15,224,0,0,0,0,2,255,192,15,224,0,0,0,0,7,255,192,15,224,0,0,0,0,15,255,192,15,255,255,255,255,224,63,255,192,15,255,255,255,255,240,255,239,192,15,255,255,255,255,240,191,111,192,15,255,213,85,95,224,61,47,192,15,255,208,0,31,208,40,47,192,15,239,224,0,47,192,0,47,192,15,231,240,0,63,128,0,47,192,15,211,244,0,127,64,0,47,192,15,210,252,0,191,0,0,47,192,15,208,254,1,254,0,0,47,192,31,192,255,3,252,0,0,47,192,31,192,63,135,248,0,0,47,192,47,192,47,223,240,0,0,47,192,63,128,15,255,208,0,0,47,192,63,128,7,255,192,0,0,47,192,127,0,3,255,64,0,0,47,192,191,0,7,255,192,0,0,47,192,254,0,47,255,244,0,0,47,193,253,0,255,239,254,0,0,47,195,252,11,255,131,255,208,0,47,199,248,127,253,0,255,253,0,47,207,240,191,244,0,47,253,0,47,195,224,63,128,0,2,248,0,31,128,128,24,0,0,0,96, + // 0x540d 名 + 13,84,33,36,68,38,1,252,0,0,0,122,64,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,255,255,255,248,0,0,0,0,63,255,255,255,254,0,0,0,0,255,255,255,255,252,0,0,0,3,255,64,0,7,248,0,0,0,15,252,0,0,15,240,0,0,0,127,244,0,0,47,224,0,0,2,255,253,0,0,63,192,0,0,31,255,255,128,0,255,64,0,0,127,248,255,224,2,255,0,0,0,47,208,47,252,11,252,0,0,0,11,0,11,255,31,244,0,0,0,0,0,1,255,255,208,0,0,0,0,0,0,127,255,128,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,1,255,255,255,255,255,128,0,0,11,255,255,255,255,255,128,0,0,191,255,255,255,255,255,128,0,11,255,252,0,0,0,63,128,0,191,255,248,0,0,0,63,128,31,255,247,248,0,0,0,63,128,127,255,67,248,0,0,0,63,128,47,248,3,248,0,0,0,63,128,14,64,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,252,0,0,0,63,128,0,0,2,248,0,0,0,63,128, + // 0x5b9a 定 + 154,91,35,37,77,38,1,251,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,5,85,85,85,255,85,85,85,80,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,226,255,255,255,255,255,139,240,5,66,255,255,255,255,255,133,80,0,2,255,255,255,255,255,128,0,0,1,85,85,255,85,85,64,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2,164,0,255,0,0,0,0,0,3,248,0,255,0,0,0,0,0,3,244,0,255,0,0,0,0,0,7,244,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,15,240,0,255,255,255,248,0,0,15,244,0,255,85,85,80,0,0,31,252,0,255,0,0,0,0,0,63,253,0,255,0,0,0,0,0,63,255,0,255,0,0,0,0,0,191,191,192,255,0,0,0,0,0,255,31,244,255,0,0,0,0,3,253,11,255,255,0,0,0,0,11,252,2,255,255,64,0,0,0,47,244,0,191,255,255,255,255,252,127,224,0,11,255,255,255,255,248,47,192,0,0,127,255,255,255,244,11,0,0,0,0,85,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,37,40,38,2,251,0,0,0,0,7,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,234,170,170,170,170,170,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,0,0,0,0,0,0,0,191,170,170,170,170,168,0,0,191,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,3,252,0,1,254,0,0,0,3,252,0,2,253,0,0,0,3,252,0,3,252,0,0,0,3,252,0,7,252,0,0,0,3,252,0,11,244,0,0,0,3,252,0,15,240,0,0,0,3,252,0,47,224,0,0,0,3,252,0,127,192,0,0,0,3,252,0,255,128,0,0,0,3,252,0,255,0,0,0,0,3,252,0,61,0,0,0,0,3,252,0,24,0,0,0,0,3,252,0,0,0,0,0,0,0,0,0, + // 0x793a 示 + 58,121,34,33,41,38,2,252,1,255,255,255,255,255,255,240,0,1,255,255,255,255,255,255,240,0,1,255,255,255,255,255,255,240,0,0,85,85,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,85,85,85,87,253,85,85,85,80,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,15,128,3,252,0,29,0,0,0,31,240,3,252,0,255,0,0,0,47,208,3,252,0,191,128,0,0,63,192,3,252,0,63,208,0,0,191,128,3,252,0,31,240,0,1,255,0,3,252,0,11,248,0,3,253,0,3,252,0,3,252,0,11,252,0,3,252,0,2,254,0,31,244,0,3,252,0,0,255,0,63,224,0,3,252,0,0,191,128,255,192,0,3,252,0,0,63,192,255,0,0,3,252,0,0,47,208,45,0,0,3,252,0,0,30,0,0,0,63,255,252,0,0,0,0,0,0,63,255,248,0,0,0,0,0,0,31,255,240,0,0,0,0,0,0,10,169,0,0,0,0,0, + // 0x7fa9 義 + 169,127,35,36,68,38,2,252,0,0,40,0,0,3,144,0,0,0,1,254,0,0,7,248,0,0,0,0,255,0,0,15,240,0,0,0,0,63,128,0,47,192,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,10,170,170,171,254,170,170,170,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,170,170,171,254,170,170,160,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,25,0,0,16,0,0,0,5,175,255,15,224,62,0,0,63,255,255,255,139,224,255,224,0,47,234,255,144,7,240,47,253,0,0,0,253,0,7,240,2,253,0,0,0,253,0,3,240,0,36,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,170,170,255,170,171,254,170,170,160,0,0,253,0,0,253,1,224,0,0,0,253,1,80,255,7,252,0,90,175,255,255,224,191,95,240,0,255,255,255,255,224,63,255,192,0,191,255,254,84,0,47,255,0,64,16,0,253,0,0,127,248,1,224,0,0,253,0,7,255,253,1,244,0,0,253,1,191,255,255,151,240,2,171,253,15,255,224,191,255,240,2,255,252,11,254,0,31,255,208,1,255,224,3,128,0,1,255,64, + // 0x8868 表 + 104,136,36,36,68,38,1,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,254,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,244,47,255,255,255,255,255,255,255,244,47,255,255,255,255,255,255,255,244,0,0,0,47,255,240,0,0,0,0,0,1,255,199,240,0,10,0,0,0,11,255,3,248,0,47,192,0,0,191,244,2,252,0,255,208,0,11,255,192,0,254,7,255,0,1,255,255,192,0,191,47,248,0,111,255,255,192,0,127,255,208,0,127,254,47,192,0,47,254,0,0,31,224,47,192,0,15,244,0,0,9,0,47,192,0,7,252,0,0,0,0,47,192,0,18,255,64,0,0,0,47,192,27,240,255,208,0,0,0,47,239,255,240,63,252,0,0,0,127,255,255,240,15,255,128,0,111,255,255,249,0,2,255,253,0,191,255,249,0,0,0,127,252,0,63,249,0,0,0,0,11,244,0,41,0,0,0,0,0,0,96, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Korean_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Korean_28.cpp new file mode 100644 index 000000000000..462639e540a2 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Korean_28.cpp @@ -0,0 +1,252 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Korean 38pt, capital 'A' height: 28px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +extern const uint8_t NotoSans_Medium_Korean_28[14631] = { + 162,28,112,172,136,215,37,246, // unifont_t + // 0xac70 거 + 112,172,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,47,255,255,255,192,0,191,64,47,255,255,255,192,0,191,64,47,255,255,255,192,0,191,64,0,0,0,63,192,0,191,64,0,0,0,63,192,0,191,64,0,0,0,63,192,0,191,64,0,0,0,127,128,0,191,64,0,0,0,127,64,0,191,64,0,0,0,191,0,0,191,64,0,0,0,255,0,0,191,64,0,0,1,254,0,0,191,64,0,0,3,253,63,255,255,64,0,0,7,252,63,255,255,64,0,0,15,244,63,255,255,64,0,0,47,240,0,0,191,64,0,0,127,208,0,0,191,64,0,0,255,128,0,0,191,64,0,3,255,0,0,0,191,64,0,31,252,0,0,0,191,64,0,127,240,0,0,0,191,64,3,255,208,0,0,0,191,64,47,255,0,0,0,0,191,64,255,248,0,0,0,0,191,64,191,208,0,0,0,0,191,64,62,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64, + // 0xace0 고 + 224,172,31,28,224,35,2,0,3,255,255,255,255,255,254,0,3,255,255,255,255,255,254,0,3,255,255,255,255,255,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,2,253,0,0,0,0,84,0,2,253,0,0,0,2,253,0,2,252,0,0,0,2,253,0,3,252,0,0,0,2,253,0,3,252,0,0,0,2,253,0,3,252,0,0,0,2,253,0,3,252,0,0,0,2,253,0,7,248,0,0,0,2,253,0,11,244,0,0,0,2,253,0,6,244,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xadf8 그 + 248,173,31,27,216,35,2,1,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,3,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,244,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0xae09 급 + 9,174,31,34,16,35,2,252,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,11,244,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0, + // 0xae30 기 + 48,174,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,15,255,255,255,240,0,191,15,255,255,255,240,0,191,15,255,255,255,240,0,191,0,0,0,15,240,0,191,0,0,0,15,240,0,191,0,0,0,15,224,0,191,0,0,0,31,208,0,191,0,0,0,47,208,0,191,0,0,0,63,192,0,191,0,0,0,127,128,0,191,0,0,0,191,64,0,191,0,0,0,255,0,0,191,0,0,3,254,0,0,191,0,0,7,252,0,0,191,0,0,15,248,0,0,191,0,0,63,240,0,0,191,0,0,255,192,0,0,191,0,3,255,64,0,0,191,0,15,254,0,0,0,191,0,127,248,0,0,0,191,2,255,224,0,0,0,191,47,255,64,0,0,0,191,191,252,0,0,0,0,191,63,224,0,0,0,0,191,30,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191, + // 0xae45 깅 + 69,174,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,15,255,255,255,240,0,255,0,15,255,255,255,224,0,255,0,15,255,255,255,224,0,255,0,0,0,0,47,224,0,255,0,0,0,0,47,192,0,255,0,0,0,0,63,192,0,255,0,0,0,0,127,128,0,255,0,0,0,0,255,0,0,255,0,0,0,1,254,0,0,255,0,0,0,7,252,0,0,255,0,0,0,31,244,0,0,255,0,0,0,127,224,0,0,255,0,0,2,255,128,0,0,255,0,0,47,254,0,0,0,255,0,2,255,244,0,0,0,255,0,127,255,192,0,0,0,255,0,127,253,0,0,0,0,255,0,63,208,0,0,0,0,255,0,24,0,0,0,0,0,106,0,0,0,2,191,255,228,0,0,0,0,127,255,255,255,128,0,0,2,255,255,255,255,244,0,0,11,255,144,0,127,252,0,0,31,244,0,0,3,254,0,0,47,208,0,0,0,255,0,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,0,0,47,208,0,0,0,255,0,0,31,248,0,0,7,254,0,0,11,255,148,5,191,252,0,0,2,255,255,255,255,240,0,0,0,127,255,255,255,64,0,0,0,1,191,255,164,0,0, + // 0xb044 끄 + 68,176,31,27,216,35,2,1,11,255,255,224,255,255,254,0,11,255,255,224,255,255,254,0,11,255,255,224,255,255,254,0,0,0,31,224,0,1,254,0,0,0,31,224,0,1,254,0,0,0,31,224,0,1,254,0,0,0,31,208,0,1,254,0,0,0,31,208,0,1,254,0,0,0,47,208,0,1,253,0,0,0,47,192,0,1,253,0,0,0,63,192,0,2,253,0,0,0,63,192,0,2,253,0,0,0,63,192,0,2,252,0,0,0,127,128,0,3,252,0,0,0,127,64,0,3,252,0,0,0,191,64,0,3,252,0,0,0,255,0,0,3,248,0,0,0,255,0,0,7,248,0,0,1,254,0,0,11,244,0,0,1,253,0,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0xb0b4 내 + 180,176,28,36,252,35,3,252,0,0,0,0,0,0,21,0,0,0,0,42,0,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,21,0,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,255,255,191,64,0,0,127,255,255,191,64,0,0,127,255,255,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,0,127,64,191,191,64,0,16,127,64,191,191,150,175,248,127,64,191,191,255,255,248,127,64,191,191,255,255,252,127,64,191,191,255,233,64,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,127,64,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191, + // 0xb178 노 + 120,177,31,29,232,35,2,0,1,169,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,0,0,47,224,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xb204 누 + 4,178,31,34,16,35,2,252,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0, + // 0xb274 뉴 + 116,178,31,34,16,35,2,252,0,170,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,2,254,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0,0,1,253,0,2,253,0,0, + // 0xb2c8 니 + 200,178,27,36,252,35,4,252,0,0,0,0,0,1,80,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,254,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,0,0,11,244,255,0,0,1,172,11,244,255,86,171,255,253,11,244,255,255,255,255,254,11,244,255,255,255,255,249,11,244,255,255,234,80,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,240, + // 0xb2e4 다 + 228,178,31,36,32,35,3,252,0,0,0,0,0,5,64,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,191,255,255,255,0,31,208,0,191,255,255,255,0,31,208,0,191,255,255,255,0,31,208,0,191,64,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,255,252,191,0,0,0,0,31,255,252,191,0,0,0,0,31,255,252,191,0,0,0,0,31,224,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,0,0,0,31,208,0,191,0,1,91,252,31,208,0,191,255,255,255,252,31,208,0,191,255,255,255,252,31,208,0,191,255,255,250,80,31,208,0,21,80,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0, + // 0xb2f9 당 + 249,178,31,36,32,35,3,252,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,191,255,255,254,0,15,240,0,191,255,255,254,0,15,240,0,191,255,255,254,0,15,240,0,191,64,0,0,0,15,240,0,191,0,0,0,0,15,240,0,191,0,0,0,0,15,240,0,191,0,0,0,0,15,240,0,191,0,0,0,0,15,255,248,191,0,0,0,0,15,255,248,191,0,0,0,0,15,255,248,191,0,0,0,0,15,240,0,191,0,0,0,0,15,240,0,191,64,21,107,248,15,240,0,191,255,255,255,252,15,240,0,191,255,255,255,252,15,240,0,191,255,255,169,64,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,5,64,0,0,0,27,255,249,0,0,0,0,6,255,255,255,244,0,0,0,47,255,255,255,255,0,0,0,191,249,64,91,255,192,0,0,255,128,0,0,127,208,0,2,254,0,0,0,31,240,0,2,252,0,0,0,15,240,0,2,252,0,0,0,15,240,0,2,254,0,0,0,31,240,0,0,255,128,0,0,127,208,0,0,191,249,81,91,255,192,0,0,47,255,255,255,255,0,0,0,2,255,255,255,244,0,0,0,0,27,255,249,0,0,0, + // 0xb3c4 도 + 196,179,31,29,232,35,2,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xb3cc 돌 + 204,179,31,34,16,35,2,252,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0xb3d9 동 + 217,179,31,34,16,35,2,252,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,47,224,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,255,254,144,0,0,0,2,255,255,255,254,0,0,0,31,255,255,255,255,208,0,0,127,249,0,1,191,240,0,0,255,128,0,0,15,248,0,1,255,0,0,0,3,252,0,1,254,0,0,0,3,252,0,1,255,0,0,0,3,252,0,0,255,128,0,0,15,248,0,0,127,249,0,1,191,240,0,0,31,255,255,255,255,208,0,0,2,255,255,255,254,0,0,0,0,26,255,254,144,0,0, + // 0xb418 되 + 24,180,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,11,255,255,255,255,0,255,11,255,255,255,255,0,255,11,255,255,255,255,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,244,0,0,0,0,255,11,255,255,255,255,0,255,11,255,255,255,255,0,255,11,255,255,255,255,0,255,0,0,47,192,0,0,255,0,0,47,192,0,0,255,0,0,47,192,0,0,255,0,0,47,192,0,0,255,0,0,47,192,0,0,255,0,0,47,213,106,176,255,255,255,255,255,255,244,255,191,255,255,255,255,244,255,191,255,255,255,165,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,191, + // 0xb41c 된 + 28,180,30,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,3,255,255,255,253,0,191,0,3,255,255,255,253,0,191,0,3,255,255,255,253,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,255,255,255,254,0,191,0,3,255,255,255,254,0,191,0,3,255,255,255,254,0,191,0,0,0,47,208,0,0,191,0,0,0,47,208,0,0,191,0,0,0,47,208,0,0,191,0,0,0,47,208,0,0,191,0,0,1,127,234,191,240,191,0,255,255,255,255,255,240,191,0,191,255,255,255,255,240,191,0,191,255,255,169,80,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,10,144,0,0,0,191,0,0,31,208,0,0,0,191,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,255,255,255,255,255,208,0,31,255,255,255,255,255,208,0,31,255,255,255,255,255,208,0,0,0,0,0,0,0,0, + // 0xb428 됨 + 40,180,29,35,24,35,2,252,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,3,255,255,255,254,0,191,64,3,255,255,255,254,0,191,64,3,255,255,255,254,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,255,255,255,255,0,191,64,3,255,255,255,255,0,191,64,3,255,255,255,255,0,191,64,0,0,47,208,0,0,191,64,0,0,47,208,0,0,191,64,0,0,47,208,0,0,191,64,0,0,47,234,191,240,191,64,255,255,255,255,255,240,191,64,191,255,255,255,255,224,191,64,127,255,254,169,64,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,31,208,0,0,0,191,64,0,31,208,0,0,0,191,64,0,31,208,0,0,0,191,64,0,31,208,0,0,0,191,64,0,31,208,0,0,0,191,64,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,31,255,255,255,255,255,64,0,0,0,0,0,0,0,0, + // 0xb4a4 뒤 + 164,180,29,35,24,35,2,252,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,3,255,255,255,253,0,191,64,3,255,255,255,253,0,191,64,3,255,255,255,253,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,252,0,0,0,0,191,64,3,255,255,255,255,0,191,64,3,255,255,255,255,0,191,64,3,255,255,255,255,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,21,107,244,191,64,255,255,255,255,255,244,191,64,255,255,255,255,255,244,191,64,255,255,255,254,165,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,63,192,0,0,191,64,0,0,42,128,0,0,191,64,0,0,0,0,0,0,191,64, + // 0xb4dc 드 + 220,180,31,28,224,35,2,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xb514 디 + 20,181,26,36,252,35,4,252,0,0,0,0,0,5,80,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,255,255,255,255,64,15,240,255,255,255,255,64,15,240,255,255,255,255,64,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,0,0,15,240,255,0,0,90,252,15,240,255,255,255,255,252,15,240,255,255,255,255,253,15,240,255,255,255,254,148,15,240,85,84,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,11,240, + // 0xb77c 라 + 124,183,31,36,32,35,3,252,0,0,0,0,0,5,64,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,255,255,255,255,0,31,224,0,255,255,255,255,0,31,224,0,255,255,255,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,0,0,0,255,0,31,224,0,191,255,255,255,0,31,255,252,191,255,255,255,0,31,255,252,191,255,255,255,0,31,255,252,191,0,0,0,0,31,229,80,191,0,0,0,0,31,224,0,191,0,0,0,0,31,224,0,191,0,0,0,0,31,224,0,191,0,0,0,0,31,224,0,191,0,0,0,0,31,224,0,191,0,0,90,252,31,224,0,191,255,255,255,252,31,224,0,191,255,255,255,253,31,224,0,191,255,255,250,80,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,208,0, + // 0xb7ec 러 + 236,183,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,255,255,255,253,0,2,253,255,255,255,253,0,2,253,255,255,255,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,0,0,1,253,0,2,253,255,255,255,253,0,2,253,255,255,255,253,47,255,253,255,255,255,253,47,255,253,255,0,0,0,47,255,253,255,0,0,0,0,2,253,255,0,0,0,0,2,253,255,0,0,0,0,2,253,255,0,0,0,0,2,253,255,0,0,0,0,2,253,255,0,0,0,0,2,253,255,0,1,106,240,2,253,255,255,255,255,240,2,253,255,255,255,255,244,2,253,255,255,255,234,80,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,1,253, + // 0xb808 레 + 8,184,28,36,252,35,3,252,0,0,0,0,0,0,85,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,255,255,255,0,31,192,191,255,255,255,0,31,192,191,255,255,255,0,31,192,191,0,0,191,0,31,192,191,0,0,191,0,31,192,191,0,0,191,0,31,192,191,0,0,191,0,31,192,191,0,0,191,0,31,192,191,0,0,191,0,31,192,191,0,0,191,31,255,192,191,255,255,255,31,255,192,191,255,255,255,31,255,192,191,255,255,255,0,47,192,191,254,0,0,0,31,192,191,254,0,0,0,31,192,191,254,0,0,0,31,192,191,254,0,0,0,31,192,191,254,0,0,0,31,192,191,254,0,0,0,31,192,191,255,0,22,184,31,192,191,255,255,255,252,31,192,191,255,255,255,252,31,192,191,255,255,254,164,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,31,192,191,0,0,0,0,0,0,191,0,0,0,0,0,0,127, + // 0xb825 력 + 37,184,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,255,255,255,252,0,2,253,255,255,255,252,0,2,253,255,255,255,252,0,2,253,0,0,3,252,47,255,253,0,0,3,252,47,255,253,0,0,3,252,47,255,253,0,0,3,252,0,2,253,191,255,255,252,0,2,253,191,255,255,252,0,2,253,191,255,255,252,0,2,253,191,0,0,0,47,255,253,191,0,0,0,47,255,253,191,0,0,0,47,255,253,191,0,0,0,0,2,253,191,64,21,175,192,2,253,191,255,255,255,192,2,253,191,255,255,255,192,2,253,191,255,255,165,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,255,255,255,255,255,253,0,255,255,255,255,255,253,0,255,255,255,255,255,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253, + // 0xb85c 로 + 92,184,31,29,232,35,2,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,224,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0xb8cc 료 + 204,184,31,29,232,35,2,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,255,64,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,191,0,3,252,0,0,0,0,255,64,3,252,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0xb974 르 + 116,185,31,29,232,35,2,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,0,0,0,0,0,2,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,255,255,255,255,255,253,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xb9ac 리 + 172,185,26,36,252,35,4,252,0,0,0,0,0,5,80,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,255,255,255,255,0,11,240,255,255,255,255,0,11,240,255,255,255,255,0,11,240,0,0,0,255,0,11,240,0,0,0,255,0,11,240,0,0,0,255,0,11,240,0,0,0,255,0,11,240,0,0,0,255,0,11,240,0,0,0,255,0,11,240,0,0,1,255,0,11,240,255,255,255,255,0,11,240,255,255,255,255,0,11,240,255,255,255,255,0,11,240,255,0,0,0,0,11,240,255,0,0,0,0,11,240,255,0,0,0,0,11,240,255,0,0,0,0,11,240,255,0,0,0,0,11,240,255,0,0,0,0,11,240,255,0,1,90,254,11,240,255,255,255,255,254,11,240,255,255,255,255,255,11,240,255,255,255,250,144,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240,0,0,0,0,0,11,240, + // 0xb9b0 린 + 176,185,28,36,252,35,3,252,0,0,0,0,0,1,84,0,0,0,0,0,2,252,0,0,0,0,0,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,21,107,255,2,252,127,255,255,255,255,2,252,127,255,255,255,255,2,252,127,255,255,233,64,2,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,21,0,0,0,2,252,0,127,64,0,0,2,252,0,127,64,0,0,2,168,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,64,0,0,0,0,0,127,255,255,255,255,255,0,127,255,255,255,255,255,0,127,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xb9bd 립 + 189,185,27,36,252,35,3,252,0,0,0,0,0,1,168,0,0,0,0,0,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,22,191,2,252,127,255,255,255,255,2,252,127,255,255,255,255,2,252,127,255,255,254,148,2,252,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,42,64,0,0,1,168,0,127,128,0,0,2,252,0,127,128,0,0,2,252,0,127,128,0,0,2,252,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,127,128,0,0,2,252,0,127,128,0,0,2,252,0,127,128,0,0,2,252,0,127,128,0,0,2,252,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,0,0,0,0,0,0, + // 0xb9c1 링 + 193,185,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,252,0,0,0,0,0,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,0,0,0,191,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,255,255,255,64,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,0,0,2,252,127,128,0,22,191,2,252,127,255,255,255,255,2,252,127,255,255,255,255,2,252,127,255,255,254,148,2,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,0,10,255,255,144,0,0,1,255,255,255,254,0,0,15,255,255,255,255,224,0,63,254,64,1,191,244,0,127,208,0,0,11,252,0,191,64,0,0,2,253,0,191,0,0,0,2,253,0,191,64,0,0,3,253,0,127,208,0,0,11,252,0,63,254,80,5,191,244,0,11,255,255,255,255,208,0,1,255,255,255,254,0,0,0,6,255,254,144,0, + // 0xba48 멈 + 72,186,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,64,0,191,64,2,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,64,0,191,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,63,128,0,0,1,253,0,63,128,0,0,1,253,0,63,128,0,0,1,253,0,63,128,0,0,1,253,0,63,128,0,0,1,253,0,63,128,0,0,1,253,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,63,255,255,255,255,253,0,0,0,0,0,0,0, + // 0xba54 메 + 84,186,28,35,245,35,3,252,0,0,0,0,10,128,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,255,255,208,127,254,0,31,255,255,208,127,254,0,31,255,255,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,254,0,31,208,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,5,64,127,0,0,0,0,0,0,127, + // 0xba74 면 + 116,186,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,0,0,127,64,2,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,0,0,127,255,255,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,63,192,0,0,2,253,0,63,192,0,0,2,253,0,63,192,0,0,0,84,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xbaa8 모 + 168,186,31,28,224,35,2,0,2,255,255,255,255,255,253,0,2,255,255,255,255,255,253,0,2,255,255,255,255,255,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,255,255,255,255,255,253,0,2,255,255,255,255,255,253,0,2,255,255,255,255,255,253,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xbabb 못 + 187,186,31,34,16,35,2,252,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,254,0,0,0,3,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,248,0,0,0,0,0,2,255,253,0,0,0,0,0,11,252,255,128,0,0,0,0,127,240,127,244,0,0,0,27,255,208,31,255,64,0,7,255,254,0,3,255,254,64,7,255,244,0,0,127,255,64,3,254,64,0,0,7,255,0,1,64,0,0,0,0,4,0, + // 0xbbf8 미 + 248,187,26,36,252,35,4,252,0,0,0,0,0,5,80,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,254,0,0,255,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,11,240, + // 0xbc00 밀 + 0,188,28,35,245,35,3,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,127,255,255,255,192,2,252,127,255,255,255,192,2,252,127,255,255,255,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,128,0,63,192,2,252,127,255,255,255,192,2,252,127,255,255,255,192,2,252,127,255,255,255,192,2,252,0,0,0,0,0,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,127,255,255,255,255,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,0,0,0,0,2,252,0,63,255,255,255,255,252,0,63,255,255,255,255,252,0,63,255,255,255,255,252,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,128,0,0,0,0,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xbc14 바 + 20,188,31,36,32,35,3,252,0,0,0,0,0,5,64,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,85,0,0,21,0,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,191,64,31,208,0,255,255,255,255,64,31,208,0,255,255,255,255,64,31,255,252,255,255,255,255,64,31,255,252,255,0,0,127,64,31,255,252,255,0,0,127,64,31,229,80,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,0,0,127,64,31,208,0,255,255,255,255,64,31,208,0,255,255,255,255,64,31,208,0,255,255,255,255,64,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0, + // 0xbc84 버 + 132,188,28,36,252,35,3,252,0,0,0,0,0,1,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,170,0,0,106,0,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,255,255,255,64,2,253,255,255,255,255,255,255,253,255,255,255,255,255,255,253,255,0,0,191,255,255,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,0,0,191,64,2,253,255,255,255,255,64,2,253,255,255,255,255,64,2,253,255,255,255,255,64,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,1,253, + // 0xbca0 베 + 160,188,28,36,252,35,3,252,0,0,0,0,0,0,21,0,0,0,0,26,128,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,255,255,255,208,31,208,127,255,255,255,224,47,208,127,255,255,255,255,255,208,127,255,0,31,255,255,208,127,254,0,15,255,255,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,254,0,15,208,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,255,255,255,208,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,31,208,127,0,0,0,0,0,0,127,0,0,0,0,0,0,127, + // 0xbca8 벨 + 168,188,29,36,32,35,3,252,0,0,0,0,0,0,85,0,0,0,0,0,31,192,255,0,21,0,6,144,47,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,255,255,224,47,192,255,0,191,255,255,255,255,192,255,0,191,255,255,255,255,192,255,0,191,0,15,255,255,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,0,15,224,47,192,255,0,191,255,255,224,47,192,255,0,191,255,255,224,47,192,255,0,191,255,255,224,47,192,255,0,0,0,0,0,47,192,255,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,63,255,255,255,255,255,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xbcf8 본 + 248,188,31,34,16,35,2,252,0,254,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,0,0,0,3,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0xbe44 비 + 68,190,26,36,252,35,4,252,0,0,0,0,0,5,80,0,0,0,0,0,15,240,0,0,0,0,0,15,240,84,0,0,21,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,254,0,0,191,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,255,255,255,255,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,15,240,0,0,0,0,0,11,240, + // 0xc0ac 사 + 172,192,33,36,68,35,1,252,0,0,0,0,0,0,84,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,21,64,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,127,192,0,1,253,0,0,0,0,127,208,0,1,253,0,0,0,0,191,224,0,1,254,0,0,0,0,255,240,0,1,255,255,192,0,1,255,244,0,1,255,255,192,0,2,255,248,0,1,255,255,192,0,3,250,252,0,1,253,0,0,0,15,240,255,0,1,253,0,0,0,47,240,255,128,1,253,0,0,0,127,208,63,208,1,253,0,0,0,255,128,47,244,1,253,0,0,3,255,0,15,253,1,253,0,0,31,253,0,3,255,193,253,0,0,127,244,0,0,255,129,253,0,0,47,208,0,0,63,1,253,0,0,15,0,0,0,8,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0, + // 0xc0bd 삽 + 189,192,32,36,32,35,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,0,170,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,1,255,64,0,3,252,0,0,2,255,192,0,3,255,254,0,3,255,208,0,3,255,254,0,11,255,240,0,3,255,254,0,31,251,252,0,3,248,0,0,127,195,255,0,3,248,0,1,255,129,255,208,3,248,0,11,255,0,127,253,3,248,0,191,252,0,31,254,3,248,0,255,224,0,3,252,3,248,0,63,64,0,0,116,3,248,0,20,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,164,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0xc0c8 새 + 200,192,30,36,32,35,1,252,0,0,0,0,0,0,1,80,0,0,0,0,2,164,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,253,0,3,248,7,240,0,1,254,0,3,248,7,240,0,1,254,0,3,248,7,240,0,1,254,0,3,248,7,240,0,2,255,0,3,248,7,240,0,2,255,0,3,248,11,240,0,3,255,0,3,255,255,240,0,3,255,128,3,255,255,240,0,11,255,192,3,255,255,240,0,15,255,192,3,248,7,240,0,31,223,240,3,248,7,240,0,63,203,244,3,248,7,240,0,191,135,252,3,248,7,240,0,255,2,255,3,248,7,240,3,254,0,255,195,248,7,240,15,252,0,127,243,248,7,240,127,240,0,47,227,248,7,240,63,208,0,7,195,248,7,240,15,64,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,3,248,7,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,7,240, + // 0xc124 설 + 36,193,30,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,255,0,0,0,191,64,0,0,255,0,0,0,191,64,0,0,255,0,0,0,191,64,0,0,255,0,0,0,191,64,0,0,255,0,0,0,191,64,0,0,255,64,47,255,255,64,0,1,255,192,47,255,255,64,0,3,255,208,47,255,255,64,0,7,255,240,0,0,191,64,0,15,251,248,0,0,191,64,0,63,211,255,0,0,191,64,0,255,193,255,208,0,191,64,11,255,0,127,253,0,191,64,191,252,0,31,255,0,191,64,191,224,0,2,252,0,191,64,63,64,0,0,36,0,191,64,4,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,255,255,255,255,255,224,0,15,255,255,255,255,255,224,0,15,255,255,255,255,255,224,0,0,0,0,0,0,0,0, + // 0xc18c 소 + 140,193,31,30,240,35,2,0,0,0,0,5,64,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,244,0,0,0,0,0,1,255,252,0,0,0,0,0,3,254,255,0,0,0,0,0,15,248,255,128,0,0,0,0,63,240,63,224,0,0,0,1,255,192,31,252,0,0,0,31,255,0,7,255,128,0,1,255,252,0,1,255,249,0,63,255,224,0,0,63,255,208,31,255,0,0,0,7,255,192,15,228,0,0,0,0,111,128,0,0,0,47,192,0,1,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,47,192,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc18d 속 + 141,193,31,35,24,35,2,252,0,0,0,31,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,240,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,252,0,0,0,0,0,3,255,254,0,0,0,0,0,15,248,255,128,0,0,0,0,191,240,63,244,0,0,0,11,255,192,31,255,64,0,6,255,254,0,3,255,250,64,15,255,244,0,0,127,255,192,11,254,64,47,208,7,255,64,3,144,0,47,208,0,27,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,252,0, + // 0xc2a4 스 + 164,194,31,29,232,35,2,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,240,0,0,0,0,0,0,191,244,0,0,0,0,0,0,255,252,0,0,0,0,0,3,255,253,0,0,0,0,0,11,248,255,64,0,0,0,0,47,240,127,208,0,0,0,0,191,208,63,244,0,0,0,7,255,128,15,254,0,0,0,111,253,0,3,255,224,0,27,255,244,0,0,191,254,64,47,255,128,0,0,31,255,208,15,253,0,0,0,2,255,192,11,128,0,0,0,0,27,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc2ac 슬 + 172,194,31,35,24,35,2,252,0,0,0,47,208,0,0,0,0,0,0,47,224,0,0,0,0,0,0,63,240,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,252,0,0,0,0,0,3,254,255,0,0,0,0,0,31,248,191,208,0,0,0,1,255,224,63,253,0,0,1,191,255,64,11,255,233,0,31,255,252,0,0,255,255,192,15,255,128,0,0,27,255,128,7,228,0,0,0,0,111,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,170,170,170,170,168,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0xc2dc 시 + 220,194,28,35,245,35,2,252,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,191,192,0,0,255,0,0,255,192,0,0,255,0,0,255,208,0,0,255,0,1,255,224,0,0,255,0,2,255,240,0,0,255,0,3,255,248,0,0,255,0,11,243,252,0,0,255,0,15,241,255,0,0,255,0,63,208,255,128,0,255,0,191,192,127,208,0,255,2,255,0,47,244,0,255,11,254,0,15,254,0,255,127,252,0,3,255,192,255,255,240,0,0,255,192,255,127,192,0,0,47,0,255,45,0,0,0,5,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,85, + // 0xc2dd 식 + 221,194,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,191,0,0,106,64,0,0,191,0,0,191,64,0,0,191,0,0,191,64,0,0,191,0,0,191,64,0,0,191,0,0,191,64,0,0,191,0,0,191,128,0,0,191,0,0,255,192,0,0,191,0,0,255,192,0,0,191,0,2,255,208,0,0,191,0,3,255,240,0,0,191,0,11,255,248,0,0,191,0,31,243,254,0,0,191,0,127,209,255,128,0,191,1,255,128,191,240,0,191,15,255,0,47,254,0,191,191,252,0,11,255,64,191,127,240,0,1,255,0,191,63,128,0,0,44,0,191,8,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,63,255,255,255,255,255,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191, + // 0xc5b4 어 + 180,197,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,7,254,0,0,0,191,64,0,127,255,224,0,0,191,64,1,255,255,248,0,0,191,64,3,255,175,253,0,0,191,64,11,248,1,255,0,0,191,64,15,240,0,191,128,0,191,64,47,208,0,63,192,0,191,64,63,192,0,47,192,0,191,64,63,128,0,31,208,0,191,64,127,128,0,15,224,0,191,64,127,64,0,15,240,0,191,64,127,64,0,15,255,255,255,64,127,0,0,15,255,255,255,64,127,64,0,15,255,255,255,64,127,64,0,15,240,0,191,64,127,64,0,15,224,0,191,64,63,128,0,31,208,0,191,64,63,192,0,47,192,0,191,64,47,208,0,63,192,0,191,64,15,240,0,127,128,0,191,64,15,248,1,255,0,0,191,64,3,255,175,253,0,0,191,64,1,255,255,248,0,0,191,64,0,127,255,224,0,0,191,64,0,7,254,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,64, + // 0xc5c6 없 + 198,197,32,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,27,254,64,0,0,191,64,0,255,255,248,0,0,191,64,7,255,255,254,0,0,191,64,15,254,86,255,128,0,191,64,47,240,0,127,192,0,191,64,63,192,0,31,224,0,191,64,127,128,0,15,240,0,191,64,191,64,0,11,255,255,255,64,191,0,0,11,255,255,255,64,191,64,0,11,255,255,255,64,127,128,0,15,240,0,191,64,63,208,0,47,208,0,191,64,31,249,1,255,192,0,191,64,11,255,255,255,0,0,191,64,1,255,255,252,0,0,191,64,0,47,255,144,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,170,0,15,240,0,0,253,0,191,0,15,240,0,0,253,0,191,0,15,240,0,0,253,0,191,0,15,240,0,0,255,255,255,0,31,240,0,0,255,255,255,0,47,244,0,0,255,255,255,0,63,248,0,0,253,0,191,0,127,252,0,0,253,0,191,1,255,255,0,0,253,0,191,3,252,191,192,0,253,0,191,47,248,63,244,0,255,255,255,255,240,15,254,0,255,255,255,127,128,3,252,0,255,255,255,46,0,0,184,0,0,0,0,0,0,0,0, + // 0xc5d1 엑 + 209,197,29,36,32,35,2,252,0,0,0,0,0,0,21,64,0,0,0,0,7,240,63,192,0,1,0,0,7,244,63,192,0,127,253,0,7,244,63,192,3,255,255,128,7,244,63,192,15,255,255,240,7,244,63,192,31,244,31,248,7,244,63,192,63,192,3,252,7,244,63,192,127,64,1,253,7,244,63,192,191,0,0,254,7,244,63,192,255,0,0,255,255,244,63,192,254,0,0,255,255,244,63,192,255,0,0,255,255,244,63,192,191,0,0,253,7,244,63,192,127,64,2,252,7,244,63,192,63,208,7,252,7,244,63,192,31,249,111,244,7,244,63,192,11,255,255,224,7,244,63,192,2,255,255,64,7,244,63,192,0,47,232,0,7,244,63,192,0,0,0,0,7,244,63,192,0,0,0,0,1,80,26,128,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,192,0,31,255,255,255,255,255,192,0,31,255,255,255,255,255,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192, + // 0xc5d4 엔 + 212,197,30,36,32,35,2,252,0,0,0,0,0,0,21,64,0,0,0,0,7,244,63,192,0,0,0,0,7,244,63,192,0,47,248,0,7,244,63,192,2,255,255,64,7,244,63,192,11,255,255,208,7,244,63,192,31,249,127,240,7,244,63,192,63,208,11,252,7,244,63,192,127,128,2,252,7,244,63,192,191,0,1,253,7,244,63,192,191,0,0,254,7,244,63,192,255,0,0,255,255,244,63,192,254,0,0,255,255,244,63,192,191,0,0,255,255,244,63,192,191,0,0,253,7,244,63,192,63,128,3,252,7,244,63,192,47,244,31,248,7,244,63,192,15,255,255,240,7,244,63,192,3,255,255,192,7,244,63,192,0,191,253,0,7,244,63,192,0,1,0,0,7,244,63,192,0,0,0,0,7,244,63,192,0,0,0,0,7,244,63,192,0,10,160,0,7,244,63,192,0,11,240,0,7,244,63,192,0,11,240,0,7,240,63,192,0,11,240,0,0,0,47,192,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xc5f4 열 + 244,197,30,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,47,255,144,0,0,191,64,1,255,255,248,0,0,191,64,11,255,255,255,0,0,191,64,31,253,1,255,255,255,255,64,63,224,0,63,255,255,255,64,63,192,0,15,255,255,255,64,127,64,0,15,240,0,191,64,191,0,0,11,240,0,191,64,191,0,0,11,240,0,191,64,127,64,0,15,240,0,191,64,63,192,0,31,255,255,255,64,63,224,0,63,255,255,255,64,15,254,86,255,255,255,255,64,7,255,255,255,0,0,191,64,0,255,255,244,0,0,191,64,0,27,254,64,0,0,191,64,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,255,255,255,255,255,64,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,255,255,255,255,255,208,0,15,255,255,255,255,255,208,0,15,255,255,255,255,255,208,0,0,0,0,0,0,0,0, + // 0xc608 예 + 8,198,29,36,32,35,2,252,0,0,0,0,0,0,5,64,0,0,0,0,2,164,31,192,0,0,0,0,7,244,31,192,0,10,144,0,7,244,31,192,0,191,252,0,7,244,31,192,3,255,255,0,7,244,31,192,11,255,255,192,7,244,31,192,15,244,63,208,7,244,31,192,47,208,15,240,7,244,31,192,63,192,11,255,255,244,31,192,63,64,3,255,255,244,31,192,127,0,3,255,255,244,31,192,191,0,3,252,7,244,31,192,191,0,2,252,7,244,31,192,191,0,2,252,7,244,31,192,191,0,2,252,7,244,31,192,191,0,2,252,7,244,31,192,191,0,2,252,7,244,31,192,191,0,2,252,7,244,31,192,127,0,3,252,7,244,31,192,127,64,3,255,255,244,31,192,63,128,7,255,255,244,31,192,63,192,11,255,255,244,31,192,31,224,31,224,7,244,31,192,15,254,255,192,7,244,31,192,3,255,255,64,7,244,31,192,1,255,254,0,7,244,31,192,0,47,224,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,7,244,31,192,0,0,0,0,0,0,31,192,0,0,0,0,0,0,26,128, + // 0xc624 오 + 36,198,31,29,232,35,2,0,0,0,6,255,254,64,0,0,0,1,255,255,255,248,0,0,0,11,255,255,255,255,128,0,0,63,254,64,6,255,224,0,0,191,208,0,0,47,248,0,1,255,0,0,0,7,252,0,2,253,0,0,0,2,254,0,3,252,0,0,0,0,255,0,3,248,0,0,0,0,255,0,3,248,0,0,0,0,255,0,3,252,0,0,0,0,255,0,2,253,0,0,0,2,254,0,1,255,0,0,0,7,252,0,0,191,208,0,0,47,248,0,0,63,254,64,6,255,224,0,0,11,255,255,255,255,128,0,0,1,255,255,255,253,0,0,0,0,11,255,254,64,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc628 온 + 40,198,31,34,16,35,2,252,0,0,27,255,255,144,0,0,0,2,255,255,255,254,0,0,0,47,255,255,255,255,208,0,0,191,249,0,1,255,244,0,0,255,128,0,0,15,252,0,2,254,0,0,0,3,253,0,2,253,0,0,0,1,254,0,2,253,0,0,0,1,254,0,2,254,0,0,0,3,253,0,0,255,128,0,0,15,252,0,0,127,253,64,6,255,244,0,0,31,255,255,255,255,208,0,0,2,255,255,255,254,0,0,0,0,26,255,254,80,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0xc644 완 + 68,198,32,36,32,35,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,3,252,0,0,6,191,144,0,3,252,0,0,127,255,253,0,3,252,0,1,255,255,255,192,3,252,0,3,254,64,127,224,3,252,0,15,244,0,15,240,3,252,0,15,224,0,7,248,3,252,0,15,208,0,3,248,3,252,0,15,208,0,3,248,3,252,0,15,224,0,7,244,3,252,0,11,244,0,15,240,3,252,0,3,254,64,127,224,3,255,253,1,255,255,255,192,3,255,253,0,63,255,254,0,3,255,253,0,6,255,208,0,3,252,0,0,0,191,0,0,3,252,0,0,0,191,0,0,3,252,0,0,0,191,0,1,67,252,0,0,5,255,175,255,195,252,0,255,255,255,255,255,195,252,0,255,255,255,255,255,131,252,0,191,255,254,165,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,21,0,0,0,3,252,0,0,127,128,0,0,3,252,0,0,127,128,0,0,3,248,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0xc6d0 원 + 208,198,29,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,2,191,228,0,0,191,64,0,47,255,255,128,0,191,64,1,255,255,255,240,0,191,64,3,254,64,31,248,0,191,64,7,248,0,3,252,0,191,64,11,240,0,2,253,0,191,64,11,240,0,2,253,0,191,64,7,248,0,3,252,0,191,64,3,254,64,31,248,0,191,64,1,255,255,255,240,0,191,64,0,47,255,255,128,0,191,64,0,2,191,228,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,80,191,64,0,21,85,171,255,240,191,64,255,255,255,255,255,240,191,64,255,255,255,255,255,240,191,64,255,255,255,250,80,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,10,170,255,64,0,0,47,192,31,255,255,64,0,0,47,192,31,255,255,64,0,85,47,192,0,0,191,64,0,191,111,192,0,0,191,64,0,191,64,0,0,0,191,64,0,191,64,0,0,0,21,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,255,255,255,255,255,192,0,191,255,255,255,255,255,192,0,191,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xc704 위 + 4,199,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,64,0,1,191,228,0,0,191,64,0,31,255,255,64,0,191,64,0,191,255,255,240,0,191,64,2,255,213,111,248,0,191,64,3,253,0,7,253,0,191,64,7,248,0,1,254,0,191,64,11,240,0,0,255,0,191,64,11,240,0,0,255,0,191,64,11,240,0,0,255,0,191,64,7,248,0,1,254,0,191,64,3,253,0,7,253,0,191,64,2,255,213,111,248,0,191,64,0,191,255,255,240,0,191,64,0,31,255,255,64,0,191,64,0,1,191,228,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,80,191,64,0,85,85,171,255,240,191,64,255,255,255,255,255,244,191,64,255,255,255,255,255,224,191,64,191,255,255,233,64,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,0,0,0,0,191,64, + // 0xc73c 으 + 60,199,31,29,232,35,2,0,0,0,10,255,254,64,0,0,0,0,255,255,255,248,0,0,0,11,255,255,255,255,64,0,0,47,254,80,22,255,224,0,0,191,224,0,0,47,244,0,0,255,64,0,0,7,252,0,2,253,0,0,0,2,253,0,3,252,0,0,0,0,255,0,3,248,0,0,0,0,255,0,3,248,0,0,0,0,255,0,3,248,0,0,0,0,255,0,3,252,0,0,0,0,255,0,2,253,0,0,0,2,253,0,0,255,64,0,0,7,252,0,0,191,224,0,0,47,244,0,0,47,254,64,22,255,224,0,0,11,255,255,255,255,64,0,0,0,255,255,255,248,0,0,0,0,11,255,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc74c 음 + 76,199,31,35,24,35,2,252,0,0,26,255,254,144,0,0,0,2,255,255,255,254,0,0,0,31,255,255,255,255,208,0,0,191,253,64,6,255,244,0,0,255,128,0,0,15,252,0,2,254,0,0,0,3,253,0,2,253,0,0,0,1,254,0,2,253,0,0,0,1,254,0,2,254,0,0,0,3,253,0,0,255,128,0,0,15,252,0,0,191,253,64,6,255,244,0,0,31,255,255,255,255,208,0,0,2,255,255,255,254,0,0,0,0,26,255,254,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0, + // 0xc774 이 + 116,199,27,36,252,35,3,252,0,0,0,0,0,1,84,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,11,253,0,0,3,252,0,191,255,208,0,3,252,2,255,255,244,0,3,252,11,255,175,253,0,3,252,15,244,2,255,0,3,252,47,224,0,191,64,3,252,63,192,0,63,192,3,252,127,128,0,63,192,3,252,191,64,0,31,208,3,252,191,0,0,31,224,3,252,255,0,0,15,224,3,252,255,0,0,15,224,3,252,255,0,0,15,224,3,252,255,0,0,15,224,3,252,255,0,0,15,224,3,252,191,0,0,31,224,3,252,191,64,0,31,208,3,252,127,128,0,63,192,3,252,63,192,0,63,192,3,252,47,224,0,191,64,3,252,15,244,2,255,0,3,252,11,255,175,253,0,3,252,2,255,255,244,0,3,252,0,191,255,208,0,3,252,0,11,253,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,2,252, + // 0xc77c 일 + 124,199,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,0,0,31,255,208,0,0,191,0,1,255,255,253,0,0,191,0,7,255,255,255,128,0,191,0,15,253,1,255,208,0,191,0,63,224,0,47,240,0,191,0,63,192,0,15,244,0,191,0,127,128,0,7,244,0,191,0,127,64,0,7,248,0,191,0,127,128,0,7,244,0,191,0,63,192,0,15,244,0,191,0,63,224,0,47,240,0,191,0,15,253,1,255,208,0,191,0,7,255,255,255,128,0,191,0,1,255,255,253,0,0,191,0,0,31,255,208,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,0,0,31,255,255,255,255,255,0,0,31,255,255,255,255,255,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,15,255,255,255,255,255,0,0,15,255,255,255,255,255,0,0,15,255,255,255,255,255,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xc77d 읽 + 125,199,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,191,0,11,255,128,0,0,191,0,191,255,248,0,0,191,3,255,255,255,64,0,191,15,254,70,255,192,0,191,47,240,0,63,224,0,191,63,192,0,15,240,0,191,127,128,0,11,244,0,191,127,64,0,7,248,0,191,127,64,0,7,248,0,191,127,128,0,11,244,0,191,63,192,0,15,240,0,191,47,240,0,47,240,0,191,15,254,70,255,192,0,191,3,255,255,255,64,0,191,0,191,255,248,0,0,191,0,11,255,128,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,254,63,255,255,0,255,255,254,63,255,255,0,255,255,254,63,255,255,0,0,0,254,0,0,191,0,0,0,254,0,0,191,0,191,255,254,0,0,191,0,255,255,254,0,0,191,0,255,255,254,0,0,191,0,255,0,0,0,0,191,0,255,0,0,0,0,191,0,255,0,5,144,0,191,0,255,255,255,240,0,191,0,255,255,255,240,0,191,0,255,255,250,80,0,191,0,0,0,0,0,0,21, + // 0xc785 입 + 133,199,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,191,0,11,255,144,0,0,191,0,191,255,253,0,0,191,3,255,255,255,64,0,191,15,254,86,255,208,0,191,47,240,0,47,240,0,191,63,192,0,15,244,0,191,63,128,0,7,248,0,191,127,128,0,3,248,0,191,127,64,0,3,248,0,191,127,128,0,7,248,0,191,63,192,0,11,244,0,191,47,240,0,31,240,0,191,15,253,1,191,208,0,191,7,255,255,255,128,0,191,0,255,255,254,0,0,191,0,31,255,224,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xc790 자 + 144,199,33,36,68,35,1,252,0,0,0,0,0,0,84,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,31,255,255,255,255,1,253,0,0,31,255,255,255,255,1,253,0,0,31,255,255,255,255,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,127,208,0,1,254,0,0,0,0,191,224,0,1,255,255,192,0,0,255,240,0,1,255,255,192,0,1,255,244,0,1,255,255,192,0,3,255,252,0,1,253,0,0,0,7,249,254,0,1,253,0,0,0,15,240,255,64,1,253,0,0,0,47,224,127,192,1,253,0,0,0,127,192,63,240,1,253,0,0,1,255,64,15,252,1,253,0,0,7,255,0,7,255,65,253,0,0,47,252,0,1,255,209,253,0,0,127,240,0,0,127,129,253,0,0,47,192,0,0,15,1,253,0,0,14,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0, + // 0xc791 작 + 145,199,32,36,32,35,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,1,255,64,0,3,252,0,0,2,255,128,0,3,255,254,0,3,255,192,0,3,255,254,0,7,255,224,0,3,255,254,0,15,255,244,0,3,248,0,0,63,215,253,0,3,248,0,0,255,194,255,64,3,248,0,7,255,0,255,244,3,248,0,127,253,0,63,255,3,248,0,255,244,0,11,253,3,248,0,191,192,0,1,252,3,248,0,61,0,0,0,16,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0, + // 0xc798 잘 + 152,199,32,35,24,35,2,252,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,1,255,64,0,3,255,254,0,3,255,192,0,3,255,254,0,7,255,208,0,3,255,254,0,15,255,244,0,3,252,0,0,63,215,253,0,3,248,0,0,255,194,255,128,3,248,0,11,255,0,191,249,3,248,0,191,252,0,47,255,3,248,0,255,240,0,7,253,3,248,0,191,128,0,0,104,3,248,0,36,0,0,0,0,2,164,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,248,0,0,127,255,255,255,255,248,0,0,127,255,255,255,255,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,127,255,255,255,255,248,0,0,127,255,255,255,255,248,0,0,127,255,255,255,255,248,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,127,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0xc7a5 장 + 165,199,32,36,32,35,2,252,0,0,0,0,0,1,84,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,127,255,255,255,252,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,1,255,64,0,3,255,254,0,2,255,128,0,3,255,254,0,3,255,192,0,3,255,254,0,7,255,240,0,3,252,0,0,15,251,248,0,3,248,0,0,63,211,254,0,3,248,0,0,255,194,255,128,3,248,0,3,255,64,191,248,3,248,0,47,253,0,63,255,3,248,0,255,248,0,11,253,3,248,0,191,208,0,1,252,3,248,0,63,64,0,0,16,3,248,0,20,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,10,255,255,144,0,0,0,1,255,255,255,254,0,0,0,15,255,255,255,255,208,0,0,63,253,0,1,191,240,0,0,127,208,0,0,15,248,0,0,191,64,0,0,3,252,0,0,191,0,0,0,3,252,0,0,191,64,0,0,3,252,0,0,127,208,0,0,15,248,0,0,47,254,64,5,191,240,0,0,11,255,255,255,255,192,0,0,1,255,255,255,254,0,0,0,0,6,255,254,144,0,0, + // 0xc7ac 재 + 172,199,30,36,32,35,2,252,0,0,0,0,0,0,5,64,0,0,0,0,6,160,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,191,255,255,255,15,240,31,208,191,255,255,255,15,240,31,208,191,255,255,255,15,240,31,208,0,7,244,0,15,240,31,208,0,7,244,0,15,240,31,208,0,7,244,0,15,240,31,208,0,11,248,0,15,240,31,208,0,11,248,0,15,240,31,208,0,11,248,0,15,240,31,208,0,15,252,0,15,240,31,208,0,15,252,0,15,255,255,208,0,31,253,0,15,255,255,208,0,47,254,0,15,255,255,208,0,63,255,0,15,240,31,208,0,63,191,128,15,240,31,208,0,255,47,192,15,240,31,208,1,254,31,240,15,240,31,208,3,253,15,248,15,240,31,208,11,248,3,254,15,240,31,208,47,240,1,255,207,240,31,208,255,208,0,191,207,240,31,208,255,128,0,31,15,240,31,208,126,0,0,1,15,240,31,208,20,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,15,240,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208, + // 0xc800 저 + 0,200,29,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,63,255,255,255,254,0,191,64,63,255,255,255,254,0,191,64,63,255,255,255,254,0,191,64,0,0,255,64,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,128,31,255,255,64,0,1,255,192,31,255,255,64,0,2,255,192,31,255,255,64,0,3,255,224,0,0,191,64,0,7,255,240,0,0,191,64,0,11,247,244,0,0,191,64,0,31,227,252,0,0,191,64,0,63,193,255,0,0,191,64,0,191,128,255,128,0,191,64,1,255,0,127,208,0,191,64,7,254,0,47,248,0,191,64,31,252,0,15,255,0,191,64,255,240,0,3,255,128,191,64,255,192,0,0,255,0,191,64,63,0,0,0,29,0,191,64,40,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,64, + // 0xc804 전 + 4,200,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,128,0,0,191,64,0,0,255,192,15,255,255,64,0,1,255,192,15,255,255,64,0,3,255,224,15,255,255,64,0,7,255,240,0,0,191,64,0,15,247,252,0,0,191,64,0,63,210,255,0,0,191,64,0,255,192,255,208,0,191,64,7,255,0,63,252,0,191,64,127,253,0,31,255,0,191,64,255,244,0,3,254,0,191,64,63,192,0,0,124,0,191,64,45,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,11,240,0,0,0,191,64,0,15,240,0,0,0,191,64,0,15,240,0,0,0,21,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,15,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xc815 정 + 21,200,29,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,128,0,0,191,64,0,1,255,192,11,255,255,64,0,2,255,224,11,255,255,64,0,3,255,240,11,255,255,64,0,11,251,248,0,0,191,64,0,47,243,254,0,0,191,64,0,127,209,255,128,0,191,64,1,255,128,191,244,0,191,64,31,255,0,47,255,0,191,64,191,252,0,11,255,0,191,64,127,240,0,1,252,0,191,64,63,128,0,0,24,0,191,64,24,0,0,0,0,0,191,64,0,0,0,0,0,0,0,0,0,0,1,191,255,228,0,0,0,0,127,255,255,255,128,0,0,2,255,255,255,255,248,0,0,11,255,144,0,111,253,0,0,15,244,0,0,2,255,0,0,47,224,0,0,0,191,64,0,47,208,0,0,0,127,64,0,47,224,0,0,0,191,64,0,15,244,0,0,2,255,0,0,11,255,144,0,111,253,0,0,2,255,255,255,255,248,0,0,0,127,255,255,255,128,0,0,0,1,191,255,164,0,0, + // 0xc81c 제 + 28,200,29,36,32,35,2,252,0,0,0,0,0,0,5,64,0,0,0,0,6,160,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,127,255,255,255,7,240,47,192,127,255,255,255,7,240,47,192,127,255,255,255,7,240,47,192,0,7,244,0,7,240,47,192,0,7,244,0,7,240,47,192,0,7,244,0,7,240,47,192,0,11,244,0,7,240,47,192,0,11,248,0,7,240,47,192,0,11,248,31,255,240,47,192,0,15,248,31,255,240,47,192,0,15,252,31,255,240,47,192,0,31,253,0,11,240,47,192,0,47,254,0,7,240,47,192,0,63,255,0,7,240,47,192,0,127,127,64,7,240,47,192,0,255,63,192,7,240,47,192,1,253,31,224,7,240,47,192,3,252,15,244,7,240,47,192,15,244,7,252,7,240,47,192,47,240,2,255,71,240,47,192,255,208,0,255,199,240,47,192,255,64,0,63,71,240,47,192,126,0,0,10,7,240,47,192,36,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,7,240,47,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,31,192, + // 0xc8fd 죽 + 253,200,31,34,16,35,2,252,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,127,244,0,0,0,0,0,0,191,248,0,0,0,0,0,1,255,252,0,0,0,0,0,7,254,255,0,0,0,0,0,47,248,191,224,0,0,0,2,255,224,63,253,0,0,1,191,255,64,11,255,249,0,31,255,252,0,1,255,255,192,15,255,144,0,0,31,255,128,7,228,0,0,0,0,111,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,252,0, + // 0xc900 준 + 0,201,31,34,16,35,2,252,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,127,244,0,0,0,0,0,0,191,244,0,0,0,0,0,0,255,252,0,0,0,0,0,2,255,254,0,0,0,0,0,11,252,255,64,0,0,0,0,47,240,127,224,0,0,0,2,255,224,47,253,0,0,0,111,255,64,11,255,228,0,15,255,253,0,1,255,255,192,15,255,208,0,0,47,255,128,7,253,0,0,0,2,255,64,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,1,254,0,15,224,0,0,0,1,254,0,15,224,0,0,0,1,254,0,15,224,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0, + // 0xc911 중 + 17,201,31,34,16,35,2,252,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,127,244,0,0,0,0,0,0,255,248,0,0,0,0,0,1,255,253,0,0,0,0,0,7,254,255,64,0,0,0,0,47,248,191,224,0,0,0,6,255,224,63,254,0,0,6,255,255,64,11,255,250,64,31,255,252,0,1,255,255,192,15,255,128,0,0,27,255,128,7,164,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,27,255,254,144,0,0,0,7,255,255,255,254,0,0,0,47,255,255,255,255,208,0,0,127,249,0,1,191,240,0,0,255,128,0,0,15,252,0,1,255,0,0,0,3,252,0,1,254,0,0,0,3,252,0,1,255,0,0,0,3,252,0,0,255,128,0,0,15,252,0,0,127,249,0,1,191,240,0,0,47,255,255,255,255,208,0,0,2,255,255,255,254,0,0,0,0,26,255,254,144,0,0, + // 0xc990 즐 + 144,201,31,34,16,35,2,252,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,63,240,0,0,0,0,0,0,191,248,0,0,0,0,0,2,255,253,0,0,0,0,0,15,253,255,128,0,0,0,1,191,240,127,248,0,0,1,175,255,192,31,255,229,0,31,255,253,0,2,255,255,192,15,255,208,0,0,31,255,192,7,164,0,0,0,0,107,64,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0xc9c0 지 + 192,201,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,63,255,255,255,255,0,255,63,255,255,255,255,0,255,63,255,255,255,255,0,255,0,0,191,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,127,128,0,0,255,0,0,191,128,0,0,255,0,0,191,192,0,0,255,0,0,255,192,0,0,255,0,0,255,208,0,0,255,0,1,255,224,0,0,255,0,3,255,240,0,0,255,0,7,251,248,0,0,255,0,15,242,253,0,0,255,0,47,224,255,0,0,255,0,127,192,191,192,0,255,0,255,128,63,224,0,255,3,255,0,31,252,0,255,15,253,0,11,255,128,255,191,244,0,1,255,192,255,255,208,0,0,127,64,255,63,64,0,0,11,0,255,24,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,191, + // 0xcc98 처 + 152,204,29,36,32,35,2,252,0,0,0,0,0,0,21,0,0,0,106,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,255,64,0,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,63,255,255,255,253,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,191,0,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,64,0,0,191,64,0,0,255,128,31,255,255,64,0,1,255,192,31,255,255,64,0,2,255,208,31,255,255,64,0,3,255,224,0,0,191,64,0,11,251,240,0,0,191,64,0,15,227,252,0,0,191,64,0,63,210,254,0,0,191,64,0,191,192,255,128,0,191,64,1,255,0,127,208,0,191,64,7,254,0,47,248,0,191,64,47,248,0,11,255,64,191,64,255,240,0,2,255,0,191,64,127,128,0,0,125,0,191,64,45,0,0,0,4,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,64, + // 0xcd08 초 + 8,205,31,31,248,35,2,0,0,0,0,26,144,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,47,224,0,0,0,7,255,255,255,255,255,255,0,7,255,255,255,255,255,255,0,7,255,255,255,255,255,255,0,0,0,0,47,224,0,0,0,0,0,0,63,224,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,248,0,0,0,0,0,1,255,253,0,0,0,0,0,7,254,255,0,0,0,0,0,31,248,191,208,0,0,0,0,255,224,63,248,0,0,0,31,255,128,11,255,144,0,27,255,253,0,1,255,255,128,31,255,224,0,0,47,255,192,15,254,0,5,64,2,255,128,6,64,0,31,208,0,6,64,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,0,0,0,31,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xcd95 축 + 149,205,31,36,32,35,2,252,0,0,0,21,64,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,63,240,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,252,0,0,0,0,0,7,255,255,64,0,0,0,0,127,244,191,244,0,0,0,111,255,208,47,255,148,0,31,255,254,0,3,255,255,192,15,255,224,0,0,111,255,128,7,164,0,0,0,0,111,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,2,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,252,0, + // 0xcd9c 출 + 156,205,31,36,32,35,2,252,0,0,0,5,64,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,63,240,0,0,0,0,0,0,255,248,0,0,0,0,0,3,255,255,0,0,0,0,0,111,248,255,228,0,0,1,111,255,224,63,255,165,0,31,255,255,64,7,255,255,192,15,255,228,0,0,111,255,192,11,164,0,0,0,0,107,64,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,170,170,170,170,168,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,254,0,0,0,0,0,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0,1,255,255,255,255,255,255,0, + // 0xcda4 춤 + 164,205,31,36,32,35,2,252,0,0,0,5,64,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,3,255,255,255,255,255,255,0,0,0,0,63,240,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,252,0,0,0,0,0,7,255,255,64,0,0,0,0,127,244,191,244,0,0,0,111,255,208,47,255,148,0,31,255,254,0,3,255,255,192,15,255,224,0,0,111,255,192,11,164,0,0,0,0,111,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,254,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0, + // 0xcde8 취 + 232,205,29,36,32,35,2,252,0,0,21,64,0,0,106,0,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,15,255,255,255,255,64,191,64,15,255,255,255,255,64,191,64,15,255,255,255,255,64,191,64,0,0,63,208,0,0,191,64,0,0,63,208,0,0,191,64,0,0,127,240,0,0,191,64,0,0,255,248,0,0,191,64,0,2,255,253,0,0,191,64,0,11,253,255,128,0,191,64,0,127,244,127,249,0,191,64,11,255,208,31,255,192,191,64,31,255,64,7,255,64,191,64,15,248,0,0,127,0,191,64,6,64,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,85,171,240,191,64,255,255,255,255,255,244,191,64,255,255,255,255,255,244,191,64,191,255,255,254,148,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,47,192,0,0,191,64,0,0,42,128,0,0,191,64,0,0,0,0,0,0,191,64, + // 0xce58 치 + 88,206,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,42,128,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,47,255,255,255,255,64,191,47,255,255,255,255,64,191,47,255,255,255,255,64,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,63,192,0,0,191,0,0,127,192,0,0,191,0,0,127,208,0,0,191,0,0,191,224,0,0,191,0,0,255,240,0,0,191,0,1,255,244,0,0,191,0,3,251,252,0,0,191,0,7,245,254,0,0,191,0,31,240,255,128,0,191,0,63,208,127,208,0,191,0,255,128,47,244,0,191,3,255,0,15,254,0,191,31,253,0,3,255,208,191,127,244,0,0,255,192,191,47,208,0,0,31,0,191,14,0,0,0,1,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191,0,0,0,0,0,0,191, + // 0xce68 침 + 104,206,28,35,245,35,2,252,0,0,63,128,0,0,191,0,0,63,128,0,0,191,0,0,63,128,0,0,191,0,0,127,192,0,0,191,47,255,255,255,255,0,191,47,255,255,255,255,0,191,47,255,255,255,255,0,191,0,0,63,192,0,0,191,0,0,127,192,0,0,191,0,0,191,192,0,0,191,0,0,255,224,0,0,191,0,1,255,240,0,0,191,0,3,255,252,0,0,191,0,15,246,255,0,0,191,0,63,240,255,208,0,191,1,255,192,63,253,0,191,47,255,0,15,255,192,191,127,252,0,2,255,64,191,47,224,0,0,47,0,191,14,0,0,0,0,0,191,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,224,0,0,0,191,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,15,255,255,255,255,255,0,0,0,0,0,0,0, + // 0xce74 카 + 116,206,32,36,32,35,2,252,0,0,0,0,0,1,80,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,15,255,255,255,224,7,244,0,15,255,255,255,224,7,244,0,15,255,255,255,224,7,244,0,0,0,0,31,224,7,244,0,0,0,0,31,208,7,244,0,0,0,0,47,208,7,244,0,0,0,0,63,192,7,244,0,0,0,0,63,192,7,244,0,0,0,0,63,192,7,244,0,1,90,175,255,128,7,244,0,191,255,255,255,64,7,249,84,127,255,255,255,0,7,255,254,127,254,166,254,0,7,255,254,16,0,3,252,0,7,255,254,0,0,11,248,0,7,244,0,0,0,31,240,0,7,244,0,0,0,63,224,0,7,244,0,0,0,255,192,0,7,244,0,0,3,255,0,0,7,244,0,0,31,253,0,0,7,244,0,0,127,244,0,0,7,244,0,3,255,208,0,0,7,244,0,47,255,0,0,0,7,244,0,191,248,0,0,0,7,244,0,63,208,0,0,0,7,244,0,30,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0, + // 0xcf1c 켜 + 28,207,29,36,32,35,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,15,255,255,255,208,0,191,64,15,255,255,255,192,0,191,64,15,255,255,255,192,0,191,64,0,0,0,47,192,0,191,64,0,0,0,63,192,0,191,64,0,0,0,63,192,0,191,64,0,0,0,63,255,255,255,64,0,0,0,127,255,255,255,64,0,0,1,191,255,255,255,64,171,255,255,255,0,0,191,64,255,255,255,255,0,0,191,64,191,255,255,254,0,0,191,64,191,169,67,252,0,0,191,64,0,0,11,248,0,0,191,64,0,0,15,244,0,0,191,64,0,0,47,224,0,0,191,64,0,0,191,192,255,255,255,64,0,1,255,64,255,255,255,64,0,7,254,0,255,255,255,64,0,47,252,0,0,0,191,64,0,191,240,0,0,0,191,64,7,255,192,0,0,0,191,64,63,254,0,0,0,0,191,64,255,244,0,0,0,0,191,64,127,192,0,0,0,0,191,64,45,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,127,64, + // 0xd0d1 탑 + 209,208,31,35,24,35,3,252,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,191,255,255,255,0,15,224,0,191,255,255,255,0,15,224,0,191,255,255,255,0,15,224,0,191,0,0,0,0,15,224,0,191,0,0,0,0,15,224,0,191,0,0,0,0,15,240,0,191,255,255,254,0,15,255,248,191,255,255,254,0,15,255,248,191,255,255,254,0,15,255,248,191,64,0,0,0,15,224,0,191,0,0,0,0,15,224,0,191,0,0,0,0,15,224,0,191,64,0,90,244,15,224,0,191,255,255,255,244,15,224,0,191,255,255,255,248,15,224,0,191,255,255,250,80,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,85,0,0,0,5,80,0,0,254,0,0,0,15,224,0,0,254,0,0,0,15,224,0,0,254,0,0,0,15,224,0,0,255,255,255,255,255,224,0,0,255,255,255,255,255,224,0,0,255,255,255,255,255,224,0,0,254,0,0,0,15,224,0,0,254,0,0,0,15,224,0,0,254,0,0,0,15,224,0,0,254,0,0,0,15,224,0,0,255,255,255,255,255,224,0,0,255,255,255,255,255,224,0,0,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0xd130 터 + 48,209,28,36,252,35,3,252,0,0,0,0,0,0,84,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,255,255,255,64,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,255,255,252,63,255,253,191,255,255,252,63,255,253,191,255,255,252,63,255,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,0,0,2,253,191,64,0,90,180,2,253,191,255,255,255,244,2,253,191,255,255,255,248,2,253,191,255,255,250,80,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,1,253, + // 0xd14c 테 + 76,209,28,36,252,35,3,252,0,0,0,0,0,0,21,0,0,0,0,26,128,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,255,255,255,192,47,192,191,255,255,255,192,47,192,191,255,255,255,192,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,255,253,63,255,192,191,255,255,253,63,255,192,191,255,255,253,63,255,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,0,0,0,47,192,191,255,1,90,244,47,192,191,255,255,255,244,47,192,191,255,255,255,248,47,192,191,255,255,250,80,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,47,192,191,0,0,0,0,5,64,191,0,0,0,0,0,0,127, + // 0xd1a0 토 + 160,209,31,29,232,35,2,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,255,255,255,255,244,0,0,255,255,255,255,255,244,0,0,255,255,255,255,255,244,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,224,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252, + // 0xd2b8 트 + 184,210,31,28,224,35,2,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,255,255,255,255,255,248,0,0,255,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xd39c 펜 + 156,211,30,36,32,35,2,252,0,0,0,0,0,0,21,64,0,0,0,0,2,164,47,192,0,0,0,0,3,248,47,192,0,0,0,0,3,248,47,192,191,255,255,255,3,248,47,192,191,255,255,255,3,248,47,192,191,255,255,255,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,211,255,248,47,192,3,244,15,211,255,248,47,192,3,244,15,211,255,248,47,192,3,244,15,208,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,208,3,248,47,192,3,244,15,230,67,248,47,192,255,255,255,255,195,248,47,192,255,255,255,255,195,248,47,192,255,255,255,233,3,248,47,192,0,0,0,0,3,248,47,192,0,0,0,0,3,248,47,192,0,0,0,0,3,248,47,192,0,7,244,0,3,248,47,192,0,7,244,0,3,248,47,192,0,7,244,0,0,0,47,192,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,244,0,0,0,0,0,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xd504 프 + 4,213,31,28,224,35,2,0,11,255,255,255,255,255,255,64,11,255,255,255,255,255,255,64,11,255,255,255,255,255,255,64,0,2,254,0,2,253,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,1,253,0,2,252,0,0,0,2,254,0,2,253,0,0,7,255,255,255,255,255,255,0,7,255,255,255,255,255,255,0,7,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xd558 하 + 88,213,33,36,68,35,1,252,0,0,0,0,0,0,84,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,127,255,255,255,255,193,254,0,0,127,255,255,255,255,193,254,0,0,127,255,255,255,255,193,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,2,255,248,0,1,254,0,0,0,31,255,255,64,1,254,0,0,0,191,255,255,208,1,254,85,0,1,255,144,127,240,1,255,255,192,3,253,0,11,248,1,255,255,192,3,252,0,3,252,1,255,255,192,7,244,0,2,253,1,254,0,0,11,240,0,1,253,1,254,0,0,11,240,0,1,253,1,254,0,0,7,244,0,2,253,1,254,0,0,3,252,0,3,252,1,254,0,0,3,253,0,11,248,1,254,0,0,1,255,144,127,240,1,254,0,0,0,191,255,255,208,1,254,0,0,0,47,255,255,64,1,254,0,0,0,2,255,248,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,253,0,0, + // 0xd569 합 + 105,213,32,36,32,35,2,252,0,0,170,0,0,1,84,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,0,0,255,0,0,3,248,0,255,255,255,255,255,3,248,0,255,255,255,255,255,3,248,0,255,255,255,255,255,3,248,0,0,0,0,0,0,3,248,0,0,6,190,144,0,3,248,0,0,127,255,253,0,3,252,0,2,255,255,255,192,3,255,254,7,254,0,191,224,3,255,254,15,244,0,15,240,3,255,254,15,224,0,11,244,3,248,0,15,224,0,7,244,3,248,0,15,224,0,11,244,3,248,0,15,244,0,15,240,3,248,0,7,254,0,127,224,3,248,0,2,255,255,255,192,3,248,0,0,127,255,254,0,3,248,0,0,6,191,144,0,3,248,0,0,0,0,0,0,1,84,0,0,21,0,0,0,0,16,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,128,0,0,3,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,63,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0xd648 홈 + 72,214,31,35,24,35,2,253,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,47,255,255,255,255,255,255,192,47,255,255,255,255,255,255,192,47,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,5,170,169,64,0,0,0,2,255,255,255,253,0,0,0,31,255,255,255,255,208,0,0,127,249,0,1,191,240,0,0,191,192,0,0,15,248,0,0,255,64,0,0,11,248,0,0,191,192,0,0,15,248,0,0,127,249,0,1,191,240,0,0,31,255,255,255,255,208,0,0,2,255,255,255,254,0,0,0,0,6,191,249,64,0,0,0,0,0,47,208,0,0,0,0,0,0,47,208,0,0,0,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,253,0,0,0,2,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0,1,255,255,255,255,255,252,0, + // 0xd654 화 + 84,214,33,35,59,35,1,252,0,0,47,208,0,0,254,0,0,0,0,47,208,0,0,254,0,0,0,0,47,208,0,0,254,0,0,0,0,47,208,0,0,254,0,0,63,255,255,255,255,224,254,0,0,63,255,255,255,255,224,254,0,0,63,255,255,255,255,224,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,1,175,232,0,0,254,0,0,0,31,255,255,128,0,254,0,0,0,127,255,255,240,0,254,0,0,0,255,128,27,252,0,254,0,0,2,253,0,2,253,0,254,0,0,3,252,0,0,254,0,255,255,128,3,252,0,0,253,0,255,255,128,2,252,0,2,253,0,255,255,128,1,255,0,3,252,0,255,0,0,0,255,208,47,248,0,254,0,0,0,63,255,255,240,0,254,0,0,0,15,255,255,128,0,254,0,0,0,1,191,244,0,0,254,0,0,0,0,47,208,0,0,254,0,0,0,0,47,208,0,0,254,0,0,0,0,47,213,106,240,254,0,0,127,255,255,255,255,240,254,0,0,63,255,255,255,255,240,254,0,0,63,255,255,254,164,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0, + // 0xd788 히 + 136,215,28,36,252,35,2,252,0,0,0,0,0,0,85,0,0,63,192,0,0,255,0,0,63,192,0,0,255,0,0,63,192,0,0,255,0,0,63,192,0,0,255,0,0,63,192,0,0,255,127,255,255,255,255,192,255,127,255,255,255,255,192,255,127,255,255,255,255,192,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,2,255,248,0,0,255,0,31,255,255,64,0,255,0,191,255,255,224,0,255,1,255,144,127,244,0,255,3,253,0,11,252,0,255,7,248,0,3,252,0,255,11,244,0,1,253,0,255,11,240,0,1,254,0,255,11,240,0,1,254,0,255,11,244,0,1,253,0,255,7,248,0,3,252,0,255,3,253,0,11,252,0,255,1,255,144,111,244,0,255,0,191,255,255,224,0,255,0,47,255,255,64,0,255,0,2,255,248,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,191, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Latin_Extended_A_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Latin_Extended_A_28.cpp new file mode 100644 index 000000000000..d3e85b6375a8 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Latin_Extended_A_28.cpp @@ -0,0 +1,288 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Latin Extended-A 38pt, capital 'A' height: 28px, width: 100%, range: 0x0100-0x017f +extern const uint8_t NotoSans_Medium_Latin_Extended_A_28[21187] = { + 130,28,0,1,127,1,37,246, // unifont_t + // 0x0100 Ā + 25,33,231,25,0,0,0,7,255,255,240,0,0,0,7,255,255,240,0,0,0,7,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0101 ā + 18,27,135,22,1,255,0,255,255,254,0,0,255,255,254,0,0,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0102 Ă + 25,36,252,25,0,0,0,5,0,0,84,0,0,0,15,128,0,248,0,0,0,11,228,7,240,0,0,0,3,255,255,224,0,0,0,1,255,255,128,0,0,0,0,47,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0103 ă + 18,30,150,22,1,255,0,80,0,5,0,1,240,0,47,0,0,253,1,190,0,0,127,255,252,0,0,47,255,244,0,0,6,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0104 Ą + 25,37,3,25,0,247,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128,0,0,0,0,0,188,0,0,0,0,0,2,244,0,0,0,0,0,7,224,0,0,0,0,0,15,192,0,0,0,0,0,15,192,0,0,0,0,0,15,224,0,0,0,0,0,11,255,128,0,0,0,0,3,255,128,0,0,0,0,0,105,0, + // 0x0105 ą + 19,30,150,22,1,247,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,11,192,0,0,0,47,64,0,0,0,126,0,0,0,0,252,0,0,0,0,252,0,0,0,0,253,0,0,0,0,191,248,0,0,0,63,248,0,0,0,6,144, + // 0x0106 Ć + 21,37,222,24,2,255,0,0,0,31,248,0,0,0,0,63,224,0,0,0,0,191,128,0,0,0,1,254,0,0,0,0,3,248,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0107 ć + 15,30,120,19,2,255,0,0,15,252,0,0,47,240,0,0,63,192,0,0,255,0,0,2,252,0,0,7,240,0,0,0,0,0,0,0,0,0,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x0108 Ĉ + 21,37,222,24,2,255,0,0,15,252,0,0,0,0,63,254,0,0,0,0,255,255,64,0,0,2,253,47,208,0,0,11,244,11,244,0,0,31,128,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x0109 ĉ + 16,30,120,19,2,255,0,15,253,0,0,47,255,0,0,127,255,192,0,254,31,240,3,248,3,248,15,208,0,190,0,0,0,0,0,0,0,0,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x010a Ċ + 21,36,216,24,2,255,0,0,7,240,0,0,0,0,15,248,0,0,0,0,15,248,0,0,0,0,7,240,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x010b ċ + 15,29,116,19,2,255,0,3,248,0,0,7,252,0,0,7,252,0,0,3,248,0,0,0,64,0,0,0,0,0,0,0,0,0,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x010c Č + 21,37,222,24,2,255,0,31,192,1,252,0,0,7,244,11,240,0,0,2,253,47,208,0,0,0,191,255,64,0,0,0,63,254,0,0,0,0,15,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,1,255,255,249,0,0,31,255,255,255,128,0,127,255,255,255,0,1,255,244,1,191,0,3,255,64,0,4,0,15,252,0,0,0,0,31,244,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,208,0,0,0,0,63,240,0,0,0,0,31,244,0,0,0,0,15,252,0,0,0,0,7,255,64,0,0,0,2,255,249,1,111,0,0,191,255,255,255,0,0,31,255,255,255,0,0,2,255,255,249,0,0,0,1,84,0,0, + // 0x010d č + 16,30,120,19,2,255,15,208,0,254,3,248,7,248,0,255,31,224,0,127,255,192,0,31,255,0,0,11,253,0,0,0,0,0,0,0,0,0,0,6,254,144,0,191,255,252,3,255,255,252,15,255,171,248,47,244,0,16,63,208,0,0,127,192,0,0,191,128,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,64,0,0,191,128,0,0,127,192,0,0,63,240,0,0,31,253,0,124,11,255,255,252,2,255,255,252,0,47,255,244,0,0,84,0, + // 0x010e Ď + 23,36,216,28,3,0,0,253,0,15,224,0,0,63,128,127,128,0,0,15,241,254,0,0,0,7,255,252,0,0,0,1,255,240,0,0,0,0,191,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,228,0,0,127,255,255,255,64,0,127,255,255,255,240,0,127,213,86,255,252,0,127,128,0,31,255,0,127,128,0,2,255,128,127,128,0,0,191,192,127,128,0,0,63,224,127,128,0,0,47,240,127,128,0,0,15,240,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,248,127,128,0,0,11,248,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,15,244,127,128,0,0,31,240,127,128,0,0,47,240,127,128,0,0,63,208,127,128,0,0,255,192,127,128,0,3,255,64,127,128,0,47,254,0,127,213,107,255,248,0,127,255,255,255,208,0,127,255,255,254,0,0,127,255,255,144,0,0, + // 0x010f ď + 25,30,210,24,2,255,0,0,0,11,244,63,128,0,0,0,11,244,63,128,0,0,0,11,244,127,0,0,0,0,11,244,190,0,0,0,0,11,244,252,0,0,0,0,11,244,248,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,27,232,11,244,0,0,1,255,255,139,244,0,0,7,255,255,247,244,0,0,15,254,155,255,244,0,0,63,244,0,127,244,0,0,63,208,0,47,244,0,0,191,192,0,15,244,0,0,191,128,0,15,244,0,0,255,64,0,11,244,0,0,255,0,0,11,244,0,0,255,0,0,7,244,0,0,255,0,0,7,244,0,0,255,0,0,11,244,0,0,255,64,0,11,244,0,0,191,128,0,15,244,0,0,127,192,0,15,244,0,0,63,224,0,63,244,0,0,47,248,1,255,244,0,0,15,255,255,251,244,0,0,3,255,255,211,244,0,0,0,127,254,3,244,0,0,0,1,64,0,0,0,0, + // 0x0110 Đ + 25,27,189,28,1,0,3,255,255,254,64,0,0,3,255,255,255,244,0,0,3,255,255,255,255,0,0,3,253,85,111,255,192,0,3,252,0,1,255,240,0,3,252,0,0,47,248,0,3,252,0,0,11,252,0,3,252,0,0,3,254,0,3,252,0,0,2,255,0,3,252,0,0,0,255,0,3,252,0,0,0,255,64,7,252,0,0,0,255,64,255,255,255,192,0,255,128,255,255,255,192,0,191,128,255,255,255,192,0,255,64,87,253,85,64,0,255,64,3,252,0,0,0,255,64,3,252,0,0,1,255,0,3,252,0,0,2,255,0,3,252,0,0,3,253,0,3,252,0,0,15,252,0,3,252,0,0,63,244,0,3,252,0,2,255,224,0,3,253,86,191,255,128,0,3,255,255,255,253,0,0,3,255,255,255,224,0,0,3,255,255,233,0,0,0, + // 0x0111 đ + 22,30,180,24,2,255,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,2,170,175,254,128,0,3,255,255,255,208,0,3,255,255,255,208,0,0,0,11,248,0,0,0,0,11,244,0,0,5,80,11,244,0,0,191,255,75,244,0,3,255,255,215,244,0,15,255,255,255,244,0,47,248,1,255,244,0,63,224,0,63,244,0,127,192,0,15,244,0,191,128,0,15,244,0,255,64,0,11,244,0,255,0,0,11,244,0,255,0,0,7,244,0,255,0,0,7,244,0,255,0,0,11,244,0,255,64,0,11,244,0,191,128,0,15,244,0,127,192,0,15,244,0,63,224,0,47,244,0,47,248,1,255,244,0,15,255,255,251,244,0,3,255,255,211,244,0,0,191,254,3,244,0,0,1,64,0,0,0, + // 0x0112 Ē + 16,33,132,21,3,0,7,255,255,244,7,255,255,244,7,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0113 ē + 18,27,135,22,2,255,3,255,255,252,0,3,255,255,252,0,3,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0114 Ĕ + 16,36,144,21,3,0,5,64,0,84,11,192,0,248,7,228,7,244,3,255,255,240,0,255,255,192,0,31,249,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0115 ĕ + 18,30,150,22,2,255,1,64,0,20,0,3,208,0,124,0,3,244,6,252,0,1,255,255,240,0,0,191,255,208,0,0,27,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0116 Ė + 16,35,140,21,3,0,0,3,244,0,0,11,248,0,0,11,252,0,0,7,244,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x0117 ė + 18,29,145,22,2,255,0,3,248,0,0,0,7,252,0,0,0,7,252,0,0,0,3,248,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x0118 Ę + 16,36,144,21,3,247,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255,0,0,2,244,0,0,7,208,0,0,15,192,0,0,47,64,0,0,63,0,0,0,63,128,0,0,47,255,0,0,15,255,0,0,1,164, + // 0x0119 ę + 18,30,150,22,2,247,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,255,64,0,0,85,253,0,0,0,2,244,0,0,0,7,224,0,0,0,15,192,0,0,0,15,192,0,0,0,15,224,0,0,0,11,255,128,0,0,3,255,128,0,0,0,105,0, + // 0x011a Ě + 16,36,144,21,3,0,15,208,1,253,7,248,11,244,1,254,47,208,0,191,255,128,0,47,254,0,0,15,252,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x011b ě + 18,30,150,22,2,255,15,224,0,190,0,3,252,3,252,0,0,255,31,240,0,0,63,255,192,0,0,31,255,0,0,0,11,253,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x011c Ĝ + 23,37,222,28,2,255,0,0,7,255,0,0,0,0,15,255,128,0,0,0,63,255,208,0,0,0,191,75,244,0,0,2,253,2,253,0,0,7,224,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0, + // 0x011d ĝ + 19,39,195,24,2,246,0,3,255,0,0,0,15,255,128,0,0,47,255,224,0,0,191,75,244,0,1,253,1,253,0,7,240,0,63,0,0,0,0,0,0,0,0,0,0,0,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x011e Ğ + 23,37,222,28,2,255,0,1,64,0,21,0,0,3,224,0,61,0,0,2,249,1,252,0,0,0,255,255,248,0,0,0,127,255,224,0,0,0,11,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0, + // 0x011f ğ + 19,39,195,24,2,246,1,80,0,21,0,2,240,0,62,0,1,249,1,253,0,0,255,255,248,0,0,63,255,224,0,0,7,254,64,0,0,0,0,0,0,0,0,0,0,0,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x0120 Ġ + 23,36,216,28,2,255,0,0,1,252,0,0,0,0,3,254,0,0,0,0,3,254,0,0,0,0,1,252,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0, + // 0x0121 ġ + 19,38,190,24,2,246,0,1,252,0,0,0,2,254,0,0,0,2,254,0,0,0,1,253,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x0122 Ģ + 23,37,222,28,2,247,0,0,1,89,80,0,0,0,191,255,255,128,0,11,255,255,255,244,0,63,255,255,255,240,1,255,249,0,27,208,3,255,128,0,0,64,11,253,0,0,0,0,31,248,0,0,0,0,47,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,128,0,0,0,0,191,128,0,42,170,164,191,128,0,63,255,248,191,128,0,63,255,248,191,128,0,63,255,248,127,192,0,0,7,248,127,192,0,0,7,248,63,208,0,0,7,248,63,240,0,0,7,248,31,244,0,0,7,248,15,253,0,0,7,248,3,255,64,0,7,248,1,255,249,0,91,248,0,127,255,255,255,248,0,31,255,255,255,248,0,1,191,255,255,144,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,1,253,0,0,0,0,2,252,0,0,0,0,3,248,0,0,0,0,3,240,0,0,0,0,7,208,0,0,0,0,1,64,0,0, + // 0x0123 ģ + 19,39,195,24,2,246,0,0,47,0,0,0,0,62,0,0,0,0,253,0,0,0,1,252,0,0,0,3,252,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,27,232,1,80,1,255,255,131,244,7,255,255,243,244,15,255,171,255,244,47,244,0,191,244,63,208,0,47,244,127,192,0,15,244,191,128,0,15,244,255,64,0,11,244,255,0,0,11,244,255,0,0,7,244,255,0,0,7,244,255,0,0,7,244,255,64,0,11,244,191,128,0,15,244,127,192,0,15,244,63,224,0,47,244,47,248,0,191,244,15,255,255,251,244,3,255,255,219,244,0,191,254,11,244,0,1,80,11,244,0,0,0,11,244,0,0,0,15,240,0,0,0,31,240,16,0,0,63,224,47,148,2,255,192,47,255,255,255,64,47,255,255,253,0,2,191,255,144,0,0,0,0,0,0, + // 0x0124 Ĥ + 22,36,216,28,3,0,0,0,127,240,0,0,0,0,255,248,0,0,0,3,255,253,0,0,0,15,240,255,0,0,0,47,192,47,192,0,0,190,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,127,234,170,170,175,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240,127,128,0,0,31,240, + // 0x0125 ĥ + 23,37,222,24,254,0,0,127,240,0,0,0,0,255,248,0,0,0,3,255,253,0,0,0,15,240,255,0,0,0,47,192,47,192,0,0,190,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,107,228,0,0,63,195,255,255,64,0,63,207,255,255,208,0,63,255,230,255,240,0,63,252,0,31,244,0,63,244,0,11,248,0,63,240,0,7,252,0,63,224,0,3,252,0,63,208,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252,0,63,192,0,3,252, + // 0x0126 Ħ + 29,27,216,28,0,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,64,1,255,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,1,255,255,255,255,255,192,0,1,255,170,170,170,191,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0,1,254,0,0,0,127,192,0, + // 0x0127 ħ + 21,29,174,24,0,0,2,252,0,0,0,0,3,252,0,0,0,0,3,252,0,0,0,0,107,254,170,164,0,0,191,255,255,248,0,0,191,255,255,248,0,0,23,253,85,80,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,252,6,255,128,0,3,252,127,255,248,0,3,253,255,255,254,0,3,255,249,91,255,0,3,255,192,0,255,128,3,255,0,0,191,128,3,255,0,0,127,192,3,253,0,0,63,192,3,253,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192,3,252,0,0,63,192, + // 0x0128 Ĩ + 15,35,140,13,255,0,7,253,0,124,15,255,209,248,63,255,255,240,61,7,255,224,124,0,127,64,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,192,11,255,255,192,2,255,254,64,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,2,255,255,64,11,255,255,192,11,255,255,192, + // 0x0129 ĩ + 15,28,112,10,254,0,11,248,0,244,63,255,130,240,127,255,255,224,188,11,255,192,244,0,190,0,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x012a Ī + 12,33,99,13,1,0,255,255,254,255,255,254,255,255,254,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x012b ī + 12,26,78,10,255,0,191,255,255,191,255,255,191,255,255,0,0,0,0,0,0,0,85,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0, + // 0x012c Ĭ + 13,36,144,13,0,0,84,0,1,64,124,0,11,192,63,64,111,128,47,255,255,0,15,255,252,0,1,191,208,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,0,47,255,255,0,11,255,249,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,0,127,192,0,11,255,253,0,47,255,255,0,47,255,255,0, + // 0x012d ĭ + 13,29,116,10,255,0,80,0,5,0,244,0,31,64,253,0,191,0,127,255,253,0,31,255,244,0,2,255,128,0,0,0,0,0,0,0,0,0,0,85,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0, + // 0x012e Į + 11,36,108,13,1,247,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252,0,7,208,0,31,128,0,63,0,0,189,0,0,189,0,0,190,0,0,127,252,0,47,252,0,6,148, + // 0x012f į + 7,37,74,10,1,247,11,240,15,244,15,244,11,240,0,64,0,0,0,0,5,80,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,15,240,7,208,31,128,63,0,189,0,189,0,190,0,127,252,47,252,6,148, + // 0x0130 İ + 11,35,105,13,1,0,0,254,0,1,255,0,1,255,0,0,254,0,0,16,0,0,0,0,0,0,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x0131 ı + 4,21,21,10,3,0,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0132 IJ + 20,35,175,24,1,248,191,255,252,0,255,191,255,252,0,255,47,255,228,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,1,255,0,0,255,47,255,244,0,255,191,255,252,0,255,191,255,252,0,255,0,0,0,0,255,0,0,0,1,255,0,0,0,3,254,0,0,4,31,252,0,0,31,255,248,0,0,31,255,240,0,0,31,255,128,0,0,1,80,0, + // 0x0133 ij + 15,38,152,21,3,246,191,0,7,244,255,64,11,248,255,64,11,252,191,0,7,244,4,0,0,64,0,0,0,0,0,0,0,0,85,0,1,84,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,255,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,244,0,0,15,244,0,20,111,240,0,63,255,224,0,63,255,192,0,47,254,0,0,0,0,0, + // 0x0134 Ĵ + 16,44,176,11,253,248,0,15,252,0,0,63,255,0,0,191,255,128,2,253,47,224,7,244,7,244,15,192,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,244,0,0,15,244,0,0,31,240,0,64,127,240,0,255,255,208,0,255,255,64,0,255,252,0,0,21,64,0,0, + // 0x0135 ĵ + 14,39,156,10,254,246,0,127,224,0,0,255,244,0,3,255,253,0,15,240,255,0,47,192,47,192,190,0,7,240,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,65,255,192,0,255,255,64,0,255,254,0,0,255,244,0,0,0,0,0,0, + // 0x0136 Ķ + 21,36,216,24,3,247,127,128,0,2,255,0,127,128,0,7,253,0,127,128,0,31,244,0,127,128,0,63,224,0,127,128,0,255,128,0,127,128,3,255,0,0,127,128,11,252,0,0,127,128,47,240,0,0,127,128,127,192,0,0,127,129,255,64,0,0,127,131,253,0,0,0,127,143,248,0,0,0,127,255,252,0,0,0,127,255,254,0,0,0,127,255,255,64,0,0,127,240,255,192,0,0,127,192,63,224,0,0,127,128,31,244,0,0,127,128,15,252,0,0,127,128,3,255,0,0,127,128,1,255,64,0,127,128,0,191,192,0,127,128,0,63,240,0,127,128,0,15,248,0,127,128,0,11,253,0,127,128,0,3,255,0,127,128,0,0,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,191,0,0,0,0,0,254,0,0,0,0,0,252,0,0,0,0,1,248,0,0,0,0,3,240,0,0,0,0,1,64,0,0,0, + // 0x0137 ķ + 18,38,190,21,3,247,191,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,21,64,255,0,0,255,128,255,0,3,254,0,255,0,15,248,0,255,0,63,224,0,255,0,255,192,0,255,2,255,0,0,255,11,252,0,0,255,47,240,0,0,255,127,208,0,0,255,255,240,0,0,255,255,252,0,0,255,227,254,0,0,255,129,255,64,0,255,0,191,192,0,255,0,63,240,0,255,0,15,248,0,255,0,7,253,0,255,0,2,255,0,255,0,0,255,192,255,0,0,63,224,0,0,0,0,0,0,0,0,0,0,0,6,160,0,0,0,15,240,0,0,0,15,224,0,0,0,31,192,0,0,0,47,64,0,0,0,63,0,0,0,0,20,0,0,0, + // 0x0138 ĸ + 18,21,105,21,3,0,85,0,0,21,64,255,64,0,255,128,255,64,3,254,0,255,64,11,252,0,255,64,47,240,0,255,64,127,192,0,255,65,255,64,0,255,67,253,0,0,255,15,248,0,0,255,63,240,0,0,255,191,240,0,0,255,255,252,0,0,255,247,254,0,0,255,192,255,64,0,255,64,127,192,0,255,64,47,240,0,255,64,15,248,0,255,64,7,253,0,255,64,2,255,0,255,64,0,255,192,255,64,0,63,224, + // 0x0139 Ĺ + 17,36,180,20,3,0,0,255,128,0,0,3,255,0,0,0,7,252,0,0,0,15,240,0,0,0,63,128,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64, + // 0x013a ĺ + 9,37,111,10,3,0,2,255,64,3,253,0,15,244,0,47,208,0,127,64,0,253,0,0,0,0,0,0,0,0,191,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x013b Ļ + 17,36,180,20,3,247,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,2,168,0,0,0,3,252,0,0,0,3,244,0,0,0,7,240,0,0,0,11,208,0,0,0,15,128,0,0,0,5,0,0,0, + // 0x013c ļ + 6,38,76,10,2,247,47,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,0,0,0,0,10,160,31,224,31,192,47,128,63,0,125,0,20,0, + // 0x013d Ľ + 17,27,135,20,3,0,127,128,0,127,128,127,128,0,127,0,127,128,0,190,0,127,128,0,252,0,127,128,0,248,0,127,128,1,240,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64, + // 0x013e ľ + 11,29,87,10,3,0,191,3,248,255,7,244,255,11,240,255,15,208,255,15,192,255,31,64,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x013f Ŀ + 17,27,135,20,3,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,11,240,0,127,128,15,244,0,127,128,15,244,0,127,128,11,240,0,127,128,0,64,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,170,0,127,255,255,255,64,127,255,255,255,64,127,255,255,255,64, + // 0x0140 ŀ + 10,29,87,11,3,0,191,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,15,208,255,31,240,255,31,240,255,15,224,255,1,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, + // 0x0141 Ł + 20,27,135,20,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,2,64,0,1,254,31,192,0,1,255,255,224,0,1,255,255,64,0,1,255,248,0,0,7,255,192,0,0,47,255,0,0,0,127,254,0,0,0,63,254,0,0,0,5,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,255,170,170,168,1,255,255,255,253,1,255,255,255,253,1,255,255,255,253, + // 0x0142 ł + 11,29,87,10,0,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,144,3,255,240,3,255,244,3,255,224,11,255,0,127,252,0,255,252,0,191,252,0,35,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0,3,252,0, + // 0x0143 Ń + 23,36,216,29,3,0,0,0,0,63,240,0,0,0,0,191,192,0,0,0,1,255,0,0,0,0,3,252,0,0,0,0,11,240,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x0144 ń + 18,29,145,24,3,0,0,0,15,252,0,0,0,31,244,0,0,0,63,208,0,0,0,191,64,0,0,1,253,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x0145 Ņ + 23,36,216,29,3,247,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,164,0,0,0,0,11,240,0,0,0,0,15,224,0,0,0,0,15,192,0,0,0,0,31,128,0,0,0,0,47,0,0,0,0,0,20,0,0,0, + // 0x0146 ņ + 18,30,150,24,3,247,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,1,253,0,0,0,2,252,0,0,0,3,244,0,0,0,3,240,0,0,0,11,192,0,0,0,5,64,0,0, + // 0x0147 Ň + 23,36,216,29,3,0,0,63,64,3,244,0,0,15,224,31,224,0,0,3,252,127,128,0,0,1,255,254,0,0,0,0,127,252,0,0,0,0,47,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,240,0,0,3,252,127,248,0,0,3,252,127,252,0,0,3,252,127,255,0,0,3,252,127,255,64,0,3,252,127,191,192,0,3,252,127,63,224,0,3,252,127,31,244,0,3,252,127,11,252,0,3,252,127,3,254,0,3,252,127,65,255,0,3,252,127,64,255,192,3,252,127,64,63,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,131,252,127,64,0,127,195,252,127,64,0,63,243,252,127,64,0,15,246,252,127,64,0,11,255,252,127,64,0,3,255,252,127,64,0,1,255,252,127,64,0,0,191,252,127,64,0,0,63,252,127,64,0,0,31,252, + // 0x0148 ň + 18,29,145,24,3,0,15,224,0,190,0,3,252,3,248,0,0,255,31,240,0,0,63,255,192,0,0,31,255,0,0,0,11,253,0,0,0,0,0,0,0,0,0,0,0,0,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,155,255,192,255,240,0,127,208,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240, + // 0x0149 ʼn + 24,27,162,27,0,0,15,240,0,0,0,0,31,240,0,0,0,0,47,224,0,0,0,0,47,192,0,0,0,0,63,192,0,0,0,0,63,128,0,0,0,0,127,5,80,10,249,0,190,11,224,255,255,224,252,11,243,255,255,248,0,11,255,249,111,252,0,11,255,64,3,254,0,11,253,0,1,255,0,11,252,0,0,255,0,11,248,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255,0,11,244,0,0,255, + // 0x014a Ŋ + 23,35,210,29,3,248,127,240,0,0,3,252,127,248,0,0,3,252,127,253,0,0,3,252,127,255,0,0,3,252,127,255,128,0,3,252,127,191,208,0,3,252,127,63,240,0,3,252,127,15,248,0,3,252,127,7,253,0,3,252,127,67,255,0,3,252,127,64,255,128,3,252,127,64,127,208,3,252,127,64,47,240,3,252,127,64,15,248,3,252,127,64,7,253,3,252,127,64,2,255,3,252,127,64,0,255,195,252,127,64,0,127,211,252,127,64,0,47,242,252,127,64,0,15,254,252,127,64,0,7,255,252,127,64,0,2,255,252,127,64,0,0,255,252,127,64,0,0,63,252,127,64,0,0,47,252,127,64,0,0,15,252,127,64,0,0,3,252,0,0,0,0,3,252,0,0,0,0,3,248,0,0,0,0,11,248,0,0,0,64,47,240,0,0,0,255,255,224,0,0,0,255,255,192,0,0,0,255,253,0,0,0,0,21,64,0, + // 0x014b ŋ + 18,31,155,24,3,246,84,1,191,144,0,254,15,255,253,0,255,63,255,255,64,255,255,154,255,192,255,244,0,127,224,255,208,0,47,224,255,192,0,31,240,255,128,0,15,240,255,64,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,31,240,0,0,20,127,224,0,0,63,255,192,0,0,63,255,64,0,0,47,249,0,0,0,0,0,0, + // 0x014c Ō + 26,34,238,30,2,255,0,3,255,255,252,0,0,0,3,255,255,252,0,0,0,3,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x014d ō + 19,27,135,23,2,255,1,255,255,253,0,1,255,255,253,0,1,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x014e Ŏ + 26,37,3,30,2,255,0,1,64,0,20,0,0,0,7,192,0,188,0,0,0,3,244,6,248,0,0,0,2,255,255,240,0,0,0,0,191,255,208,0,0,0,0,27,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x014f ŏ + 19,30,150,23,2,255,1,80,0,21,0,2,240,0,62,0,1,249,1,253,0,0,255,255,252,0,0,63,255,240,0,0,7,254,64,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x0150 Ő + 26,37,3,30,2,255,0,0,127,193,255,0,0,0,0,255,67,253,0,0,0,1,253,7,244,0,0,0,3,248,15,208,0,0,0,11,224,47,64,0,0,0,15,64,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x0151 ő + 19,30,150,23,2,255,0,47,240,191,128,0,63,192,255,0,0,191,3,252,0,1,252,7,240,0,3,244,15,192,0,11,192,47,0,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x0152 Œ + 32,29,232,36,2,255,0,0,5,149,0,0,0,0,0,2,255,255,255,255,255,254,0,47,255,255,255,255,255,254,0,255,255,255,255,255,255,254,3,255,228,1,191,213,85,84,11,254,0,0,127,128,0,0,15,252,0,0,127,128,0,0,47,240,0,0,127,128,0,0,63,224,0,0,127,128,0,0,63,192,0,0,127,128,0,0,127,192,0,0,127,128,0,0,191,192,0,0,127,128,0,0,191,128,0,0,127,255,255,248,191,128,0,0,127,255,255,252,191,128,0,0,127,255,255,252,191,128,0,0,127,234,170,164,191,128,0,0,127,128,0,0,127,192,0,0,127,128,0,0,127,192,0,0,127,128,0,0,63,208,0,0,127,128,0,0,63,224,0,0,127,128,0,0,31,240,0,0,127,128,0,0,15,252,0,0,127,128,0,0,7,255,0,0,127,128,0,0,2,255,228,5,255,234,170,169,0,191,255,255,255,255,255,254,0,31,255,255,255,255,255,254,0,1,255,255,255,255,255,254,0,0,1,84,0,0,0,0, + // 0x0153 œ + 33,22,198,36,2,255,0,6,186,64,0,43,228,0,0,0,191,255,244,2,255,255,128,0,3,255,255,253,15,255,255,240,0,15,255,171,255,127,245,111,248,0,47,240,0,127,255,128,3,253,0,63,208,0,31,255,0,1,255,0,127,192,0,15,253,0,0,255,0,191,64,0,11,252,0,0,191,64,255,64,0,7,253,85,85,255,64,255,0,0,7,255,255,255,255,64,255,0,0,7,255,255,255,255,64,255,0,0,7,254,170,170,170,64,255,0,0,7,252,0,0,0,0,255,64,0,11,252,0,0,0,0,191,128,0,15,253,0,0,0,0,127,192,0,15,254,0,0,0,0,63,224,0,63,255,64,0,0,0,15,248,1,255,255,224,0,109,0,7,255,255,255,31,255,255,253,0,1,255,255,252,7,255,255,253,0,0,47,255,208,0,191,255,228,0,0,0,84,0,0,1,84,0,0, + // 0x0154 Ŕ + 21,36,216,24,3,0,0,0,11,252,0,0,0,0,15,244,0,0,0,0,63,208,0,0,0,0,191,64,0,0,0,1,253,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,144,0,0,127,255,255,253,0,0,127,255,255,255,128,0,127,213,91,255,208,0,127,128,0,127,240,0,127,128,0,31,240,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,240,0,127,128,0,47,240,0,127,128,0,127,208,0,127,213,91,255,128,0,127,255,255,254,0,0,127,255,255,240,0,0,127,255,255,208,0,0,127,128,31,240,0,0,127,128,11,248,0,0,127,128,3,253,0,0,127,128,2,255,0,0,127,128,0,255,128,0,127,128,0,127,192,0,127,128,0,47,240,0,127,128,0,15,244,0,127,128,0,11,252,0,127,128,0,3,254,0,127,128,0,1,255,64, + // 0x0155 ŕ + 13,29,116,16,3,0,0,1,255,64,0,3,254,0,0,11,248,0,0,31,224,0,0,63,64,0,0,253,0,0,0,0,0,0,0,0,0,0,84,0,191,64,253,11,255,64,254,47,255,64,255,127,255,0,255,253,0,0,255,240,0,0,255,192,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0156 Ŗ + 21,36,216,24,3,247,127,255,255,144,0,0,127,255,255,253,0,0,127,255,255,255,128,0,127,213,91,255,208,0,127,128,0,127,240,0,127,128,0,31,240,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,240,0,127,128,0,47,240,0,127,128,0,127,208,0,127,213,91,255,128,0,127,255,255,254,0,0,127,255,255,240,0,0,127,255,255,208,0,0,127,128,31,240,0,0,127,128,11,248,0,0,127,128,3,253,0,0,127,128,2,255,0,0,127,128,0,255,128,0,127,128,0,127,192,0,127,128,0,47,240,0,127,128,0,15,244,0,127,128,0,11,252,0,127,128,0,3,254,0,127,128,0,1,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,0,0,191,0,0,0,0,0,254,0,0,0,0,0,252,0,0,0,0,1,248,0,0,0,0,2,240,0,0,0,0,1,64,0,0,0, + // 0x0157 ŗ + 14,30,120,16,2,247,21,0,47,208,63,66,255,208,63,139,255,208,63,223,255,192,63,255,64,0,63,252,0,0,63,240,0,0,63,224,0,0,63,208,0,0,63,208,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,0,0,0,0,0,0,0,0,10,160,0,0,31,208,0,0,47,192,0,0,63,128,0,0,63,0,0,0,125,0,0,0,20,0,0,0, + // 0x0158 Ř + 21,36,216,24,3,0,11,224,0,191,0,0,2,252,3,252,0,0,0,255,15,240,0,0,0,63,255,192,0,0,0,15,255,64,0,0,0,7,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,144,0,0,127,255,255,253,0,0,127,255,255,255,128,0,127,213,91,255,208,0,127,128,0,127,240,0,127,128,0,31,240,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,244,0,127,128,0,15,240,0,127,128,0,47,240,0,127,128,0,127,208,0,127,213,91,255,128,0,127,255,255,254,0,0,127,255,255,240,0,0,127,255,255,208,0,0,127,128,31,240,0,0,127,128,11,248,0,0,127,128,3,253,0,0,127,128,2,255,0,0,127,128,0,255,128,0,127,128,0,127,192,0,127,128,0,47,240,0,127,128,0,15,244,0,127,128,0,11,252,0,127,128,0,3,254,0,127,128,0,1,255,64, + // 0x0159 ř + 14,29,116,16,2,0,127,0,7,240,47,208,47,192,11,244,255,0,3,255,253,0,0,255,244,0,0,63,224,0,0,0,0,0,0,0,0,0,21,0,47,208,63,66,255,208,63,139,255,208,63,223,255,192,63,255,64,0,63,252,0,0,63,240,0,0,63,224,0,0,63,208,0,0,63,208,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0, + // 0x015a Ś + 17,37,185,21,2,255,0,0,15,252,0,0,0,47,240,0,0,0,63,192,0,0,0,255,0,0,0,2,252,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,21,64,0,0, + // 0x015b ś + 15,30,120,18,2,255,0,0,191,208,0,0,255,64,0,3,253,0,0,11,244,0,0,15,208,0,0,63,64,0,0,0,0,0,0,0,0,0,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,85,0,0, + // 0x015c Ŝ + 17,37,185,21,2,255,0,15,253,0,0,0,47,255,0,0,0,127,255,192,0,0,254,31,240,0,3,248,3,248,0,15,208,0,190,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,21,64,0,0, + // 0x015d ŝ + 15,30,120,18,2,255,0,127,240,0,0,255,244,0,3,255,253,0,15,240,255,0,47,192,47,192,190,0,7,240,0,0,0,0,0,0,0,0,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,85,0,0, + // 0x015e Ş + 17,38,190,21,2,246,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,31,208,0,0,0,15,192,0,0,0,31,244,0,0,0,7,253,0,0,0,0,190,0,0,0,0,191,0,0,0,85,254,0,0,0,255,252,0,0,0,255,224,0,0,0,0,0,0,0, + // 0x015f ş + 15,31,124,18,2,246,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,95,192,0,0,47,0,0,0,63,224,0,0,27,248,0,0,1,252,0,0,0,252,0,1,87,252,0,2,255,244,0,2,255,128,0,0,0,0,0, + // 0x0160 Š + 17,37,185,21,2,255,15,208,0,254,0,3,248,7,248,0,0,255,31,224,0,0,127,255,192,0,0,31,255,0,0,0,11,253,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,0,0,0,191,255,249,0,7,255,255,255,128,31,255,255,255,0,63,244,1,191,0,127,192,0,0,0,191,64,0,0,0,255,64,0,0,0,191,64,0,0,0,191,192,0,0,0,127,224,0,0,0,63,253,0,0,0,15,255,208,0,0,3,255,254,0,0,0,127,255,224,0,0,7,255,252,0,0,0,127,255,0,0,0,7,255,64,0,0,0,255,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,144,0,0,255,128,254,80,27,255,0,255,255,255,253,0,255,255,255,244,0,47,255,255,64,0,0,21,64,0,0, + // 0x0161 š + 15,30,120,18,2,255,191,0,7,240,47,208,47,192,11,244,255,0,3,255,252,0,0,255,244,0,0,127,224,0,0,0,0,0,0,0,0,0,0,111,233,0,11,255,255,240,63,255,255,240,191,229,111,224,255,0,0,64,255,0,0,0,255,0,0,0,255,208,0,0,127,253,0,0,31,255,224,0,2,255,254,0,0,47,255,208,0,1,255,240,0,0,47,248,0,0,11,248,0,0,3,248,0,0,7,248,244,0,31,244,255,251,255,240,255,255,255,192,111,255,253,0,0,85,0,0, + // 0x0162 Ţ + 21,37,222,21,0,246,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,47,0,0,0,0,0,62,0,0,0,0,0,191,208,0,0,0,0,31,240,0,0,0,0,3,248,0,0,0,0,2,248,0,0,0,1,87,244,0,0,0,3,255,240,0,0,0,3,255,128,0,0,0,0,0,0,0,0, + // 0x0163 ţ + 14,35,140,15,0,246,0,62,0,0,0,126,0,0,0,190,0,0,0,254,0,0,2,255,85,64,47,255,255,208,127,255,255,208,43,255,170,128,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,255,0,0,0,255,128,0,0,255,255,224,0,63,255,224,0,11,255,208,0,3,244,0,0,7,208,0,0,15,248,0,0,6,255,0,0,0,63,64,0,0,63,64,0,21,191,0,0,127,254,0,0,127,244,0,0,0,0,0, + // 0x0164 Ť + 21,36,216,21,0,0,0,253,0,15,208,0,0,63,128,127,128,0,0,31,225,254,0,0,0,7,255,248,0,0,0,2,255,240,0,0,0,0,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x0165 ť + 19,30,150,15,0,255,0,0,0,3,252,0,0,0,3,248,0,0,0,7,240,0,0,0,11,224,0,62,0,15,192,0,126,0,15,128,0,190,0,0,0,0,254,0,0,0,2,255,85,64,0,47,255,255,208,0,127,255,255,208,0,43,255,170,128,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,254,0,0,0,1,255,0,0,0,0,255,128,0,0,0,255,255,224,0,0,63,255,224,0,0,11,255,208,0,0,0,84,0,0, + // 0x0166 Ŧ + 21,27,162,21,0,0,191,255,255,255,255,192,191,255,255,255,255,192,191,255,255,255,255,192,21,85,191,213,85,64,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,1,85,191,213,80,0,2,255,255,255,240,0,2,255,255,255,240,0,2,255,255,255,240,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0,0,0,127,128,0,0, + // 0x0167 ŧ + 14,26,104,15,0,255,0,62,0,0,0,126,0,0,0,190,0,0,0,254,0,0,2,255,85,64,47,255,255,208,127,255,255,208,43,255,170,128,1,254,0,0,1,254,0,0,1,254,0,0,2,254,0,0,63,255,255,192,63,255,255,192,63,255,255,192,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,254,0,0,1,255,0,0,0,255,128,0,0,255,255,224,0,63,255,224,0,11,255,208,0,0,84,0, + // 0x0168 Ũ + 22,36,216,28,3,255,0,11,248,0,240,0,0,63,255,67,240,0,0,191,255,255,224,0,0,248,11,255,192,0,0,240,1,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x0169 ũ + 18,29,145,24,3,255,0,191,64,31,0,3,255,244,63,0,11,255,255,253,0,15,129,255,252,0,15,0,27,224,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x016a Ū + 22,34,204,28,3,255,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x016b ū + 18,27,135,24,3,255,3,255,255,252,0,3,255,255,252,0,3,255,255,252,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x016c Ŭ + 22,37,222,28,3,255,0,20,0,1,64,0,0,61,0,7,192,0,0,63,64,111,192,0,0,31,255,255,64,0,0,11,255,253,0,0,0,0,191,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x016d ŭ + 18,30,150,24,3,255,1,64,0,20,0,3,208,0,124,0,3,244,6,252,0,1,255,255,240,0,0,191,255,208,0,0,27,254,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x016e Ů + 22,39,234,28,3,255,0,0,191,224,0,0,0,2,255,248,0,0,0,3,208,188,0,0,0,7,192,61,0,0,0,3,192,61,0,0,0,3,224,188,0,0,0,1,255,244,0,0,0,0,127,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x016f ů + 18,32,160,24,3,255,0,11,254,0,0,0,47,255,128,0,0,61,11,192,0,0,124,3,192,0,0,124,3,192,0,0,62,15,192,0,0,47,255,64,0,0,7,249,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x0170 Ű + 22,37,222,28,3,255,0,3,252,31,240,0,0,11,244,63,208,0,0,31,224,127,64,0,0,63,128,254,0,0,0,190,2,248,0,0,0,248,7,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x0171 ű + 18,30,150,24,3,255,0,63,193,255,0,0,255,67,253,0,1,254,7,244,0,3,248,15,208,0,11,224,47,64,0,15,128,125,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x0172 Ų + 22,36,216,28,3,247,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,240,0,0,27,255,255,192,0,0,0,21,111,64,0,0,0,0,62,0,0,0,0,0,188,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,0,253,0,0,0,0,0,255,244,0,0,0,0,63,244,0,0,0,0,6,144,0, + // 0x0173 ų + 18,30,150,24,3,247,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,15,240,0,5,64,31,64,0,0,0,126,0,0,0,0,252,0,0,0,2,244,0,0,0,2,244,0,0,0,2,248,0,0,0,1,255,240,0,0,0,191,240,0,0,0,26,80, + // 0x0174 Ŵ + 36,36,68,36,0,0,0,0,0,2,255,64,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,31,255,240,0,0,0,0,0,0,63,195,252,0,0,0,0,0,0,254,0,255,0,0,0,0,0,3,244,0,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,128,0,1,255,0,0,3,253,127,192,0,2,255,64,0,3,252,63,192,0,3,255,128,0,7,248,63,208,0,7,255,192,0,11,244,31,224,0,11,255,192,0,15,240,15,240,0,15,239,208,0,15,240,15,240,0,15,223,240,0,31,224,11,244,0,31,203,240,0,47,208,7,248,0,47,199,244,0,63,192,3,252,0,63,131,248,0,63,192,3,252,0,127,67,252,0,127,128,2,253,0,191,2,252,0,191,64,1,254,0,255,0,254,0,255,0,0,255,0,254,0,255,0,255,0,0,255,1,253,0,191,1,254,0,0,191,66,252,0,127,66,253,0,0,127,131,248,0,63,131,252,0,0,63,195,244,0,63,195,252,0,0,63,199,240,0,47,199,248,0,0,47,219,240,0,15,219,240,0,0,31,223,224,0,15,235,240,0,0,15,239,208,0,11,239,224,0,0,15,255,192,0,7,255,208,0,0,11,255,192,0,3,255,192,0,0,7,255,64,0,3,255,192,0,0,3,255,0,0,2,255,128,0,0,2,255,0,0,0,255,64,0, + // 0x0175 ŵ + 30,29,232,31,0,0,0,0,0,127,240,0,0,0,0,0,0,255,248,0,0,0,0,0,3,255,253,0,0,0,0,0,11,244,191,64,0,0,0,0,47,208,47,208,0,0,0,0,126,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,26,144,0,6,160,127,192,0,63,240,0,15,240,63,192,0,127,240,0,31,224,47,208,0,255,244,0,47,208,31,224,0,255,248,0,63,192,15,240,1,253,252,0,63,192,15,240,2,248,253,0,127,128,11,244,3,244,254,0,191,64,7,248,3,240,191,0,255,0,3,252,11,240,127,0,254,0,3,252,15,224,63,65,253,0,2,253,15,208,63,130,252,0,1,254,31,192,47,195,252,0,0,255,47,192,15,211,248,0,0,191,63,64,15,231,244,0,0,127,127,0,11,235,240,0,0,63,191,0,7,255,240,0,0,63,254,0,3,255,208,0,0,47,253,0,3,255,192,0,0,31,252,0,2,255,192,0,0,15,248,0,0,255,128,0, + // 0x0176 Ŷ + 22,36,216,22,0,0,0,0,191,224,0,0,0,1,255,244,0,0,0,3,255,252,0,0,0,15,240,255,0,0,0,63,192,63,192,0,0,190,0,11,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x0177 ŷ + 20,39,195,20,0,246,0,2,255,128,0,0,7,255,208,0,0,15,255,240,0,0,63,195,252,0,0,255,0,255,0,2,244,0,47,128,0,0,0,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x0178 Ÿ + 22,35,210,22,0,0,0,11,128,47,0,0,0,31,208,63,128,0,0,31,208,63,128,0,0,15,192,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x0179 Ź + 20,36,180,22,1,0,0,0,2,255,0,0,0,7,253,0,0,0,15,244,0,0,0,47,208,0,0,0,127,64,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x017a ź + 16,29,116,18,1,0,0,0,47,240,0,0,127,208,0,0,255,64,0,2,253,0,0,7,244,0,0,15,192,0,0,0,0,0,0,0,0,0,21,85,85,84,63,255,255,253,63,255,255,253,42,170,171,252,0,0,11,248,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,254,191,255,255,254,191,255,255,254, + // 0x017b Ż + 20,35,175,22,1,0,0,0,191,0,0,0,0,255,64,0,0,0,255,64,0,0,0,191,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x017c ż + 16,28,112,18,1,0,0,11,240,0,0,15,240,0,0,15,244,0,0,15,240,0,0,1,64,0,0,0,0,0,0,0,0,0,21,85,85,84,63,255,255,253,63,255,255,253,42,170,171,252,0,0,11,248,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,254,191,255,255,254,191,255,255,254, + // 0x017d Ž + 20,36,180,22,1,0,2,248,0,47,192,0,191,0,255,0,0,63,195,252,0,0,15,255,240,0,0,3,255,208,0,0,1,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,252,127,255,255,255,252,127,255,255,255,252,21,85,85,95,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,47,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,253,0,0,0,15,248,0,0,0,47,240,0,0,0,127,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,248,0,0,0,47,240,0,0,0,127,234,170,170,169,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253, + // 0x017e ž + 16,29,116,18,1,0,47,128,2,248,15,240,15,240,3,252,63,192,0,255,255,0,0,63,252,0,0,31,244,0,0,0,0,0,0,0,0,0,21,85,85,84,63,255,255,253,63,255,255,253,42,170,171,252,0,0,11,248,0,0,31,240,0,0,63,192,0,0,255,64,0,2,254,0,0,7,252,0,0,15,244,0,0,47,224,0,0,127,192,0,0,255,0,0,3,253,0,0,11,248,0,0,31,240,0,0,63,208,0,0,191,255,255,254,191,255,255,254,191,255,255,254, + // 0x017f ſ + 11,29,87,13,3,0,1,191,248,15,255,252,63,255,248,127,228,100,191,128,0,191,64,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Simplified_Chinese_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Simplified_Chinese_28.cpp new file mode 100644 index 000000000000..844852751ec7 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Simplified_Chinese_28.cpp @@ -0,0 +1,778 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Simplified Chinese 38pt, capital 'A' height: 28px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +extern const uint8_t NotoSans_Medium_Simplified_Chinese_28[27451] = { + 162,28,28,32,26,255,37,246, // unifont_t + // 0x201c “ + 28,32,14,10,40,15,0,17,2,248,3,240,3,244,11,240,7,240,15,224,15,240,31,208,15,224,47,192,47,208,63,192,63,192,127,128,63,192,191,128,127,192,255,64,0,0,0,0, + // 0x201d ” + 29,32,14,10,40,15,0,17,15,248,31,240,15,244,31,240,15,240,47,208,31,224,63,192,47,208,63,192,47,192,63,64,63,128,127,0,63,0,190,0,126,0,252,0,0,0,0,0, + // 0x22bf ⊿ + 191,34,29,31,248,38,4,255,0,0,0,0,0,0,0,128,0,0,0,0,0,0,2,192,0,0,0,0,0,0,11,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,192,0,0,0,0,0,47,255,192,0,0,0,0,0,191,223,192,0,0,0,0,2,255,31,192,0,0,0,0,11,252,31,192,0,0,0,0,31,240,31,192,0,0,0,0,127,192,31,192,0,0,0,1,255,0,31,192,0,0,0,7,252,0,31,192,0,0,0,31,240,0,31,192,0,0,0,127,192,0,31,192,0,0,1,255,0,0,31,192,0,0,7,252,0,0,31,192,0,0,31,240,0,0,31,192,0,0,127,192,0,0,31,192,0,1,255,0,0,0,31,192,0,7,252,0,0,0,31,192,0,31,240,0,0,0,31,192,0,127,192,0,0,0,31,192,1,255,0,0,0,0,31,192,7,252,0,0,0,0,31,192,15,255,255,255,255,255,255,192,63,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0x4e00 一 + 0,78,35,4,36,38,2,12,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244, + // 0x4e09 三 + 9,78,34,29,5,38,2,255,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,2,170,170,170,170,170,170,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,0,0,0,47,255,255,255,255,255,64,0,0,47,255,255,255,255,255,64,0,0,47,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,170,170,170,128,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208, + // 0x4e0a 上 + 10,78,34,34,50,38,2,254,0,0,0,5,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,250,170,170,168,0,0,0,0,15,255,255,255,253,0,0,0,0,15,255,255,255,253,0,0,0,0,15,255,255,255,253,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,170,170,170,175,250,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e0b 下 + 11,78,34,33,41,38,2,252,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,106,170,170,175,250,170,170,170,144,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,11,251,255,244,0,0,0,0,0,11,240,191,254,0,0,0,0,0,11,240,31,255,208,0,0,0,0,11,240,2,255,248,0,0,0,0,11,240,0,63,254,0,0,0,0,11,240,0,11,252,0,0,0,0,11,240,0,1,244,0,0,0,0,11,240,0,0,16,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0, + // 0x4e0d 不 + 13,78,34,33,41,38,2,252,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,42,170,170,170,255,234,170,170,128,0,0,0,0,255,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,1,255,252,124,0,0,0,0,0,7,255,254,255,64,0,0,0,0,31,255,252,255,240,0,0,0,0,127,243,252,47,253,0,0,0,2,255,195,252,7,255,64,0,0,11,255,3,252,1,255,224,0,0,63,252,3,252,0,63,252,0,2,255,240,3,252,0,11,255,0,31,255,128,3,252,0,2,255,192,191,253,0,3,252,0,0,191,240,191,240,0,3,252,0,0,31,224,63,128,0,3,252,0,0,7,128,8,0,0,3,252,0,0,1,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0, + // 0x4e13 专 + 19,78,34,37,77,38,2,251,0,0,0,31,128,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,128,0,0,0,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,1,85,86,254,85,85,85,80,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,85,85,91,249,85,85,85,85,64,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,0,0,47,192,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,255,255,255,255,208,0,0,1,255,255,255,255,255,248,0,0,2,255,255,255,255,255,240,0,0,1,85,85,85,85,255,192,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,240,0,0,0,0,41,0,0,255,192,0,0,0,0,127,228,3,255,0,0,0,0,0,255,255,159,252,0,0,0,0,0,31,255,255,240,0,0,0,0,0,0,127,255,244,0,0,0,0,0,0,2,255,255,64,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,0, + // 0x4e1d 丝 + 29,78,34,34,50,38,2,254,0,0,16,0,0,0,80,0,0,0,0,190,0,0,0,254,0,0,0,0,255,0,0,1,253,0,0,0,1,253,0,0,2,252,0,0,0,3,252,0,0,3,244,0,0,0,7,244,0,0,11,240,0,0,0,11,240,0,0,15,208,0,0,0,15,208,8,0,47,192,9,0,0,47,192,31,64,127,64,47,128,0,63,64,63,192,254,0,63,192,0,191,0,191,129,252,0,255,64,1,253,0,255,3,244,1,254,0,3,248,2,253,15,240,3,252,0,11,240,3,248,63,255,255,240,0,47,255,255,240,63,255,255,224,0,47,255,255,208,47,255,255,192,0,15,255,255,128,25,64,255,0,0,9,64,255,0,0,2,253,0,0,0,2,252,0,0,7,248,0,0,0,11,244,0,0,15,240,0,0,0,31,208,0,0,63,192,0,0,0,127,128,0,0,255,0,0,0,1,254,0,0,3,252,0,0,0,7,254,191,255,31,255,255,255,192,31,255,255,255,63,255,255,255,192,15,255,255,255,31,255,255,255,128,11,254,149,64,15,234,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e2a 个 + 42,78,36,35,59,38,1,252,0,0,0,2,255,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,191,219,252,0,0,0,0,0,1,255,130,255,0,0,0,0,0,7,254,0,255,192,0,0,0,0,31,252,0,63,244,0,0,0,0,127,240,0,15,253,0,0,0,2,255,192,0,3,255,128,0,0,11,255,0,0,0,255,240,0,0,63,248,0,0,0,47,253,0,1,255,224,0,85,0,7,255,128,11,255,64,0,254,0,1,255,248,127,252,0,0,254,0,0,63,255,191,224,0,0,254,0,0,7,254,63,64,0,0,254,0,0,0,252,8,0,0,0,254,0,0,0,16,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x4e2d 中 + 45,78,32,36,32,38,3,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,149,85,95,245,85,86,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,149,85,95,245,85,86,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,0,168,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x4e3a 为 + 58,78,32,36,32,38,2,252,0,0,0,42,128,0,0,0,0,8,0,63,192,0,0,0,0,191,0,63,192,0,0,0,0,127,128,63,192,0,0,0,0,63,208,63,192,0,0,0,0,15,240,63,192,0,0,0,0,7,248,63,192,0,0,0,0,3,224,63,128,0,0,0,0,0,0,63,128,0,0,0,26,170,170,191,234,170,170,170,63,255,255,255,255,255,255,255,63,255,255,255,255,255,255,255,63,255,255,255,255,255,255,255,0,0,0,127,64,0,0,191,0,0,0,191,0,0,0,191,0,0,0,255,0,0,0,191,0,0,0,254,0,0,0,191,0,0,1,253,2,0,0,191,0,0,2,252,47,128,0,255,0,0,3,252,63,208,0,255,0,0,7,248,15,240,0,255,0,0,15,240,7,252,0,255,0,0,31,240,2,253,0,254,0,0,63,208,0,255,0,254,0,0,191,192,0,127,64,254,0,0,255,64,0,56,1,253,0,3,254,0,0,0,1,253,0,15,252,0,0,0,1,253,0,47,244,0,0,0,2,252,0,191,208,0,0,0,3,252,3,255,128,0,0,0,3,252,31,254,0,0,0,0,11,248,127,248,0,0,2,255,255,244,63,208,0,0,0,255,255,240,15,0,0,0,0,255,255,192,0,0,0,0,0,106,164,0, + // 0x4e3b 主 + 59,78,34,35,59,38,2,253,0,0,0,9,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,0,63,208,0,0,0,5,85,85,85,111,149,85,85,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,85,85,87,253,85,85,80,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x4e49 义 + 73,78,34,36,68,38,2,252,0,0,0,6,128,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,11,240,0,1,224,0,0,0,0,3,244,0,3,252,0,0,188,0,2,252,0,3,252,0,1,253,0,1,253,0,11,244,0,0,255,0,0,254,0,15,240,0,0,127,64,0,191,0,31,224,0,0,63,128,0,61,0,63,208,0,0,47,208,0,0,0,127,192,0,0,15,240,0,0,0,255,64,0,0,11,244,0,0,1,255,0,0,0,3,252,0,0,3,253,0,0,0,2,254,0,0,7,252,0,0,0,0,255,64,0,15,240,0,0,0,0,127,192,0,63,224,0,0,0,0,47,224,0,127,192,0,0,0,0,15,248,1,255,0,0,0,0,0,7,253,3,254,0,0,0,0,0,2,255,79,248,0,0,0,0,0,0,191,255,240,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,191,255,240,0,0,0,0,0,3,255,255,253,0,0,0,0,0,47,254,11,255,128,0,0,0,1,255,244,1,255,248,0,0,0,31,255,128,0,63,255,128,0,2,255,253,0,0,11,255,249,0,127,255,224,0,0,0,191,255,224,255,254,0,0,0,0,11,255,240,191,208,0,0,0,0,0,191,192,56,0,0,0,0,0,0,6,64,0,0,0,0,0,0,0,0,0, + // 0x4e4b 之 + 75,78,35,36,68,38,1,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,1,85,85,85,255,85,85,89,0,3,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,127,224,0,0,0,1,0,0,1,255,128,0,0,0,3,224,0,7,254,0,0,0,0,11,244,0,47,248,0,0,0,0,15,240,0,191,224,0,0,0,0,31,224,2,255,128,0,0,0,0,63,240,15,253,0,0,0,0,0,127,252,127,244,0,0,0,0,0,255,255,255,192,0,0,0,0,2,254,255,254,0,0,0,0,0,3,252,63,252,0,0,0,0,0,11,248,15,255,144,0,0,0,0,31,240,3,255,255,250,165,85,88,63,208,0,127,255,255,255,255,252,191,192,0,6,255,255,255,255,248,31,64,0,0,6,191,255,255,244,1,0,0,0,0,0,0,0,0, + // 0x4e86 了 + 134,78,30,33,8,38,4,252,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,208,170,170,170,170,170,171,255,64,0,0,0,0,0,11,254,0,0,0,0,0,0,63,248,0,0,0,0,0,0,255,224,0,0,0,0,0,3,255,128,0,0,0,0,0,31,253,0,0,0,0,0,0,191,244,0,0,0,0,0,43,255,192,0,0,0,0,0,63,254,0,0,0,0,0,0,63,244,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,26,170,191,192,0,0,0,0,15,255,255,128,0,0,0,0,11,255,255,0,0,0,0,0,7,255,228,0,0,0,0, + // 0x4e8c 二 + 140,78,34,28,252,38,2,255,1,255,255,255,255,255,255,244,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0, + // 0x4e8e 于 + 142,78,34,33,41,38,2,252,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,86,254,85,85,84,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,85,85,85,86,254,85,85,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,255,255,252,0,0,0,0,0,0,191,255,252,0,0,0,0,0,0,127,255,240,0,0,0,0,0,0,42,169,0,0,0,0,0, + // 0x4ea4 交 + 164,78,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,85,85,85,85,85,85,85,85,80,0,0,20,0,0,2,128,0,0,0,0,63,128,0,15,240,0,0,0,0,255,192,0,47,253,0,0,0,3,255,0,0,7,255,128,0,0,15,252,0,0,0,255,240,0,0,127,240,0,0,0,47,252,0,2,255,192,0,0,0,11,255,0,31,255,6,64,0,30,65,255,192,191,248,63,192,0,47,224,127,224,63,224,47,208,0,63,192,31,128,15,0,15,240,0,191,128,9,0,0,0,11,244,0,255,0,0,0,0,0,3,252,3,254,0,0,0,0,0,2,255,11,252,0,0,0,0,0,0,255,175,240,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,255,208,0,0,0,0,0,2,255,255,248,0,0,0,0,0,47,255,95,255,128,0,0,0,7,255,252,3,255,249,0,0,1,191,255,208,0,191,255,228,0,191,255,253,0,0,11,255,255,240,255,255,208,0,0,0,191,255,240,63,248,0,0,0,0,6,255,192,46,0,0,0,0,0,0,6,64,0,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,64,0,0,47,255,255,255,255,255,128,0,0,47,255,255,255,255,255,128,0,0,47,192,0,0,0,63,128,0,0,47,192,0,0,0,63,128,0,0,47,192,0,0,0,63,128,0,0,47,255,255,255,255,255,128,0,0,47,255,255,255,255,255,128,0,0,5,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,0,0,0,0,0,0,15,208,127,0,0,0,0,0,0,15,208,127,0,15,224,3,252,0,15,208,127,0,15,224,3,252,0,15,208,127,0,31,208,3,252,0,15,208,0,0,47,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,127,128,3,252,0,0,0,0,0,255,64,3,252,0,7,128,0,3,254,0,3,252,0,7,240,0,47,252,0,3,252,0,11,240,6,255,240,0,2,253,0,15,224,255,255,128,0,2,255,255,255,208,191,249,0,0,0,255,255,255,192,62,64,0,0,0,47,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x4ece 从 + 206,78,34,34,50,38,2,252,0,1,253,0,0,47,192,0,0,0,2,253,0,0,47,192,0,0,0,2,253,0,0,47,192,0,0,0,2,253,0,0,47,192,0,0,0,2,252,0,0,63,192,0,0,0,2,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,208,0,0,0,3,248,0,0,127,208,0,0,0,7,248,0,0,127,224,0,0,0,7,244,0,0,191,240,0,0,0,11,244,0,0,255,240,0,0,0,11,252,0,0,255,240,0,0,0,15,255,0,0,255,244,0,0,0,15,255,192,1,255,252,0,0,0,31,255,224,2,255,252,0,0,0,31,255,244,3,253,253,0,0,0,47,203,252,7,248,254,0,0,0,63,195,255,11,244,255,0,0,0,127,128,255,79,240,191,64,0,0,191,64,191,111,224,63,192,0,0,255,0,62,63,192,47,208,0,1,255,0,28,191,192,31,240,0,3,253,0,1,255,64,15,248,0,7,252,0,3,255,0,7,253,0,15,248,0,11,252,0,3,255,0,47,240,0,47,248,0,0,255,192,127,224,0,191,240,0,0,191,240,255,192,2,255,192,0,0,63,240,255,64,0,191,0,0,0,15,208,46,0,0,44,0,0,0,3,128,4,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,36,36,68,38,1,252,0,0,0,1,254,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,127,219,252,0,0,0,0,0,1,255,131,255,0,0,0,0,0,7,254,0,255,192,0,0,0,0,31,252,0,63,244,0,0,0,0,127,240,0,15,253,0,0,0,2,255,192,0,3,255,128,0,0,11,255,0,0,0,255,240,0,0,63,253,0,0,0,127,253,0,1,255,223,255,255,255,247,255,208,15,255,79,255,255,255,240,255,248,127,252,15,255,255,255,240,47,253,63,208,0,0,0,0,0,7,248,15,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,0,0,47,208,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,15,255,252,0,0,0,0,31,192,11,255,248,0,0,0,0,31,192,7,255,224,0,0,0,0,31,192,1,84,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0, + // 0x4ee5 以 + 229,78,36,33,41,38,1,252,0,63,64,0,0,0,0,249,0,0,63,128,0,0,0,1,254,0,0,63,128,0,0,0,1,253,0,0,63,128,11,128,0,2,253,0,0,63,128,63,208,0,2,252,0,0,63,128,31,240,0,3,252,0,0,63,128,11,252,0,3,252,0,0,63,128,3,254,0,3,248,0,0,63,128,0,255,0,7,248,0,0,63,192,0,191,192,11,244,0,0,63,192,0,63,208,15,240,0,0,63,192,0,31,224,15,240,0,0,63,192,0,15,64,31,224,0,0,63,192,0,0,0,47,208,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,127,128,0,0,47,192,0,0,0,255,64,0,0,47,192,0,0,0,255,0,0,0,47,192,0,0,2,254,0,0,0,47,192,31,0,7,252,0,0,0,47,193,255,0,15,254,0,0,0,47,239,255,64,47,255,128,0,0,31,255,254,0,127,255,208,0,0,191,255,224,1,255,175,244,0,31,255,253,0,7,255,15,253,0,127,255,144,0,31,252,3,255,0,63,248,0,0,191,244,0,255,192,63,64,0,7,255,192,0,127,240,20,0,0,127,255,0,0,31,248,0,0,7,255,248,0,0,11,253,0,0,11,255,208,0,0,3,253,0,0,2,254,0,0,0,0,240,0,0,0,160,0,0,0,0,64, + // 0x4ef6 件 + 246,78,35,36,68,38,1,252,0,0,32,0,0,5,64,0,0,0,0,191,0,0,31,192,0,0,0,0,254,2,144,31,192,0,0,0,1,253,3,244,31,192,0,0,0,3,252,7,240,31,192,0,0,0,7,248,11,240,31,192,0,0,0,15,240,15,224,31,192,0,0,0,31,224,15,208,31,192,0,0,0,63,192,31,255,255,255,255,224,0,127,128,47,255,255,255,255,224,0,255,64,63,255,255,255,255,224,3,255,64,127,149,111,229,85,64,7,255,64,255,0,31,192,0,0,31,255,65,253,0,31,192,0,0,63,255,67,252,0,31,192,0,0,191,255,66,244,0,31,192,0,0,63,63,64,32,0,31,192,0,0,44,63,64,0,0,31,192,0,0,4,63,64,0,0,31,192,0,0,0,63,67,255,255,255,255,255,252,0,63,67,255,255,255,255,255,252,0,63,67,255,255,255,255,255,252,0,63,65,85,85,111,229,85,84,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,47,64,0,0,31,192,0,0, + // 0x4efd 份 + 253,78,36,36,68,38,1,252,0,0,100,0,0,0,0,0,0,0,0,255,0,15,255,255,128,0,0,1,253,0,15,255,255,192,0,0,2,252,0,15,255,255,208,0,0,3,248,1,64,0,15,224,0,0,11,240,3,248,0,15,240,0,0,15,224,3,244,0,7,240,0,0,47,192,11,240,0,3,248,0,0,63,128,15,224,0,3,252,0,0,255,64,47,192,0,1,254,0,1,255,64,63,128,0,0,255,0,3,255,64,191,0,0,0,127,192,15,255,64,254,0,0,0,63,224,47,255,67,252,0,0,0,31,248,127,255,75,244,0,0,0,11,254,255,191,95,240,0,0,0,7,253,190,63,111,239,255,255,255,253,248,60,63,71,95,255,255,255,252,32,32,63,64,31,255,255,255,252,0,0,63,64,0,11,224,1,252,0,0,63,64,0,15,224,1,252,0,0,63,64,0,15,208,1,252,0,0,63,64,0,15,208,1,252,0,0,63,64,0,31,192,2,252,0,0,63,64,0,47,192,2,252,0,0,63,64,0,63,64,2,252,0,0,63,64,0,127,0,2,252,0,0,63,64,0,255,0,3,252,0,0,63,64,1,253,0,3,248,0,0,63,64,3,252,0,3,248,0,0,63,64,15,244,0,3,248,0,0,63,64,63,224,0,11,244,0,0,63,66,255,128,15,255,240,0,0,63,67,254,0,11,255,240,0,0,63,64,244,0,7,255,192,0,0,42,0,64,0,1,84,0,0, + // 0x4f11 休 + 17,79,36,36,68,38,1,252,0,0,4,0,0,0,0,0,0,0,0,47,128,0,63,128,0,0,0,0,63,192,0,63,128,0,0,0,0,191,64,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,1,254,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,11,248,0,0,63,128,0,0,0,15,240,0,0,63,128,0,0,0,63,224,0,0,63,128,0,0,0,191,211,255,255,255,255,255,252,1,255,211,255,255,255,255,255,252,3,255,211,255,255,255,255,255,252,15,255,209,85,87,255,253,85,84,63,255,208,0,3,255,252,0,0,255,239,208,0,7,255,253,0,0,191,143,208,0,15,255,255,0,0,63,15,208,0,31,255,255,0,0,44,15,208,0,63,255,175,192,0,0,15,208,0,127,127,159,208,0,0,15,208,0,255,63,143,240,0,0,15,208,2,253,63,135,248,0,0,15,208,7,252,63,130,252,0,0,15,208,15,240,63,128,255,0,0,15,208,47,224,63,128,191,128,0,15,208,191,192,63,128,63,208,0,15,209,255,0,63,128,31,244,0,15,219,253,0,63,128,11,253,0,15,239,248,0,63,128,3,255,0,15,219,240,0,63,128,0,252,0,15,210,192,0,63,128,0,48,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,192,0,0,63,128,0,0, + // 0x4f20 传 + 32,79,35,36,68,38,1,252,0,0,16,0,0,80,0,0,0,0,0,190,0,0,255,0,0,0,0,0,254,0,0,254,0,0,0,0,1,253,0,1,253,0,0,0,0,3,252,0,2,253,0,0,0,0,7,244,191,255,255,255,255,208,0,15,240,191,255,255,255,255,208,0,31,208,191,255,255,255,255,208,0,63,192,0,11,240,0,0,0,0,191,64,0,15,224,0,0,0,1,255,64,0,15,208,0,0,0,3,255,65,85,111,213,85,85,84,15,255,79,255,255,255,255,255,252,47,255,79,255,255,255,255,255,252,191,255,79,255,255,255,255,255,252,255,191,64,0,191,0,0,0,0,126,63,64,0,255,0,0,0,0,60,63,64,0,253,0,0,0,0,16,63,64,1,252,0,0,0,0,0,63,64,3,255,255,255,255,64,0,63,64,3,255,255,255,255,208,0,63,64,7,255,255,255,255,128,0,63,64,1,85,85,87,254,0,0,63,64,0,0,0,11,252,0,0,63,64,0,0,0,47,240,0,0,63,64,0,0,0,127,192,0,0,63,64,0,15,65,255,0,0,0,63,64,0,63,231,253,0,0,0,63,64,0,47,255,244,0,0,0,63,64,0,7,255,224,0,0,0,63,64,0,0,191,240,0,0,0,63,64,0,0,31,253,0,0,0,63,64,0,0,7,255,64,0,0,63,64,0,0,0,255,192,0,0,63,64,0,0,0,63,0,0,0,63,64,0,0,0,8,0,0, + // 0x4f4d 位 + 77,79,36,36,68,38,1,252,0,0,36,0,0,21,64,0,0,0,0,127,64,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,11,244,0,0,63,128,0,0,0,31,224,85,85,127,213,85,80,0,63,192,255,255,255,255,255,248,0,191,192,255,255,255,255,255,248,1,255,192,255,255,255,255,255,248,3,255,192,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,47,255,192,1,96,0,0,249,0,191,255,192,3,240,0,1,254,0,255,175,192,3,244,0,1,253,0,127,47,192,2,248,0,2,252,0,60,47,192,1,252,0,3,252,0,16,47,192,1,252,0,3,248,0,0,47,192,0,253,0,7,244,0,0,47,192,0,254,0,11,240,0,0,47,192,0,190,0,15,240,0,0,47,192,0,191,0,15,224,0,0,47,192,0,127,0,15,208,0,0,47,192,0,127,0,47,192,0,0,47,192,0,63,64,63,192,0,0,47,192,0,63,128,63,64,0,0,47,192,0,63,128,127,0,0,0,47,192,0,63,128,191,0,0,0,47,192,0,16,0,254,0,0,0,47,193,85,85,85,253,85,84,0,47,195,255,255,255,255,255,254,0,47,195,255,255,255,255,255,254,0,47,195,255,255,255,255,255,254,0,47,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,36,36,68,38,1,252,0,0,80,0,0,0,0,0,0,0,0,254,0,0,0,0,4,0,0,0,254,0,0,0,6,255,0,0,2,252,0,0,22,255,255,192,0,3,252,53,111,255,255,255,128,0,7,244,63,255,255,255,144,0,0,15,240,63,255,255,248,0,0,0,47,208,63,229,3,248,0,0,0,63,192,63,64,3,248,0,0,0,191,64,63,64,3,252,0,0,1,255,64,63,64,2,252,0,0,3,255,64,63,64,2,252,0,0,11,255,64,63,64,2,252,0,0,31,255,64,63,64,2,252,0,0,127,255,64,63,255,255,255,255,253,255,255,64,63,255,255,255,255,253,255,63,64,63,255,255,255,255,253,60,63,64,63,64,0,253,0,0,36,63,64,63,64,0,254,0,0,0,63,64,63,64,0,254,0,0,0,63,64,63,64,0,191,0,0,0,63,64,63,64,0,191,0,0,0,63,64,63,64,0,127,0,0,0,63,64,63,64,0,63,64,0,0,63,64,63,64,5,63,128,0,0,63,64,63,155,255,111,192,0,0,63,65,191,255,255,95,208,32,0,63,71,255,255,255,79,224,46,0,63,67,255,250,64,11,240,63,0,63,67,229,0,0,7,248,63,0,63,64,0,0,0,3,253,127,0,63,64,0,0,0,1,255,254,0,63,65,255,255,255,252,191,252,0,63,65,255,255,255,252,47,248,0,63,65,255,255,255,252,6,144,0,63,64,0,0,0,0,0,0, + // 0x4f53 体 + 83,79,36,36,68,38,1,252,0,0,144,0,0,42,0,0,0,0,1,253,0,0,63,64,0,0,0,2,252,0,0,63,64,0,0,0,3,248,0,0,63,64,0,0,0,7,244,0,0,63,64,0,0,0,15,240,0,0,63,64,0,0,0,31,208,0,0,63,64,0,0,0,63,193,85,85,127,149,85,84,0,127,135,255,255,255,255,255,252,0,255,71,255,255,255,255,255,252,1,255,71,255,255,255,255,255,252,3,255,64,0,7,255,244,0,0,11,255,64,0,11,255,252,0,0,31,255,64,0,15,255,252,0,0,127,255,64,0,31,255,190,0,0,191,255,64,0,63,127,127,0,0,63,63,64,0,127,63,111,128,0,44,63,64,0,253,63,95,192,0,4,63,64,1,252,63,79,224,0,0,63,64,3,244,63,71,240,0,0,63,64,11,240,63,67,248,0,0,63,64,31,208,63,65,253,0,0,63,64,63,192,63,64,255,0,0,63,64,191,64,63,64,127,192,0,63,65,254,0,63,64,47,224,0,63,71,253,0,127,64,31,244,0,63,95,247,255,255,255,247,254,0,63,111,227,255,255,255,242,253,0,63,75,131,255,255,255,240,244,0,63,66,0,0,63,64,0,16,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,64,0,0,63,64,0,0,0,63,0,0,0,42,0,0,0, + // 0x4f59 余 + 89,79,36,37,77,38,1,251,0,0,0,1,254,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,191,199,253,0,0,0,0,0,2,255,1,255,128,0,0,0,0,15,253,0,127,224,0,0,0,0,63,244,0,31,252,0,0,0,1,255,192,0,7,255,64,0,0,11,255,0,0,0,255,224,0,0,63,248,0,0,0,47,253,0,2,255,224,0,0,0,11,255,208,47,255,255,255,255,255,255,255,253,127,248,255,255,255,255,254,47,252,31,208,255,255,255,255,254,7,244,9,0,0,0,254,0,0,0,96,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,1,85,85,85,255,85,85,85,64,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,180,0,254,0,60,0,0,0,1,254,0,254,1,255,64,0,0,7,252,0,254,0,191,224,0,0,31,240,0,254,0,31,248,0,0,191,208,0,254,0,7,254,0,2,255,64,0,254,0,1,255,192,31,253,0,0,254,0,0,127,240,63,240,1,85,254,0,0,31,244,15,192,3,255,254,0,0,7,208,1,0,3,255,252,0,0,1,0,0,0,1,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,36,36,68,38,1,252,0,0,20,0,0,0,0,0,0,0,0,63,64,11,224,0,0,0,0,0,191,64,15,240,0,0,0,0,0,255,0,31,208,0,0,0,0,1,253,0,47,192,0,0,0,0,3,252,0,63,128,0,0,0,0,7,248,0,191,149,85,85,84,0,15,240,0,255,255,255,255,253,0,31,224,2,255,255,255,255,253,0,63,192,3,255,255,255,255,253,0,255,192,15,240,127,64,0,0,1,255,192,31,224,127,64,0,0,3,255,192,63,192,127,64,0,0,15,255,192,255,64,127,64,0,0,63,255,194,255,0,127,64,0,0,127,255,195,252,0,127,255,255,248,63,111,192,244,0,127,255,255,248,30,47,192,16,0,127,255,255,248,8,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,85,85,84,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,31,192,0,0,127,0,0,0, + // 0x4f7f 使 + 127,79,36,37,77,38,1,251,0,0,57,0,0,26,128,0,0,0,0,127,64,0,47,192,0,0,0,0,255,0,0,47,192,0,0,0,1,253,0,0,47,192,0,0,0,2,254,255,255,255,255,255,253,0,7,250,255,255,255,255,255,253,0,15,242,255,255,255,255,255,253,0,31,224,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,191,192,0,0,47,192,0,0,1,255,192,0,0,47,192,0,0,3,255,192,191,255,255,255,255,244,15,255,192,191,255,255,255,255,244,47,255,192,191,255,255,255,255,244,191,255,192,190,0,47,192,3,244,255,175,192,190,0,47,192,3,244,127,47,192,190,0,47,192,3,244,60,47,192,190,0,47,192,3,244,16,47,192,190,0,47,192,3,244,0,47,192,191,255,255,255,255,244,0,47,192,191,255,255,255,255,244,0,47,192,191,255,255,255,255,244,0,47,192,0,0,63,128,0,0,0,47,192,127,0,63,64,0,0,0,47,192,63,128,127,0,0,0,0,47,192,15,224,191,0,0,0,0,47,192,11,248,254,0,0,0,0,47,192,2,255,252,0,0,0,0,47,192,0,191,248,0,0,0,0,47,192,0,63,253,0,0,0,0,47,192,0,255,255,228,0,0,0,47,192,11,255,191,255,144,0,0,47,193,255,253,11,255,255,229,0,47,203,255,224,0,191,255,253,0,47,195,254,0,0,6,255,248,0,47,192,224,0,0,0,6,176,0,0,0,0,0,0,0,0,0, + // 0x4f9b 供 + 155,79,36,36,68,38,1,252,0,0,36,0,105,0,6,160,0,0,0,191,0,191,0,11,240,0,0,0,254,0,191,0,11,240,0,0,1,253,0,191,0,11,240,0,0,3,252,0,191,0,11,240,0,0,7,244,0,191,0,11,240,0,0,15,240,0,191,0,11,240,0,0,47,208,0,191,0,11,240,0,0,63,192,255,255,255,255,255,252,0,191,64,255,255,255,255,255,252,1,255,64,255,255,255,255,255,252,3,255,64,85,191,85,91,245,84,15,255,64,0,191,0,11,240,0,47,255,64,0,191,0,11,240,0,127,255,64,0,191,0,11,240,0,255,191,64,0,191,0,11,240,0,127,63,64,0,191,0,11,240,0,60,63,64,0,191,0,11,240,0,20,63,64,0,191,0,11,240,0,0,63,64,0,191,0,11,240,0,0,63,65,85,255,85,95,245,84,0,63,67,255,255,255,255,255,253,0,63,67,255,255,255,255,255,253,0,63,67,255,255,255,255,255,253,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,61,0,1,192,0,0,63,64,0,191,64,15,240,0,0,63,64,1,254,0,7,252,0,0,63,64,7,252,0,2,254,0,0,63,64,15,244,0,0,191,128,0,63,64,63,208,0,0,63,208,0,63,65,255,128,0,0,15,240,0,63,67,254,0,0,0,7,252,0,63,65,248,0,0,0,2,244,0,63,64,32,0,0,0,0,128, + // 0x4fb5 侵 + 181,79,36,36,68,38,1,251,0,0,190,0,0,0,0,0,0,0,0,254,47,255,255,255,255,128,0,2,252,47,255,255,255,255,128,0,3,252,26,170,170,170,191,128,0,7,244,0,0,0,0,63,128,0,15,240,0,0,0,0,63,128,0,47,208,15,255,255,255,255,128,0,63,192,15,255,255,255,255,128,0,191,64,6,170,170,170,191,128,1,255,64,0,0,0,0,63,128,3,255,64,0,0,0,0,63,128,15,255,64,63,255,255,255,255,128,47,255,64,63,255,255,255,255,128,191,255,64,42,170,170,170,170,64,255,191,64,0,0,0,0,0,0,126,63,66,170,170,170,170,170,168,56,63,67,255,255,255,255,255,252,0,63,67,255,255,255,255,255,252,0,63,67,240,0,0,0,1,252,0,63,67,240,0,0,0,1,252,0,63,67,240,0,0,0,1,252,0,63,67,255,255,255,255,255,252,0,63,64,15,255,255,255,255,0,0,63,64,15,255,255,255,252,0,0,63,64,1,253,0,3,248,0,0,63,64,0,255,0,15,240,0,0,63,64,0,63,208,63,208,0,0,63,64,0,31,249,255,64,0,0,63,64,0,7,255,253,0,0,0,63,64,0,2,255,248,0,0,0,63,64,0,111,255,255,208,0,0,63,64,111,255,254,255,255,164,0,63,67,255,255,128,47,255,253,0,63,66,255,244,0,1,191,248,0,63,0,228,0,0,0,1,176,0,0,0,0,0,0,0,0,0, + // 0x4fdd 保 + 221,79,36,36,68,38,1,252,0,0,36,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,31,255,255,255,255,192,0,0,254,31,255,255,255,255,192,0,2,252,31,255,255,255,255,192,0,3,248,31,192,0,0,31,192,0,15,240,31,192,0,0,31,192,0,31,224,31,192,0,0,31,192,0,63,192,31,192,0,0,31,192,0,191,192,31,192,0,0,31,192,1,255,192,31,192,0,0,31,192,3,255,192,31,255,255,255,255,192,15,255,192,31,255,255,255,255,192,63,255,192,31,255,255,255,255,192,191,239,192,0,0,47,192,0,0,191,111,192,0,0,47,192,0,0,62,47,192,0,0,47,192,0,0,44,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,195,255,255,255,255,255,252,0,47,195,255,255,255,255,255,252,0,47,195,255,255,255,255,255,252,0,47,192,0,3,255,252,0,0,0,47,192,0,11,255,255,0,0,0,47,192,0,31,255,255,128,0,0,47,192,0,63,239,223,208,0,0,47,192,0,255,47,207,244,0,0,47,192,3,253,47,195,253,0,0,47,192,31,248,47,193,255,64,0,47,192,127,224,47,192,127,208,0,47,195,255,128,47,192,47,248,0,47,207,254,0,47,192,11,255,0,47,199,248,0,47,192,2,253,0,47,193,208,0,47,192,0,116,0,47,192,0,0,47,192,0,0,0,31,128,0,0,47,192,0,0, + // 0x4fe1 信 + 225,79,36,36,68,38,1,252,0,0,36,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,7,255,255,255,255,0,0,0,254,7,255,255,255,255,0,0,2,252,3,255,255,255,255,0,0,3,248,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,31,227,255,255,255,255,255,253,0,63,195,255,255,255,255,255,253,0,191,195,255,255,255,255,255,253,0,255,192,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,47,255,192,15,255,255,255,255,128,127,255,192,15,255,255,255,255,128,255,175,192,11,255,255,255,255,128,191,47,192,0,0,0,0,0,0,60,47,192,0,0,0,0,0,0,16,47,192,11,255,255,255,255,64,0,47,192,15,255,255,255,255,128,0,47,192,15,255,255,255,255,128,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,15,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,192,0,0,31,192,0,26,128,15,192,0,0,26,128, + // 0x503c 值 + 60,80,36,36,68,38,1,252,0,0,96,0,0,30,128,0,0,0,0,254,0,0,47,192,0,0,0,0,253,0,0,63,192,0,0,0,2,252,0,0,63,128,0,0,0,3,249,255,255,255,255,255,244,0,7,241,255,255,255,255,255,244,0,15,241,255,255,255,255,255,244,0,31,208,0,0,127,0,0,0,0,63,192,0,0,190,0,0,0,0,191,64,0,0,253,0,0,0,0,255,0,26,170,254,170,170,0,3,255,0,31,255,255,255,255,0,11,255,0,31,255,255,255,255,0,31,255,0,31,128,0,0,63,0,63,255,0,31,128,0,0,63,0,191,255,0,31,128,0,0,63,0,63,127,0,31,255,255,255,255,0,45,63,0,31,255,255,255,255,0,8,63,0,31,234,170,170,191,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,255,255,255,255,0,0,63,0,31,255,255,255,255,0,0,63,0,31,213,85,85,191,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,213,85,85,191,0,0,63,0,31,255,255,255,255,0,0,63,0,31,255,255,255,255,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,15,255,255,255,255,255,253,0,63,15,255,255,255,255,255,253,0,63,15,255,255,255,255,255,253,0,63,0,0,0,0,0,0,0, + // 0x503e 倾 + 62,80,36,37,77,38,1,251,0,7,144,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,15,208,0,15,255,255,255,253,0,31,192,0,15,255,255,255,253,0,47,199,224,15,255,255,255,253,0,63,71,224,0,0,63,64,0,0,127,7,224,0,0,127,0,0,0,254,7,224,0,0,190,0,0,1,253,7,224,0,0,253,0,0,3,253,7,224,2,255,255,255,224,7,253,7,224,2,255,255,255,224,15,253,7,224,2,255,255,255,224,31,253,7,255,242,248,0,11,224,63,253,7,255,242,248,20,11,224,191,253,7,255,242,248,63,11,224,255,189,7,224,2,248,63,11,224,188,189,7,224,2,248,63,11,224,56,189,7,224,2,248,63,11,224,32,189,7,224,2,248,63,11,224,0,189,7,224,2,248,63,11,224,0,189,7,224,2,248,63,11,224,0,189,7,224,2,248,63,11,224,0,189,7,224,18,248,62,11,224,0,189,7,225,242,248,62,11,224,0,189,7,255,242,248,62,11,224,0,189,7,255,226,248,126,11,224,0,189,15,255,66,248,253,11,224,0,189,15,244,0,0,252,0,0,0,189,11,128,0,2,248,224,0,0,189,5,0,0,7,247,252,0,0,189,0,0,0,31,226,255,64,0,189,0,0,0,127,192,127,208,0,189,0,0,2,255,0,15,248,0,189,0,0,47,252,0,3,252,0,189,0,0,47,224,0,0,248,0,189,0,0,14,0,0,0,32,0,0,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,36,36,68,38,1,252,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,246,255,255,255,255,255,253,0,11,243,255,255,255,255,255,253,0,15,227,255,255,255,255,255,253,0,31,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,64,42,170,170,170,170,160,0,191,0,127,255,255,255,255,240,0,255,0,127,255,255,255,255,240,3,255,0,127,0,0,0,11,240,7,255,0,127,0,0,0,11,240,15,255,0,127,0,0,0,11,240,47,255,0,127,0,0,0,11,240,127,255,0,127,255,255,255,255,240,255,255,0,127,255,255,255,255,240,255,127,0,127,170,170,170,170,160,124,127,0,127,0,0,0,0,0,52,127,0,127,0,0,0,0,0,0,127,0,191,255,255,255,255,248,0,127,0,191,255,255,255,255,248,0,127,0,255,255,255,255,255,248,0,127,0,255,240,124,15,66,248,0,127,0,255,240,124,15,66,248,0,127,1,255,240,124,15,66,248,0,127,2,255,240,124,15,66,248,0,127,3,251,255,255,255,255,248,0,127,3,247,255,255,255,255,248,0,127,7,243,250,255,191,235,248,0,127,15,227,240,124,15,66,248,0,127,31,211,240,124,15,66,248,0,127,63,195,240,124,15,66,248,0,127,127,67,240,124,15,66,248,0,127,30,3,240,124,15,127,244,0,127,0,3,240,124,15,95,240,0,127,0,3,240,124,15,79,208, + // 0x505c 停 + 92,80,36,36,68,38,1,252,0,0,80,0,0,42,128,0,0,0,0,255,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,2,252,0,0,63,192,0,0,0,3,251,255,255,255,255,255,252,0,11,243,255,255,255,255,255,252,0,15,243,255,255,255,255,255,252,0,47,192,0,0,0,0,0,0,0,63,128,5,85,85,85,85,0,0,255,64,15,255,255,255,255,64,2,255,64,15,255,255,255,255,64,7,255,64,15,192,0,0,63,64,15,255,64,15,192,0,0,63,64,63,255,64,15,192,0,0,63,64,191,255,64,15,255,255,255,255,64,255,127,64,15,255,255,255,255,64,125,63,64,5,85,85,85,85,0,56,63,64,0,0,0,0,0,0,16,63,71,255,255,255,255,255,254,0,63,75,255,255,255,255,255,254,0,63,75,255,255,255,255,255,254,0,63,75,224,0,0,0,0,190,0,63,75,224,0,0,0,0,190,0,63,75,226,255,255,255,252,190,0,63,75,227,255,255,255,252,190,0,63,75,227,255,255,255,252,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,255,255,128,0,0,0,63,64,0,191,255,64,0,0,0,63,0,0,127,249,0,0,0, + // 0x50a8 储 + 168,80,36,36,68,38,1,252,0,7,144,0,0,11,224,0,0,0,11,224,0,0,11,224,0,228,0,15,193,128,0,11,224,2,252,0,31,203,224,0,11,224,3,244,0,47,135,244,15,255,255,235,240,0,63,2,253,15,255,255,255,208,0,127,0,255,15,255,255,255,192,0,190,0,63,64,11,224,63,128,0,252,0,29,0,11,224,255,0,2,252,0,4,0,11,225,253,0,3,252,0,0,0,11,227,252,0,11,252,0,0,0,11,235,244,0,15,252,21,84,63,255,255,255,253,47,252,191,252,63,255,255,255,253,127,252,191,252,63,255,255,255,253,255,252,191,252,0,3,253,0,0,189,252,0,252,0,15,248,0,0,56,252,0,252,0,63,224,0,0,32,252,0,252,1,255,192,0,0,0,252,0,252,11,255,255,255,240,0,252,0,252,127,255,255,255,240,0,252,0,252,255,255,255,255,240,0,252,0,252,63,253,0,7,240,0,252,0,252,24,189,0,7,240,0,252,0,252,0,189,0,7,240,0,252,0,252,0,191,255,255,240,0,252,0,252,0,191,255,255,240,0,252,0,252,36,191,170,171,240,0,252,0,254,248,189,0,7,240,0,252,0,255,252,189,0,7,240,0,252,2,255,224,189,0,7,240,0,252,7,255,64,191,255,255,240,0,252,3,248,0,191,255,255,240,0,252,1,208,0,191,255,255,240,0,252,0,0,0,189,0,7,240,0,168,0,0,0,105,0,2,144, + // 0x50cf 像 + 207,80,36,36,68,38,1,252,0,1,144,0,121,0,0,0,0,0,3,248,0,254,0,0,0,0,0,3,244,2,254,170,168,0,0,0,11,240,7,255,255,255,0,0,0,15,224,15,255,255,255,0,0,0,31,208,63,192,1,253,0,0,0,63,192,255,64,3,252,0,0,0,63,130,254,0,11,244,0,0,0,191,15,255,255,255,255,255,240,0,255,63,255,255,255,255,255,240,3,255,15,254,85,127,149,91,240,7,255,2,252,0,63,64,7,240,15,255,0,252,0,63,64,7,240,47,255,0,252,0,63,64,7,240,127,255,0,255,255,255,255,255,240,255,191,0,255,255,255,255,255,240,190,127,0,85,111,250,253,85,80,60,127,0,0,191,208,252,0,0,48,127,0,11,255,192,189,1,240,0,127,1,255,255,240,126,7,252,0,127,15,255,131,248,63,31,244,0,127,7,248,7,253,63,255,192,0,127,2,64,47,255,47,254,0,0,127,0,1,255,127,79,244,0,0,127,0,47,248,31,203,224,0,0,127,6,255,208,47,199,240,0,0,127,11,253,0,255,211,252,0,0,127,3,208,7,255,225,254,0,0,127,0,0,63,251,224,191,64,0,127,0,2,255,139,224,63,208,0,127,0,47,253,11,224,31,244,0,127,6,255,224,15,208,11,253,0,127,31,255,64,63,192,2,252,0,127,15,244,127,255,128,0,176,0,127,2,0,63,255,0,0,0,0,127,0,0,63,228,0,0,0, + // 0x5145 充 + 69,81,35,36,68,38,2,252,0,0,0,2,164,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,21,85,85,87,253,85,85,85,64,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,7,248,0,1,0,0,0,0,0,15,240,0,31,128,0,0,0,0,15,224,0,63,224,0,0,0,0,47,192,0,15,252,0,0,0,0,63,128,0,3,255,0,0,0,0,191,0,0,0,255,192,0,0,0,255,170,191,255,255,240,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,255,0,15,255,255,255,234,149,80,255,128,14,149,0,0,0,0,0,63,128,0,0,10,160,0,254,0,28,0,0,0,15,240,0,254,0,0,0,0,0,15,224,0,254,0,0,0,0,0,15,224,0,254,0,0,0,0,0,31,208,0,254,0,0,0,0,0,47,192,0,254,0,0,0,0,0,63,192,0,254,0,0,0,0,0,127,128,0,254,0,3,144,0,0,255,64,0,254,0,3,244,0,2,255,0,0,254,0,3,244,0,11,252,0,0,254,0,3,244,0,127,244,0,0,254,0,3,240,7,255,224,0,0,255,0,11,240,191,255,64,0,0,255,255,255,224,191,248,0,0,0,127,255,255,208,63,128,0,0,0,47,255,255,128,20,0,0,0,0,0,85,80,0, + // 0x5148 先 + 72,81,34,37,77,38,2,251,0,0,0,2,248,0,0,0,0,0,3,160,3,252,0,0,0,0,0,7,244,3,252,0,0,0,0,0,11,240,3,252,0,0,0,0,0,15,240,3,252,0,0,0,0,0,31,208,3,252,0,0,0,0,0,47,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,255,85,87,253,85,85,84,0,1,253,0,3,252,0,0,0,0,3,252,0,3,252,0,0,0,0,11,244,0,3,252,0,0,0,0,11,240,0,3,252,0,0,0,0,1,208,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,21,85,85,87,253,85,85,85,80,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,15,208,0,254,0,0,0,0,0,31,208,0,254,0,0,0,0,0,47,192,0,254,0,0,0,0,0,63,192,0,254,0,0,0,0,0,63,128,0,254,0,0,0,0,0,127,128,0,254,0,0,0,0,0,255,0,0,254,0,1,0,0,1,255,0,0,254,0,3,208,0,3,253,0,0,254,0,3,240,0,15,252,0,0,254,0,7,240,0,63,240,0,0,254,0,7,240,2,255,208,0,0,254,0,15,224,47,255,64,0,0,255,255,255,208,191,252,0,0,0,191,255,255,192,63,224,0,0,0,47,255,255,64,30,0,0,0,0,1,85,80,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,36,37,77,38,1,251,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,30,0,0,254,0,0,189,0,0,191,0,0,254,0,0,255,0,0,63,128,0,254,0,1,254,0,0,47,208,0,254,0,3,252,0,0,15,240,0,254,0,7,248,0,0,11,244,0,254,0,15,240,0,0,3,248,0,254,0,31,224,0,0,3,252,0,254,0,63,192,0,0,1,253,0,254,0,127,64,0,0,0,253,0,254,0,127,0,0,0,0,80,0,254,0,4,0,0,0,0,0,0,254,0,0,0,0,21,85,85,85,255,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,3,248,0,63,64,0,0,0,0,7,244,0,63,64,0,0,0,0,7,244,0,63,64,0,0,0,0,11,240,0,63,64,0,0,0,0,11,240,0,63,64,0,0,0,0,15,240,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,47,208,0,63,64,0,0,0,0,63,192,0,63,64,0,64,0,0,191,128,0,63,64,0,248,0,1,255,0,0,63,64,0,253,0,7,254,0,0,63,64,0,253,0,31,252,0,0,63,64,0,252,0,255,240,0,0,63,128,1,252,31,255,192,0,0,63,213,87,252,127,254,0,0,0,63,255,255,248,47,244,0,0,0,31,255,255,240,14,64,0,0,0,7,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,35,34,50,38,2,252,0,2,170,170,168,0,0,0,0,0,3,255,255,253,0,0,0,0,0,3,255,255,253,0,0,0,0,0,3,255,255,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,5,255,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,127,223,208,0,0,0,0,0,0,191,79,240,0,0,0,0,0,0,255,11,244,0,0,0,0,0,2,254,7,248,0,0,0,0,0,3,253,3,252,0,0,0,0,0,7,252,2,254,0,0,0,0,0,15,244,0,255,64,0,0,0,0,47,240,0,191,192,0,0,0,0,127,192,0,63,224,0,0,0,0,255,128,0,31,244,0,0,0,3,255,0,0,15,253,0,0,0,11,253,0,0,3,255,0,0,0,47,248,0,0,1,255,192,0,0,191,224,0,0,0,127,244,0,3,255,192,0,0,0,47,254,0,31,255,0,0,0,0,11,255,192,255,252,0,0,0,0,1,255,244,255,224,0,0,0,0,0,127,224,47,64,0,0,0,0,0,15,192,8,0,0,0,0,0,0,1,0, + // 0x5168 全 + 104,81,36,35,59,38,1,253,0,0,0,1,255,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,191,199,253,0,0,0,0,0,2,255,66,255,64,0,0,0,0,7,254,0,191,208,0,0,0,0,31,248,0,47,244,0,0,0,0,191,224,0,11,254,0,0,0,2,255,128,0,2,255,192,0,0,15,254,0,0,0,191,244,0,0,127,244,0,0,0,31,254,0,2,255,208,0,0,0,3,255,208,31,255,0,0,0,0,0,255,253,127,251,255,255,255,255,255,239,252,47,211,255,255,255,255,255,195,244,14,3,255,255,255,255,255,192,176,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240, + // 0x5171 共 + 113,81,34,36,68,38,2,252,0,0,106,0,0,10,144,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,21,85,191,85,85,95,245,85,64,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,63,144,0,63,128,0,0,0,0,191,208,0,191,240,0,0,0,3,255,64,0,31,253,0,0,0,15,253,0,0,3,255,128,0,0,127,244,0,0,0,255,240,0,2,255,208,0,0,0,47,252,0,31,255,0,0,0,0,7,255,0,127,248,0,0,0,0,1,255,192,31,208,0,0,0,0,0,127,64,6,0,0,0,0,0,0,24,0, + // 0x5173 关 + 115,81,27,36,252,38,5,252,0,0,0,0,0,160,0,0,47,0,0,0,255,0,0,127,64,0,2,254,0,0,63,192,0,3,252,0,0,15,240,0,11,244,0,0,11,244,0,15,224,0,0,3,252,0,47,192,0,0,2,240,0,31,64,0,1,86,149,85,86,85,64,3,255,255,255,255,255,192,3,255,255,255,255,255,192,3,255,255,255,255,255,192,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,31,255,255,255,255,255,248,31,255,255,255,255,255,248,31,255,255,255,255,255,248,5,85,86,255,149,85,80,0,0,2,255,192,0,0,0,0,3,255,208,0,0,0,0,7,255,240,0,0,0,0,15,251,244,0,0,0,0,31,227,252,0,0,0,0,63,193,255,0,0,0,0,255,64,191,192,0,0,7,254,0,63,240,0,0,47,252,0,15,253,0,1,255,240,0,7,255,208,31,255,128,0,1,255,252,127,253,0,0,0,63,252,47,224,0,0,0,7,240,10,0,0,0,0,0,80, + // 0x5177 具 + 119,81,34,34,50,38,2,252,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,250,170,170,170,191,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,234,170,170,170,191,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,234,170,170,170,191,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,85,85,85,85,85,85,64,0,0,11,0,0,9,0,0,0,0,0,127,208,0,63,224,0,0,0,11,255,240,0,255,255,64,0,0,191,255,64,0,31,255,244,0,47,255,244,0,0,1,191,255,128,191,255,64,0,0,0,11,255,240,47,228,0,0,0,0,0,191,128,9,0,0,0,0,0,0,9,0, + // 0x5197 冗 + 151,81,35,34,50,38,2,252,21,85,85,85,85,85,85,85,64,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,21,85,85,85,64,47,192,0,0,127,255,255,255,208,0,0,0,0,127,255,255,255,208,0,0,0,0,127,255,255,255,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,254,0,0,31,208,1,0,0,2,253,0,0,31,208,3,208,0,3,252,0,0,31,208,3,244,0,15,248,0,0,31,208,3,244,0,63,240,0,0,31,208,3,244,1,255,208,0,0,31,208,3,240,11,255,64,0,0,31,224,11,240,191,253,0,0,0,31,255,255,240,255,244,0,0,0,15,255,255,208,63,128,0,0,0,7,255,255,128,40,0,0,0,0,0,85,84,0, + // 0x51b7 冷 + 183,81,36,36,68,38,1,252,0,0,0,0,0,169,0,0,0,0,0,0,0,3,255,64,0,0,2,0,0,0,7,255,192,0,0,15,192,0,0,15,255,224,0,0,47,244,0,0,63,223,248,0,0,31,254,0,0,191,131,254,0,0,3,255,128,1,255,1,255,64,0,0,191,224,7,253,0,127,208,0,0,47,208,31,244,0,47,248,0,0,11,64,127,224,0,11,254,0,0,1,1,255,128,0,2,255,192,0,0,11,255,85,85,85,191,248,0,0,63,250,255,255,255,95,254,0,0,255,226,255,255,255,67,252,0,0,191,66,255,255,255,64,180,0,0,60,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,0,0,3,129,255,255,255,255,255,128,0,7,241,255,255,255,255,255,128,0,15,241,255,255,255,255,255,128,0,47,224,0,15,224,0,63,128,0,63,192,0,15,224,0,63,128,0,191,64,0,15,224,0,63,128,1,255,0,0,15,224,0,63,128,3,253,0,0,15,224,0,63,128,11,252,0,0,15,224,0,63,128,15,244,0,0,15,224,0,63,128,63,224,0,0,15,224,127,255,128,127,192,0,0,15,224,63,255,64,31,64,0,0,15,224,47,254,0,2,0,0,0,15,224,5,64,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,11,224,0,0,0, + // 0x51c6 准 + 198,81,36,36,68,38,1,252,0,0,0,0,36,0,5,0,0,0,0,0,0,191,0,15,224,0,0,0,0,0,255,0,31,208,0,3,192,0,1,253,0,47,192,0,15,244,0,2,252,0,63,128,0,15,254,0,3,248,0,127,0,0,2,255,192,11,240,0,191,0,0,0,127,240,15,240,0,254,0,0,0,31,240,47,255,255,255,255,248,0,3,208,127,255,255,255,255,248,0,0,64,255,255,255,255,255,248,0,0,2,255,192,2,248,0,0,0,0,11,255,192,2,248,0,0,0,0,31,255,192,2,248,0,0,0,0,127,239,192,2,248,0,0,0,0,63,143,255,255,255,255,224,0,0,15,15,255,255,255,255,224,0,0,0,15,255,255,255,255,224,0,0,0,15,208,3,248,0,0,0,1,0,15,192,2,248,0,0,0,3,128,15,192,2,248,0,0,0,15,224,15,192,2,248,0,0,0,31,240,15,192,2,248,0,0,0,63,192,15,255,255,255,255,224,0,191,128,15,255,255,255,255,224,0,255,0,15,255,255,255,255,224,3,253,0,15,208,3,248,0,0,7,252,0,15,192,2,248,0,0,15,240,0,15,192,2,248,0,0,63,224,0,15,192,2,248,0,0,127,192,0,15,213,87,253,85,84,31,64,0,15,255,255,255,255,253,6,0,0,15,255,255,255,255,253,0,0,0,15,255,255,255,255,253,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0, + // 0x51fa 出 + 250,81,30,36,32,38,4,252,0,0,0,42,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,255,255,255,255,255,255,64,31,255,255,255,255,255,255,64,31,255,255,255,255,255,255,64,5,85,85,127,213,85,85,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,85,85,85,85,85,95,240,191,0,0,0,0,0,11,240,190,0,0,0,0,0,11,224, + // 0x51fb 击 + 251,81,34,36,68,38,2,252,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,87,253,85,85,84,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,85,85,85,87,253,85,85,85,80,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,1,168,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,253,0,2,252,0,3,244,0,1,254,85,87,253,85,91,244,0,1,255,255,255,255,255,255,244,0,1,255,255,255,255,255,255,244,0,1,255,255,255,255,255,255,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0, + // 0x5206 分 + 6,82,36,35,59,38,1,252,0,0,3,224,0,7,192,0,0,0,0,11,248,0,31,224,0,0,0,0,15,240,0,15,244,0,0,0,0,47,224,0,7,252,0,0,0,0,63,192,0,3,254,0,0,0,0,255,128,0,0,255,64,0,0,2,255,0,0,0,191,192,0,0,3,253,0,0,0,63,240,0,0,15,252,0,0,0,15,248,0,0,63,240,0,0,0,7,254,0,0,255,208,0,0,0,3,255,128,2,255,128,0,0,0,0,255,224,15,254,0,0,0,0,0,63,248,63,254,85,85,85,85,85,111,254,191,235,255,255,255,255,255,247,252,47,139,255,255,255,255,255,241,240,10,11,255,255,255,255,255,240,80,0,0,0,47,192,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,127,128,0,15,224,0,0,0,0,127,64,0,15,224,0,0,0,0,255,0,0,15,208,0,0,0,0,255,0,0,31,208,0,0,0,3,253,0,0,31,208,0,0,0,7,252,0,0,31,192,0,0,0,15,244,0,0,47,192,0,0,0,63,240,0,0,47,192,0,0,0,255,192,0,0,63,192,0,0,11,255,64,0,0,63,128,0,0,127,253,0,0,0,191,64,0,11,255,244,0,31,255,255,0,0,7,255,128,0,15,255,254,0,0,2,253,0,0,11,255,248,0,0,0,128,0,0,1,85,64,0,0, + // 0x5207 切 + 7,82,35,36,68,38,1,251,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,15,255,255,255,255,248,0,127,0,15,255,255,255,255,248,0,127,0,15,255,255,255,255,248,0,127,0,5,85,191,85,87,248,0,127,0,0,0,191,0,3,248,0,127,0,0,0,191,0,3,248,0,127,1,191,0,191,0,3,248,0,127,191,255,64,191,0,3,248,6,255,255,255,128,254,0,3,248,191,255,255,233,0,254,0,3,244,191,255,228,0,0,254,0,3,244,127,255,0,0,0,254,0,3,244,16,127,0,0,0,254,0,3,244,0,127,0,0,0,253,0,7,244,0,127,0,0,0,253,0,7,244,0,127,0,0,1,252,0,7,244,0,127,0,0,2,252,0,7,240,0,127,0,52,3,252,0,7,240,0,127,0,63,3,248,0,7,240,0,127,0,63,7,244,0,11,240,0,127,0,127,11,240,0,11,240,0,127,0,190,15,240,0,11,240,0,127,255,253,31,208,0,15,240,0,63,255,252,63,192,0,15,240,0,31,255,244,127,128,0,15,224,0,1,85,64,255,0,0,15,224,0,0,0,3,254,0,0,31,208,0,0,0,15,252,0,0,47,208,0,0,0,63,244,0,0,127,192,0,0,1,255,208,3,255,255,192,0,0,3,255,128,2,255,255,64,0,0,0,253,0,1,255,253,0,0,0,0,48,0,0,106,80,0,0,0,0,0,0,0,0,0,0, + // 0x521b 创 + 27,82,34,36,68,38,1,252,0,0,6,64,0,0,0,0,0,0,0,15,240,0,0,0,15,224,0,0,31,208,0,0,0,15,224,0,0,63,240,0,0,0,15,224,0,0,191,252,0,1,80,15,224,0,1,255,254,0,3,244,15,224,0,3,252,191,128,3,244,15,224,0,11,244,63,224,3,244,15,224,0,47,224,15,244,3,244,15,224,0,127,192,3,252,3,244,15,224,1,255,64,1,255,3,244,15,224,7,253,0,0,191,195,244,15,224,47,244,0,0,63,211,244,15,224,191,224,0,0,15,195,244,15,224,63,255,255,255,255,3,244,15,224,13,191,255,255,248,3,244,15,224,0,191,255,255,244,3,244,15,224,0,191,0,3,244,3,244,15,224,0,191,0,3,244,3,244,15,224,0,191,0,3,244,3,244,15,224,0,191,0,3,240,3,244,15,224,0,191,0,7,240,3,244,15,224,0,191,0,11,240,3,244,15,224,0,191,0,15,240,3,244,15,224,0,191,15,255,224,3,244,15,224,0,191,7,255,192,3,244,15,224,0,191,3,254,0,0,0,15,224,0,191,0,0,13,0,0,15,224,0,191,0,0,15,192,0,15,224,0,191,0,0,15,192,0,15,224,0,191,0,0,31,192,0,15,224,0,191,0,0,63,128,0,15,224,0,127,255,255,255,64,85,95,224,0,63,255,255,255,0,255,255,208,0,11,255,255,248,0,191,255,192,0,0,0,0,0,0,127,249,0, + // 0x521d 初 + 29,82,35,36,68,38,1,252,0,11,224,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,1,85,85,85,85,80,0,11,240,3,255,255,255,255,248,0,11,240,3,255,255,255,255,248,0,11,240,3,255,255,255,255,248,63,255,255,240,0,127,64,3,248,63,255,255,248,0,127,64,3,248,63,255,255,244,0,127,0,3,248,0,0,15,240,0,127,0,3,248,0,0,15,208,0,127,0,3,248,0,0,63,192,0,191,0,3,248,0,0,127,64,0,191,0,3,244,0,0,255,0,0,191,0,3,244,0,2,253,29,0,191,0,3,244,0,7,248,63,0,254,0,3,244,0,15,244,254,0,254,0,7,244,0,63,254,248,0,253,0,7,244,0,255,255,224,1,253,0,7,244,3,255,255,208,2,252,0,7,240,15,255,251,240,2,252,0,7,240,127,255,243,252,3,248,0,7,240,191,203,240,253,7,244,0,11,240,63,11,240,120,11,240,0,11,240,44,11,240,16,15,240,0,11,240,0,11,240,0,47,208,0,15,240,0,11,240,0,63,192,0,15,240,0,11,240,0,191,64,0,15,224,0,11,240,1,255,0,0,15,224,0,11,240,7,253,0,0,31,208,0,11,240,31,248,0,0,63,192,0,11,240,127,240,3,255,255,192,0,11,240,191,192,2,255,255,64,0,11,240,47,0,1,255,254,0,0,11,224,8,0,0,106,80,0, + // 0x522b 别 + 43,82,34,36,68,38,1,251,0,0,0,0,0,0,0,15,224,11,255,255,255,240,0,0,15,224,11,255,255,255,240,0,0,15,224,11,255,255,255,240,1,64,15,224,11,224,0,11,240,11,224,15,224,11,224,0,11,240,11,224,15,224,11,224,0,11,240,11,224,15,224,11,224,0,11,240,11,224,15,224,11,224,0,11,240,11,224,15,224,11,224,0,11,240,11,224,15,224,11,240,0,11,240,11,224,15,224,11,255,255,255,240,11,224,15,224,11,255,255,255,240,11,224,15,224,11,255,255,255,240,11,224,15,224,0,0,0,0,0,11,224,15,224,0,1,252,0,0,11,224,15,224,0,2,252,0,0,11,224,15,224,0,2,252,0,0,11,224,15,224,47,255,255,255,248,11,224,15,224,47,255,255,255,244,11,224,15,224,47,255,255,255,244,11,224,15,224,0,3,244,3,244,11,224,15,224,0,3,240,3,244,11,224,15,224,0,7,240,3,244,11,224,15,224,0,11,240,3,240,11,224,15,224,0,15,224,7,240,1,64,15,224,0,31,192,7,240,0,0,15,224,0,63,192,7,240,0,0,15,224,0,127,64,11,240,0,0,15,224,0,255,0,15,240,0,0,15,224,3,253,0,31,224,0,0,15,224,31,248,47,255,208,0,106,175,224,127,240,15,255,192,0,127,255,208,63,128,15,255,0,0,63,255,192,13,0,0,0,0,0,63,249,0,0,0,0,0,0,0,0,0,0, + // 0x5230 到 + 48,82,34,35,59,38,1,252,0,0,0,0,0,0,0,6,160,0,0,0,0,0,0,0,11,240,63,255,255,255,255,0,0,11,240,63,255,255,255,255,0,0,11,240,63,255,255,255,255,31,192,11,240,0,11,244,0,0,31,192,11,240,0,15,240,1,0,31,192,11,240,0,15,208,47,0,31,192,11,240,0,47,192,47,192,31,192,11,240,0,63,128,15,240,31,192,11,240,0,127,0,3,248,31,192,11,240,21,255,175,255,253,31,192,11,240,63,255,255,255,255,31,192,11,240,63,255,255,255,255,95,192,11,240,63,250,165,64,47,223,192,11,240,0,0,42,0,14,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,15,255,255,255,252,31,192,11,240,15,255,255,255,252,31,192,11,240,15,255,255,255,252,31,192,11,240,0,0,127,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,5,64,11,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,70,191,64,0,11,240,0,5,191,255,255,64,0,11,240,111,255,255,255,255,64,0,11,240,127,255,255,255,233,0,106,175,240,63,255,250,80,0,0,127,255,224,62,148,0,0,0,0,63,255,192,0,0,0,0,0,0,63,250,0, + // 0x5236 制 + 54,82,34,36,68,38,1,252,0,0,10,128,0,0,0,1,80,0,228,31,192,0,0,0,3,240,1,252,31,192,0,0,0,3,240,2,252,31,192,0,0,0,3,240,3,248,31,192,0,0,253,3,240,3,248,31,192,0,0,253,3,240,7,255,255,255,255,64,253,3,240,11,255,255,255,255,64,253,3,240,15,255,255,255,255,64,253,3,240,47,192,31,192,0,0,253,3,240,63,128,31,192,0,0,253,3,240,127,0,31,192,0,0,253,3,240,11,0,31,208,0,0,253,3,240,63,255,255,255,255,240,253,3,240,63,255,255,255,255,240,253,3,240,63,255,255,255,255,240,253,3,240,0,0,31,192,0,0,253,3,240,0,0,31,192,0,0,253,3,240,0,0,31,192,0,0,253,3,240,11,255,255,255,255,128,253,3,240,11,255,255,255,255,128,253,3,240,11,255,255,255,255,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,203,255,128,0,3,240,11,224,31,199,255,64,0,7,240,11,224,31,195,249,0,47,255,240,0,0,31,192,0,0,15,255,240,0,0,31,192,0,0,15,255,192,0,0,31,192,0,0,6,148,0, + // 0x5237 刷 + 55,82,34,36,68,38,1,252,0,0,0,0,0,0,0,1,80,0,0,0,0,0,0,0,7,240,3,255,255,255,255,192,0,7,240,3,255,255,255,255,192,0,7,240,3,255,255,255,255,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,255,255,255,255,195,244,7,240,3,255,255,255,255,195,244,7,240,3,255,255,255,255,195,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,251,255,255,255,195,244,7,240,3,251,255,255,255,195,244,7,240,3,251,255,255,255,195,244,7,240,3,251,192,252,15,195,244,7,240,7,251,192,252,15,195,244,7,240,7,235,192,252,15,195,244,7,240,7,235,192,252,15,195,244,7,240,11,235,192,252,15,195,244,7,240,11,219,192,252,15,194,244,7,240,15,219,192,252,15,192,0,7,240,15,203,192,252,15,192,0,7,240,31,203,192,253,255,192,0,7,240,47,139,192,252,255,128,0,7,240,63,75,192,252,254,0,0,7,240,127,1,64,252,0,0,0,7,240,190,0,0,252,0,0,63,255,240,61,0,0,252,0,0,31,255,224,8,0,0,252,0,0,15,255,192,0,0,0,168,0,0,10,148,0, + // 0x5272 割 + 114,82,33,36,68,38,2,252,0,0,169,0,0,0,0,0,0,0,0,254,0,0,0,0,31,192,0,0,254,0,0,0,0,31,192,0,0,254,0,0,0,0,31,192,255,255,255,255,255,10,128,31,192,255,255,255,255,255,15,192,31,192,255,255,255,255,255,15,192,31,192,252,0,20,0,127,15,192,31,192,252,0,254,0,127,15,192,31,192,252,0,254,0,127,15,192,31,192,15,255,255,255,240,15,192,31,192,15,255,255,255,240,15,192,31,192,10,170,255,170,144,15,192,31,192,0,0,254,0,0,15,192,31,192,5,85,254,85,64,15,192,31,192,11,255,255,255,208,15,192,31,192,11,255,255,255,208,15,192,31,192,0,0,254,0,0,15,192,31,192,0,0,254,0,0,15,192,31,192,170,170,255,170,169,15,192,31,192,255,255,255,255,253,15,192,31,192,255,255,255,255,253,15,192,31,192,0,0,0,0,0,15,192,31,192,0,0,0,0,0,15,192,31,192,11,255,255,255,240,15,192,31,192,11,255,255,255,240,10,128,31,192,11,250,170,175,240,0,0,31,192,11,208,0,11,240,0,0,31,192,11,208,0,11,240,0,0,31,192,11,208,0,11,240,0,0,31,192,11,208,0,11,240,0,0,31,192,11,250,170,175,240,0,0,47,192,11,255,255,255,240,0,255,255,192,11,255,255,255,240,0,255,255,128,11,208,0,11,240,0,191,255,0,11,208,0,1,80,0,42,144,0, + // 0x529b 力 + 155,82,33,37,77,38,2,251,0,0,0,47,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,26,170,170,191,234,170,170,170,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,127,64,0,0,191,0,0,0,0,191,64,0,0,191,0,0,0,0,191,0,0,0,191,0,0,0,0,255,0,0,0,191,0,0,0,0,254,0,0,0,255,0,0,0,2,253,0,0,0,255,0,0,0,3,252,0,0,0,254,0,0,0,7,252,0,0,0,254,0,0,0,15,244,0,0,0,254,0,0,0,31,240,0,0,0,253,0,0,0,63,224,0,0,1,253,0,0,0,191,192,0,0,1,253,0,0,1,255,64,0,0,2,252,0,0,3,255,0,0,0,3,252,0,0,15,252,0,0,0,3,252,0,0,63,244,0,0,0,3,248,0,1,255,224,0,0,0,11,244,0,11,255,128,0,0,0,31,240,0,63,253,0,0,7,255,255,240,0,191,244,0,0,3,255,255,192,0,47,192,0,0,2,255,255,64,0,10,0,0,0,0,90,80,0,0,0,0,0,0,0,0,0,0,0, + // 0x529f 功 + 159,82,35,35,59,38,1,252,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,21,85,85,84,0,63,192,0,0,63,255,255,252,0,63,128,0,0,63,255,255,252,0,63,128,0,0,63,255,255,252,0,63,128,0,0,0,15,224,1,85,127,213,85,80,0,15,224,2,255,255,255,255,248,0,15,224,2,255,255,255,255,248,0,15,224,2,255,255,255,255,248,0,15,224,0,0,63,64,3,244,0,15,224,0,0,63,64,3,244,0,15,224,0,0,127,0,3,244,0,15,224,0,0,127,0,3,244,0,15,224,0,0,191,0,3,244,0,15,224,0,0,191,0,3,244,0,15,224,0,0,255,0,7,240,0,15,224,0,0,254,0,7,240,0,15,224,0,0,253,0,7,240,0,15,224,5,1,252,0,7,240,0,15,230,254,3,252,0,7,240,0,15,255,254,3,248,0,11,240,1,191,255,254,11,244,0,11,240,127,255,255,144,15,240,0,11,240,127,255,228,0,47,224,0,15,224,63,244,0,0,63,192,0,15,224,41,0,0,0,255,128,0,15,224,0,0,0,3,255,0,0,31,208,0,0,0,15,252,0,0,47,192,0,0,0,63,244,0,0,127,192,0,0,2,255,208,7,255,255,128,0,0,2,255,64,3,255,255,0,0,0,0,189,0,2,255,252,0,0,0,0,32,0,0,85,64,0, + // 0x52a0 加 + 160,82,34,36,68,38,1,252,0,1,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,21,85,85,80,0,15,224,0,0,127,255,255,224,0,15,224,0,0,127,255,255,224,21,95,245,85,80,127,255,255,224,63,255,255,255,240,127,0,15,224,63,255,255,255,240,127,0,15,224,63,255,255,255,240,127,0,15,224,0,15,208,11,240,127,0,15,224,0,15,208,11,224,127,0,15,224,0,15,208,11,224,127,0,15,224,0,15,192,11,224,127,0,15,224,0,31,192,11,224,127,0,15,224,0,31,192,15,224,127,0,15,224,0,31,192,15,224,127,0,15,224,0,47,192,15,224,127,0,15,224,0,47,192,15,224,127,0,15,224,0,63,128,15,224,127,0,15,224,0,63,64,15,208,127,0,15,224,0,63,64,15,208,127,0,15,224,0,127,0,15,208,127,0,15,224,0,191,0,15,208,127,0,15,224,0,255,0,15,208,127,0,15,224,1,253,0,15,208,127,0,15,224,2,252,0,31,192,127,0,15,224,3,252,0,31,192,127,0,15,224,7,244,0,47,192,127,255,255,224,15,240,0,63,192,127,255,255,224,47,224,85,191,128,127,255,255,224,127,192,191,255,64,127,85,95,224,127,128,127,255,0,127,0,15,224,31,0,63,248,0,127,0,15,224,4,0,0,0,0,0,0,0,0, + // 0x52a8 动 + 168,82,34,36,68,38,2,252,0,0,0,0,0,5,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,47,255,255,255,0,15,224,0,0,47,255,255,255,0,15,224,0,0,47,255,255,255,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,63,255,255,255,240,0,0,0,0,63,255,255,255,240,0,0,0,0,63,255,255,255,240,255,255,255,255,149,95,229,95,224,255,255,255,255,128,15,208,15,224,255,255,255,255,128,15,192,15,224,0,63,128,0,0,31,192,15,224,0,63,64,0,0,31,192,15,224,0,127,0,0,0,31,192,15,224,0,191,0,96,0,47,192,15,224,0,254,3,244,0,63,128,15,208,0,253,1,252,0,63,128,15,208,2,252,0,252,0,63,64,15,208,3,248,0,190,0,127,0,15,208,3,244,0,127,0,191,0,15,208,7,240,0,127,64,254,0,15,192,15,224,107,255,128,254,0,31,192,31,239,255,255,194,252,0,31,192,63,255,255,255,195,252,0,47,192,127,255,249,15,215,248,0,47,192,63,249,0,11,79,240,0,63,192,46,64,0,0,47,224,0,63,128,0,0,0,0,127,192,0,191,64,0,0,0,0,255,67,255,255,0,0,0,0,1,255,3,255,254,0,0,0,0,0,124,2,255,248,0,0,0,0,0,16,0,85,64,0, + // 0x5316 化 + 22,83,36,35,59,38,1,252,0,0,15,144,47,192,0,0,0,0,0,31,224,47,192,0,0,0,0,0,63,192,47,192,0,0,0,0,0,127,128,47,192,0,0,0,0,0,255,64,47,192,0,0,0,0,1,255,0,47,192,0,0,0,0,3,252,0,47,192,0,0,0,0,11,248,0,47,192,0,11,64,0,31,240,0,47,192,0,63,192,0,63,240,0,47,192,1,255,224,0,255,240,0,47,192,11,255,128,2,255,240,0,47,192,127,253,0,11,255,240,0,47,194,255,240,0,47,255,240,0,47,223,255,64,0,191,251,240,0,47,255,248,0,0,255,203,240,0,47,255,128,0,0,127,75,240,0,47,253,0,0,0,61,11,240,0,47,208,0,0,0,20,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,80,0,11,240,0,47,192,0,0,189,0,11,240,0,47,192,0,0,254,0,11,240,0,47,192,0,0,254,0,11,240,0,47,192,0,0,253,0,11,240,0,47,192,0,1,252,0,11,240,0,47,208,0,3,252,0,11,240,0,31,255,255,255,248,0,11,240,0,15,255,255,255,240,0,11,240,0,2,255,255,255,208,0,11,224,0,0,5,85,84,0, + // 0x5347 升 + 71,83,34,36,68,38,2,252,0,0,0,0,64,0,0,0,0,0,0,0,7,208,7,240,0,0,0,0,0,127,244,7,240,0,0,0,0,27,255,248,7,240,0,0,0,2,255,255,208,7,240,0,0,1,191,255,248,0,7,240,0,0,127,255,255,64,0,7,240,0,0,63,255,255,0,0,7,240,0,0,63,144,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,0,0,191,0,0,7,240,0,0,85,85,255,85,85,91,245,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,254,0,0,7,240,0,0,0,0,254,0,0,7,240,0,0,0,0,253,0,0,7,240,0,0,0,1,253,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,3,252,0,0,7,240,0,0,0,3,248,0,0,7,240,0,0,0,11,244,0,0,7,240,0,0,0,31,240,0,0,7,240,0,0,0,63,224,0,0,7,240,0,0,0,191,192,0,0,7,240,0,0,2,255,64,0,0,7,240,0,0,15,253,0,0,0,7,240,0,0,127,248,0,0,0,7,240,0,0,255,224,0,0,0,7,240,0,0,63,64,0,0,0,7,240,0,0,8,0,0,0,0,7,240,0,0, + // 0x534a 半 + 74,83,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,24,0,3,248,0,3,144,0,1,253,0,3,248,0,11,248,0,0,255,0,3,248,0,15,240,0,0,127,128,3,248,0,47,224,0,0,63,192,3,248,0,63,192,0,0,31,224,3,248,0,127,128,0,0,15,240,3,248,0,255,0,0,0,7,248,3,248,2,253,0,0,0,3,248,3,248,3,252,0,0,0,2,128,3,248,0,112,0,0,0,0,0,3,248,0,0,0,0,5,85,85,87,253,85,85,85,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,144,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x534f 协 + 79,83,35,36,68,38,2,252,0,252,0,0,5,80,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,0,11,240,0,0,0,0,252,0,85,91,245,85,80,0,0,252,0,255,255,255,255,224,0,255,255,252,255,255,255,255,224,0,255,255,252,255,255,255,255,224,0,255,255,252,0,11,224,15,224,0,85,253,84,0,11,224,15,224,0,0,252,0,0,15,224,15,224,0,0,252,0,164,15,208,15,230,64,0,252,0,253,15,208,15,255,128,0,252,1,252,15,208,15,239,192,0,252,2,248,31,192,15,223,192,0,252,3,244,47,192,15,223,208,0,252,3,240,47,192,15,219,224,0,252,11,240,63,128,15,215,240,0,252,15,208,127,64,15,211,240,0,252,47,192,191,0,15,195,244,0,252,63,128,254,0,15,194,248,0,252,15,2,253,0,31,193,252,0,252,0,3,252,0,31,193,228,0,252,0,11,244,0,31,192,0,0,252,0,15,240,0,31,192,0,0,252,0,63,208,0,47,192,0,0,252,0,191,192,0,63,128,0,0,252,1,255,0,0,63,128,0,0,252,7,253,0,0,191,64,0,0,252,47,248,3,255,255,0,0,0,252,63,224,3,255,254,0,0,0,252,15,128,2,255,248,0,0,0,168,2,0,0,20,0,0,0, + // 0x5355 单 + 85,83,34,36,68,38,2,252,0,0,32,0,0,0,80,0,0,0,2,248,0,0,0,254,0,0,0,3,253,0,0,2,255,0,0,0,0,255,0,0,3,252,0,0,0,0,127,192,0,11,248,0,0,0,0,47,208,0,15,240,0,0,0,0,15,192,0,63,192,0,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,252,0,1,252,0,3,248,0,3,252,0,1,252,0,3,248,0,3,252,0,1,252,0,3,248,0,3,252,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,252,0,1,252,0,3,248,0,3,252,0,1,252,0,3,248,0,3,252,0,1,252,0,3,248,0,3,252,0,1,252,0,3,248,0,3,252,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,252,0,1,255,255,255,255,255,255,248,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,21,85,85,87,253,85,85,85,64,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x5361 卡 + 97,83,34,36,68,38,2,252,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,245,85,85,80,0,0,0,0,11,255,255,255,240,0,0,0,0,11,255,255,255,240,0,0,0,0,11,255,255,255,240,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,95,249,85,85,85,80,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,246,64,0,0,0,0,0,0,11,255,249,0,0,0,0,0,0,11,255,255,224,0,0,0,0,0,11,251,255,255,64,0,0,0,0,11,240,111,255,248,0,0,0,0,11,240,1,255,252,0,0,0,0,11,240,0,11,248,0,0,0,0,11,240,0,0,176,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0, + // 0x5370 印 + 112,83,31,36,32,38,4,252,0,0,6,0,0,0,0,0,0,0,127,128,0,0,0,0,0,7,255,224,0,0,0,0,0,191,255,145,255,255,255,252,255,255,248,1,255,255,255,252,255,255,64,1,255,255,255,252,255,208,0,1,254,85,87,252,254,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,254,85,85,65,253,0,2,252,255,255,255,209,253,0,2,252,255,255,255,209,253,0,2,252,255,255,255,209,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,254,85,85,65,253,0,2,252,255,255,255,225,253,10,171,252,255,255,255,225,253,7,255,248,255,255,255,225,253,3,255,244,253,0,0,1,253,2,255,128,253,0,0,1,253,0,0,0,253,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,168,0,0,0, + // 0x5371 危 + 113,83,36,36,68,38,1,252,0,0,6,80,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,255,255,255,0,0,0,0,0,255,255,255,255,208,0,0,0,2,255,255,255,255,192,0,0,0,7,253,0,0,255,64,0,0,0,15,244,0,2,254,0,0,0,0,63,224,0,3,252,0,0,0,0,255,255,255,255,255,255,255,248,7,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,127,255,192,0,0,0,0,0,0,47,239,192,0,0,0,0,0,0,15,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,191,255,255,255,240,0,0,47,192,191,255,255,255,240,0,0,47,192,191,255,255,255,224,0,0,47,128,190,0,0,15,224,0,0,63,128,190,0,0,15,224,0,0,63,128,190,0,0,15,224,0,0,63,64,190,0,0,15,208,0,0,63,64,190,0,0,31,208,0,0,127,0,190,0,0,47,192,0,0,191,0,190,0,127,255,192,0,0,255,0,190,0,63,255,64,0,0,253,0,190,0,63,249,0,208,2,252,0,190,0,0,0,0,253,3,252,0,190,0,0,0,0,252,11,244,0,190,0,0,0,1,252,15,240,0,191,64,0,0,7,252,63,208,0,127,255,255,255,255,244,127,192,0,63,255,255,255,255,240,31,0,0,11,255,255,255,255,128,4,0,0,0,0,0,0,0,0, + // 0x5374 却 + 116,83,34,36,68,38,1,252,0,0,190,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,21,85,85,80,0,0,191,0,0,127,255,255,240,0,0,191,0,0,127,255,255,240,0,0,191,0,0,127,255,255,240,15,255,255,255,240,127,0,11,240,15,255,255,255,240,127,0,11,240,15,255,255,255,240,127,0,11,240,0,0,191,0,0,127,0,11,240,0,0,191,0,0,127,0,11,240,0,0,191,0,0,127,0,11,240,0,0,191,0,0,127,0,11,240,0,0,191,0,0,127,0,11,240,0,0,191,0,0,127,0,11,240,127,255,255,255,252,127,0,11,240,127,255,255,255,252,127,0,11,240,127,255,255,255,252,127,0,11,240,21,95,245,85,84,127,0,11,240,0,15,240,0,0,127,0,11,240,0,15,224,0,0,127,0,11,240,0,31,208,0,0,127,0,11,240,0,63,192,124,0,127,0,11,240,0,63,128,254,0,127,0,11,240,0,127,0,127,0,127,0,11,240,0,191,0,63,128,127,0,11,240,0,253,0,31,208,127,15,255,224,1,252,0,31,240,127,7,255,224,3,254,255,255,240,127,3,255,128,127,255,255,255,248,127,2,164,0,127,255,255,255,252,127,0,0,0,63,254,148,0,253,127,0,0,0,16,0,0,0,253,127,0,0,0,0,0,0,0,80,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0, + // 0x5378 卸 + 120,83,34,36,68,38,1,252,0,30,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,64,0,0,21,85,85,80,0,191,0,0,0,127,255,255,240,0,255,255,255,248,127,255,255,240,1,255,255,255,248,127,255,255,240,3,255,255,255,248,127,0,7,240,11,240,63,64,0,127,0,7,240,31,224,63,64,0,127,0,7,240,63,192,63,64,0,127,0,7,240,15,64,63,64,0,127,0,7,240,1,0,63,64,0,127,0,7,240,63,255,255,255,253,127,0,7,240,63,255,255,255,253,127,0,7,240,63,255,255,255,253,127,0,7,240,0,0,63,64,0,127,0,7,240,0,0,63,64,0,127,0,7,240,0,0,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,6,175,240,3,240,63,64,4,127,7,255,240,3,240,63,171,253,127,3,255,208,3,246,255,255,253,127,2,254,64,111,255,255,255,253,127,0,0,0,191,255,255,249,64,127,0,0,0,127,255,164,0,0,127,0,0,0,58,64,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0, + // 0x538b 压 + 139,83,36,34,50,38,1,252,2,255,255,255,255,255,255,255,253,2,255,255,255,255,255,255,255,253,2,255,255,255,255,255,255,255,253,2,253,85,85,85,85,85,85,84,2,248,0,0,0,0,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,2,248,63,255,255,255,255,255,208,2,248,63,255,255,255,255,255,208,2,248,63,255,255,255,255,255,208,2,248,21,85,87,249,85,85,64,2,248,0,0,3,244,0,0,0,3,244,0,0,3,244,0,0,0,3,244,0,0,3,244,15,64,0,3,244,0,0,3,244,63,208,0,3,240,0,0,3,244,15,244,0,3,240,0,0,3,244,3,253,0,7,240,0,0,3,244,0,255,0,11,240,0,0,3,244,0,127,64,11,224,0,0,3,244,0,45,0,15,208,0,0,3,244,0,0,0,15,208,0,0,3,244,0,0,0,31,192,0,0,3,244,0,0,0,63,199,255,255,255,255,255,255,252,63,135,255,255,255,255,255,255,252,191,7,255,255,255,255,255,255,252,47,1,85,85,85,85,85,85,84,5,0,0,0,0,0,0,0,0, + // 0x539f 原 + 159,83,35,34,50,38,1,252,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,253,0,0,11,252,0,0,0,0,253,0,0,11,248,0,0,0,0,253,0,0,11,244,0,0,0,0,253,0,0,15,240,0,0,0,0,253,11,255,255,255,255,255,0,0,253,11,255,255,255,255,255,0,0,253,11,250,170,170,170,255,0,0,253,11,240,0,0,0,255,0,0,253,11,240,0,0,0,255,0,0,253,11,250,170,170,170,255,0,0,253,11,255,255,255,255,255,0,0,253,11,255,255,255,255,255,0,1,252,11,240,0,0,0,255,0,1,252,11,240,0,0,0,255,0,1,252,11,240,0,0,0,255,0,1,252,11,255,255,255,255,255,0,2,252,11,255,255,255,255,255,0,2,252,6,170,171,254,170,170,0,2,248,0,0,2,248,0,0,0,3,248,0,16,2,248,1,64,0,3,244,0,191,2,248,11,208,0,7,244,1,254,2,248,15,244,0,7,240,3,252,2,248,3,253,0,11,240,15,244,2,248,0,255,64,15,224,63,224,2,248,0,63,208,15,208,255,192,2,248,0,31,240,47,199,255,0,2,248,0,7,252,63,203,252,0,3,248,0,2,252,127,65,240,11,255,248,0,0,208,47,0,0,3,255,240,0,0,0,5,0,0,3,255,128,0,0,0, + // 0x53cc 双 + 204,83,34,33,41,38,2,252,127,255,255,248,127,255,255,255,128,127,255,255,252,127,255,255,255,192,127,255,255,252,127,255,255,255,128,21,85,86,252,47,213,85,127,128,0,0,2,252,47,192,0,63,64,0,0,3,248,31,192,0,127,0,0,0,3,248,15,208,0,127,0,6,0,3,244,15,208,0,191,0,47,64,7,240,15,224,0,254,0,63,208,11,240,11,240,0,253,0,31,240,15,240,7,240,1,252,0,7,252,15,224,3,244,3,252,0,2,254,31,208,3,248,3,248,0,0,255,111,192,2,252,7,244,0,0,63,255,192,1,252,15,240,0,0,31,255,64,0,254,31,224,0,0,15,255,0,0,191,47,192,0,0,3,255,0,0,127,127,192,0,0,2,255,0,0,63,255,64,0,0,3,255,128,0,47,255,0,0,0,7,255,208,0,15,253,0,0,0,15,255,240,0,15,252,0,0,0,31,239,248,0,31,252,0,0,0,63,195,252,0,63,254,0,0,0,191,130,254,0,255,255,0,0,1,255,0,254,3,255,191,192,0,3,253,0,184,15,252,63,240,0,15,252,0,16,127,244,15,252,0,63,240,0,2,255,208,7,255,64,255,192,0,31,255,64,1,255,224,255,64,0,15,252,0,0,127,224,61,0,0,7,224,0,0,15,192,20,0,0,2,0,0,0,2,0, + // 0x53cd 反 + 205,83,34,34,50,38,2,252,0,85,85,85,85,85,85,85,0,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,240,0,0,191,95,245,85,85,111,224,0,0,191,11,240,0,0,63,208,0,0,190,7,248,0,0,127,192,0,0,254,3,252,0,0,255,64,0,0,254,1,254,0,0,255,0,0,0,254,0,255,0,2,254,0,0,0,253,0,127,192,7,252,0,0,1,252,0,63,224,31,244,0,0,1,252,0,15,244,63,224,0,0,2,252,0,11,253,255,192,0,0,3,252,0,3,255,255,64,0,0,3,248,0,0,255,253,0,0,0,7,244,0,0,127,252,0,0,0,11,240,0,2,255,255,0,0,0,15,224,0,31,255,255,224,0,0,31,208,1,255,253,191,254,0,0,63,192,111,255,224,31,255,244,0,191,135,255,255,0,2,255,255,208,255,3,255,244,0,0,127,255,192,46,1,254,0,0,0,2,255,64,4,0,144,0,0,0,0,26,0, + // 0x53d6 取 + 214,83,36,34,50,38,1,252,21,85,85,85,84,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,255,170,170,170,144,1,252,0,31,199,255,255,255,244,1,252,0,31,199,255,255,255,240,1,252,0,31,199,255,255,255,240,1,252,0,31,194,180,0,11,240,1,255,255,255,195,252,0,15,240,1,255,255,255,193,252,0,15,224,1,255,255,255,192,253,0,31,208,1,252,0,47,192,254,0,31,192,1,252,0,31,192,191,0,47,192,1,252,0,31,192,127,0,63,128,1,252,0,31,192,63,64,127,64,1,252,0,31,192,63,192,191,0,1,255,255,255,192,47,192,254,0,1,255,255,255,192,15,225,253,0,1,255,255,255,192,15,243,252,0,1,253,0,47,192,7,255,248,0,1,252,0,31,192,3,255,240,0,1,252,0,31,192,2,255,224,0,1,252,0,31,192,0,255,192,0,1,252,0,111,192,0,255,192,0,1,254,191,255,192,1,255,224,0,175,255,255,255,192,7,255,244,0,191,255,255,255,192,15,255,252,0,191,255,229,31,192,127,243,255,0,126,144,0,31,193,255,192,255,208,0,0,0,31,203,255,0,63,248,0,0,0,31,255,252,0,31,254,0,0,0,31,207,224,0,3,252,0,0,0,31,199,64,0,0,180,0,0,0,31,192,0,0,0,0, + // 0x53d8 变 + 216,83,34,37,77,38,2,251,0,0,0,6,240,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,1,254,0,0,0,0,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,0,0,7,244,1,252,0,0,0,0,4,3,244,1,252,0,0,0,0,31,195,244,1,252,45,0,0,0,63,131,244,1,252,255,64,0,0,191,3,244,1,252,63,208,0,0,254,3,244,1,252,15,244,0,3,252,3,244,1,252,3,252,0,11,244,3,244,1,252,0,255,0,47,224,3,244,1,252,0,127,128,15,192,3,244,1,252,0,47,0,2,0,3,244,1,252,0,8,0,0,0,3,244,1,252,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,255,64,0,3,255,255,255,255,255,255,208,0,3,255,255,255,255,255,255,128,0,0,11,244,0,0,1,255,0,0,0,2,253,0,0,7,253,0,0,0,0,255,128,0,31,244,0,0,0,0,63,240,0,191,208,0,0,0,0,11,254,7,255,0,0,0,0,0,1,255,255,248,0,0,0,0,0,0,127,255,208,0,0,0,0,0,6,255,255,248,0,0,0,0,1,191,255,255,255,228,0,0,26,255,255,253,11,255,255,249,64,191,255,255,128,0,111,255,255,240,63,255,144,0,0,1,175,255,192,46,64,0,0,0,0,0,91,64,0,0,0,0,0,0,0,0,0, + // 0x53f0 台 + 240,83,34,36,68,38,2,252,0,0,0,228,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,64,0,0,0,0,31,240,0,11,208,0,0,0,0,63,208,0,31,244,0,0,0,0,191,192,0,11,254,0,0,0,0,255,0,0,2,255,128,0,0,2,254,0,0,0,191,224,0,0,7,252,0,0,0,63,244,0,106,175,254,255,255,255,255,253,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,192,127,255,254,170,149,84,0,63,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,11,128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,149,85,85,85,111,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,149,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,64,0,0,0,47,192,0,0,42,64,0,0,0,26,128,0, + // 0x5403 吃 + 3,84,34,36,68,38,3,252,0,0,0,0,57,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,85,85,80,0,254,0,0,0,0,255,255,244,2,252,0,0,0,0,255,255,244,3,253,85,85,85,0,255,255,244,11,255,255,255,255,192,252,3,244,15,255,255,255,255,192,252,3,244,47,255,255,255,255,192,252,3,244,127,192,0,0,0,0,252,3,244,255,64,0,0,0,0,252,3,246,254,0,0,0,0,0,252,3,255,252,0,0,0,0,0,252,3,245,244,0,0,0,0,0,252,3,244,99,255,255,255,240,0,252,3,244,3,255,255,255,252,0,252,3,244,3,255,255,255,240,0,252,3,244,1,85,87,255,128,0,252,3,244,0,0,11,254,0,0,252,3,244,0,0,63,244,0,0,252,3,244,0,0,255,208,0,0,252,3,244,0,3,255,0,0,0,252,3,244,0,15,252,0,0,0,255,255,244,0,63,240,0,0,0,255,255,244,0,255,128,0,0,0,255,255,244,3,254,0,0,0,0,254,85,80,11,248,0,0,5,0,252,0,0,31,224,0,0,11,208,252,0,0,63,192,0,0,11,224,168,0,0,127,64,0,0,11,208,0,0,0,191,0,0,0,15,208,0,0,0,191,128,0,0,31,192,0,0,0,127,255,255,255,255,192,0,0,0,63,255,255,255,255,64,0,0,0,11,255,255,255,254,0,0,0,0,0,21,85,85,80,0, + // 0x5408 合 + 8,84,36,36,68,38,1,252,0,0,0,1,254,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,127,219,252,0,0,0,0,0,1,255,131,255,0,0,0,0,0,3,255,0,255,208,0,0,0,0,15,252,0,63,244,0,0,0,0,127,240,0,15,254,0,0,0,1,255,192,0,3,255,192,0,0,11,255,0,0,0,255,244,0,0,63,252,0,0,0,47,254,0,2,255,240,0,0,0,11,255,224,31,254,191,255,255,255,254,191,253,127,244,127,255,255,255,253,31,253,63,192,127,255,255,255,253,2,248,13,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,15,240,0,0,7,224,0,0,0,11,224,0, + // 0x540d 名 + 13,84,33,36,68,38,1,252,0,0,0,122,64,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,255,255,255,248,0,0,0,0,63,255,255,255,254,0,0,0,0,255,255,255,255,252,0,0,0,3,255,64,0,7,248,0,0,0,15,252,0,0,15,240,0,0,0,127,244,0,0,47,224,0,0,2,255,253,0,0,63,192,0,0,31,255,255,128,0,255,64,0,0,127,248,255,224,2,255,0,0,0,47,208,47,252,11,252,0,0,0,11,0,11,255,31,244,0,0,0,0,0,1,255,255,208,0,0,0,0,0,0,127,255,128,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,1,255,255,255,255,255,128,0,0,11,255,255,255,255,255,128,0,0,191,255,255,255,255,255,128,0,11,255,252,0,0,0,63,128,0,191,255,248,0,0,0,63,128,31,255,247,248,0,0,0,63,128,127,255,67,248,0,0,0,63,128,47,248,3,248,0,0,0,63,128,14,64,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,248,0,0,0,63,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,252,0,0,0,63,128,0,0,2,248,0,0,0,63,128, + // 0x540e 后 + 14,84,36,36,68,38,1,252,0,0,0,0,0,0,0,80,0,0,0,0,0,0,1,111,248,0,0,0,0,0,90,255,255,254,0,0,121,106,255,255,255,255,250,0,0,127,255,255,255,255,249,0,0,0,127,255,255,254,148,0,0,0,0,127,250,80,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,253,0,127,149,85,85,85,85,85,84,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,3,255,255,255,255,255,64,0,191,3,255,255,255,255,255,64,0,254,3,255,255,255,255,255,64,0,254,3,249,85,85,85,127,64,0,253,3,244,0,0,0,127,64,1,253,3,244,0,0,0,127,64,2,252,3,244,0,0,0,127,64,3,252,3,244,0,0,0,127,64,3,248,3,244,0,0,0,127,64,7,244,3,244,0,0,0,127,64,11,240,3,244,0,0,0,127,64,15,240,3,249,85,85,85,127,64,47,208,3,255,255,255,255,255,64,63,192,3,255,255,255,255,255,64,127,64,3,255,255,255,255,255,64,31,0,3,244,0,0,0,127,64,5,0,3,244,0,0,0,63,0, + // 0x5411 向 + 17,84,32,36,32,38,3,252,0,0,0,62,64,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,0,0,0,0,0,0,2,254,0,0,0,0,21,85,87,254,85,85,85,84,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,0,0,0,0,0,0,253,127,0,0,0,0,0,0,253,127,0,0,0,0,0,0,253,127,0,0,0,0,0,0,253,127,0,0,0,0,0,0,253,127,0,127,255,255,253,0,253,127,0,127,255,255,253,0,253,127,0,127,255,255,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,0,0,253,0,253,127,0,127,255,255,253,0,253,127,0,127,255,255,253,0,253,127,0,127,255,255,253,0,253,127,0,127,0,0,0,0,253,127,0,127,0,0,0,0,253,127,0,106,0,0,0,0,253,127,0,0,0,0,0,0,253,127,0,0,0,0,26,170,253,127,0,0,0,0,31,255,252,127,0,0,0,0,15,255,248,127,0,0,0,0,15,255,144, + // 0x5426 否 + 38,84,35,34,50,38,1,252,31,255,255,255,255,255,255,255,244,31,255,255,255,255,255,255,255,244,31,255,255,255,255,255,255,255,244,5,85,85,85,127,245,85,85,80,0,0,0,0,255,208,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,191,254,7,208,0,0,0,0,3,255,254,31,253,0,0,0,0,47,255,254,31,255,192,0,0,2,255,248,254,1,255,248,0,0,47,255,192,254,0,31,255,64,7,255,254,0,254,0,2,255,240,127,255,224,0,254,0,0,127,252,63,254,0,0,254,0,0,11,248,15,224,0,0,254,0,0,1,224,6,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,208,0,0,0,7,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,208,0,0,0,7,248,0,0,31,192,0,0,0,3,248,0, + // 0x542f 启 + 47,84,32,36,32,38,2,252,0,0,0,0,0,0,26,0,0,0,0,0,1,107,255,192,0,0,1,106,255,255,255,240,2,175,255,255,255,255,249,0,2,255,255,255,255,164,0,0,2,255,254,149,0,0,0,0,2,252,0,0,0,0,0,0,2,252,0,0,0,0,0,0,2,255,255,255,255,255,255,252,2,255,255,255,255,255,255,252,2,255,255,255,255,255,255,252,2,252,0,0,0,0,1,252,2,252,0,0,0,0,1,252,2,252,0,0,0,0,1,252,2,252,0,0,0,0,1,252,2,252,0,0,0,0,1,252,2,255,255,255,255,255,255,252,2,255,255,255,255,255,255,252,2,255,255,255,255,255,255,252,3,252,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,244,255,255,255,255,255,254,3,244,255,255,255,255,255,254,7,240,255,255,255,255,255,254,11,240,254,0,0,0,0,254,15,240,254,0,0,0,0,254,15,224,254,0,0,0,0,254,31,208,254,0,0,0,0,254,63,192,254,0,0,0,0,254,63,128,254,0,0,0,0,254,191,64,255,255,255,255,255,254,255,0,255,255,255,255,255,254,189,0,255,255,255,255,255,254,44,0,254,0,0,0,0,254,0,0,169,0,0,0,0,169, + // 0x544a 告 + 74,84,34,37,77,38,2,251,0,1,0,0,190,0,0,0,0,0,7,244,0,255,0,0,0,0,0,11,240,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,31,208,0,255,0,0,0,0,0,63,208,0,255,0,0,0,0,0,127,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,7,252,0,0,255,0,0,0,0,31,240,0,0,255,0,0,0,0,63,208,0,0,255,0,0,0,0,11,128,0,0,255,0,0,0,0,1,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,85,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,149,85,85,85,95,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,149,85,85,85,95,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x5468 周 + 104,84,33,35,59,38,1,251,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,85,85,85,85,85,127,128,0,191,0,0,191,0,0,63,128,0,191,0,0,191,0,0,63,128,0,191,0,0,191,0,0,63,128,0,191,15,255,255,255,244,63,128,0,191,15,255,255,255,244,63,128,0,191,11,255,255,255,244,63,128,0,191,0,0,191,0,0,63,128,0,191,0,0,191,0,0,63,128,0,191,0,0,191,0,0,63,128,0,191,47,255,255,255,252,63,128,0,191,47,255,255,255,253,63,128,0,191,47,255,255,255,253,63,128,0,191,0,0,0,0,0,63,128,0,191,0,0,0,0,0,63,128,0,254,0,0,0,0,0,63,128,0,254,3,255,255,255,224,63,128,0,253,3,255,255,255,224,63,128,0,253,3,254,170,175,224,63,128,1,252,3,240,0,11,224,63,128,1,252,3,240,0,11,224,63,128,2,252,3,240,0,11,224,63,128,3,248,3,240,0,11,224,63,128,7,244,3,255,255,255,224,63,128,11,240,3,255,255,255,224,63,128,15,240,3,255,255,255,224,63,128,31,224,3,240,0,0,0,63,128,63,192,3,240,0,0,0,127,128,127,128,1,80,0,2,255,255,64,63,0,0,0,0,1,255,255,0,10,0,0,0,0,0,255,248,0,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,36,37,77,38,1,251,0,0,0,2,255,0,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,63,255,248,0,0,0,0,0,1,255,199,255,0,0,0,0,0,7,255,1,255,192,0,0,0,0,31,252,0,127,244,0,0,0,0,191,240,0,15,254,0,0,0,7,255,128,0,3,255,208,0,0,47,254,0,0,0,191,248,0,1,255,255,255,255,255,255,255,128,31,255,139,255,255,255,226,255,248,255,253,11,255,255,255,224,127,255,127,224,0,0,0,0,0,7,252,46,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,255,255,255,3,255,255,255,64,0,255,255,255,3,255,255,255,64,0,255,255,255,3,255,255,255,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,255,255,255,3,244,0,63,64,0,255,255,255,3,244,0,127,64,0,255,255,255,3,244,127,255,0,0,253,0,0,3,244,63,255,0,0,253,0,0,3,244,63,248,0,0,253,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,34,36,68,38,1,252,0,0,0,5,0,0,0,0,0,0,0,1,191,0,0,0,0,0,0,5,191,255,192,0,0,0,0,26,255,255,255,129,85,85,85,64,31,255,255,144,3,255,255,255,208,15,254,254,0,3,255,255,255,208,4,0,254,0,3,255,255,255,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,21,85,254,85,67,244,0,15,208,63,255,255,255,227,244,0,15,208,63,255,255,255,227,244,0,15,208,63,255,255,255,227,244,0,15,208,0,3,254,0,3,244,0,15,208,0,7,255,0,3,244,0,15,208,0,15,255,192,3,244,0,15,208,0,15,255,240,3,244,0,15,208,0,47,255,252,3,244,0,15,208,0,63,254,254,3,244,0,15,208,0,189,254,127,67,244,0,15,208,1,252,254,47,211,244,0,15,208,3,248,254,15,211,244,0,15,208,11,240,254,7,131,244,0,15,208,31,224,254,2,3,244,0,15,208,63,192,254,0,3,244,0,15,208,191,64,254,0,3,249,85,111,208,126,0,254,0,3,255,255,255,208,44,0,254,0,3,255,255,255,208,0,0,254,0,3,255,255,255,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0, + // 0x54cd 响 + 205,84,33,37,77,38,3,251,0,0,0,0,0,164,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,85,85,64,0,2,253,0,0,0,255,255,224,0,3,252,0,0,0,255,255,224,0,7,248,0,0,0,255,255,224,0,11,240,0,0,0,252,7,224,255,255,255,255,255,64,252,7,224,255,255,255,255,255,64,252,7,224,255,255,255,255,255,64,252,7,224,253,0,0,0,63,64,252,7,224,253,0,0,0,63,64,252,7,224,253,0,0,0,63,64,252,7,224,253,6,170,160,63,64,252,7,224,253,15,255,244,63,64,252,7,224,253,15,255,244,63,64,252,7,224,253,15,128,244,63,64,252,7,224,253,15,128,244,63,64,252,7,224,253,15,128,244,63,64,252,7,224,253,15,128,244,63,64,252,7,224,253,15,128,244,63,64,252,7,224,253,15,128,244,63,64,253,87,224,253,15,128,244,63,64,255,255,224,253,15,128,244,63,64,255,255,224,253,15,255,244,63,64,255,255,224,253,15,255,244,63,64,252,0,0,253,15,234,164,63,64,252,0,0,253,15,128,0,63,64,252,0,0,253,15,64,0,63,64,168,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,63,255,64,0,0,0,253,0,0,31,255,0,0,0,0,253,0,0,15,248,0,0,0,0,0,0,0,0,0,0, + // 0x55b7 喷 + 183,85,35,36,68,38,2,252,0,0,0,0,0,42,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,21,85,64,127,255,255,255,255,128,127,255,224,191,255,255,255,255,128,127,255,224,191,255,255,255,255,128,127,255,224,0,0,63,0,0,0,125,3,224,0,0,63,0,0,0,125,3,224,3,244,63,7,240,0,125,3,224,3,244,0,7,240,0,125,3,227,255,255,255,255,255,240,125,3,227,255,255,255,255,255,240,125,3,227,255,255,255,255,255,240,125,3,224,3,244,0,7,240,0,125,3,224,3,244,0,7,240,0,125,3,224,0,80,0,1,64,0,125,3,224,31,255,255,255,254,0,125,3,224,31,255,255,255,254,0,125,3,224,31,255,255,255,254,0,125,3,224,31,128,0,0,190,0,125,3,224,31,128,0,0,190,0,125,3,224,31,128,0,0,190,0,126,87,224,31,128,63,0,190,0,127,255,224,31,128,63,0,190,0,127,255,224,31,128,63,0,190,0,127,255,224,31,128,63,0,190,0,125,0,0,31,128,127,0,190,0,125,0,0,31,128,127,0,190,0,125,0,0,31,128,254,0,190,0,41,0,0,5,2,252,56,0,0,0,0,0,0,15,248,255,144,0,0,0,0,1,191,224,47,253,0,0,0,0,111,255,64,2,255,208,0,0,31,255,244,0,0,63,248,0,0,11,254,64,0,0,7,240,0,0,2,64,0,0,0,0,96, + // 0x5634 嘴 + 52,86,34,37,77,38,3,251,0,0,0,2,224,11,208,0,0,0,0,0,3,240,11,208,0,0,0,0,0,3,240,11,208,24,0,255,255,131,195,240,11,209,255,0,255,255,131,195,250,155,239,253,0,255,255,131,195,255,235,255,208,0,248,31,131,195,255,235,253,0,0,244,15,131,195,240,11,224,0,0,244,15,131,195,240,11,208,1,0,244,15,131,195,240,11,208,3,208,244,15,131,195,251,235,208,7,208,244,15,155,255,255,247,250,175,192,244,15,191,255,255,147,255,255,128,244,15,191,255,252,1,255,254,0,244,15,153,3,253,85,64,0,0,244,15,128,11,255,255,224,0,0,244,15,128,47,255,255,240,0,0,244,15,128,191,64,31,192,0,0,244,15,130,255,85,127,149,84,0,244,15,159,255,255,255,255,253,0,244,15,255,255,255,255,255,253,0,255,255,159,254,0,252,0,253,0,255,255,128,190,0,252,0,253,0,255,255,128,191,255,255,255,253,0,248,0,0,191,255,255,255,253,0,244,0,0,190,0,252,0,253,0,244,0,0,253,0,252,0,253,0,244,0,0,253,0,252,0,253,0,0,0,0,255,255,255,255,253,0,0,0,2,255,255,255,255,253,0,0,0,3,249,85,85,85,253,0,0,0,11,240,0,0,0,253,0,0,0,47,224,0,0,0,253,0,0,0,191,192,0,1,170,253,0,0,0,255,0,0,1,255,252,0,0,0,44,0,0,0,255,224,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,36,35,59,38,1,251,1,255,255,255,0,255,255,255,64,1,255,255,255,0,255,255,255,64,1,255,255,255,0,255,255,255,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,255,255,255,0,255,255,255,64,1,255,255,255,64,255,255,255,64,1,255,255,255,248,255,255,255,64,0,0,0,7,252,0,0,0,0,0,0,0,15,240,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,31,252,0,63,224,0,0,0,0,191,240,0,15,252,0,0,0,3,255,192,0,3,255,64,0,0,47,254,0,0,0,255,240,0,6,255,244,0,0,0,47,255,64,127,255,255,255,65,255,255,255,249,191,255,255,255,65,255,255,255,254,63,255,255,255,65,255,255,255,252,30,253,0,63,65,248,0,127,112,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,255,255,255,65,255,255,255,0,0,255,255,255,65,255,255,255,0,0,255,255,255,65,255,255,255,0,0,253,0,63,65,248,0,127,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,34,37,77,38,3,251,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,1,255,255,255,255,255,0,255,255,225,255,255,255,255,255,0,255,255,224,85,85,254,85,85,0,255,255,224,6,144,253,10,128,0,252,11,224,11,208,253,15,192,0,252,11,224,11,208,0,15,192,0,252,11,239,255,255,255,255,255,208,252,11,239,255,255,255,255,255,208,252,11,229,95,229,85,111,213,64,252,11,224,11,208,0,15,192,0,252,11,224,5,64,0,5,64,0,252,11,224,191,255,255,255,252,0,252,11,224,191,255,255,255,252,0,252,11,224,190,0,0,1,252,0,252,11,224,190,0,0,1,252,0,252,11,224,190,0,0,1,252,0,252,11,224,191,255,255,255,252,0,252,11,224,191,255,255,255,252,0,252,11,224,190,0,0,1,252,0,255,255,224,190,0,0,1,252,0,255,255,224,191,255,255,255,252,0,255,255,224,191,255,255,255,252,0,252,0,0,190,0,0,1,252,0,252,0,0,190,0,0,1,252,0,252,0,0,190,0,0,1,252,0,84,0,0,191,255,255,255,252,0,0,0,0,191,255,255,255,252,0,0,0,0,2,228,0,125,0,0,0,0,0,47,252,1,255,208,0,0,0,6,255,224,0,47,253,0,0,0,191,255,0,0,3,255,128,0,0,127,224,0,0,0,127,192,0,0,29,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,32,35,24,38,3,252,170,170,170,170,170,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,191,0,0,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255, + // 0x56e0 因 + 224,86,32,34,16,38,3,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,255,254,0,0,5,64,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,47,255,255,255,255,248,191,254,47,255,255,255,255,248,191,254,47,255,255,255,255,248,191,254,0,0,47,244,0,0,191,254,0,0,63,244,0,0,191,254,0,0,63,252,0,0,191,254,0,0,127,252,0,0,191,254,0,0,255,190,0,0,191,254,0,1,253,63,64,0,191,254,0,3,252,63,192,0,191,254,0,11,248,31,224,0,191,254,0,47,240,11,252,0,191,254,0,191,208,3,255,64,191,254,7,255,64,0,255,224,191,254,63,252,0,0,63,248,191,254,15,224,0,0,11,224,191,254,7,0,0,0,1,192,191,254,0,0,0,0,0,0,191,255,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,0,0,0,0,191,190,0,0,0,0,0,0,190, + // 0x56fa 固 + 250,86,32,35,24,38,3,251,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,85,85,85,85,85,85,255,191,0,0,0,0,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,15,255,255,255,255,244,255,191,15,255,255,255,255,244,255,191,15,255,255,255,255,240,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,170,175,250,170,0,255,191,0,255,255,255,255,0,255,191,0,255,255,255,255,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,255,255,255,255,0,255,191,0,255,255,255,255,0,255,191,0,170,170,170,170,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,85,85,85,85,85,85,255,191,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0, + // 0x56fe 图 + 254,86,32,34,16,38,3,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,80,0,0,0,191,254,0,0,252,0,0,0,191,254,0,3,248,0,0,0,191,254,0,15,254,170,170,64,191,254,0,63,255,255,255,208,191,254,0,255,255,255,255,192,191,254,7,255,64,0,191,0,191,254,47,255,208,3,252,0,191,254,63,199,248,47,240,0,191,254,14,1,255,255,128,0,191,254,0,0,63,254,0,0,191,254,0,2,255,255,144,0,191,254,0,127,255,255,254,64,191,254,111,255,244,11,255,254,191,254,255,255,64,0,191,253,191,254,63,224,249,0,2,248,191,254,36,2,255,248,0,0,191,254,0,0,111,255,192,0,191,254,0,0,0,191,192,0,191,254,0,20,0,6,64,0,191,254,0,191,250,64,0,0,191,254,1,255,255,254,64,0,191,254,0,5,191,255,254,0,191,254,0,0,1,191,255,0,191,254,0,0,0,1,188,0,191,254,0,0,0,0,0,0,191,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,0,0,0,0,191,189,0,0,0,0,0,0,190, + // 0x5728 在 + 40,87,35,36,68,38,1,252,0,0,0,25,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,5,85,95,245,85,85,85,85,80,0,0,31,224,0,0,0,0,0,0,0,63,192,0,31,192,0,0,0,0,191,64,0,47,192,0,0,0,1,255,0,0,47,192,0,0,0,3,253,0,0,47,192,0,0,0,11,248,0,0,47,192,0,0,0,47,240,0,0,47,192,0,0,0,191,224,0,0,47,192,0,0,1,255,224,47,255,255,255,255,192,11,255,224,47,255,255,255,255,192,63,255,224,47,255,255,255,255,192,127,239,224,5,85,111,213,85,64,63,79,224,0,0,47,192,0,0,29,15,224,0,0,47,192,0,0,4,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,85,85,111,213,85,80,0,15,224,255,255,255,255,255,248,0,15,224,255,255,255,255,255,248,0,15,224,255,255,255,255,255,248,0,15,224,0,0,0,0,0,0, + // 0x574f 坏 + 79,87,36,35,59,38,1,252,0,47,128,0,0,0,0,0,0,0,47,128,21,85,85,85,85,84,0,47,128,191,255,255,255,255,253,0,47,128,191,255,255,255,255,253,0,47,128,191,255,255,255,255,253,0,47,128,0,0,2,253,0,0,0,47,128,0,0,3,252,0,0,0,47,128,0,0,15,244,0,0,21,111,213,0,0,31,240,0,0,63,255,255,128,0,63,192,0,0,63,255,255,128,0,255,192,0,0,63,255,255,128,3,255,203,0,0,0,47,128,0,11,255,239,208,0,0,47,128,0,47,255,239,244,0,0,47,128,0,255,255,203,254,0,0,47,128,3,255,95,193,255,128,0,47,128,31,253,31,192,127,240,0,47,128,255,244,31,192,15,252,0,47,131,255,192,31,192,3,254,0,47,128,254,0,31,192,0,252,0,47,128,52,0,31,192,0,48,0,47,129,128,0,31,192,0,0,0,47,239,192,0,31,192,0,0,0,47,255,208,0,31,192,0,0,1,255,255,208,0,31,192,0,0,127,255,253,0,0,31,192,0,0,127,255,128,0,0,31,192,0,0,63,228,0,0,0,31,192,0,0,61,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0, + // 0x5757 块 + 87,87,35,36,68,38,1,252,0,21,64,0,0,21,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,1,85,191,85,85,0,0,47,128,11,255,255,255,255,64,0,47,128,11,255,255,255,255,64,63,255,255,139,255,255,255,255,64,63,255,255,128,0,127,0,63,64,63,255,255,128,0,127,0,63,64,21,127,213,0,0,127,0,63,64,0,47,128,0,0,127,0,63,64,0,47,128,0,0,127,0,63,64,0,47,128,0,0,127,0,63,64,0,47,128,0,0,191,0,63,64,0,47,128,21,85,191,85,127,148,0,47,128,63,255,255,255,255,252,0,47,128,63,255,255,255,255,252,0,47,128,63,255,255,255,255,252,0,47,135,128,0,255,240,0,0,0,47,255,192,2,255,244,0,0,0,47,255,192,3,254,252,0,0,1,255,255,64,7,244,253,0,0,47,255,244,0,15,240,255,0,0,127,255,64,0,31,240,127,128,0,63,244,0,0,63,192,63,192,0,46,64,0,0,255,128,31,240,0,0,0,0,3,255,0,11,252,0,0,0,0,15,253,0,3,255,0,0,0,0,127,244,0,0,255,208,0,0,3,255,208,0,0,127,252,0,0,15,255,0,0,0,31,252,0,0,3,248,0,0,0,3,240,0,0,0,128,0,0,0,0,80, + // 0x578b 型 + 139,87,34,35,59,38,2,253,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,127,0,15,255,255,255,252,5,64,127,0,15,255,255,255,252,31,192,127,0,15,255,255,255,252,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,191,0,31,192,127,0,127,255,255,255,254,31,192,127,0,127,255,255,255,254,31,192,127,0,127,255,255,255,254,31,192,127,0,0,127,0,190,0,31,192,127,0,0,191,0,190,0,31,192,127,0,0,253,0,190,0,5,64,127,0,3,252,0,190,0,0,0,127,0,11,248,0,190,0,0,0,127,0,63,240,0,190,0,0,255,255,0,191,192,0,190,0,0,255,254,0,47,0,0,107,252,0,191,248,0,4,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x57ab 垫 + 171,87,35,35,59,38,2,253,0,15,192,0,1,248,0,0,0,0,15,192,0,2,252,0,0,0,0,15,192,0,2,248,0,0,0,0,15,192,0,2,248,0,0,0,191,255,255,215,255,255,255,244,0,191,255,255,215,255,255,255,244,0,191,255,255,215,255,255,255,244,0,0,31,208,0,3,244,3,244,0,0,15,192,0,3,244,3,240,0,0,15,192,1,211,240,3,240,0,0,15,219,227,255,240,3,240,0,1,111,255,247,255,240,3,240,0,191,255,255,240,191,240,3,240,0,255,255,249,0,31,253,3,240,0,191,255,192,0,47,255,131,240,0,100,15,192,0,63,255,243,244,64,0,15,192,0,255,15,242,244,184,0,15,192,3,253,2,193,248,252,0,31,192,31,248,0,0,252,248,31,255,192,63,224,0,0,255,244,15,255,128,31,128,0,0,127,240,11,254,0,7,248,0,0,31,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,1,255,255,255,255,255,255,244,0,1,255,255,255,255,255,255,244,0,1,255,255,255,255,255,255,244,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x586b 填 + 107,88,36,36,68,38,1,252,0,5,0,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,191,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,31,208,0,0,21,127,149,3,255,255,255,255,0,63,255,255,3,255,255,255,255,0,63,255,255,3,244,0,0,63,0,63,255,255,3,244,0,0,127,0,0,63,64,3,255,255,255,255,0,0,63,64,3,255,255,255,255,0,0,63,64,3,244,0,0,63,0,0,63,64,3,244,0,0,63,0,0,63,64,3,255,255,255,255,0,0,63,64,3,255,255,255,255,0,0,63,64,3,244,0,0,127,0,0,63,64,3,244,0,0,63,0,0,63,64,3,245,85,85,127,0,0,63,75,131,255,255,255,255,0,0,63,255,195,255,255,255,255,0,0,127,255,192,0,0,0,0,0,11,255,253,0,0,0,0,0,0,127,255,211,255,255,255,255,255,253,127,253,3,255,255,255,255,255,253,63,128,3,255,255,255,255,255,253,24,0,0,0,30,0,3,128,0,0,0,0,0,191,192,31,244,0,0,0,0,7,255,0,11,255,0,0,0,0,191,248,0,0,255,208,0,0,11,255,208,0,0,47,248,0,0,3,254,0,0,0,7,253,0,0,0,160,0,0,0,0,144, + // 0x58f3 壳 + 243,88,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,170,170,171,254,170,170,170,144,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,1,170,170,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,234,170,170,170,170,170,191,192,63,64,0,0,0,0,0,47,192,63,69,85,85,85,85,85,47,192,63,75,255,255,255,255,254,47,192,0,11,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,208,0,0,0,1,255,255,255,255,208,0,0,0,1,255,255,255,255,208,0,0,0,1,252,0,0,31,208,0,0,0,1,252,0,0,31,208,0,0,0,2,252,0,0,31,208,0,0,0,3,252,0,0,31,208,6,0,0,11,244,0,0,31,208,7,224,0,47,240,0,0,31,208,11,224,1,255,192,0,0,15,208,15,208,111,255,64,0,0,15,255,255,208,127,252,0,0,0,15,255,255,192,47,208,0,0,0,3,255,255,0,9,0,0,0,0,0,0,0,0, + // 0x5907 备 + 7,89,36,37,77,38,1,251,0,0,0,190,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,255,255,255,255,128,0,0,0,63,255,255,255,255,224,0,0,1,255,255,255,255,255,192,0,0,11,255,0,0,1,255,64,0,0,127,255,192,0,7,253,0,0,2,255,255,244,0,47,248,0,0,15,255,11,254,1,255,208,0,0,3,248,2,255,219,255,0,0,0,0,192,0,127,255,252,0,0,0,0,0,0,31,255,244,0,0,0,0,0,6,255,255,255,224,0,0,0,1,191,255,239,255,255,148,0,6,255,255,254,0,191,255,255,249,191,255,255,208,0,6,255,255,253,63,255,244,0,0,0,27,255,248,47,249,0,0,0,0,0,26,240,4,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,192,0,254,0,7,244,0,0,47,192,0,254,0,7,244,0,0,47,192,0,254,0,7,244,0,0,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,192,0,254,0,7,244,0,0,47,192,0,254,0,7,244,0,0,47,192,0,254,0,7,244,0,0,47,192,0,254,0,7,244,0,0,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,0,47,192,0,0,0,7,244,0,0,0,0,0,0,0,0,0,0, + // 0x590d 复 + 13,89,25,37,3,38,6,251,0,3,64,0,0,0,0,0,11,240,0,0,0,0,0,15,240,0,0,0,0,0,47,208,0,0,0,0,0,63,255,255,255,253,0,0,255,255,255,255,253,0,2,255,255,255,255,253,0,7,252,0,0,0,0,0,31,244,0,0,0,0,0,127,255,255,255,255,224,0,191,255,255,255,255,224,0,46,63,85,85,95,224,0,4,63,0,0,15,224,0,0,63,64,0,15,224,0,0,63,255,255,255,224,0,0,63,255,255,255,224,0,0,63,0,0,15,224,0,0,63,0,0,15,224,0,0,63,255,255,255,224,0,0,63,255,255,255,224,0,0,21,191,149,85,64,0,0,0,255,0,0,0,0,0,3,255,170,170,64,0,0,15,255,255,255,240,0,0,63,255,255,255,208,0,2,255,208,0,63,128,0,31,255,244,0,255,0,0,127,245,254,7,253,0,0,47,128,127,239,244,0,0,9,0,31,255,192,0,0,0,0,31,255,128,0,0,0,2,255,255,254,0,0,1,191,255,159,255,254,64,63,255,248,1,255,255,192,31,254,64,0,27,255,0,14,64,0,0,0,29,0,0,0,0,0,0,0,0, + // 0x5916 外 + 22,89,36,36,68,38,1,252,0,0,57,0,0,0,191,0,0,0,0,127,64,0,0,191,0,0,0,0,191,0,0,0,191,0,0,0,0,254,0,0,0,191,0,0,0,1,253,0,0,0,191,0,0,0,2,252,0,0,0,191,0,0,0,3,255,255,254,0,191,0,0,0,11,255,255,255,0,191,0,0,0,15,255,255,255,0,191,0,0,0,31,229,85,255,64,191,0,0,0,63,192,0,255,224,191,0,0,0,191,64,1,255,244,191,0,0,0,255,0,2,255,252,191,0,0,2,253,0,3,252,254,191,0,0,7,253,0,3,244,191,255,0,0,31,255,128,7,240,63,255,0,0,63,255,244,11,240,15,255,0,0,191,223,254,15,224,7,255,0,0,47,2,255,239,192,1,255,64,0,5,0,127,255,192,0,255,224,0,0,0,15,255,64,0,191,252,0,0,0,3,255,0,0,191,255,64,0,0,1,253,0,0,191,255,224,0,0,3,252,0,0,191,127,254,0,0,15,244,0,0,191,15,254,0,0,31,240,0,0,191,2,252,0,0,127,192,0,0,191,0,48,0,0,255,128,0,0,191,0,0,0,3,255,0,0,0,191,0,0,0,15,252,0,0,0,191,0,0,0,127,240,0,0,0,191,0,0,2,255,192,0,0,0,191,0,0,31,255,0,0,0,0,191,0,0,31,252,0,0,0,0,191,0,0,7,224,0,0,0,0,191,0,0,1,0,0,0,0,0,190,0,0, + // 0x591a 多 + 26,89,33,36,68,38,3,252,0,0,0,46,64,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,15,255,255,255,240,0,0,0,0,127,255,255,255,252,0,0,0,3,255,255,255,255,244,0,0,0,47,253,0,0,31,240,0,0,6,255,244,0,0,127,192,0,0,127,255,254,0,1,255,64,0,0,191,250,255,208,7,253,0,0,0,47,64,47,252,47,244,0,0,0,4,0,7,255,255,208,0,0,0,0,0,0,255,255,64,0,0,0,0,0,0,127,249,144,0,0,0,0,0,7,255,215,254,0,0,0,0,0,191,254,15,248,0,0,0,0,47,255,224,127,224,0,0,0,91,255,254,2,255,255,255,253,0,255,255,208,15,255,255,255,255,64,191,248,0,191,255,255,255,255,0,57,0,11,255,128,0,3,252,0,0,0,191,253,0,0,11,248,0,0,31,255,255,0,0,31,240,0,0,255,254,255,224,0,63,208,0,0,127,208,63,252,1,255,128,0,0,45,0,7,255,75,254,0,0,0,0,0,0,255,255,248,0,0,0,0,0,0,47,255,224,0,0,0,0,0,0,31,255,64,0,0,0,0,0,2,255,248,0,0,0,0,0,0,127,255,208,0,0,0,0,0,111,255,253,0,0,0,0,2,191,255,255,144,0,0,0,0,3,255,255,244,0,0,0,0,0,2,255,249,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,170,170,175,255,170,170,170,144,0,0,0,31,255,0,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,63,239,208,0,0,0,0,0,0,191,79,240,0,0,0,0,0,0,255,15,240,0,0,0,0,0,1,254,7,252,0,0,0,0,0,3,253,3,253,0,0,0,0,0,11,252,1,255,0,0,0,0,0,15,244,0,255,192,0,0,0,0,63,240,0,63,208,0,0,0,0,191,192,0,47,244,0,0,0,2,255,128,0,15,252,0,0,0,11,254,0,0,7,255,64,0,0,47,252,0,0,1,255,208,0,1,255,240,0,0,0,127,248,0,11,255,192,0,0,0,31,255,128,191,254,0,0,0,0,7,255,240,191,244,0,0,0,0,0,255,208,47,128,0,0,0,0,0,47,128,8,0,0,0,0,0,0,2,0, + // 0x5929 天 + 41,89,35,33,41,38,2,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,170,170,171,254,170,170,170,144,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,26,170,170,175,255,170,170,170,64,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,127,223,240,0,0,0,0,0,0,255,75,248,0,0,0,0,0,3,255,3,253,0,0,0,0,0,11,253,2,255,0,0,0,0,0,47,248,0,255,192,0,0,0,0,255,224,0,63,244,0,0,0,7,255,192,0,31,254,0,0,0,127,254,0,0,7,255,208,0,7,255,248,0,0,1,255,253,0,191,255,192,0,0,0,47,255,244,255,253,0,0,0,0,7,255,240,63,208,0,0,0,0,0,191,192,41,0,0,0,0,0,0,6,128, + // 0x592a 太 + 42,89,35,36,68,38,2,252,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,106,170,170,175,255,170,170,170,160,0,0,0,31,255,64,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,239,192,0,0,0,0,0,0,63,143,224,0,0,0,0,0,0,127,79,240,0,0,0,0,0,0,255,7,244,0,0,0,0,0,1,255,3,252,0,0,0,0,0,2,253,2,254,0,0,0,0,0,7,252,1,255,0,0,0,0,0,15,248,0,191,128,0,0,0,0,31,240,0,63,208,0,0,0,0,127,210,0,47,240,0,0,0,0,255,223,192,15,252,0,0,0,3,255,127,240,7,254,0,0,0,15,253,31,252,2,255,128,0,0,127,248,7,255,0,255,240,0,2,255,224,1,255,192,63,253,0,31,255,128,0,127,240,15,255,128,255,253,0,0,47,244,3,255,244,255,240,0,0,11,224,0,191,240,63,64,0,0,3,64,0,31,192,24,0,0,0,0,0,0,2,64, + // 0x5931 失 + 49,89,35,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,11,240,3,248,0,0,0,0,0,15,240,3,248,0,0,0,0,0,31,224,3,248,0,0,0,0,0,47,192,3,248,0,0,0,0,0,63,192,3,248,0,0,0,0,0,191,234,171,254,170,170,164,0,0,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,7,248,0,3,248,0,0,0,0,15,240,0,3,248,0,0,0,0,63,224,0,3,248,0,0,0,0,191,192,0,3,248,0,0,0,0,47,128,0,3,248,0,0,0,0,6,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,106,170,170,171,250,170,170,170,144,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,47,255,64,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,191,239,224,0,0,0,0,0,0,255,79,240,0,0,0,0,0,3,255,7,252,0,0,0,0,0,11,253,3,255,0,0,0,0,0,47,248,0,255,192,0,0,0,0,255,224,0,127,240,0,0,0,7,255,192,0,31,254,0,0,0,127,254,0,0,7,255,208,0,7,255,248,0,0,1,255,254,0,191,255,192,0,0,0,47,255,244,255,253,0,0,0,0,7,255,240,63,208,0,0,0,0,0,127,208,24,0,0,0,0,0,0,6,128, + // 0x5934 头 + 52,89,34,36,68,38,2,252,0,0,0,0,10,144,0,0,0,0,0,0,0,15,208,0,0,0,0,11,144,0,15,208,0,0,0,0,31,253,0,15,208,0,0,0,0,31,255,208,15,208,0,0,0,0,1,255,252,15,208,0,0,0,0,0,31,253,15,208,0,0,0,0,0,1,248,15,208,0,0,0,0,0,0,48,31,208,0,0,0,2,208,0,0,31,208,0,0,0,11,253,0,0,31,208,0,0,0,15,255,208,0,31,192,0,0,0,1,255,252,0,31,192,0,0,0,0,31,255,0,47,192,0,0,0,0,1,255,0,47,192,0,0,0,0,0,60,0,63,192,0,0,0,0,0,0,0,63,128,0,0,0,21,85,85,85,127,149,85,85,64,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,1,254,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,128,0,0,0,0,0,0,47,242,248,0,0,0,0,0,0,191,199,255,128,0,0,0,0,2,255,65,255,248,0,0,0,0,15,254,0,31,255,64,0,0,0,127,248,0,2,255,224,0,0,7,255,208,0,0,63,253,0,1,191,255,0,0,0,7,255,128,111,255,244,0,0,0,0,255,224,127,255,128,0,0,0,0,47,192,47,244,0,0,0,0,0,7,64,9,0,0,0,0,0,0,0,0, + // 0x597d 好 + 125,89,36,37,77,38,1,251,0,15,144,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,31,192,0,255,255,255,255,208,0,31,192,0,255,255,255,255,244,0,47,128,0,255,255,255,255,240,0,63,128,0,85,85,85,127,208,0,63,64,0,0,0,0,255,128,0,63,0,0,0,0,2,254,0,127,255,255,252,0,0,7,252,0,127,255,255,252,0,0,31,240,0,127,255,255,252,0,0,127,192,0,21,253,86,252,0,2,255,0,0,0,252,2,252,0,2,252,0,0,1,252,2,248,0,2,252,0,0,2,248,3,244,0,2,252,0,0,3,244,3,245,85,87,253,85,84,3,240,3,247,255,255,255,255,254,7,240,7,243,255,255,255,255,254,11,224,11,243,255,255,255,255,254,15,208,15,224,0,2,252,0,0,15,208,15,208,0,2,252,0,0,15,244,47,192,0,2,252,0,0,31,255,63,192,0,2,252,0,0,63,255,255,64,0,2,252,0,0,11,127,255,0,0,2,252,0,0,1,11,255,0,0,2,252,0,0,0,2,255,192,0,2,252,0,0,0,3,255,240,0,2,252,0,0,0,15,255,252,0,2,252,0,0,0,47,227,254,0,2,252,0,0,0,127,192,253,0,2,252,0,0,1,255,64,56,0,2,252,0,0,11,253,0,0,5,87,252,0,0,47,248,0,0,15,255,248,0,0,15,208,0,0,11,255,240,0,0,7,0,0,0,7,255,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x59cb 始 + 203,89,35,36,68,38,2,252,0,62,64,0,0,57,0,0,0,0,63,64,0,0,127,192,0,0,0,127,0,0,0,127,64,0,0,0,127,0,0,0,255,0,0,0,0,190,0,0,0,254,0,0,0,0,254,0,0,1,253,0,0,0,0,253,0,0,2,252,0,144,0,0,252,0,0,3,248,7,240,0,255,255,255,240,7,244,3,248,0,255,255,255,240,11,240,1,253,0,255,255,255,240,15,224,0,255,0,87,245,91,240,31,192,0,63,128,7,240,11,224,47,213,170,191,192,11,240,15,239,255,255,255,255,240,15,224,15,223,255,255,255,255,244,15,208,15,203,255,255,234,151,248,15,192,31,197,80,0,0,2,248,31,192,31,192,0,0,0,1,128,47,128,47,128,0,0,0,0,0,63,64,63,64,0,0,0,0,0,63,64,127,0,127,255,255,255,192,127,224,191,0,127,255,255,255,192,191,253,254,0,127,255,255,255,192,255,255,253,0,127,0,0,47,192,44,191,252,0,127,0,0,47,192,0,31,252,0,127,0,0,47,192,0,15,255,64,127,0,0,47,192,0,31,255,208,127,0,0,47,192,0,63,255,240,127,0,0,47,192,0,255,139,252,127,0,0,47,192,2,255,2,240,127,0,0,47,192,11,252,0,208,127,255,255,255,192,127,244,0,0,127,255,255,255,192,191,192,0,0,127,255,255,255,192,63,0,0,0,127,0,0,47,192,8,0,0,0,127,0,0,26,128, + // 0x5b50 子 + 80,91,34,35,59,38,2,251,0,85,85,85,85,85,85,128,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,127,244,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,31,254,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,170,170,170,171,254,170,170,170,160,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,170,171,252,0,0,0,0,0,0,255,255,248,0,0,0,0,0,0,127,255,240,0,0,0,0,0,0,63,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,35,36,68,38,1,252,0,0,0,41,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,5,85,95,249,85,85,85,85,84,0,0,15,240,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,128,0,0,0,4,0,0,1,255,3,255,255,255,255,0,0,3,253,3,255,255,255,255,128,0,11,252,3,255,255,255,255,0,0,47,240,0,0,0,11,252,0,0,127,224,0,0,0,47,224,0,1,255,224,0,0,0,255,128,0,7,255,224,0,0,15,253,0,0,47,255,224,0,0,15,240,0,0,191,239,224,0,0,15,224,0,0,63,143,224,255,255,255,255,255,252,29,15,224,255,255,255,255,255,252,0,15,224,255,255,255,255,255,252,0,15,224,85,85,95,245,85,84,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,85,95,224,0,0,0,15,224,0,127,255,224,0,0,0,15,224,0,63,255,192,0,0,0,15,224,0,63,254,0,0,0, + // 0x5b89 安 + 137,91,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,213,85,85,85,85,85,127,192,63,192,0,0,0,0,0,63,192,63,192,0,63,128,0,0,63,192,63,192,0,127,192,0,0,63,192,63,192,0,255,64,0,0,63,192,21,64,0,255,0,0,0,21,64,0,0,2,253,0,0,0,0,0,85,85,87,253,85,85,85,85,80,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,63,192,0,3,252,0,0,0,0,255,64,0,7,248,0,0,0,1,255,0,0,11,244,0,0,0,3,253,0,0,15,240,0,0,0,7,252,0,0,47,208,0,0,0,15,248,0,0,127,192,0,0,0,31,255,144,0,255,64,0,0,0,63,255,254,67,254,0,0,0,0,191,175,255,255,252,0,0,0,0,11,1,255,255,240,0,0,0,0,0,0,11,255,254,0,0,0,0,0,0,47,255,255,224,0,0,0,0,6,255,250,255,254,0,0,0,6,191,255,192,47,255,224,0,26,255,255,253,0,2,255,253,0,15,255,255,128,0,0,47,254,0,11,255,228,0,0,0,2,248,0,3,148,0,0,0,0,0,96,0, + // 0x5b8c 完 + 140,91,34,36,68,38,2,252,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,213,85,85,85,85,85,127,192,63,128,0,0,0,0,0,63,192,63,128,0,0,0,0,0,63,192,63,128,0,0,0,0,0,63,192,63,131,255,255,255,255,252,63,192,21,67,255,255,255,255,252,21,64,0,3,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,255,224,85,85,111,229,87,253,85,85,80,0,0,47,208,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,63,128,2,252,0,0,0,0,0,191,64,2,252,0,0,0,0,0,255,0,2,252,0,3,64,0,3,254,0,2,252,0,3,240,0,11,252,0,2,252,0,3,240,0,63,244,0,2,252,0,3,240,2,255,224,0,2,252,0,11,240,191,255,128,0,1,255,255,255,224,255,253,0,0,0,255,255,255,192,127,208,0,0,0,127,255,255,64,57,0,0,0,0,1,85,80,0, + // 0x5b9a 定 + 154,91,35,37,77,38,1,251,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,5,85,85,85,255,85,85,85,80,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,226,255,255,255,255,255,139,240,5,66,255,255,255,255,255,133,80,0,2,255,255,255,255,255,128,0,0,1,85,85,255,85,85,64,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2,164,0,255,0,0,0,0,0,3,248,0,255,0,0,0,0,0,3,244,0,255,0,0,0,0,0,7,244,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,15,240,0,255,255,255,248,0,0,15,244,0,255,85,85,80,0,0,31,252,0,255,0,0,0,0,0,63,253,0,255,0,0,0,0,0,63,255,0,255,0,0,0,0,0,191,191,192,255,0,0,0,0,0,255,31,244,255,0,0,0,0,3,253,11,255,255,0,0,0,0,11,252,2,255,255,64,0,0,0,47,244,0,191,255,255,255,255,252,127,224,0,11,255,255,255,255,248,47,192,0,0,127,255,255,255,244,11,0,0,0,0,85,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,35,37,77,38,1,251,0,0,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,208,0,36,0,0,0,11,240,15,208,0,191,128,0,0,11,240,15,208,1,255,0,0,0,11,240,15,208,7,255,255,255,253,11,240,0,0,47,255,255,255,255,0,0,0,0,255,234,170,171,253,0,0,0,7,255,208,0,11,248,0,0,0,127,255,248,0,47,240,0,0,3,255,231,254,0,255,192,0,0,1,255,0,255,215,255,0,0,0,0,180,0,63,255,248,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,127,255,254,64,0,0,0,0,11,255,255,255,249,0,0,0,1,255,255,65,255,255,250,64,1,191,255,248,0,31,255,255,252,127,255,255,64,0,0,191,255,248,63,255,255,255,255,255,255,255,240,31,230,255,255,255,255,255,129,80,4,1,255,255,255,255,255,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,255,255,255,255,255,128,0,0,1,255,255,255,255,255,128,0,0,1,255,255,255,255,255,128,0,0,1,252,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0, + // 0x5bab 宫 + 171,91,32,36,32,38,3,252,0,0,0,27,128,0,0,0,0,0,0,63,192,0,0,0,0,0,0,47,224,0,0,0,0,0,0,15,240,0,0,0,85,85,85,95,249,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,0,0,0,0,191,254,0,0,0,0,0,0,191,254,0,0,0,0,0,0,191,254,63,255,255,255,255,252,191,190,63,255,255,255,255,252,191,0,63,255,255,255,255,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,2,252,0,0,63,64,0,0,2,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,63,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,3,244,0,0,0,0,15,208,3,244,0,0,0,0,15,208,3,244,0,0,0,0,15,208,3,244,0,0,0,0,15,208,3,244,0,0,0,0,15,208,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,3,255,255,255,255,255,255,208,3,244,0,0,0,0,15,208,2,160,0,0,0,0,10,128, + // 0x5bf9 对 + 249,91,35,36,68,38,2,252,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,63,255,255,253,0,0,7,240,0,63,255,255,254,0,0,7,240,0,63,255,255,253,0,0,7,240,0,21,85,85,253,0,0,7,240,0,0,0,1,252,191,255,255,255,244,0,0,2,252,191,255,255,255,244,0,0,3,252,191,255,255,255,244,0,0,3,248,85,85,91,245,80,3,64,3,244,0,0,7,240,0,15,208,7,240,0,0,7,240,0,31,244,11,240,0,0,7,240,0,11,253,15,224,6,0,7,240,0,1,255,95,208,63,64,7,240,0,0,127,255,192,63,192,7,240,0,0,47,255,192,15,224,7,240,0,0,11,255,128,11,240,7,240,0,0,2,255,64,3,248,7,240,0,0,0,255,192,2,252,7,240,0,0,2,255,240,0,253,7,240,0,0,3,255,248,0,253,7,240,0,0,11,251,253,0,160,7,240,0,0,31,242,255,0,0,7,240,0,0,63,208,255,128,0,7,240,0,0,255,128,63,192,0,7,240,0,2,255,0,47,0,0,7,240,0,11,253,0,8,0,0,7,240,0,47,248,0,0,0,0,11,240,0,255,224,0,0,0,63,255,240,0,191,128,0,0,0,47,255,224,0,46,0,0,0,0,31,255,192,0,4,0,0,0,0,10,165,0,0, + // 0x5c06 将 + 6,92,36,36,68,38,1,252,0,2,248,0,0,0,0,29,0,0,2,248,0,0,0,107,255,0,0,2,248,0,5,191,255,255,192,0,2,248,175,255,255,255,249,0,0,2,248,255,255,255,249,0,0,10,2,248,127,254,148,0,0,0,127,2,248,20,0,25,0,3,128,63,130,248,1,0,190,0,7,244,47,210,248,47,64,127,0,15,240,15,242,248,47,128,63,64,47,208,7,242,248,15,192,47,128,63,192,3,250,248,15,224,47,192,255,0,2,255,248,7,240,31,194,253,0,1,251,248,3,244,14,71,248,0,0,130,248,3,244,0,15,240,0,0,2,248,1,64,0,31,208,0,0,2,248,0,0,0,3,244,0,0,2,248,0,0,0,3,244,0,0,2,248,21,85,85,87,249,84,0,2,248,255,255,255,255,255,253,0,2,248,255,255,255,255,255,253,0,7,248,255,255,255,255,255,253,0,63,248,0,0,0,3,244,0,2,255,248,0,112,0,3,244,0,31,255,248,3,252,0,3,244,0,191,251,248,1,254,0,3,244,0,127,210,248,0,191,128,3,244,0,63,2,248,0,63,208,3,244,0,40,2,248,0,15,240,3,244,0,0,2,248,0,11,244,3,244,0,0,2,248,0,3,208,3,244,0,0,2,248,0,1,0,3,244,0,0,2,248,0,0,21,91,244,0,0,2,248,0,0,31,255,240,0,0,2,248,0,0,15,255,240,0,0,2,248,0,0,15,254,64,0, + // 0x5c0f 小 + 15,92,36,36,68,38,1,252,0,0,0,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,4,0,0,255,0,1,128,0,0,15,240,0,255,0,31,208,0,0,15,240,0,255,0,15,240,0,0,31,240,0,255,0,11,244,0,0,31,224,0,255,0,3,252,0,0,63,208,0,255,0,2,254,0,0,63,192,0,255,0,0,255,0,0,127,128,0,255,0,0,255,64,0,191,64,0,255,0,0,127,192,0,255,0,0,255,0,0,63,208,1,254,0,0,255,0,0,47,224,3,253,0,0,255,0,0,15,240,7,252,0,0,255,0,0,15,248,15,244,0,0,255,0,0,7,252,47,240,0,0,255,0,0,3,252,63,208,0,0,255,0,0,2,253,127,192,0,0,255,0,0,1,254,11,0,0,0,255,0,0,0,254,0,0,0,0,255,0,0,0,208,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,63,255,255,0,0,0,0,0,0,31,255,254,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,6,170,64,0,0,0,0, + // 0x5c31 就 + 49,92,36,36,68,38,1,252,0,0,190,0,0,0,252,0,0,0,0,191,0,0,0,252,8,0,0,0,191,0,0,0,252,191,0,0,0,191,0,0,0,252,63,192,0,0,191,0,0,0,252,31,224,63,255,255,255,252,0,252,11,240,63,255,255,255,252,0,252,3,248,63,255,255,255,252,0,252,1,248,0,0,0,0,0,0,252,0,128,0,0,0,0,0,0,252,0,0,0,0,0,0,3,255,255,255,253,3,255,255,255,211,255,255,255,253,3,255,255,255,211,255,255,255,253,3,255,255,255,209,86,253,85,84,3,240,0,15,208,1,252,0,0,3,240,0,15,208,2,255,208,0,3,240,0,15,208,2,255,208,0,3,240,0,15,208,3,255,208,0,3,255,255,255,208,3,255,208,0,3,255,255,255,208,3,255,208,0,3,255,255,255,208,7,255,208,0,0,0,127,0,0,11,255,208,0,0,0,127,0,0,15,255,208,0,2,228,127,31,128,15,223,208,0,3,244,127,15,192,31,207,208,0,7,240,127,15,208,63,207,208,0,11,240,127,7,240,127,79,208,16,15,208,127,3,240,255,15,208,61,31,192,127,2,249,254,15,208,62,63,192,127,1,247,252,15,208,62,127,64,127,0,75,248,15,208,62,127,0,127,0,31,240,15,224,126,13,0,191,0,127,208,15,255,253,0,63,255,0,255,128,11,255,252,0,47,253,0,126,0,3,255,244,0,31,228,0,8,0,0,85,64, + // 0x5c4f 屏 + 79,92,35,35,59,38,1,251,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,0,0,0,0,0,63,128,0,191,0,0,0,0,0,63,128,0,191,0,0,0,0,0,63,128,0,191,0,0,0,0,0,63,128,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,191,0,111,0,0,15,224,0,0,191,0,63,128,0,31,224,0,0,191,0,31,192,0,63,192,0,0,191,0,15,224,0,127,0,0,0,255,63,255,255,255,255,255,240,0,254,63,255,255,255,255,255,240,0,254,63,255,255,255,255,255,240,0,254,0,11,240,0,190,0,0,0,254,0,11,240,0,190,0,0,0,253,0,11,240,0,190,0,0,0,253,0,11,240,0,190,0,0,1,252,0,11,240,0,190,0,0,1,252,255,255,255,255,255,255,252,2,252,255,255,255,255,255,255,252,3,248,255,255,255,255,255,255,252,3,244,0,31,208,0,191,0,0,7,240,0,63,192,0,190,0,0,11,240,0,127,128,0,190,0,0,15,224,1,255,0,0,190,0,0,31,208,7,254,0,0,190,0,0,63,192,47,248,0,0,190,0,0,127,128,255,224,0,0,190,0,0,47,0,127,128,0,0,190,0,0,6,0,24,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0, + // 0x5de5 工 + 229,93,34,29,5,38,2,255,10,170,170,170,170,170,170,170,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,170,170,170,171,254,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x5dee 差 + 238,93,35,36,68,38,1,252,0,0,8,0,0,0,164,0,0,0,0,191,0,0,0,255,0,0,0,0,127,128,0,1,254,0,0,0,0,47,192,0,3,252,0,0,0,0,15,224,0,11,240,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,255,255,255,255,253,0,0,3,252,255,255,255,255,253,0,0,7,248,255,255,255,255,253,0,0,15,240,0,2,252,0,0,0,0,31,224,0,2,252,0,0,0,0,63,208,0,2,252,0,0,0,0,191,192,0,2,252,0,0,0,1,255,0,0,2,252,0,0,0,7,253,0,0,2,252,0,0,0,47,248,191,255,255,255,255,255,240,127,240,191,255,255,255,255,255,240,31,192,191,255,255,255,255,255,240,2,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,33,33,41,38,3,253,21,85,85,85,85,85,85,0,0,127,255,255,255,255,255,255,64,0,127,255,255,255,255,255,255,64,0,127,255,255,255,255,255,255,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,5,80,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,245,85,85,85,85,191,64,0,11,255,255,255,255,255,255,64,0,11,255,255,255,255,255,255,64,0,11,255,255,255,255,255,255,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,20,0,11,240,0,0,0,0,0,47,128,11,240,0,0,0,0,0,47,192,11,240,0,0,0,0,0,63,192,11,240,0,0,0,0,0,63,192,11,240,0,0,0,0,0,127,128,7,248,0,0,0,0,0,255,64,3,255,165,85,85,85,107,255,0,3,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,244,0,0,27,255,255,255,255,255,128,0, + // 0x5e73 平 + 115,94,34,34,50,38,2,252,5,85,85,85,85,85,85,85,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,4,0,0,0,47,0,3,252,0,15,208,0,0,63,128,3,252,0,47,208,0,0,47,192,3,252,0,63,192,0,0,31,208,3,252,0,127,128,0,0,15,240,3,252,0,191,0,0,0,7,240,3,252,0,254,0,0,0,3,248,3,252,2,252,0,0,0,3,252,3,252,3,248,0,0,0,2,228,3,252,3,240,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,170,170,170,171,254,170,170,170,160,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x5e76 并 + 118,94,34,37,77,38,2,251,0,0,160,0,0,0,228,0,0,0,11,244,0,0,1,255,0,0,0,3,252,0,0,2,254,0,0,0,1,254,0,0,3,252,0,0,0,0,255,0,0,15,244,0,0,0,0,127,128,0,31,224,0,0,0,0,63,192,0,63,192,0,0,0,0,30,0,0,11,0,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,5,85,191,85,85,95,229,85,64,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,255,85,85,111,229,85,80,0,0,254,0,0,15,208,0,0,0,0,254,0,0,15,208,0,0,0,2,253,0,0,15,208,0,0,0,3,252,0,0,15,208,0,0,0,11,248,0,0,15,208,0,0,0,15,240,0,0,15,208,0,0,0,63,224,0,0,15,208,0,0,0,255,192,0,0,15,208,0,0,3,255,64,0,0,15,208,0,0,31,253,0,0,0,15,208,0,0,191,244,0,0,0,15,208,0,0,63,208,0,0,0,15,208,0,0,14,0,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e8a 床 + 138,94,36,36,68,38,1,252,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,253,85,85,85,85,85,85,84,1,252,0,0,0,84,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,63,255,255,255,255,255,252,1,252,63,255,255,255,255,255,252,1,252,63,255,255,255,255,255,252,1,252,21,85,95,255,149,85,84,2,252,0,0,47,255,192,0,0,2,252,0,0,127,255,240,0,0,2,252,0,0,255,255,244,0,0,3,248,0,2,255,255,253,0,0,3,248,0,7,249,252,255,0,0,3,248,0,15,241,252,127,192,0,3,244,0,63,209,252,47,240,0,7,240,0,255,129,252,11,253,0,11,240,3,255,1,252,3,255,64,15,240,31,252,1,252,0,255,224,15,224,191,240,1,252,0,63,253,31,210,255,192,1,252,0,15,253,63,192,254,0,1,252,0,2,244,63,128,56,0,1,252,0,0,96,191,0,0,0,1,252,0,0,0,47,0,0,0,1,252,0,0,0,5,0,0,0,1,252,0,0,0, + // 0x5e94 应 + 148,94,35,37,77,38,1,251,0,0,0,0,47,64,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,15,240,0,0,0,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,253,85,85,85,85,85,85,84,1,252,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,0,47,64,0,47,64,1,252,0,0,63,128,0,63,192,1,252,31,64,47,192,0,63,192,1,252,47,192,31,192,0,127,64,1,252,31,192,15,208,0,191,0,1,252,15,224,15,240,0,255,0,1,252,11,240,11,240,1,253,0,2,252,7,244,7,244,2,252,0,2,252,3,248,3,248,3,248,0,2,252,2,252,3,248,7,244,0,2,252,1,252,2,252,15,240,0,3,252,0,254,1,252,15,208,0,3,248,0,255,1,253,47,192,0,3,248,0,191,0,144,63,128,0,3,248,0,127,0,0,191,0,0,7,244,0,52,0,0,254,0,0,7,240,0,0,0,2,252,0,0,11,240,0,0,0,3,248,0,0,15,224,0,0,0,11,240,0,0,15,225,85,85,85,95,229,85,84,47,211,255,255,255,255,255,255,252,63,195,255,255,255,255,255,255,252,127,131,255,255,255,255,255,255,252,47,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e9f 废 + 159,94,35,37,77,38,1,251,0,0,0,0,43,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,224,0,0,0,0,85,85,85,95,245,85,85,84,2,255,255,255,255,255,255,255,252,2,255,255,255,255,255,255,255,252,2,255,255,255,255,255,255,255,252,2,252,0,0,1,0,0,0,0,2,252,1,232,3,244,2,0,0,2,252,3,252,7,240,31,192,0,2,252,3,248,11,240,15,240,0,2,252,7,244,15,240,7,252,0,2,252,15,240,15,224,1,254,0,2,252,31,224,31,208,0,180,0,2,252,63,255,255,255,255,255,240,2,252,63,255,255,255,255,255,240,2,252,47,255,255,255,255,255,240,2,252,21,0,191,0,0,0,0,2,252,0,0,254,0,0,0,0,3,252,0,1,253,0,0,0,0,3,248,0,3,252,0,0,0,0,3,248,0,7,255,255,255,248,0,3,248,0,15,255,255,255,253,0,3,244,0,47,255,255,255,252,0,3,244,0,127,240,0,15,244,0,7,244,0,255,252,0,63,224,0,11,240,3,254,255,64,191,192,0,11,240,15,248,63,211,255,0,0,15,224,127,240,15,255,252,0,0,15,226,255,192,3,255,240,0,0,31,223,255,0,7,255,248,0,0,47,199,248,0,191,255,255,208,0,63,129,208,47,255,230,255,255,144,127,64,2,255,254,0,47,255,248,47,0,0,255,224,0,1,191,240,6,0,0,121,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x5ea6 度 + 166,94,35,36,68,38,1,252,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,192,0,0,0,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,252,0,0,0,0,0,0,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,255,255,255,255,255,255,248,1,252,255,255,255,255,255,255,248,1,252,255,255,255,255,255,255,244,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,234,170,191,128,0,1,252,0,31,255,255,255,128,0,2,252,0,31,255,255,255,128,0,2,252,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,3,248,127,255,255,255,255,248,0,3,244,191,255,255,255,255,255,0,3,244,191,255,255,255,255,253,0,3,244,0,47,64,0,7,252,0,7,240,0,47,224,0,31,240,0,11,240,0,15,248,0,191,192,0,15,224,0,3,255,71,255,0,0,15,208,0,0,191,255,248,0,0,31,192,0,0,47,255,224,0,0,63,192,0,6,255,255,254,64,0,63,64,91,255,255,255,255,254,148,191,2,255,255,249,1,255,255,252,46,0,255,254,64,0,11,255,244,5,0,185,0,0,0,0,6,224, + // 0x5f00 开 + 0,95,34,35,59,38,2,251,5,85,85,85,85,85,85,85,64,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,15,240,0,0,85,85,127,149,85,95,245,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,191,0,0,15,240,0,0,0,0,191,0,0,15,240,0,0,0,0,255,0,0,15,240,0,0,0,0,254,0,0,15,240,0,0,0,2,253,0,0,15,240,0,0,0,3,252,0,0,15,240,0,0,0,7,252,0,0,15,240,0,0,0,15,244,0,0,15,240,0,0,0,47,240,0,0,15,240,0,0,0,127,208,0,0,15,240,0,0,1,255,128,0,0,15,240,0,0,7,255,0,0,0,15,240,0,0,47,252,0,0,0,15,240,0,0,191,240,0,0,0,15,240,0,0,47,192,0,0,0,15,240,0,0,10,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f03 弃 + 3,95,35,37,77,38,1,251,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,0,0,0,255,0,0,0,0,0,0,0,2,253,0,1,224,0,0,0,0,3,252,0,11,253,0,0,0,0,11,240,0,2,255,128,0,0,0,31,208,0,0,127,240,0,5,85,127,234,171,255,255,253,0,15,255,255,255,255,255,255,255,64,11,255,255,255,255,255,255,255,224,11,255,250,170,149,84,0,31,244,0,0,0,0,0,1,80,7,208,0,0,31,192,0,3,244,1,0,0,0,31,192,0,3,244,0,0,0,0,31,192,0,3,244,0,0,0,0,31,192,0,3,244,0,0,0,0,31,192,0,3,244,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,127,128,0,7,244,0,0,0,0,127,64,0,3,244,0,0,0,0,255,0,0,3,244,0,0,0,2,254,0,0,3,244,0,0,0,7,252,0,0,3,244,0,0,0,31,248,0,0,3,244,0,0,0,255,224,0,0,3,244,0,0,27,255,128,0,0,3,244,0,0,127,253,0,0,0,3,244,0,0,31,224,0,0,0,3,244,0,0,10,0,0,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f0f 式 + 15,95,35,36,68,38,2,252,0,0,0,0,2,168,1,0,0,0,0,0,0,3,252,15,128,0,0,0,0,0,3,252,47,240,0,0,0,0,0,3,252,11,253,0,0,0,0,0,3,252,1,255,0,0,0,0,0,3,252,0,126,0,0,0,0,0,3,252,0,24,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,86,254,85,85,80,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,31,255,255,255,240,255,0,0,0,31,255,255,255,240,255,0,0,0,31,255,255,255,240,191,0,0,0,5,85,254,85,80,191,0,0,0,0,0,253,0,0,127,64,0,0,0,0,253,0,0,63,128,0,0,0,0,253,0,0,63,192,0,0,0,0,253,0,0,63,192,0,0,0,0,253,0,0,47,192,0,0,0,0,253,0,0,31,208,1,0,0,0,253,0,0,15,240,2,208,0,0,253,0,4,15,240,2,248,0,0,253,22,252,7,248,2,248,0,0,255,255,252,3,252,3,244,1,111,255,255,252,2,254,3,244,127,255,255,254,80,0,255,71,240,127,255,254,64,0,0,191,255,240,63,250,64,0,0,0,63,255,208,41,0,0,0,0,0,11,255,192,0,0,0,0,0,0,1,254,0, + // 0x5f15 引 + 21,95,30,37,40,38,3,251,0,0,0,0,0,0,5,64,21,85,85,85,0,0,31,208,63,255,255,255,0,0,31,208,63,255,255,255,0,0,31,208,63,255,255,255,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,5,85,85,127,0,0,31,208,15,255,255,255,0,0,31,208,31,255,255,255,0,0,31,208,47,255,255,255,0,0,31,208,47,192,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,64,0,0,0,0,31,208,127,85,85,85,0,0,31,208,191,255,255,255,64,0,31,208,191,255,255,255,64,0,31,208,255,255,255,255,0,0,31,208,253,0,0,127,0,0,31,208,109,0,0,191,0,0,31,208,0,0,0,191,0,0,31,208,0,0,0,255,0,0,31,208,0,0,0,255,0,0,31,208,0,0,0,254,0,0,31,208,0,0,0,254,0,0,31,208,0,0,1,253,0,0,31,208,0,0,2,252,0,0,31,208,0,0,3,252,0,0,31,208,2,170,175,248,0,0,31,208,1,255,255,244,0,0,31,208,0,255,255,224,0,0,31,208,0,191,254,64,0,0,31,208,0,0,0,0,0,0,0,0, + // 0x5f39 弹 + 57,95,35,36,68,38,2,252,0,0,0,0,16,0,0,144,0,0,0,0,1,248,0,2,253,0,191,255,252,1,253,0,3,252,0,191,255,252,0,255,0,7,244,0,191,255,252,0,63,128,15,240,0,0,1,252,0,47,192,31,192,0,0,0,252,0,15,192,63,128,0,0,0,252,0,5,0,191,0,0,0,0,252,31,255,255,255,255,128,0,0,252,31,255,255,255,255,192,63,255,252,31,255,255,255,255,192,63,255,252,31,192,47,192,31,192,63,255,252,31,192,47,192,31,192,63,0,0,31,192,47,192,31,192,63,0,0,31,234,191,234,191,192,63,0,0,31,255,255,255,255,192,63,0,0,31,255,255,255,255,192,126,0,0,31,192,47,192,31,192,126,0,0,31,192,47,192,31,192,127,255,252,31,192,47,192,31,192,127,255,252,31,255,255,255,255,192,127,255,252,31,255,255,255,255,192,0,1,252,31,255,255,255,255,192,0,1,252,0,0,47,192,0,0,0,1,252,0,0,47,192,0,0,0,1,252,0,0,47,192,0,0,0,2,249,255,255,255,255,255,244,0,2,249,255,255,255,255,255,244,0,3,249,255,255,255,255,255,244,0,3,244,0,0,47,192,0,0,0,3,244,0,0,47,192,0,0,0,11,240,0,0,47,192,0,0,63,255,240,0,0,47,192,0,0,31,255,208,0,0,47,192,0,0,15,255,64,0,0,47,192,0,0,5,80,0,0,0,47,192,0,0, + // 0x5f52 归 + 82,95,32,37,40,38,3,251,0,0,168,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,252,5,85,85,85,85,0,0,252,15,255,255,255,254,190,0,252,15,255,255,255,254,190,0,252,15,255,255,255,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,0,252,0,0,0,0,254,190,1,252,0,0,0,0,254,190,1,252,3,255,255,255,254,190,1,252,3,255,255,255,254,190,1,252,3,255,255,255,254,190,1,252,1,85,85,85,254,190,1,252,0,0,0,0,254,190,2,252,0,0,0,0,254,190,3,252,0,0,0,0,254,190,3,248,0,0,0,0,254,0,3,248,0,0,0,0,254,0,7,244,0,0,0,0,254,0,15,240,0,0,0,0,254,0,15,224,0,0,0,0,254,0,47,208,0,0,0,0,254,0,127,192,63,255,255,255,254,0,255,64,63,255,255,255,254,3,255,0,63,255,255,255,254,15,252,0,21,85,85,85,254,47,244,0,0,0,0,0,254,11,224,0,0,0,0,0,254,2,64,0,0,0,0,0,84,0,0,0,0,0,0,0,0, + // 0x5f84 径 + 132,95,36,36,68,38,1,252,0,0,144,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,7,252,31,255,255,255,255,128,0,15,244,31,255,255,255,255,208,0,63,224,31,255,255,255,255,192,1,255,128,0,108,0,0,127,64,7,254,0,0,255,0,0,255,0,47,248,0,0,63,128,3,252,0,127,208,45,0,47,208,11,248,0,47,64,127,192,15,244,47,240,0,12,0,255,0,3,253,191,192,0,0,2,254,0,0,255,255,0,0,0,11,252,0,0,127,252,0,0,0,31,240,0,0,191,254,0,0,0,127,208,0,31,255,255,224,0,1,255,208,1,255,253,127,255,64,11,255,208,127,255,208,11,255,254,47,255,208,255,253,0,0,191,253,255,239,208,191,128,10,144,7,248,127,143,208,36,0,15,208,0,16,61,15,208,0,0,15,208,0,0,4,15,208,0,0,15,208,0,0,0,15,208,0,0,15,208,0,0,0,15,208,15,255,255,255,255,208,0,15,208,15,255,255,255,255,208,0,15,208,15,255,255,255,255,208,0,15,208,0,0,15,208,0,0,0,15,208,0,0,15,208,0,0,0,15,208,0,0,15,208,0,0,0,15,208,0,0,15,208,0,0,0,15,208,0,0,15,208,0,0,0,15,208,0,0,15,224,0,0,0,15,209,255,255,255,255,255,253,0,15,209,255,255,255,255,255,253,0,15,209,255,255,255,255,255,253,0,15,208,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,36,36,68,38,1,252,0,0,144,0,0,10,128,0,0,0,1,253,0,0,31,192,0,0,0,3,252,0,0,31,192,0,0,0,15,244,0,0,31,192,0,0,0,63,224,0,0,31,192,0,0,0,255,128,31,255,255,255,255,224,7,255,0,31,255,255,255,255,224,47,252,0,31,255,255,255,255,224,63,224,0,0,0,31,208,0,0,31,128,56,0,0,31,192,0,0,13,0,255,0,0,31,192,0,0,0,1,253,0,0,31,192,0,0,0,3,252,0,0,31,208,0,0,0,15,241,255,255,255,255,255,253,0,47,225,255,255,255,255,255,253,0,191,209,255,255,255,255,255,253,2,255,192,0,0,0,3,244,0,11,255,192,0,0,0,3,244,0,63,255,192,0,0,0,3,244,0,191,239,192,0,0,0,7,248,0,63,79,192,255,255,255,255,255,252,45,15,192,255,255,255,255,255,252,4,15,192,255,255,255,255,255,252,0,15,192,0,0,0,3,244,0,0,15,192,1,240,0,3,244,0,0,15,192,7,248,0,3,244,0,0,15,192,2,253,0,3,244,0,0,15,192,0,255,0,3,244,0,0,15,192,0,127,192,3,244,0,0,15,192,0,47,208,3,244,0,0,15,192,0,15,208,3,244,0,0,15,192,0,10,0,3,244,0,0,15,192,0,0,5,87,244,0,0,15,192,0,0,15,255,244,0,0,15,192,0,0,15,255,240,0,0,15,192,0,0,11,254,64,0, + // 0x5faa 循 + 170,95,36,36,68,38,1,252,0,1,144,0,0,0,0,0,0,0,3,252,0,0,0,1,191,0,0,11,244,0,0,90,255,255,192,0,47,224,62,191,255,255,254,64,0,191,128,63,255,255,254,64,0,2,255,0,63,254,148,253,0,0,11,252,0,63,0,0,253,0,0,63,240,0,63,0,0,253,0,0,127,192,96,63,0,0,253,0,0,46,0,254,63,255,255,255,255,253,4,2,252,63,255,255,255,255,253,0,7,248,63,255,255,255,255,253,0,15,240,63,0,0,252,0,0,0,47,208,63,0,0,252,0,0,0,191,192,63,0,0,252,0,0,1,255,192,63,0,1,252,0,0,7,255,192,63,15,255,255,255,240,31,255,192,63,15,255,255,255,240,191,255,192,63,15,255,255,255,240,191,159,192,63,15,192,0,11,240,62,31,192,127,15,192,0,11,240,24,31,192,127,15,229,85,91,240,0,31,192,127,15,255,255,255,240,0,31,192,190,15,255,255,255,240,0,31,192,190,15,192,0,11,240,0,31,192,254,15,192,0,11,240,0,31,192,253,15,229,85,91,240,0,31,192,252,15,255,255,255,240,0,31,193,252,15,255,255,255,240,0,31,194,248,15,192,0,11,240,0,31,195,244,15,192,0,11,240,0,31,199,240,15,192,0,11,240,0,31,207,240,15,255,255,255,240,0,31,207,208,15,255,255,255,240,0,31,194,192,15,229,85,95,240,0,31,192,64,15,192,0,6,160, + // 0x5fae 微 + 174,95,36,36,68,38,1,252,0,9,0,3,208,0,26,64,0,0,31,208,3,208,0,31,192,0,0,63,192,3,208,0,47,128,0,0,255,69,67,208,80,63,64,0,2,254,15,131,208,244,63,64,0,7,252,15,131,208,244,63,0,0,31,240,15,131,208,244,127,0,0,127,192,15,131,208,244,190,0,0,127,66,15,131,208,244,255,255,253,61,7,255,131,208,244,255,255,253,4,15,239,131,208,245,255,255,253,0,47,207,255,255,247,248,7,240,0,63,143,255,255,251,252,7,224,0,255,11,255,255,255,252,11,224,2,254,0,0,0,15,252,11,208,7,254,0,0,0,63,253,15,192,15,254,0,0,0,47,126,15,192,63,254,31,255,255,254,63,15,192,255,254,31,255,255,248,47,31,128,190,190,31,255,255,248,31,111,64,60,126,0,252,31,128,31,191,0,16,126,0,252,31,128,15,255,0,0,126,0,252,31,128,15,254,0,0,126,0,252,31,128,7,253,0,0,126,0,248,31,128,3,252,0,0,126,1,248,31,128,3,248,0,0,126,2,244,31,138,7,248,0,0,126,3,244,31,255,15,252,0,0,126,3,240,127,255,47,255,0,0,126,11,224,191,244,127,191,64,0,126,15,208,126,0,255,47,208,0,126,47,192,16,3,252,15,244,0,126,63,64,0,31,244,7,253,0,126,30,0,0,63,208,2,254,0,126,8,0,0,31,0,0,184,0,126,0,0,0,4,0,0,16, + // 0x5fc3 心 + 195,95,36,36,68,38,1,252,0,0,0,32,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,1,255,255,64,0,0,0,0,0,0,11,255,244,0,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,2,224,0,0,248,7,240,0,0,15,244,0,0,253,7,240,0,0,7,252,0,1,252,7,240,0,0,2,254,0,1,252,7,240,0,0,0,255,0,2,252,7,240,0,0,0,127,192,3,252,7,240,0,0,0,63,208,3,248,7,240,0,0,0,31,240,7,244,7,240,0,0,0,15,240,11,240,7,240,0,0,0,11,248,15,240,7,240,0,0,0,3,252,31,224,7,240,0,0,16,2,253,63,192,7,240,0,0,46,1,254,127,192,7,240,0,0,47,128,255,255,64,7,240,0,0,63,128,244,47,0,7,240,0,0,63,64,0,0,0,7,240,0,0,63,64,0,0,0,7,240,0,0,127,0,0,0,0,7,248,0,0,255,0,0,0,0,3,255,255,255,254,0,0,0,0,2,255,255,255,252,0,0,0,0,0,191,255,255,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x5ffd 忽 + 253,95,35,36,68,38,2,252,0,0,57,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,7,255,255,255,255,255,253,0,0,15,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,255,128,191,64,191,2,252,0,3,254,0,255,0,254,1,252,0,15,252,3,252,2,252,2,252,0,127,240,7,248,3,248,2,252,0,191,192,31,240,11,240,2,252,0,47,0,127,192,31,224,3,252,0,4,1,255,64,63,192,3,248,0,0,7,253,0,191,64,3,248,0,0,47,244,1,254,0,3,244,0,0,255,208,7,252,0,7,244,0,11,255,64,31,240,0,11,240,0,11,252,0,127,208,0,31,240,0,2,224,3,255,64,63,255,224,0,0,64,31,253,0,47,255,192,0,0,0,15,240,0,47,254,0,0,0,0,3,199,208,0,0,0,0,0,0,0,31,252,0,0,0,0,0,16,5,71,255,64,7,0,0,0,189,31,192,191,224,63,192,0,0,253,31,192,31,208,31,240,0,2,252,31,192,3,64,7,252,0,3,248,31,192,0,2,66,255,0,11,244,31,192,0,2,244,191,128,31,240,31,192,0,3,244,63,208,127,192,31,208,0,7,244,31,240,255,64,31,255,255,255,240,11,244,61,0,15,255,255,255,224,3,128,4,0,2,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x6027 性 + 39,96,35,36,68,38,1,252,0,47,192,0,0,7,224,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,253,11,240,0,0,0,47,192,1,253,11,240,0,0,0,47,192,1,252,11,240,0,0,0,47,192,2,252,11,240,0,0,0,47,196,3,248,11,240,0,0,9,47,254,3,244,11,240,0,0,15,111,255,7,255,255,255,255,240,31,111,223,139,255,255,255,255,240,31,111,207,207,255,255,255,255,240,47,47,203,239,229,95,245,85,80,47,47,199,255,192,11,240,0,0,63,47,194,127,128,11,240,0,0,62,47,192,191,64,11,240,0,0,125,47,192,255,0,11,240,0,0,189,47,192,29,0,11,240,0,0,188,47,192,0,0,11,240,0,0,4,47,192,0,0,11,240,0,0,0,47,192,7,255,255,255,255,208,0,47,192,7,255,255,255,255,208,0,47,192,7,255,255,255,255,208,0,47,192,1,85,95,245,85,64,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,255,255,255,255,255,252,0,47,192,255,255,255,255,255,252,0,47,192,255,255,255,255,255,252,0,47,192,85,85,85,85,85,84,0,42,128,0,0,0,0,0,0, + // 0x603b 总 + 59,96,34,36,68,38,2,252,0,0,24,0,0,2,64,0,0,0,0,253,0,0,3,248,0,0,0,0,255,0,0,11,248,0,0,0,0,63,192,0,15,240,0,0,0,0,47,208,0,47,208,0,0,0,0,15,240,0,63,192,0,0,0,0,11,244,0,191,64,0,0,0,21,87,213,85,255,85,64,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,128,0,0,0,47,208,0,0,63,128,0,0,0,47,208,0,0,63,128,0,0,0,47,208,0,0,63,128,0,0,0,47,208,0,0,63,128,0,0,0,47,208,0,0,63,128,0,0,0,47,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,21,85,85,213,85,85,64,0,0,0,0,7,224,0,0,0,0,0,0,0,15,252,0,0,0,0,1,0,127,66,255,64,1,240,0,7,240,127,64,191,208,7,248,0,11,240,127,64,47,244,2,253,0,15,224,127,64,11,248,0,255,0,15,208,127,64,2,208,0,127,128,47,192,127,64,0,64,16,47,208,63,192,127,64,0,0,126,15,240,127,64,127,64,0,0,191,7,240,255,0,127,128,0,0,255,3,224,125,0,63,255,255,255,253,1,64,4,0,47,255,255,255,252,0,0,0,0,11,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,36,36,68,38,1,252,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,130,255,255,255,255,255,253,0,47,130,255,255,255,255,255,253,0,47,150,255,255,255,255,255,253,5,47,253,95,229,85,85,85,84,15,47,189,11,208,0,105,0,0,15,47,175,11,208,0,190,0,0,31,47,159,11,208,0,190,0,0,31,47,143,139,208,0,190,0,0,31,47,139,203,208,0,190,0,80,47,47,135,203,211,208,190,0,252,62,47,129,15,211,224,190,1,248,61,47,128,15,211,224,190,2,244,188,47,128,15,211,208,190,3,240,184,47,128,15,199,208,190,7,224,0,47,128,15,203,192,190,11,192,0,47,128,15,207,192,190,15,192,0,47,128,15,207,128,255,31,64,0,47,128,31,223,0,255,27,0,0,47,128,31,129,0,255,0,0,0,47,128,47,128,2,255,128,0,0,47,128,63,64,3,255,192,0,0,47,128,63,64,7,235,208,0,0,47,128,63,0,15,215,240,0,0,47,128,191,0,47,195,244,0,0,47,128,254,0,127,65,252,0,0,47,129,252,0,255,0,255,0,0,47,130,252,3,252,0,127,192,0,47,131,244,31,248,0,47,240,0,47,139,240,191,224,0,15,253,0,47,143,225,255,128,0,3,254,0,47,135,192,190,0,0,0,252,0,47,128,64,32,0,0,0,32, + // 0x606f 息 + 111,96,36,36,68,38,1,252,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,253,0,0,0,0,0,7,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,250,170,170,170,175,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,250,170,170,170,175,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,250,170,170,170,175,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,0,0,0,144,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,254,0,0,0,0,0,120,5,81,255,128,1,240,0,0,191,15,224,63,208,7,252,0,0,254,15,224,15,240,3,255,0,2,252,15,224,7,224,0,255,128,3,252,15,224,2,64,64,63,224,11,244,15,224,0,0,248,15,244,31,240,15,224,0,0,252,7,252,127,208,11,244,0,2,252,2,253,47,128,11,255,255,255,248,0,252,6,0,3,255,255,255,240,0,144,0,0,0,191,255,255,128,0,0, + // 0x611f 感 + 31,97,36,36,68,38,1,252,0,0,0,0,1,248,14,64,0,0,0,0,0,1,252,63,244,0,0,0,0,0,1,252,27,254,0,0,0,0,0,1,252,1,252,0,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,248,0,255,255,255,255,255,255,255,244,0,252,0,0,0,190,0,0,0,0,252,0,0,0,127,0,80,0,0,252,255,255,254,63,0,253,0,0,252,255,255,254,63,66,252,0,1,252,85,85,84,47,131,248,0,1,252,0,0,0,31,199,240,0,1,252,0,0,0,15,223,240,0,2,248,127,255,252,11,255,192,0,2,248,127,255,252,7,255,128,0,3,244,126,85,252,3,255,0,16,3,240,125,0,252,3,253,0,120,7,240,125,0,252,15,255,0,125,15,224,126,85,252,63,255,128,189,31,208,127,255,253,255,239,240,252,63,192,127,255,255,255,15,255,252,127,64,0,2,65,248,3,255,244,63,0,0,11,224,96,0,127,208,12,0,0,15,253,0,0,0,0,0,16,6,162,255,128,0,160,0,0,62,11,240,127,224,7,248,0,0,127,11,240,15,192,3,254,0,0,255,11,240,3,0,128,255,128,1,253,11,240,0,0,248,63,208,3,252,11,240,0,0,252,15,240,15,244,11,240,0,2,252,7,248,63,224,11,255,255,255,248,3,253,47,192,3,255,255,255,240,0,244,6,0,1,255,255,255,208,0,64,0,0,0,0,0,0,0,0,0, + // 0x620f 戏 + 15,98,36,37,77,38,1,251,0,0,0,0,1,168,0,0,0,0,0,0,0,1,252,3,192,0,0,0,0,0,1,252,15,240,0,0,0,0,0,1,253,7,252,0,0,0,0,0,1,253,1,255,0,63,255,255,252,1,253,0,191,192,63,255,255,252,1,253,0,47,128,63,255,255,252,0,253,0,13,0,0,0,2,252,0,253,0,0,0,0,0,2,252,0,254,0,22,180,2,0,3,248,0,255,191,255,248,15,128,3,245,255,255,255,255,252,47,208,7,242,255,255,255,255,164,15,244,11,241,255,255,165,0,0,3,252,15,224,148,191,0,4,0,1,254,31,208,0,191,0,15,128,0,191,111,192,0,127,64,31,192,0,63,255,128,0,127,64,63,192,0,31,255,64,0,63,128,127,64,0,11,255,0,0,63,128,255,0,0,3,254,0,0,63,194,253,0,0,3,255,0,0,47,199,252,0,0,7,255,128,0,31,223,240,0,0,15,255,208,0,31,255,208,0,0,47,255,240,0,15,255,128,0,0,127,203,248,0,15,255,0,0,0,255,131,252,0,11,253,0,160,3,255,1,255,0,31,252,0,252,15,252,0,253,0,191,253,0,253,63,244,0,112,2,255,255,0,252,191,208,0,0,31,254,255,129,252,47,128,0,0,191,248,127,247,248,13,0,0,2,255,208,63,255,244,0,0,0,0,191,0,15,255,240,0,0,0,0,36,0,2,255,208,0,0,0,0,0,0,0,111,64,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,36,37,77,38,1,251,0,0,0,0,2,248,9,0,0,0,0,0,0,3,252,63,128,0,0,0,0,0,3,252,127,244,0,0,0,0,0,3,252,11,254,0,0,0,0,0,2,252,1,255,192,0,0,0,0,2,252,0,63,0,0,85,85,85,87,253,85,110,84,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,253,0,0,1,252,0,0,0,1,253,0,0,1,253,0,0,0,1,253,0,0,0,253,0,0,0,1,253,0,0,0,254,0,63,64,1,254,0,0,0,254,0,127,128,1,255,255,255,192,255,0,191,0,1,255,255,255,192,191,0,254,0,1,255,255,255,192,191,1,253,0,1,253,0,47,192,127,3,252,0,1,253,0,47,192,127,75,244,0,1,253,0,47,192,63,143,240,0,1,252,0,47,192,63,239,208,0,1,252,0,47,128,47,255,192,0,2,252,0,47,128,31,255,0,0,2,252,0,63,128,15,254,0,0,3,252,0,63,128,15,252,0,128,3,248,0,127,64,31,244,0,248,3,248,255,255,0,127,248,0,253,7,244,127,255,1,255,252,0,252,11,240,127,248,7,255,255,0,252,15,240,0,0,47,252,255,65,252,47,224,0,1,255,240,127,210,248,63,192,0,11,255,192,47,255,244,127,128,0,7,254,0,15,255,240,47,0,0,1,244,0,2,255,208,6,0,0,0,64,0,0,25,0,0,0,0,0,0,0,0,0,0, + // 0x6237 户 + 55,98,32,37,40,38,1,251,0,0,0,0,108,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128,0,0,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,213,85,85,85,86,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,192,0,0,0,1,253,0,63,213,85,85,85,85,253,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,255,255,255,255,255,253,0,63,128,0,0,0,1,253,0,63,64,0,0,0,1,253,0,127,64,0,0,0,0,84,0,127,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,254,0,0,0,0,0,0,1,253,0,0,0,0,0,0,2,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,47,64,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,36,36,68,38,1,252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,192,47,255,255,255,240,0,2,255,244,47,255,255,255,241,1,191,255,244,47,255,255,255,242,255,255,254,0,0,0,0,0,2,255,255,144,0,0,0,0,0,2,255,208,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,248,0,0,0,7,255,255,255,194,248,0,0,0,7,255,255,255,194,248,0,0,0,7,255,255,255,194,248,0,0,0,7,240,0,47,194,248,0,0,0,7,240,0,47,194,255,255,255,254,7,240,0,47,195,255,255,255,254,7,240,0,47,195,255,255,255,254,7,240,0,47,195,253,85,255,84,7,240,0,47,195,248,0,191,0,7,255,255,255,195,244,0,191,0,7,255,255,255,195,244,0,191,0,7,255,255,255,195,244,0,191,0,7,240,0,0,7,240,0,191,0,7,240,0,0,7,240,0,191,0,7,240,0,0,11,240,0,191,0,11,240,0,0,15,224,0,191,0,11,224,0,0,15,208,0,191,0,15,224,0,0,47,192,0,191,0,15,208,0,0,63,192,0,191,0,15,192,0,0,127,64,0,191,0,31,192,0,0,255,0,0,191,0,47,192,0,1,254,0,0,191,0,63,64,0,3,252,0,0,191,0,191,0,0,15,244,0,0,191,0,255,0,0,15,240,0,0,191,0,61,0,0,3,192,0,0,191,0,8,0,0,0,64,0,0,190,0, + // 0x6247 扇 + 71,98,34,34,50,38,1,252,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,0,0,0,127,0,0,191,0,0,0,0,0,127,0,0,191,0,0,0,0,0,127,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,170,170,170,170,170,170,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,191,255,252,127,255,255,128,0,190,191,255,252,127,255,255,128,0,254,106,171,252,42,170,191,128,0,254,5,0,252,2,0,47,128,0,253,63,64,252,31,192,47,128,0,252,31,208,252,11,240,47,128,1,252,11,240,252,3,248,47,128,2,252,3,240,252,0,244,47,128,3,248,0,64,252,0,64,47,128,3,244,0,44,252,0,27,111,128,11,240,6,253,252,2,255,175,128,15,241,191,253,252,127,254,47,128,31,211,255,208,252,255,224,47,128,63,194,249,0,252,126,0,47,128,127,128,128,0,252,16,0,63,128,191,0,0,255,252,0,31,255,128,29,0,0,127,248,0,15,255,0,0,0,0,62,144,0,11,232,0, + // 0x624b 手 + 75,98,34,37,77,38,2,251,0,0,0,0,0,0,27,64,0,0,0,0,0,5,175,255,208,0,0,5,106,191,255,255,255,240,0,7,255,255,255,255,255,249,64,0,3,255,255,255,255,164,0,0,0,3,255,250,151,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,7,255,255,255,255,255,255,255,0,7,255,255,255,255,255,255,255,0,7,255,255,255,255,255,255,255,0,1,85,85,87,253,85,85,85,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,87,253,85,85,85,80,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,1,85,91,252,0,0,0,0,0,1,255,255,248,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,36,36,68,38,1,252,0,11,224,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,2,170,170,170,170,168,0,11,240,3,255,255,255,255,253,0,11,240,3,255,255,255,255,253,0,11,240,3,255,255,255,255,253,21,95,245,80,0,0,63,192,0,63,255,255,248,0,0,63,192,0,63,255,255,248,0,0,63,192,0,63,255,255,248,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,4,0,0,63,192,0,0,11,246,252,0,0,63,192,0,0,15,255,252,0,0,63,192,0,6,255,255,252,0,0,63,192,0,127,255,255,64,0,0,63,192,0,63,255,240,0,0,0,63,192,0,47,239,240,0,0,0,63,192,0,20,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,15,240,0,0,0,63,192,0,15,255,224,0,11,255,255,192,0,11,255,208,0,3,255,255,128,0,7,255,64,0,3,255,254,0,0,1,64,0,0,1,234,144,0,0, + // 0x6267 执 + 103,98,36,37,77,38,1,251,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,0,47,128,0,7,240,0,0,0,63,255,255,127,255,255,255,244,0,63,255,255,127,255,255,255,244,0,63,255,255,127,255,255,255,244,0,0,47,192,0,11,240,7,244,0,0,47,128,0,11,240,3,244,0,0,47,128,0,11,240,3,244,0,0,47,128,0,11,224,3,244,0,0,47,128,0,15,224,3,240,0,0,47,128,11,15,224,3,240,0,0,47,223,159,239,208,3,240,0,0,47,255,191,255,208,3,240,0,2,255,255,199,255,208,3,240,0,127,255,253,0,191,248,3,240,0,127,255,192,0,47,255,3,240,0,63,255,128,0,63,255,211,240,0,40,47,128,0,127,191,255,240,0,0,47,128,0,191,11,247,240,0,0,47,128,0,254,1,211,240,0,0,47,128,1,253,0,3,240,0,0,47,128,3,252,0,3,244,0,0,47,128,11,244,0,3,244,116,0,47,128,31,240,0,3,244,126,0,47,128,63,208,0,2,248,125,0,47,128,255,128,0,1,252,189,5,127,135,255,0,0,0,254,252,31,255,143,252,0,0,0,255,252,15,255,7,240,0,0,0,127,244,11,248,1,192,0,0,0,31,208,0,0,0,0,0,0,0,0,0, + // 0x6279 批 + 121,98,36,36,68,38,1,252,0,63,64,5,64,0,168,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,21,127,149,15,208,0,253,0,0,127,255,255,15,208,0,253,0,0,127,255,255,15,208,0,253,0,128,127,255,255,15,208,0,253,2,240,0,63,64,15,208,0,253,11,248,0,63,64,15,229,80,253,63,244,0,63,64,15,255,248,254,255,208,0,63,64,15,255,248,255,255,0,0,63,64,15,255,248,255,244,0,0,63,64,15,208,0,255,192,0,0,63,175,15,208,0,254,0,0,0,63,255,15,208,0,253,0,0,27,255,255,15,208,0,253,0,0,191,255,248,15,208,0,253,0,0,127,255,64,15,208,0,253,0,0,62,127,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,64,0,63,64,15,208,0,253,0,184,0,63,64,15,208,0,253,0,190,0,63,64,15,208,20,253,0,189,0,63,64,15,235,252,253,0,253,0,63,70,255,255,252,254,0,252,0,127,75,255,255,228,255,255,252,47,255,3,255,228,0,127,255,248,31,254,3,148,0,0,47,255,224,15,244,0,0,0,0,0,0,0, + // 0x6296 抖 + 150,98,36,36,68,38,1,252,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,15,0,3,244,0,0,15,192,0,63,224,3,244,0,0,15,192,0,47,252,3,244,0,0,15,192,0,7,255,67,244,0,21,95,213,64,0,191,195,244,0,63,255,255,240,0,31,67,244,0,63,255,255,240,0,6,3,244,0,63,255,255,240,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,144,0,3,244,0,0,15,192,1,253,0,3,244,0,0,15,192,3,255,192,3,244,0,0,15,192,0,191,248,3,244,0,0,15,192,16,15,254,3,244,0,0,15,235,240,1,252,3,244,0,0,31,255,240,0,52,3,244,0,27,255,255,240,0,0,3,244,0,127,255,254,64,0,0,3,244,0,63,255,208,0,0,0,3,250,252,63,159,192,0,0,1,175,255,253,16,15,192,0,26,255,255,255,254,0,15,192,15,255,255,255,254,144,0,15,192,15,255,255,235,244,0,0,15,192,15,254,144,3,244,0,0,15,192,5,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,31,192,0,0,0,3,244,0,31,255,192,0,0,0,3,244,0,15,255,192,0,0,0,3,244,0,15,254,0,0,0,0,3,244,0,0,0,0,0,0,0,1,80,0, + // 0x62a5 报 + 165,98,36,36,68,38,1,252,0,10,144,0,0,0,0,0,0,0,15,224,1,85,85,85,85,64,0,15,224,3,255,255,255,255,192,0,15,224,3,255,255,255,255,192,0,15,224,3,255,255,255,255,192,0,15,224,3,244,0,0,31,192,0,15,224,3,244,0,0,47,192,21,95,229,67,244,0,0,47,192,63,255,255,211,244,0,0,63,192,63,255,255,211,244,0,0,127,128,63,255,255,211,244,15,255,255,64,0,15,224,3,244,11,255,255,0,0,15,224,3,244,2,255,228,0,0,15,224,3,244,0,0,0,0,0,15,224,3,248,0,0,0,0,0,15,224,3,255,255,255,255,240,0,15,224,3,255,255,255,255,240,0,15,235,211,255,255,255,255,240,0,15,255,227,246,252,0,15,224,6,255,255,227,244,252,0,31,208,191,255,255,147,244,254,0,47,192,127,255,224,3,244,127,0,63,128,63,255,224,3,244,63,128,191,0,57,15,224,3,244,47,208,255,0,0,15,224,3,244,15,242,253,0,0,15,224,3,244,7,255,252,0,0,15,224,3,244,3,255,240,0,0,15,224,3,244,0,255,224,0,0,15,224,3,244,0,191,208,0,0,15,224,3,244,1,255,248,0,0,15,224,3,244,11,255,255,0,0,15,224,3,244,127,246,255,224,21,111,208,3,250,255,208,127,253,63,255,208,3,255,255,0,31,248,47,255,192,3,245,248,0,2,240,31,249,0,2,160,128,0,0,0, + // 0x62ac 抬 + 172,98,36,37,77,38,1,251,0,15,208,0,0,164,0,0,0,0,15,208,0,0,255,64,0,0,0,15,208,0,0,255,0,0,0,0,15,208,0,2,253,0,0,0,0,15,208,0,3,252,0,0,0,0,15,208,0,3,248,0,0,0,0,15,208,0,11,244,0,144,0,21,95,229,64,15,240,7,240,0,127,255,255,208,31,208,3,252,0,127,255,255,208,47,192,1,254,0,127,255,255,208,63,128,0,191,64,0,15,208,0,127,0,0,63,192,0,15,208,0,255,106,175,255,224,0,15,208,63,255,255,255,255,244,0,15,208,63,255,255,255,255,252,0,15,208,63,255,255,169,86,253,0,15,208,101,80,0,0,0,254,0,15,239,224,0,0,0,0,180,0,31,255,224,0,0,0,0,0,7,255,255,240,0,0,0,0,0,191,255,254,67,255,255,255,255,192,127,255,208,3,255,255,255,255,192,63,159,208,3,255,255,255,255,192,16,15,208,3,253,85,85,127,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,248,0,0,47,192,0,15,208,3,255,255,255,255,192,0,31,208,3,255,255,255,255,192,15,255,192,3,255,255,255,255,192,15,255,192,3,248,0,0,63,192,11,254,0,2,248,0,0,42,128,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,35,37,77,38,1,251,0,31,192,0,0,7,224,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,21,111,213,64,0,7,240,0,0,127,255,255,192,0,7,240,0,0,127,255,255,207,255,255,255,255,248,127,255,255,207,255,255,255,255,248,0,31,192,15,255,255,255,255,248,0,31,192,15,229,91,245,87,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,219,207,208,7,240,3,248,0,31,255,207,208,7,240,3,248,2,255,255,223,255,255,255,255,248,191,255,254,79,255,255,255,255,248,191,255,208,15,255,255,255,255,248,127,255,192,15,229,91,245,87,248,52,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,229,91,245,87,248,0,31,192,15,255,255,255,255,248,0,31,192,15,255,255,255,255,248,0,47,192,15,255,255,255,255,248,31,255,192,15,208,0,0,3,248,15,255,64,15,208,0,0,3,248,15,249,0,11,208,0,0,1,164,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,36,37,77,38,1,251,0,31,192,0,7,240,1,0,0,0,31,192,0,7,240,15,128,0,0,31,192,0,7,240,47,244,0,0,31,192,0,7,240,11,255,0,0,31,192,0,7,240,0,255,208,0,31,192,0,7,240,0,47,224,0,31,192,0,7,240,0,7,192,21,111,213,64,7,240,0,1,0,127,255,255,218,175,250,170,170,168,127,255,255,223,255,255,255,255,252,127,255,255,223,255,255,255,255,252,0,31,192,0,11,240,0,0,0,0,31,192,0,11,240,0,0,0,0,31,192,0,15,240,0,0,0,0,31,192,0,15,244,0,42,0,0,31,192,0,15,248,0,63,0,0,31,192,0,15,252,0,127,0,0,31,199,192,15,252,0,191,0,0,31,255,192,31,253,0,254,0,2,255,255,208,47,255,0,253,0,191,255,254,64,63,191,65,252,0,191,255,208,0,63,111,194,252,0,127,255,192,0,127,15,195,244,0,56,31,192,0,191,11,231,240,0,0,31,192,0,254,7,255,240,0,0,31,192,1,252,2,255,208,0,0,31,192,3,252,0,255,192,0,0,31,192,3,244,0,255,128,0,0,31,192,15,240,1,255,208,0,0,31,192,31,224,7,255,244,0,0,31,192,63,192,15,255,253,0,0,31,192,191,64,127,226,255,128,0,47,194,255,2,255,128,191,244,31,255,203,252,15,254,0,31,254,15,255,67,240,7,248,0,3,252,15,249,0,208,1,208,0,0,112,0,0,0,0,0,0,0,0,0, + // 0x62e9 择 + 233,98,36,37,77,38,1,251,0,31,128,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,15,255,255,255,255,128,0,47,192,15,255,255,255,255,208,0,47,192,15,255,255,255,255,192,0,47,192,0,127,64,0,191,0,0,47,192,0,47,192,1,254,0,21,111,213,64,15,224,7,252,0,63,255,255,192,7,248,31,240,0,63,255,255,192,1,255,191,192,0,63,255,255,192,0,191,255,0,0,0,47,192,0,0,63,252,0,0,0,47,192,0,1,255,255,128,0,0,47,192,0,31,255,255,248,0,0,47,192,6,255,244,47,255,224,0,47,192,127,255,128,2,255,254,0,47,192,127,248,0,0,111,252,0,47,239,206,64,15,224,1,244,0,47,255,192,0,15,224,0,0,7,255,255,192,0,15,224,0,0,127,255,249,3,255,255,255,255,128,127,255,192,3,255,255,255,255,128,63,175,192,3,255,255,255,255,128,16,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,0,47,192,63,255,255,255,255,252,0,47,192,63,255,255,255,255,252,0,47,192,63,255,255,255,255,252,0,47,192,0,0,15,224,0,0,0,47,192,0,0,15,224,0,0,5,127,192,0,0,15,224,0,0,15,255,192,0,0,15,224,0,0,15,255,64,0,0,15,224,0,0,11,249,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,36,37,77,38,1,251,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,31,255,255,255,255,252,0,31,192,31,255,255,255,255,252,21,111,213,95,255,255,255,255,252,127,255,255,223,192,0,0,1,252,127,255,255,223,192,16,0,1,252,127,255,255,223,192,127,64,1,252,0,31,192,31,192,191,0,1,252,0,31,192,31,192,255,0,1,252,0,31,192,0,0,253,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,3,252,0,0,0,0,31,192,47,255,255,255,255,253,0,31,198,239,255,255,255,255,253,0,31,255,255,255,255,255,255,253,1,191,255,208,15,208,0,255,0,127,255,255,128,31,192,0,254,0,191,255,208,0,63,128,1,253,0,127,255,192,0,63,64,2,252,0,57,31,192,0,191,0,3,248,0,0,31,192,0,255,128,11,244,0,0,31,192,1,255,249,15,240,0,0,31,192,2,255,255,255,208,0,0,31,192,1,185,255,255,192,0,0,31,192,0,0,31,255,192,0,0,31,192,0,0,11,255,248,0,0,31,192,0,0,127,255,255,64,0,31,192,0,27,255,194,255,224,0,47,192,22,255,254,0,127,252,31,255,192,191,255,224,0,11,252,15,255,64,63,253,0,0,1,244,15,249,0,46,64,0,0,0,96,0,0,0,0,0,0,0,0,0, + // 0x6321 挡 + 33,99,34,36,68,38,1,252,0,31,192,0,0,6,160,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,7,208,11,240,7,224,0,47,192,11,240,11,240,11,240,0,47,192,7,240,11,240,15,224,0,47,192,3,248,11,240,15,208,21,111,213,66,252,11,240,47,192,63,255,255,192,252,11,240,63,128,63,255,255,192,254,11,240,63,0,63,255,255,192,191,11,240,190,0,0,47,192,0,126,11,240,253,0,0,47,192,0,16,11,240,108,0,0,47,192,0,0,11,240,0,0,0,47,192,5,85,95,245,85,80,0,47,192,15,255,255,255,255,224,0,47,192,15,255,255,255,255,224,0,47,198,207,255,255,255,255,224,0,47,255,192,0,0,0,11,224,6,255,255,192,0,0,0,11,224,191,255,254,64,0,0,0,11,224,191,255,192,0,0,0,0,11,224,127,175,192,11,255,255,255,255,224,16,47,192,11,255,255,255,255,224,0,47,192,11,255,255,255,255,224,0,47,192,0,0,0,0,15,224,0,47,192,0,0,0,0,11,224,0,47,192,0,0,0,0,11,224,0,47,192,0,0,0,0,11,224,0,47,192,0,0,0,0,11,224,0,47,192,63,255,255,255,255,224,0,47,192,63,255,255,255,255,224,47,255,192,63,255,255,255,255,224,15,255,64,21,85,85,85,95,224,15,253,0,0,0,0,0,11,224,0,0,0,0,0,0,0,5,80, + // 0x6324 挤 + 36,99,36,36,68,38,1,252,0,63,0,0,0,47,0,0,0,0,63,0,0,0,127,64,0,0,0,63,0,0,0,63,192,0,0,0,63,0,0,0,31,192,0,0,0,63,0,255,255,255,255,255,252,0,63,0,255,255,255,255,255,252,0,63,0,255,255,255,255,255,252,21,127,84,0,253,0,2,253,0,63,255,254,0,191,0,3,252,0,63,255,254,0,63,128,11,244,0,63,255,254,0,31,208,15,240,0,0,63,0,0,15,244,63,192,0,0,63,0,0,3,254,255,64,0,0,63,0,0,0,255,253,0,0,0,63,0,0,0,191,252,0,0,0,63,0,0,27,255,255,208,0,0,63,8,26,255,255,255,255,164,0,63,253,255,255,224,47,255,253,0,63,253,191,253,0,2,255,248,7,255,254,62,64,0,0,6,240,127,255,224,0,127,0,7,240,0,127,255,0,0,127,0,7,240,0,63,191,0,0,127,0,7,240,0,16,63,0,0,127,0,7,240,0,0,63,0,0,127,0,7,240,0,0,63,0,0,127,0,7,240,0,0,63,0,0,127,0,7,240,0,0,63,0,0,255,0,7,240,0,0,63,0,0,254,0,7,240,0,0,63,0,2,252,0,7,240,0,0,63,0,11,252,0,7,240,0,0,63,0,47,240,0,7,240,0,47,255,1,255,208,0,7,240,0,31,255,3,255,64,0,7,240,0,15,252,0,184,0,0,7,240,0,5,64,0,0,0,0,1,80,0, + // 0x635f 损 + 95,99,36,36,68,38,1,252,0,47,128,0,0,0,0,0,0,0,63,128,1,170,170,170,170,0,0,63,128,2,255,255,255,255,0,0,63,128,2,255,255,255,255,0,0,63,128,2,252,0,0,191,0,0,63,128,2,252,0,0,191,0,0,63,128,2,252,0,0,191,0,21,127,149,2,252,0,0,191,0,127,255,255,194,254,170,170,255,0,127,255,255,194,255,255,255,255,0,127,255,255,194,255,255,255,255,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,11,255,255,255,255,192,0,63,128,11,255,255,255,255,192,0,63,128,11,255,255,255,255,192,0,63,129,75,224,0,0,31,192,0,63,255,203,224,0,0,31,192,0,127,255,203,224,10,144,31,192,27,255,255,139,224,15,208,31,192,191,255,228,11,224,15,208,31,192,191,255,128,11,224,15,208,31,192,126,63,128,11,224,15,208,31,192,0,63,128,11,224,31,208,31,192,0,63,128,11,224,31,192,31,192,0,63,128,11,224,63,192,31,192,0,63,128,11,224,191,128,26,128,0,63,128,0,1,255,11,64,0,0,63,128,0,11,253,47,240,0,0,63,128,0,127,244,31,254,0,0,63,128,11,255,208,2,255,192,63,255,130,255,255,0,0,127,248,31,255,65,255,244,0,0,11,253,15,253,0,190,64,0,0,1,248,5,80,0,16,0,0,0,0,32, + // 0x6362 换 + 98,99,36,36,68,38,1,252,0,42,64,0,2,64,0,0,0,0,63,64,0,7,248,0,0,0,0,63,64,0,15,240,0,0,0,0,63,64,0,31,224,0,0,0,0,63,64,0,63,255,255,248,0,0,63,64,0,191,255,255,254,0,0,63,64,2,255,255,255,252,0,21,127,148,7,252,0,11,244,0,63,255,255,31,244,0,31,224,0,63,255,255,191,208,0,127,128,0,63,255,255,191,255,255,255,255,128,0,63,64,47,255,255,255,255,128,0,63,64,15,255,255,255,255,128,0,63,64,11,224,15,208,63,128,0,63,64,11,224,15,208,63,128,0,63,64,11,224,15,208,63,128,0,63,64,11,224,15,208,63,128,0,63,175,11,224,15,208,63,128,0,63,255,11,224,15,208,63,128,27,255,255,75,224,15,192,63,128,191,255,248,11,224,31,192,63,128,127,255,64,255,255,255,255,255,252,62,127,64,255,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,0,0,255,240,0,0,0,63,64,0,1,255,244,0,0,0,63,64,0,3,254,252,0,0,0,63,64,0,15,240,255,0,0,0,63,64,0,63,224,63,192,0,0,63,64,0,255,128,31,244,0,0,63,64,7,254,0,7,254,0,0,63,64,63,248,0,2,255,208,47,255,66,255,208,0,0,127,253,15,255,15,255,0,0,0,15,252,15,253,3,244,0,0,0,1,244,5,64,0,64,0,0,0,0,0, + // 0x6389 掉 + 137,99,36,37,77,38,1,251,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,192,0,0,21,127,149,0,0,31,192,0,0,127,255,255,64,0,31,192,0,0,127,255,255,95,255,255,255,255,192,127,255,255,95,255,255,255,255,192,0,63,128,31,255,255,255,255,192,0,63,128,31,192,0,0,31,192,0,63,128,31,192,0,0,31,192,0,63,128,31,192,0,0,31,192,0,63,128,31,255,255,255,255,192,0,63,128,31,255,255,255,255,192,0,63,175,95,234,170,170,191,192,0,63,255,159,192,0,0,31,192,6,255,255,159,192,0,0,31,192,127,255,254,31,192,0,0,31,192,127,255,208,31,255,255,255,255,192,63,255,128,31,255,255,255,255,192,36,63,128,31,255,255,255,255,192,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,130,255,255,255,255,255,253,0,63,130,255,255,255,255,255,253,0,63,130,255,255,255,255,255,253,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,127,128,0,0,31,192,0,0,63,255,64,0,0,31,192,0,0,47,255,0,0,0,31,192,0,0,31,248,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,36,36,68,38,1,252,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,63,255,255,255,255,248,0,63,64,63,255,255,255,255,248,0,63,64,63,255,255,255,255,248,0,63,64,63,0,0,0,1,248,0,63,64,63,2,160,63,1,248,21,127,149,63,3,240,63,1,248,127,255,255,63,7,240,63,1,248,127,255,255,42,7,240,63,0,0,127,255,255,0,15,224,63,0,80,0,63,64,0,31,208,63,0,125,0,63,64,0,127,192,63,64,189,0,63,64,6,255,0,63,255,252,0,63,64,127,253,0,47,255,248,0,63,64,63,224,0,11,255,224,0,63,91,14,0,15,208,0,0,0,63,255,0,0,15,208,0,0,0,127,255,0,0,15,208,0,0,111,255,255,0,0,15,208,0,0,191,255,224,127,255,255,255,255,252,127,255,64,127,255,255,255,255,252,57,63,64,127,255,255,255,255,252,0,63,64,0,2,255,255,0,0,0,63,64,0,3,255,255,64,0,0,63,64,0,15,255,255,192,0,0,63,64,0,47,223,223,240,0,0,63,64,0,191,143,215,252,0,0,63,64,2,255,15,210,255,0,0,63,64,15,252,15,208,191,192,0,63,64,127,240,15,208,63,244,0,63,67,255,192,15,208,15,254,0,127,67,255,0,15,208,3,252,47,255,0,244,0,15,208,0,180,31,254,0,0,0,15,208,0,0,15,244,0,0,0,15,208,0,0, + // 0x63a5 接 + 165,99,36,37,77,38,1,251,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,63,255,255,255,255,244,0,31,192,63,255,255,255,255,244,0,31,192,63,255,255,255,255,244,21,111,213,0,63,0,2,252,0,63,255,255,64,63,64,3,248,0,63,255,255,64,47,128,3,240,0,63,255,255,64,31,192,7,240,0,0,31,192,0,15,192,15,208,0,0,31,192,0,15,192,15,192,0,0,31,192,255,255,255,255,255,253,0,31,192,255,255,255,255,255,253,0,31,192,255,255,255,255,255,253,0,31,192,0,0,254,0,0,0,0,31,219,64,2,252,0,0,0,0,47,255,128,3,248,0,0,0,27,255,255,255,255,255,255,255,252,255,255,248,255,255,255,255,255,252,191,255,192,255,255,255,255,255,252,127,111,192,0,63,128,3,252,0,16,31,192,0,127,0,3,244,0,0,31,192,0,254,0,7,240,0,0,31,192,1,253,0,15,240,0,0,31,192,3,255,144,47,208,0,0,31,192,7,255,253,127,192,0,0,31,192,7,255,255,255,64,0,0,31,192,0,81,255,255,0,0,0,31,192,0,0,47,255,224,0,0,31,192,0,6,255,255,254,0,21,111,192,6,191,255,75,255,208,31,255,194,255,255,244,0,191,244,15,255,64,255,254,64,0,15,224,15,249,0,250,64,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,36,36,68,38,1,252,0,47,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,21,127,149,190,3,240,63,0,252,127,255,255,190,7,240,63,0,252,127,255,255,190,7,240,63,0,252,127,255,255,190,11,224,63,0,168,0,63,64,0,15,224,63,0,0,0,63,64,0,15,208,63,0,160,0,63,64,0,47,192,63,0,188,0,63,64,0,191,64,63,64,252,0,63,64,7,255,0,63,255,252,0,63,91,127,252,0,47,255,244,0,63,255,63,208,0,11,255,208,1,191,255,29,0,0,0,0,0,47,255,253,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,127,255,64,15,255,255,255,255,224,57,63,64,15,255,255,255,255,224,0,63,64,15,255,255,255,255,224,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,31,208,0,0,0,127,65,255,255,255,255,255,253,47,255,1,255,255,255,255,255,253,31,254,1,255,255,255,255,255,253,15,244,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,36,36,68,38,1,252,0,63,0,0,0,0,0,0,0,0,63,0,6,170,170,170,170,64,0,63,0,7,255,255,255,255,128,0,63,0,7,255,255,255,255,128,0,63,0,7,240,0,0,47,128,0,63,0,7,240,0,0,47,128,0,63,0,7,245,85,85,127,128,21,127,85,7,255,255,255,255,128,127,255,255,7,255,255,255,255,128,127,255,255,7,240,0,0,47,128,127,255,255,7,240,0,0,47,128,0,63,0,7,250,170,170,191,128,0,63,0,7,255,255,255,255,128,0,63,0,7,255,255,255,255,128,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,6,63,255,255,255,255,248,0,63,255,127,255,255,255,255,248,1,191,255,127,255,255,255,255,248,127,255,254,0,0,15,192,0,0,191,255,144,1,80,15,192,0,0,127,255,0,3,244,15,192,0,0,57,63,0,3,240,15,192,0,0,0,63,0,7,240,15,255,255,192,0,63,0,11,224,15,255,255,192,0,63,0,15,240,15,255,255,128,0,63,0,15,244,15,192,0,0,0,63,0,47,252,15,192,0,0,0,63,0,63,191,15,192,0,0,0,63,0,191,47,223,192,0,0,0,63,1,253,15,255,208,0,0,63,255,7,252,3,255,255,255,254,31,255,15,240,0,191,255,255,252,15,248,3,208,0,6,255,255,252,0,0,0,64,0,0,0,0,0, + // 0x63d2 插 + 210,99,35,36,68,38,1,252,0,47,64,0,0,0,0,0,0,0,63,64,0,0,0,1,111,64,0,63,64,0,1,90,255,255,192,0,63,64,47,255,255,255,255,224,0,63,64,31,255,255,255,164,0,0,63,64,15,250,175,208,0,0,0,63,64,0,0,15,208,0,0,21,127,149,0,0,15,208,0,0,127,255,255,0,0,15,208,0,0,127,255,255,191,255,255,255,255,252,127,255,255,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,0,63,64,0,0,15,208,0,0,0,63,64,0,0,15,208,0,0,0,63,64,0,1,15,208,0,0,0,63,64,0,15,143,208,0,0,0,63,64,57,191,255,215,255,240,0,63,175,63,255,239,215,255,240,0,63,255,63,249,15,215,255,240,11,255,255,63,128,15,208,3,240,191,255,248,63,64,15,208,3,240,191,255,64,63,64,15,208,3,240,127,127,64,63,64,15,208,3,240,16,63,64,63,255,143,211,255,240,0,63,64,63,255,143,211,255,240,0,63,64,63,255,143,211,255,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,255,255,255,255,240,0,127,64,63,255,255,255,255,240,47,255,0,63,255,255,255,255,240,31,254,0,63,64,0,0,3,240,15,244,0,47,64,0,0,3,240, + // 0x6536 收 + 54,101,36,36,68,38,1,252,0,0,6,160,0,169,0,0,0,0,0,11,240,0,254,0,0,0,0,0,11,240,1,253,0,0,0,0,0,11,240,2,252,0,0,0,1,80,11,240,3,252,0,0,0,3,240,11,240,3,248,0,0,0,3,240,11,240,11,244,0,0,0,3,240,11,240,15,255,255,255,254,3,240,11,240,31,255,255,255,254,3,240,11,240,47,255,255,255,254,3,240,11,240,63,229,85,111,228,3,240,11,240,191,208,0,47,192,3,240,11,240,255,240,0,63,192,3,240,11,243,255,240,0,63,128,3,240,11,251,255,244,0,127,64,3,240,11,255,247,248,0,191,0,3,240,11,255,226,252,0,254,0,3,240,11,247,192,253,1,253,0,3,240,11,241,64,254,3,252,0,3,240,11,240,0,191,3,248,0,3,240,11,240,0,63,139,240,0,3,240,11,240,0,63,207,240,0,3,240,111,240,0,31,255,208,0,3,255,255,240,0,15,255,192,0,47,255,255,240,0,7,255,64,0,127,255,255,240,0,3,254,0,0,63,253,11,240,0,11,255,0,0,63,64,11,240,0,47,255,192,0,0,0,11,240,0,191,255,240,0,0,0,11,240,2,255,143,252,0,0,0,11,240,31,253,7,255,64,0,0,11,240,191,244,1,255,224,0,0,11,251,255,208,0,127,253,0,0,11,251,255,0,0,31,253,0,0,11,243,248,0,0,2,248,0,0,11,225,128,0,0,0,96, + // 0x653e 放 + 62,101,36,37,77,38,1,251,0,2,248,0,0,30,128,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,63,192,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,64,0,0,0,2,252,0,0,127,0,0,0,63,255,255,255,208,191,0,0,0,63,255,255,255,208,255,255,255,253,63,255,255,255,209,255,255,255,253,21,127,85,85,66,255,255,255,253,0,63,0,0,3,253,85,127,212,0,63,0,0,7,252,0,63,128,0,63,0,0,15,252,0,63,64,0,63,0,0,15,253,0,127,0,0,63,255,255,63,254,0,191,0,0,63,255,255,127,255,0,254,0,0,63,255,255,255,191,0,253,0,0,63,64,191,191,63,65,252,0,0,63,0,127,45,47,195,252,0,0,63,0,127,4,31,195,248,0,0,63,0,191,0,15,231,240,0,0,127,0,191,0,11,255,240,0,0,127,0,191,0,7,255,208,0,0,191,0,190,0,3,255,192,0,0,190,0,190,0,1,255,128,0,0,253,0,190,0,0,255,0,0,0,253,0,190,0,2,255,128,0,1,252,0,254,0,7,255,208,0,3,252,0,254,0,31,255,240,0,7,248,0,253,0,127,239,252,0,15,240,0,253,2,255,131,255,0,31,224,0,253,15,254,1,255,208,63,192,2,252,191,248,0,127,252,255,130,255,254,255,224,0,31,253,63,1,255,244,255,0,0,3,244,12,0,255,208,116,0,0,0,160,0,0,0,0,0,0,0,0,0, + // 0x6570 数 + 112,101,36,36,68,38,1,252,0,0,190,0,0,7,160,0,0,2,192,190,3,208,11,240,0,0,11,224,190,7,240,15,240,0,0,3,240,190,15,208,15,224,0,0,2,248,190,47,192,15,208,0,0,1,252,190,63,0,31,192,0,0,0,224,190,9,0,63,192,0,0,63,255,255,255,252,63,255,255,253,63,255,255,255,252,127,255,255,253,63,255,255,255,252,191,255,255,253,0,3,255,128,0,255,85,111,212,0,15,255,248,1,255,0,47,192,0,127,255,255,67,255,64,63,192,2,254,190,63,247,255,128,63,128,31,248,190,11,223,255,192,63,64,127,224,190,1,159,255,192,127,0,47,64,190,0,63,223,208,191,0,8,2,253,0,63,143,224,254,0,0,3,244,0,15,11,241,253,0,0,11,240,0,1,7,246,252,0,127,255,255,255,252,3,251,252,0,127,255,255,255,252,2,255,244,0,127,255,255,255,252,1,255,240,0,0,191,0,127,0,0,255,224,0,0,253,0,254,0,0,191,192,0,2,252,0,253,0,0,191,192,0,3,255,66,252,0,1,255,224,0,15,255,251,248,0,7,255,240,0,11,239,255,240,0,15,255,252,0,0,66,255,240,0,127,243,255,0,0,1,255,254,1,255,192,255,192,0,31,255,255,223,255,0,127,244,27,255,244,191,255,252,0,47,253,63,255,128,31,255,240,0,7,252,31,248,0,2,47,128,0,1,240,10,0,0,0,8,0,0,0,16, + // 0x6572 敲 + 114,101,36,36,68,38,1,252,0,0,253,0,0,1,252,0,0,0,0,253,0,0,1,252,0,0,0,0,253,0,0,1,252,0,0,0,0,253,0,0,1,252,0,0,63,255,255,255,252,1,252,0,0,127,255,255,255,252,1,255,255,252,127,255,255,255,252,1,255,255,252,0,0,0,0,0,1,255,255,252,0,0,0,0,0,1,253,0,0,0,255,255,255,0,1,252,0,0,0,255,255,255,0,1,252,0,0,0,253,85,191,0,1,252,0,0,0,252,0,127,0,1,252,0,0,0,252,0,127,15,255,255,255,224,0,253,85,191,15,255,255,255,240,0,255,255,255,15,255,255,255,240,0,255,255,255,0,24,0,15,224,0,0,0,0,0,252,0,15,208,0,0,0,0,0,253,0,47,192,31,255,255,255,240,190,0,63,192,31,255,255,255,240,63,0,63,64,31,234,170,171,240,63,128,191,0,31,128,0,3,240,31,192,254,0,31,139,255,195,240,15,227,252,0,31,139,255,195,240,7,251,252,0,31,139,67,195,240,3,255,240,0,31,139,67,195,240,1,255,224,0,31,139,67,195,240,0,255,192,0,31,139,67,195,240,1,255,208,0,31,139,255,195,240,11,255,248,0,31,139,255,195,240,47,255,254,0,31,139,64,3,241,255,226,255,208,31,134,0,3,255,255,64,127,253,31,128,0,255,251,253,0,31,252,31,128,0,255,211,224,0,2,244,10,64,0,85,1,0,0,0,16, + // 0x6574 整 + 116,101,34,35,59,38,2,253,0,2,244,0,0,14,64,0,0,0,2,244,0,0,31,192,0,0,85,87,249,85,80,63,128,0,0,191,255,255,255,224,63,64,0,0,191,255,255,255,224,191,255,255,240,0,2,244,0,0,255,255,255,240,0,2,248,0,2,255,255,255,240,47,255,255,255,199,252,0,253,0,47,255,255,255,223,253,1,252,0,47,2,244,15,255,255,2,248,0,47,2,244,15,255,127,67,240,0,47,66,248,31,206,31,207,240,0,47,255,255,255,192,11,255,192,0,47,255,255,255,192,3,255,64,0,0,47,255,64,0,2,255,0,0,0,255,255,244,0,31,255,224,0,7,254,250,255,64,191,239,253,0,111,226,244,127,159,255,67,255,224,255,130,244,11,63,248,0,191,240,60,2,244,0,31,128,0,11,208,0,0,80,0,4,0,0,0,64,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,15,192,3,248,0,0,0,0,0,15,192,3,255,255,255,192,0,0,15,192,3,255,255,255,192,0,0,15,192,3,254,170,170,128,0,0,15,192,3,248,0,0,0,0,0,15,192,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x6599 料 + 153,101,36,36,68,38,1,252,0,2,160,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,20,0,0,1,252,0,63,7,240,63,2,208,1,252,0,47,7,240,126,3,252,1,252,0,31,71,240,189,3,255,65,252,0,15,135,240,252,0,191,209,252,0,15,199,240,252,0,31,241,252,0,11,199,241,244,0,3,209,252,0,7,215,242,240,0,0,129,252,0,7,215,243,224,0,0,1,252,0,3,71,241,208,0,0,1,252,0,0,7,240,0,8,0,1,252,0,63,255,255,255,47,64,1,252,0,63,255,255,255,127,240,1,252,0,63,255,255,255,31,253,1,252,0,21,111,245,85,2,255,65,252,0,0,63,248,0,0,127,1,252,0,0,63,253,0,0,29,1,252,0,0,191,255,64,0,0,1,252,0,0,255,255,192,0,0,1,252,0,1,251,251,240,0,0,1,253,188,3,247,243,248,0,0,27,255,253,7,231,241,253,0,111,255,255,254,15,215,240,253,191,255,255,255,228,31,199,240,116,255,255,255,252,0,63,71,240,16,255,249,65,252,0,191,7,240,0,164,0,1,252,0,126,7,240,0,0,0,1,252,0,60,7,240,0,0,0,1,252,0,20,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0, + // 0x659c 斜 + 156,101,36,36,68,38,1,252,0,0,255,0,0,0,0,127,0,0,2,255,192,0,0,0,127,0,0,3,255,240,0,0,0,127,0,0,11,255,253,0,30,0,127,0,0,31,227,255,64,191,128,127,0,0,63,192,255,208,63,240,127,0,0,191,64,63,240,11,252,127,0,2,254,0,15,252,2,254,127,0,7,252,0,3,240,0,190,191,0,31,240,0,1,208,0,56,127,0,127,255,255,255,128,0,0,127,0,255,255,255,255,128,0,0,127,0,61,255,255,255,128,112,0,127,0,20,0,127,0,1,253,0,127,0,0,0,127,0,2,255,64,127,0,0,0,127,0,0,127,208,127,0,0,0,127,0,0,31,244,127,0,63,255,255,255,248,7,252,127,0,63,255,255,255,248,1,240,127,0,63,255,255,255,248,0,64,127,0,0,0,127,0,0,0,0,127,0,0,0,127,0,0,0,0,127,253,1,144,127,7,64,0,6,255,254,3,248,127,31,192,27,255,255,254,3,240,127,15,199,255,255,255,228,7,240,127,11,227,255,255,255,0,11,224,127,3,243,255,144,127,0,15,208,127,3,246,144,0,127,0,47,192,127,2,252,0,0,127,0,63,64,127,0,252,0,0,127,0,191,0,127,0,244,0,0,127,0,45,0,127,0,0,0,0,127,0,4,0,191,0,0,0,0,127,0,0,63,255,0,0,0,0,127,0,0,63,253,0,0,0,0,127,0,0,47,228,0,0,0,0,127,0, + // 0x65ad 断 + 173,101,34,37,77,38,3,251,0,0,21,0,0,0,0,0,0,168,0,63,0,0,0,0,125,0,252,0,63,0,0,0,27,255,64,252,120,63,15,133,11,255,255,128,252,188,63,15,203,255,255,228,0,252,61,63,31,75,255,249,0,0,252,62,63,47,11,249,0,0,0,252,47,63,62,11,224,0,0,0,252,47,63,124,11,224,0,0,0,252,30,63,120,11,224,0,0,0,252,0,63,0,11,224,0,0,0,252,0,63,0,11,224,0,0,0,252,255,255,255,203,224,0,0,0,252,255,255,255,203,255,255,255,224,252,255,255,255,203,255,255,255,224,252,0,191,0,11,255,255,255,224,252,0,255,64,11,245,91,245,64,252,2,255,208,11,224,11,240,0,252,3,255,248,15,224,11,240,0,252,11,255,254,15,224,11,240,0,252,31,127,63,143,224,11,240,0,252,63,63,31,79,208,11,240,0,252,253,63,10,15,208,11,240,0,254,252,63,0,15,192,11,240,0,253,240,63,0,31,192,11,240,0,252,144,63,0,31,192,11,240,0,252,0,63,0,47,192,11,240,0,252,0,63,0,63,128,11,240,0,252,0,0,0,127,0,11,240,0,255,255,255,255,255,0,11,240,0,255,255,255,255,254,0,11,240,0,255,255,255,255,252,0,11,240,0,252,0,0,7,248,0,11,240,0,252,0,0,15,240,0,11,240,0,252,0,0,11,208,0,11,240,0,0,0,0,2,128,0,11,240,0,0,0,0,0,0,0,0,0,0, + // 0x65b0 新 + 176,101,36,36,68,38,1,252,0,0,169,0,0,0,0,0,0,0,0,253,0,0,0,0,27,208,0,0,253,0,0,0,6,255,244,0,0,253,0,0,145,191,255,244,47,255,255,255,241,255,255,254,0,47,255,255,255,241,255,254,64,0,47,255,255,255,241,254,64,0,0,0,180,0,57,1,252,0,0,0,1,248,0,127,1,252,0,0,0,0,252,0,189,1,252,0,0,0,0,189,0,252,1,252,0,0,0,0,126,1,248,1,252,0,0,0,0,121,1,180,1,252,0,0,0,63,255,255,255,249,255,255,255,253,63,255,255,255,249,255,255,255,253,63,255,255,255,249,255,255,255,253,0,0,253,0,1,253,85,254,84,0,0,253,0,1,252,0,253,0,0,0,253,0,1,252,0,253,0,63,255,255,255,241,252,0,253,0,63,255,255,255,241,252,0,253,0,63,255,255,255,242,252,0,253,0,0,3,254,0,2,248,0,253,0,0,11,255,64,3,248,0,253,0,0,15,255,224,3,244,0,253,0,0,63,255,252,3,240,0,253,0,0,255,255,255,7,240,0,253,0,2,252,253,127,207,240,0,253,0,11,244,253,31,79,208,0,253,0,47,240,253,10,47,192,0,253,0,191,192,253,0,63,128,0,253,0,63,0,253,0,255,0,0,253,0,12,0,253,2,254,0,0,253,0,0,0,253,3,252,0,0,253,0,0,0,253,0,244,0,0,253,0,0,0,253,0,32,0,0,169,0, + // 0x65b9 方 + 185,101,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,85,85,85,87,253,85,85,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,255,255,255,255,224,0,0,0,7,255,255,255,255,208,0,0,0,11,255,255,255,255,208,0,0,0,15,245,85,85,111,208,0,0,0,15,240,0,0,31,208,0,0,0,31,224,0,0,31,192,0,0,0,47,208,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,127,128,0,0,47,192,0,0,0,255,64,0,0,63,192,0,0,2,255,0,0,0,63,128,0,0,7,253,0,0,0,63,128,0,0,15,252,0,0,0,63,64,0,0,63,240,0,0,0,127,64,0,0,255,208,0,0,0,191,0,0,7,255,128,0,0,0,255,0,0,47,254,0,1,84,7,254,0,0,255,244,0,0,255,255,252,0,0,127,208,0,0,255,255,248,0,0,46,0,0,0,191,255,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x65e0 无 + 224,101,35,34,50,38,2,252,1,85,85,85,85,85,85,85,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,111,229,85,85,85,80,0,0,0,31,192,0,0,0,0,0,0,0,47,239,192,0,0,0,0,0,0,63,239,192,0,0,0,0,0,0,127,111,192,0,0,0,0,0,0,191,47,192,0,0,0,0,0,0,255,47,192,0,0,0,0,0,2,253,47,192,0,0,0,0,0,7,252,47,192,0,0,0,0,0,15,244,47,192,0,2,64,0,0,63,240,47,192,0,3,244,0,0,255,192,47,192,0,3,248,0,7,255,0,47,192,0,3,244,0,47,253,0,47,192,0,3,244,2,255,240,0,47,208,0,11,240,127,255,192,0,31,255,255,255,240,255,253,0,0,15,255,255,255,208,63,208,0,0,7,255,255,255,128,25,0,0,0,0,85,85,84,0, + // 0x65f6 时 + 246,101,34,36,68,38,3,252,0,0,0,0,0,0,10,128,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,255,255,255,64,0,0,31,192,0,255,255,255,64,0,0,31,192,0,255,255,255,64,0,0,31,192,0,253,0,63,64,0,0,31,192,0,253,0,63,69,85,85,111,229,64,253,0,63,79,255,255,255,255,208,253,0,63,79,255,255,255,255,208,253,0,63,79,255,255,255,255,208,253,0,63,64,0,0,31,192,0,253,0,63,64,0,0,31,192,0,253,0,63,64,0,0,31,192,0,255,255,255,64,176,0,31,192,0,255,255,255,67,252,0,31,192,0,255,255,255,65,254,0,31,192,0,253,0,63,64,255,0,31,192,0,253,0,63,64,127,192,31,192,0,253,0,63,64,47,208,31,192,0,253,0,63,64,15,240,31,192,0,253,0,63,64,11,248,31,192,0,253,0,63,64,3,252,31,192,0,253,0,63,64,1,248,31,192,0,253,0,63,64,0,208,31,192,0,253,0,63,64,0,0,31,192,0,255,255,255,64,0,0,31,192,0,255,255,255,64,0,0,31,192,0,255,255,255,64,0,0,31,192,0,253,0,0,0,0,0,31,192,0,253,0,0,0,0,0,31,192,0,253,0,0,0,0,0,47,192,0,0,0,0,0,11,255,255,192,0,0,0,0,0,3,255,255,192,0,0,0,0,0,3,255,254,0,0,0,0,0,0,1,85,80,0,0, + // 0x660e 明 + 14,102,33,36,68,38,3,251,0,0,0,0,85,85,85,85,0,0,0,0,0,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,253,0,0,127,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,252,0,0,63,64,253,0,47,129,252,0,0,63,64,253,0,47,129,252,0,0,63,64,253,0,47,129,255,255,255,255,64,253,0,47,130,255,255,255,255,64,255,255,255,130,255,255,255,255,64,255,255,255,131,248,0,0,127,64,255,255,255,131,244,0,0,63,64,254,85,85,7,240,0,0,63,64,253,0,0,15,240,0,0,63,64,253,0,0,15,208,0,0,63,64,253,0,0,63,192,0,0,63,64,0,0,0,127,128,0,0,63,64,0,0,0,255,64,0,0,63,64,0,0,2,254,0,0,0,63,64,0,0,11,252,0,1,85,191,0,0,0,47,244,0,3,255,255,0,0,0,31,208,0,2,255,254,0,0,0,7,64,0,1,255,228,0,0,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,36,36,68,38,1,251,0,42,170,170,170,170,170,164,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,213,85,85,85,87,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,42,170,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,0,0,127,0,0,0,0,0,1,164,0,127,0,0,0,0,0,3,252,0,127,0,0,0,0,0,3,248,0,127,0,0,0,0,0,7,244,0,127,255,255,255,0,0,11,240,0,127,255,255,255,0,0,15,248,0,127,255,255,255,0,0,47,253,0,127,0,0,0,0,0,63,255,0,127,0,0,0,0,0,191,191,208,127,0,0,0,0,1,255,31,248,127,0,0,0,0,7,252,11,255,255,0,0,0,0,31,248,1,255,255,255,255,255,253,127,224,0,47,255,255,255,255,252,47,128,0,1,191,255,255,255,248,10,0,0,0,0,5,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x6682 暂 + 130,102,34,37,77,38,2,251,0,11,144,0,0,0,0,5,0,0,15,240,0,0,0,22,255,0,170,191,250,170,145,191,255,255,192,255,255,255,255,226,255,255,249,0,255,255,255,255,226,254,148,0,0,1,252,0,0,2,244,0,0,0,3,244,42,0,2,244,0,0,0,11,224,63,0,2,244,0,0,0,47,192,63,0,2,244,0,0,0,127,255,255,255,242,255,255,255,240,63,255,255,255,242,255,255,255,240,63,255,255,255,226,255,255,255,240,0,0,63,0,3,244,7,240,0,0,0,63,0,3,240,7,240,0,0,5,191,255,215,240,7,240,0,191,255,255,255,219,224,7,240,0,191,255,255,250,79,208,7,240,0,191,169,127,0,47,192,7,240,0,0,0,63,0,63,128,7,240,0,0,0,63,0,31,0,7,240,0,0,0,21,0,1,0,1,80,0,0,106,170,170,170,170,170,144,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,0,0,0,0,15,224,0,0,127,0,0,0,0,15,224,0,0,127,85,85,85,85,95,224,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,0,0,0,0,15,224,0,0,127,0,0,0,0,15,224,0,0,127,0,0,0,0,15,224,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,255,255,255,255,255,224,0,0,127,0,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x66ab 暫 + 171,102,34,36,68,38,2,252,0,1,244,0,0,0,0,4,0,0,2,244,0,0,0,6,254,0,0,2,248,0,3,150,255,255,128,191,255,255,255,211,255,255,253,0,191,255,255,255,211,255,250,64,0,0,2,244,0,3,245,0,0,0,47,255,255,255,131,240,0,0,0,47,171,254,175,131,240,0,0,0,47,2,244,15,131,240,0,0,0,47,171,254,175,131,255,255,255,240,47,255,255,255,135,255,255,255,240,47,2,244,15,135,255,255,255,240,47,171,254,191,139,224,11,224,0,47,255,255,255,143,208,11,224,0,0,2,244,0,15,192,11,224,0,0,2,248,0,47,192,11,224,0,255,255,255,255,255,64,11,224,0,255,255,255,255,255,0,11,224,0,0,2,244,2,253,0,11,224,0,0,2,244,0,180,0,11,224,0,0,1,80,0,16,0,1,80,0,0,42,170,170,170,170,170,128,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,213,85,85,85,127,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,128,0, + // 0x66f4 更 + 244,102,35,34,50,38,2,252,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,2,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,255,170,171,255,170,171,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,7,64,7,244,0,0,0,0,0,63,192,15,240,0,0,0,0,0,15,244,31,224,0,0,0,0,0,7,253,127,192,0,0,0,0,0,1,255,255,64,0,0,0,0,0,0,127,255,0,0,0,0,0,0,1,191,255,228,0,0,0,0,0,111,255,255,255,250,84,0,0,111,255,254,27,255,255,255,255,244,191,255,208,0,111,255,255,255,240,63,249,0,0,0,107,255,255,224,9,0,0,0,0,0,0,85,64, + // 0x6700 最 + 0,103,34,35,59,38,2,252,0,21,85,85,85,85,85,64,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,0,0,0,0,15,208,0,0,63,0,0,0,0,15,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,64,0,0,0,31,208,0,0,63,0,0,0,0,15,208,0,0,63,85,85,85,85,95,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,2,248,0,127,0,0,0,0,0,2,248,0,127,0,0,0,0,0,2,255,255,255,63,255,255,254,0,2,255,255,255,63,255,255,255,0,2,254,170,191,43,250,170,255,0,2,248,0,127,3,240,0,253,0,2,248,0,127,3,244,3,252,0,2,255,255,255,1,252,7,244,0,2,255,255,255,0,255,31,240,0,2,254,170,191,0,63,191,192,0,2,248,0,127,0,47,255,64,0,2,248,0,191,0,15,254,0,0,6,255,255,255,0,47,255,64,0,255,255,255,255,1,255,255,224,0,255,255,255,255,31,255,111,254,64,254,148,0,127,255,248,3,255,240,0,0,0,127,63,128,0,127,208,0,0,0,127,24,0,0,6,128, + // 0x6709 有 + 9,103,34,37,77,38,2,251,0,0,0,164,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,127,213,85,85,85,85,64,0,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,255,255,255,255,255,208,0,0,15,255,255,255,255,255,208,0,0,31,255,255,255,255,255,208,0,0,63,252,0,0,0,31,208,0,0,255,252,0,0,0,15,208,0,3,255,252,0,0,0,15,208,0,15,254,252,0,0,0,15,208,0,63,242,255,255,255,255,255,208,0,255,210,255,255,255,255,255,208,0,255,2,255,255,255,255,255,208,0,60,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,85,111,192,0,0,2,252,0,0,255,255,192,0,0,2,252,0,0,127,255,128,0,0,2,252,0,0,63,249,0,0,0,0,0,0,0,0,0,0,0, + // 0x671f 期 + 31,103,34,37,77,38,1,251,0,84,0,21,0,0,0,0,0,0,253,0,63,64,0,0,0,0,0,253,0,63,64,63,255,255,240,0,253,0,63,64,63,255,255,240,0,253,0,63,64,63,255,255,240,63,255,255,255,252,63,64,7,240,63,255,255,255,252,63,0,3,240,63,255,255,255,252,63,0,3,240,0,253,0,63,128,63,0,3,240,0,253,0,63,64,63,0,3,240,0,253,0,63,64,63,0,7,240,0,255,255,255,64,63,255,255,240,0,255,255,255,64,63,255,255,240,0,255,255,255,64,63,255,255,240,0,253,0,63,64,63,0,3,240,0,253,0,63,64,63,0,3,240,0,253,0,63,64,63,0,3,240,0,255,255,255,64,127,0,3,240,0,255,255,255,64,127,0,3,240,0,255,255,255,64,127,0,7,240,0,253,0,63,64,127,255,255,240,0,253,0,63,64,127,255,255,240,0,253,0,63,64,127,255,255,240,127,255,255,255,252,190,0,3,240,127,255,255,255,252,190,0,3,240,127,255,255,255,252,254,0,3,240,0,0,0,16,0,253,0,3,240,0,62,64,180,0,252,0,3,240,0,127,66,252,1,252,0,3,240,0,255,0,255,2,252,0,3,240,2,253,0,127,131,248,0,3,240,7,248,0,47,199,244,0,3,240,31,240,0,15,239,240,5,91,240,127,208,0,11,95,224,15,255,240,31,128,0,0,11,192,11,255,224,2,0,0,0,2,128,7,254,64,0,0,0,0,0,0,0,0,0, + // 0x673a 机 + 58,103,36,36,68,38,1,252,0,2,164,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,5,85,85,80,0,0,3,244,0,31,255,255,248,0,0,3,244,0,31,255,255,248,0,0,3,244,0,31,255,255,248,0,0,3,244,0,31,192,2,248,0,0,3,244,0,31,192,2,248,0,63,255,255,254,31,192,2,248,0,63,255,255,254,31,192,2,248,0,63,255,255,254,31,192,2,248,0,21,91,249,84,31,192,2,248,0,0,15,244,0,31,192,2,248,0,0,15,244,0,31,192,2,248,0,0,31,248,0,31,192,2,248,0,0,47,253,0,31,192,2,248,0,0,63,255,64,31,192,2,248,0,0,191,255,192,31,192,2,248,0,0,255,255,240,31,192,2,248,0,1,251,247,252,31,192,2,248,0,3,243,244,254,47,192,2,248,0,7,227,244,190,63,128,2,248,0,15,211,244,60,63,128,2,248,0,47,195,244,16,63,64,2,248,0,127,67,244,0,63,0,2,248,0,191,3,244,0,191,0,2,248,20,61,3,244,0,255,0,2,248,31,40,3,244,0,254,0,2,248,47,0,3,244,2,252,0,2,248,47,0,3,244,3,252,0,2,248,47,0,3,244,11,244,0,2,248,47,0,3,244,31,240,0,2,252,63,0,3,244,63,208,0,2,255,254,0,3,244,127,128,0,1,255,253,0,3,244,31,0,0,0,191,248,0,2,164,4,0,0,0,0,0, + // 0x6740 杀 + 64,103,34,36,68,38,2,252,0,0,0,0,0,0,13,0,0,0,36,0,0,0,0,127,128,0,0,255,128,0,0,2,255,192,0,1,255,249,0,0,31,254,0,0,0,47,255,208,0,191,244,0,0,0,1,255,254,7,255,192,0,0,0,0,31,255,255,253,0,0,0,0,0,1,191,255,240,0,0,0,0,0,0,127,255,240,0,0,0,0,0,7,255,255,254,0,0,0,0,0,191,255,139,255,224,0,0,0,27,255,248,0,191,254,0,0,6,255,255,64,0,15,255,224,0,127,255,244,0,0,1,255,252,0,47,254,64,1,84,0,31,244,0,15,208,0,3,252,0,2,208,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,3,228,3,252,0,180,0,0,0,11,248,3,252,3,253,0,0,0,31,240,3,252,1,255,64,0,0,127,192,3,252,0,127,224,0,1,255,64,3,252,0,31,248,0,7,253,0,3,252,0,3,254,0,47,248,0,3,252,0,0,255,64,255,208,0,3,252,0,0,127,208,191,64,5,87,252,0,0,31,208,45,0,7,255,252,0,0,10,0,0,0,3,255,244,0,0,0,0,0,0,2,255,128,0,0,0,0, + // 0x675f 束 + 95,103,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,21,85,85,87,253,85,85,85,64,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,1,252,0,3,252,0,3,248,0,1,252,0,3,252,0,3,248,0,1,252,0,3,252,0,3,248,0,1,252,0,3,252,0,3,248,0,1,252,0,3,252,0,3,248,0,1,252,0,3,252,0,3,248,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,0,0,0,127,255,208,0,0,0,0,0,1,255,255,244,0,0,0,0,0,7,255,255,253,0,0,0,0,0,47,247,252,255,128,0,0,0,1,255,211,252,63,244,0,0,0,11,255,3,252,15,254,0,0,0,127,252,3,252,3,255,224,0,7,255,224,3,252,0,191,254,0,191,255,64,3,252,0,31,255,224,255,248,0,3,252,0,2,255,240,63,128,0,3,252,0,0,47,192,24,0,0,3,252,0,0,2,64,0,0,0,3,248,0,0,0,0, + // 0x6761 条 + 97,103,34,36,68,38,2,252,0,0,0,164,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,255,255,255,248,0,0,0,0,255,255,255,255,254,0,0,0,3,255,255,255,255,252,0,0,0,31,255,0,0,15,244,0,0,0,191,255,192,0,63,224,0,0,7,255,175,240,0,255,192,0,0,63,253,11,253,7,255,0,0,0,15,240,2,255,175,248,0,0,0,7,64,0,127,255,224,0,0,0,0,0,0,47,255,192,0,0,0,0,0,1,255,255,253,0,0,0,0,0,111,255,255,255,244,0,0,0,91,255,253,2,255,255,249,64,111,255,255,208,0,47,255,255,240,127,255,248,2,248,1,191,255,208,63,254,64,3,248,0,1,191,128,30,64,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,1,255,255,244,0,0,0,0,0,7,255,255,253,0,0,0,0,0,47,243,248,255,128,0,0,0,1,255,195,248,63,244,0,0,0,11,254,3,248,15,255,64,0,0,191,248,3,248,2,255,244,0,27,255,208,3,248,0,127,255,128,255,254,0,3,248,0,7,255,240,191,224,0,3,248,0,0,191,208,62,0,0,3,248,0,0,7,128,0,0,0,3,248,0,0,0,0, + // 0x6765 来 + 101,103,36,36,68,38,1,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,1,85,85,85,255,85,85,85,64,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,64,0,255,0,1,64,0,0,11,224,0,255,0,3,248,0,0,11,240,0,255,0,11,244,0,0,3,248,0,255,0,15,240,0,0,2,252,0,255,0,47,208,0,0,0,254,0,255,0,63,192,0,0,0,191,0,255,0,191,0,0,0,0,127,0,255,0,254,0,0,0,0,36,0,255,0,44,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,21,85,85,111,255,249,85,85,84,0,0,0,63,255,252,0,0,0,0,0,0,255,255,255,0,0,0,0,0,2,253,255,127,192,0,0,0,0,15,248,255,47,240,0,0,0,0,63,240,255,15,252,0,0,0,0,255,192,255,3,255,0,0,0,7,255,0,255,0,255,208,0,0,47,252,0,255,0,63,248,0,1,255,224,0,255,0,15,255,64,31,255,128,0,255,0,2,255,244,127,253,0,0,255,0,0,127,253,47,224,0,0,255,0,0,15,248,15,64,0,0,255,0,0,1,240,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0, + // 0x677f 板 + 127,103,36,36,68,38,1,252,0,7,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,21,85,85,85,80,0,11,224,0,255,255,255,255,252,0,11,224,0,255,255,255,255,252,0,11,224,0,255,255,255,255,252,0,11,224,0,254,0,0,0,0,0,11,224,0,254,0,0,0,0,63,255,255,244,254,0,0,0,0,63,255,255,244,254,0,0,0,0,63,255,255,244,254,0,0,0,0,21,95,245,80,254,0,0,0,0,0,31,224,0,255,255,255,255,224,0,47,224,0,255,255,255,255,244,0,63,240,0,255,255,255,255,240,0,63,252,0,255,248,0,11,240,0,191,254,0,255,252,0,15,224,0,255,255,64,254,252,0,31,208,1,255,255,192,253,254,0,47,192,2,251,235,240,253,127,0,63,128,3,235,227,249,252,63,64,127,64,11,219,225,245,252,47,192,255,0,15,203,224,225,252,31,209,254,0,47,139,224,66,252,15,243,252,0,127,11,224,3,248,7,251,248,0,190,11,224,3,244,3,255,240,0,60,11,224,7,240,0,255,208,0,40,11,224,11,240,0,255,192,0,0,11,224,15,224,2,255,224,0,0,11,224,31,208,11,255,248,0,0,11,224,63,192,47,251,254,0,0,11,224,127,129,255,209,255,208,0,11,224,255,11,255,64,127,253,0,11,225,254,15,253,0,31,253,0,11,224,124,7,224,0,2,244,0,11,224,4,2,64,0,0,96, + // 0x6797 林 + 151,103,36,36,68,38,1,252,0,1,252,0,0,0,190,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,21,86,253,85,5,85,255,85,80,63,255,255,255,31,255,255,255,248,63,255,255,255,31,255,255,255,248,63,255,255,255,31,255,255,255,248,0,3,252,0,0,2,255,128,0,0,7,254,0,0,3,255,192,0,0,15,255,128,0,7,255,208,0,0,15,255,224,0,15,255,224,0,0,47,255,244,0,15,255,240,0,0,63,254,253,0,47,255,248,0,0,127,252,255,0,63,255,252,0,0,254,252,127,192,191,254,253,0,1,249,252,47,64,253,254,127,0,3,245,252,14,3,252,254,63,64,11,241,252,4,7,244,254,47,192,15,209,252,0,15,240,254,15,208,63,193,252,0,63,208,254,15,240,191,65,252,0,191,128,254,7,252,127,1,252,2,255,0,254,3,254,44,1,252,3,253,0,254,0,252,20,1,252,0,248,0,254,0,176,0,1,252,0,160,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,254,0,0,0,1,252,0,0,0,190,0,0, + // 0x67f1 柱 + 241,103,36,36,68,38,1,252,0,3,240,0,0,28,0,0,0,0,3,240,0,0,191,64,0,0,0,3,240,0,0,255,224,0,0,0,3,240,0,0,47,252,0,0,0,3,240,0,0,7,255,0,0,0,3,240,0,0,0,255,192,0,0,3,240,0,0,0,63,128,0,0,3,240,0,85,85,95,85,84,63,255,255,252,255,255,255,255,252,63,255,255,252,255,255,255,255,252,63,255,255,252,255,255,255,255,252,21,95,245,84,0,1,253,0,0,0,15,240,0,0,1,253,0,0,0,15,240,0,0,1,253,0,0,0,47,244,0,0,1,253,0,0,0,63,252,0,0,1,253,0,0,0,63,255,0,0,1,253,0,0,0,191,255,192,0,1,253,0,0,0,255,255,224,0,1,253,0,0,1,251,247,244,63,255,255,255,248,3,243,242,253,63,255,255,255,248,7,227,240,253,63,255,255,255,248,15,211,240,120,21,86,254,85,80,47,195,240,32,0,1,253,0,0,63,67,240,0,0,1,253,0,0,191,3,240,0,0,1,253,0,0,61,3,240,0,0,1,253,0,0,40,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,15,255,255,255,255,254,0,3,240,15,255,255,255,255,254,0,3,240,15,255,255,255,255,254,0,3,240,5,85,85,85,85,84,0,2,160,0,0,0,0,0,0, + // 0x6821 校 + 33,104,36,36,68,38,1,252,0,6,144,0,0,2,160,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,1,85,87,249,85,84,0,11,224,11,255,255,255,255,252,0,11,224,11,255,255,255,255,252,63,255,250,171,255,255,255,255,252,63,255,255,240,0,0,0,0,0,63,255,255,240,7,128,0,180,0,21,95,229,80,15,240,3,252,0,0,31,224,0,31,208,0,255,0,0,47,224,0,63,192,0,127,192,0,63,240,0,255,64,0,47,224,0,63,248,2,254,0,0,15,244,0,191,253,11,252,0,1,67,252,0,255,255,31,251,192,3,253,253,1,255,255,139,207,224,3,248,248,2,255,239,210,7,240,7,244,64,3,235,231,240,3,248,15,240,0,11,219,226,240,2,252,31,224,0,15,203,224,208,0,254,63,192,0,47,139,224,64,0,191,191,64,0,63,11,224,0,0,63,255,0,0,190,11,224,0,0,31,253,0,0,61,11,224,0,0,15,252,0,0,40,11,224,0,0,47,254,0,0,0,11,224,0,0,191,255,128,0,0,11,224,0,2,255,191,240,0,0,11,224,0,31,253,31,253,0,0,11,224,0,191,244,7,255,208,0,11,224,27,255,192,1,255,253,0,11,224,63,253,0,0,63,252,0,11,224,31,224,0,0,11,244,0,11,208,10,0,0,0,0,160, + // 0x683c 格 + 60,104,36,36,68,38,1,252,0,11,224,0,0,121,0,0,0,0,11,224,0,0,255,0,0,0,0,11,224,0,0,254,0,0,0,0,11,224,0,3,252,0,0,0,0,11,224,0,7,255,255,255,64,0,11,224,0,15,255,255,255,128,0,11,224,0,47,255,255,255,64,0,11,224,0,127,192,0,255,0,63,255,255,245,255,208,1,253,0,63,255,255,251,255,240,3,252,0,63,255,255,255,251,248,7,244,0,21,95,245,127,225,253,31,240,0,0,31,224,15,192,255,63,192,0,0,47,244,3,0,63,255,64,0,0,63,252,0,0,31,254,0,0,0,63,255,0,0,15,253,0,0,0,127,255,128,0,127,255,128,0,0,191,255,208,2,255,255,240,0,0,255,231,240,15,255,47,254,0,1,255,227,240,191,248,7,255,224,3,251,225,219,255,208,0,255,254,7,235,224,255,255,0,0,47,252,15,203,224,127,255,255,255,255,248,31,203,224,47,191,255,255,255,144,63,75,224,0,127,255,255,255,128,191,11,224,0,127,0,0,63,128,125,11,224,0,127,0,0,63,128,56,11,224,0,127,0,0,63,128,16,11,224,0,127,0,0,63,128,0,11,224,0,127,0,0,63,128,0,11,224,0,127,0,0,63,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,0,0,63,128,0,6,144,0,106,0,0,42,64, + // 0x68af 梯 + 175,104,35,36,68,38,1,252,0,11,208,0,1,0,0,36,0,0,11,224,0,63,0,0,127,64,0,11,224,0,63,128,0,255,0,0,11,224,0,31,192,0,254,0,0,11,224,0,15,208,2,252,0,0,11,224,0,11,240,3,248,0,0,11,224,0,7,208,2,240,0,0,11,224,7,255,255,255,255,240,21,95,229,87,255,255,255,255,240,63,255,255,247,255,255,255,255,240,63,255,255,240,0,7,240,7,240,63,255,255,240,0,7,240,7,240,0,15,224,0,0,7,240,7,240,0,31,224,0,0,7,240,7,240,0,63,240,2,255,255,255,255,240,0,63,248,2,255,255,255,255,240,0,127,253,3,255,255,255,255,240,0,191,255,3,244,7,240,0,0,0,255,255,131,240,7,240,0,0,1,255,239,199,240,7,240,0,0,3,255,231,251,240,7,240,0,0,7,219,227,235,255,255,255,255,252,15,203,225,207,255,255,255,255,252,31,139,224,15,255,255,255,255,252,63,75,224,31,192,63,240,2,252,191,11,224,0,0,255,240,2,248,125,11,224,0,2,255,240,2,248,60,11,224,0,11,255,240,3,248,16,11,224,0,63,215,240,3,244,0,11,224,1,255,135,240,7,244,0,11,224,11,254,7,242,255,240,0,11,224,191,248,7,241,255,224,0,11,224,191,208,7,241,255,128,0,11,224,46,0,7,240,0,0,0,11,224,4,0,7,240,0,0,0,11,208,0,0,7,240,0,0, + // 0x68c0 检 + 192,104,36,36,68,38,1,252,0,31,128,0,0,15,128,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,63,192,0,0,0,31,192,0,0,255,240,0,0,0,31,192,0,2,255,248,0,0,0,31,192,0,7,250,254,0,0,0,31,192,0,15,240,191,192,0,63,255,255,64,63,192,47,240,0,63,255,255,64,255,64,11,253,0,63,255,255,67,253,0,2,255,64,21,127,213,31,248,0,0,191,224,0,63,192,191,224,0,0,47,253,0,63,211,255,255,255,255,251,253,0,127,243,254,63,255,255,241,252,0,191,248,244,63,255,255,240,52,0,255,252,64,0,0,0,0,0,1,255,254,0,0,0,0,0,0,2,255,239,64,0,1,0,5,0,3,255,207,193,128,47,0,15,208,7,239,207,79,192,31,64,15,192,15,223,198,11,208,15,128,31,128,31,159,192,3,240,15,192,63,64,63,95,192,3,240,15,192,63,0,127,31,192,2,244,11,192,190,0,126,31,192,1,248,11,208,252,0,60,31,192,0,252,7,225,248,0,24,31,192,0,252,7,227,240,0,0,31,192,0,252,0,3,240,0,0,31,192,0,0,0,11,208,0,0,31,192,0,0,0,15,192,0,0,31,192,0,0,0,47,64,0,0,31,192,255,255,255,255,255,244,0,31,192,255,255,255,255,255,244,0,31,192,255,255,255,255,255,244,0,31,192,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0, + // 0x69fd 槽 + 253,105,36,36,68,38,1,252,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,21,95,213,15,255,255,255,255,244,63,255,255,207,255,255,255,255,244,63,255,255,207,213,253,111,151,244,63,255,255,207,192,248,31,2,244,0,47,192,15,192,248,31,2,244,0,63,192,15,255,255,255,255,244,0,63,192,15,255,255,255,255,244,0,127,224,15,213,249,111,87,244,0,191,244,15,192,248,31,2,244,0,255,252,15,192,248,31,2,244,1,255,254,15,255,255,255,255,244,3,255,239,79,255,255,255,255,244,3,239,207,197,85,85,85,85,80,11,223,199,192,0,0,0,0,0,15,207,195,1,255,255,255,255,192,47,79,192,1,255,255,255,255,192,63,15,192,1,254,170,170,191,192,190,15,192,1,252,0,0,47,192,60,15,192,1,252,0,0,47,192,40,15,192,1,255,255,255,255,192,0,15,192,1,255,255,255,255,192,0,15,192,1,253,85,85,127,192,0,15,192,1,252,0,0,47,192,0,15,192,1,252,0,0,47,192,0,15,192,1,255,255,255,255,192,0,15,192,1,255,255,255,255,192,0,15,192,1,254,170,170,191,192,0,15,192,1,252,0,0,31,192, + // 0x6a21 模 + 33,106,36,37,77,38,1,251,0,47,128,0,15,208,7,240,0,0,47,128,0,15,208,7,240,0,0,47,128,0,15,208,7,240,0,0,47,128,63,255,255,255,255,248,0,47,128,63,255,255,255,255,248,0,47,128,63,255,255,255,255,248,0,47,128,0,15,208,7,240,0,21,111,213,0,15,208,7,240,0,63,255,255,64,15,208,7,240,0,63,255,255,70,170,170,170,170,128,63,255,255,75,255,255,255,255,192,0,47,128,11,255,255,255,255,192,0,63,192,11,224,0,0,31,192,0,63,208,11,224,0,0,31,192,0,127,240,11,245,85,85,111,192,0,191,248,11,255,255,255,255,192,0,255,253,11,255,255,255,255,192,1,255,255,11,224,0,0,31,192,2,255,175,139,224,0,0,31,192,3,255,143,203,255,255,255,255,192,7,255,139,139,255,255,255,255,192,15,239,130,6,170,175,234,170,128,31,175,128,0,0,31,192,0,0,63,111,128,0,0,47,192,0,0,127,47,128,0,0,47,192,0,0,190,47,128,255,255,255,255,255,252,60,47,128,255,255,255,255,255,252,40,47,128,255,255,255,255,255,252,0,47,128,0,0,255,254,0,0,0,47,128,0,3,252,127,64,0,0,47,128,0,15,248,63,224,0,0,47,128,0,191,224,15,253,0,0,47,128,27,255,128,3,255,228,0,47,130,255,253,0,0,191,253,0,47,128,255,208,0,0,15,248,0,47,128,120,0,0,0,0,176,0,0,0,0,0,0,0,0,0, + // 0x6a59 橙 + 89,106,36,36,68,38,1,252,0,15,208,0,0,0,25,0,0,0,15,208,11,255,244,126,5,0,0,15,208,15,255,252,63,31,64,0,15,208,15,255,252,63,191,128,0,15,208,0,2,244,47,253,0,0,15,208,4,3,240,15,224,32,0,15,208,15,75,240,15,224,248,0,15,208,47,255,208,7,247,253,63,255,255,219,255,192,3,255,244,63,255,255,209,255,64,1,255,192,63,255,255,208,255,255,255,255,0,21,95,229,66,255,255,255,255,128,0,47,208,11,255,255,255,239,224,0,63,208,47,240,0,0,15,252,0,63,224,255,192,0,0,3,255,0,127,244,255,0,0,0,0,252,0,191,252,61,255,255,255,255,96,0,255,255,0,255,255,255,255,64,1,255,255,128,254,170,170,191,64,2,255,223,208,252,0,0,63,64,3,239,215,240,252,0,0,63,64,11,223,210,192,252,0,0,63,64,15,207,208,64,254,170,170,191,64,47,143,208,0,255,255,255,255,64,127,15,208,0,255,255,255,255,64,190,15,208,0,1,0,1,144,0,60,15,208,0,47,64,2,252,0,40,15,208,0,31,192,3,248,0,0,15,208,0,15,192,7,240,0,0,15,208,0,15,208,11,224,0,0,15,208,0,11,224,15,192,0,0,15,208,0,7,128,11,128,0,0,15,208,127,255,255,255,255,253,0,15,208,127,255,255,255,255,253,0,15,208,127,255,255,255,255,253,0,15,208,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,34,34,50,38,2,254,0,0,0,0,106,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,21,0,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,170,170,170,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,170,191,234,170,191,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x6b63 正 + 99,107,34,32,32,38,2,253,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,21,85,85,85,255,85,85,85,64,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,85,85,84,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x6b65 步 + 101,107,34,36,68,38,2,252,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,5,64,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,0,31,192,2,255,255,255,240,0,0,31,192,2,255,255,255,240,0,0,31,192,2,255,255,255,240,0,0,31,192,2,253,85,85,80,0,0,31,192,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,85,111,213,87,253,85,85,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,2,252,0,0,0,0,0,2,144,2,252,0,0,0,0,0,7,252,2,252,0,6,0,0,0,15,244,2,252,0,15,240,0,0,63,224,2,252,0,31,224,0,0,255,192,2,252,0,63,208,0,7,255,0,2,252,0,127,192,0,47,252,0,2,252,0,255,64,0,191,240,0,3,252,2,254,0,0,47,192,7,255,248,11,252,0,0,10,0,3,255,244,47,244,0,0,0,0,2,255,144,191,224,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,47,254,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,127,255,192,0,0,0,0,0,111,255,253,0,0,0,0,2,191,255,255,208,0,0,0,0,2,255,255,249,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,185,64,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,36,35,59,38,1,253,0,26,128,0,0,168,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,7,128,0,47,192,0,1,253,0,47,208,0,47,192,0,1,253,1,255,244,0,47,255,255,193,253,31,255,208,0,47,255,255,193,254,255,254,0,0,47,255,255,193,255,255,224,0,0,47,229,85,65,255,253,0,0,0,47,192,0,1,255,144,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,160,0,47,192,0,1,253,0,0,190,0,47,192,0,17,253,0,0,190,0,47,192,91,241,253,0,0,254,0,47,239,255,245,253,0,0,253,1,191,255,255,244,253,0,0,253,127,255,255,254,64,255,85,87,252,63,255,254,64,0,255,255,255,248,63,254,64,0,0,127,255,255,240,25,0,0,0,0,11,255,255,128, + // 0x6ca1 没 + 161,108,35,36,68,38,2,252,1,0,0,0,0,0,0,0,0,3,208,0,1,85,85,85,0,0,15,253,0,15,255,255,255,0,0,11,255,192,15,255,255,255,0,0,1,255,240,15,255,255,255,0,0,0,31,240,15,224,0,127,0,0,0,2,192,15,224,0,127,0,0,0,0,64,15,224,0,127,0,0,0,0,0,15,208,0,127,1,208,0,0,0,31,192,0,127,1,248,0,0,0,63,192,0,127,1,244,61,0,0,191,128,0,127,2,244,255,208,2,255,0,0,127,255,240,255,252,11,253,0,0,63,255,240,31,255,31,248,0,0,11,255,128,1,255,3,208,0,0,0,0,0,0,60,1,64,0,0,0,0,0,0,4,3,255,255,255,255,248,0,0,0,3,255,255,255,255,253,0,0,0,3,255,255,255,255,252,0,0,0,1,87,213,85,91,248,0,0,3,128,15,240,0,15,240,0,0,7,224,7,244,0,47,224,0,0,15,240,3,252,0,127,192,0,0,47,208,1,255,0,255,64,0,0,63,192,0,191,195,254,0,0,0,191,64,0,63,255,252,0,0,0,255,0,0,15,255,240,0,0,2,253,0,0,7,255,192,0,0,3,252,0,0,47,255,244,0,0,11,244,0,2,255,255,255,64,0,31,240,1,191,255,199,255,249,0,63,208,111,255,253,0,191,255,244,47,192,63,255,208,0,31,255,240,7,0,47,248,0,0,0,191,208,0,0,13,0,0,0,0,2,128, + // 0x6ce2 波 + 226,108,35,36,68,38,1,252,0,0,0,0,0,47,128,0,0,0,244,0,0,0,47,192,0,0,3,255,0,0,0,47,192,0,0,3,255,224,0,0,47,192,0,0,0,127,252,0,0,47,192,0,0,0,11,248,21,85,111,213,85,64,0,1,240,191,255,255,255,255,252,0,0,0,191,255,255,255,255,252,0,0,0,191,255,255,255,255,248,0,0,0,191,0,47,192,7,240,0,0,0,191,0,47,192,15,240,14,0,0,191,0,47,192,15,208,63,224,0,191,0,47,192,47,192,127,254,0,191,0,47,192,7,64,11,255,192,191,0,47,192,0,0,0,191,128,191,255,255,255,255,64,0,31,0,191,255,255,255,255,128,0,0,0,191,255,255,255,255,64,0,0,0,191,191,0,0,191,0,0,0,0,190,63,0,0,254,0,0,0,0,254,63,128,2,253,0,0,3,64,254,31,192,3,252,0,0,7,224,253,15,240,7,244,0,0,15,240,253,7,248,15,240,0,0,15,224,252,2,253,63,208,0,0,47,193,252,0,255,191,128,0,0,63,130,252,0,127,255,0,0,0,191,3,248,0,47,253,0,0,0,255,7,244,0,47,253,0,0,2,253,11,240,0,255,255,128,0,3,252,15,224,7,255,255,244,0,11,244,31,208,127,253,47,255,64,31,240,63,203,255,240,7,255,248,31,208,191,79,255,128,0,191,252,3,192,127,7,248,0,0,11,240,0,0,5,2,128,0,0,0,160, + // 0x6ce8 注 + 232,108,36,36,68,38,1,252,0,64,0,0,6,0,0,0,0,0,253,0,0,31,208,0,0,0,3,255,192,0,63,252,0,0,0,1,255,248,0,31,255,128,0,0,0,47,254,0,2,255,240,0,0,0,2,252,0,0,127,252,0,0,0,0,120,0,0,15,253,0,0,0,0,0,0,0,2,248,0,0,0,0,0,85,85,85,245,85,80,0,0,0,255,255,255,255,255,248,0,0,0,255,255,255,255,255,248,14,0,0,255,255,255,255,255,248,63,244,0,0,0,47,192,0,0,127,255,0,0,0,47,192,0,0,11,255,208,0,0,47,192,0,0,0,191,192,0,0,47,192,0,0,0,15,64,0,0,47,192,0,0,0,1,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,5,85,111,213,85,64,0,0,0,31,255,255,255,255,208,0,0,112,31,255,255,255,255,208,0,0,252,31,255,255,255,255,208,0,1,253,0,0,47,192,0,0,0,3,252,0,0,47,192,0,0,0,11,244,0,0,47,192,0,0,0,15,240,0,0,47,192,0,0,0,47,208,0,0,47,192,0,0,0,127,192,0,0,47,192,0,0,0,255,64,0,0,47,192,0,0,2,254,0,0,0,47,192,0,0,3,252,3,255,255,255,255,255,253,15,248,3,255,255,255,255,255,253,3,240,3,255,255,255,255,255,253,0,208,1,85,85,85,85,85,84,0,0,0,0,0,0,0,0,0, + // 0x6d17 洗 + 23,109,35,36,68,38,2,252,1,0,0,0,0,127,0,0,0,11,208,0,15,224,127,0,0,0,31,248,0,15,224,127,0,0,0,11,255,64,31,208,127,0,0,0,1,255,208,47,192,127,0,0,0,0,47,208,63,192,127,0,0,0,0,7,64,63,255,255,255,255,192,0,0,0,127,255,255,255,255,192,0,0,0,255,255,255,255,255,192,0,0,1,254,85,191,85,85,64,16,0,2,252,0,127,0,0,0,125,0,7,248,0,127,0,0,0,255,192,15,244,0,127,0,0,0,255,244,15,240,0,127,0,0,0,47,254,1,192,0,127,0,0,0,3,255,0,0,0,127,0,0,0,0,188,15,255,255,255,255,255,244,0,20,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,5,85,255,85,254,85,80,0,0,0,0,254,0,252,0,0,0,14,0,0,253,0,252,0,0,0,15,192,0,253,0,252,0,0,0,47,192,1,252,0,252,0,0,0,63,128,2,252,0,252,0,0,0,191,0,3,252,0,252,0,0,0,254,0,3,248,0,252,0,64,2,252,0,11,240,0,252,0,244,3,252,0,15,240,0,252,0,252,11,244,0,63,208,0,252,0,252,15,240,0,255,192,0,253,1,252,47,208,7,255,0,0,253,2,248,63,192,127,252,0,0,255,255,244,47,64,127,240,0,0,191,255,240,7,0,47,128,0,0,47,255,192,0,0,8,0,0,0,0,0,0, + // 0x6d3b 活 + 59,109,35,36,68,38,2,252,0,0,0,0,0,0,0,36,0,3,192,0,0,0,0,27,253,0,15,248,0,0,1,107,255,255,0,15,255,128,26,255,255,255,254,0,2,255,240,255,255,255,254,64,0,0,47,240,127,255,255,64,0,0,0,7,208,62,148,63,0,0,0,0,0,64,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,16,0,1,85,85,127,149,85,80,62,0,11,255,255,255,255,255,244,255,224,11,255,255,255,255,255,244,127,253,11,255,255,255,255,255,244,11,255,64,0,0,63,0,0,0,0,254,0,0,0,63,0,0,0,0,28,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,127,64,0,0,0,3,64,63,255,255,255,255,0,0,7,208,63,255,255,255,255,0,0,15,240,63,255,255,255,255,0,0,31,208,63,0,0,0,127,0,0,63,192,63,0,0,0,127,0,0,191,64,63,0,0,0,127,0,0,255,0,63,0,0,0,127,0,2,253,0,63,0,0,0,127,0,7,252,0,63,0,0,0,127,0,15,244,0,63,0,0,0,127,0,47,224,0,63,255,255,255,255,0,127,192,0,63,255,255,255,255,0,63,128,0,63,255,255,255,255,0,11,0,0,63,64,0,0,127,0,0,0,0,63,0,0,0,42,0, + // 0x6d41 流 + 65,109,35,36,68,38,2,252,1,0,0,0,0,253,0,0,0,7,224,0,0,0,253,0,0,0,15,254,0,0,0,253,0,0,0,11,255,192,0,0,253,0,0,0,0,191,240,0,0,253,0,0,0,0,31,235,255,255,255,255,255,240,0,2,203,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,0,0,63,208,0,0,0,0,0,0,0,63,192,7,0,0,0,0,0,0,127,0,47,208,0,125,0,0,0,254,0,15,240,0,255,208,0,1,252,0,3,252,0,255,253,0,3,254,171,255,255,0,31,255,7,255,255,255,255,255,192,1,254,7,255,255,255,255,255,224,0,44,3,255,250,149,80,15,240,0,0,1,0,0,0,0,3,208,0,0,0,26,64,84,6,145,0,0,0,0,47,128,252,11,224,0,0,1,0,47,128,252,11,224,0,0,7,128,47,128,252,11,224,0,0,15,224,47,128,252,11,224,0,0,31,224,47,128,252,11,224,0,0,63,192,47,64,252,11,224,0,0,127,128,63,64,252,11,224,0,0,255,0,63,64,252,11,224,0,1,254,0,127,0,252,11,224,64,3,252,0,191,0,252,11,224,180,7,248,0,254,0,252,11,224,184,15,240,2,252,0,252,11,224,248,47,224,11,248,0,252,11,224,248,63,192,31,240,0,252,11,255,244,47,128,63,208,0,252,3,255,240,7,0,31,64,0,0,1,255,208,0,0,5,0,0,0,0,0,0, + // 0x6d4b 测 + 75,109,34,36,68,38,2,252,1,0,0,0,0,0,0,1,64,15,208,0,0,0,0,0,11,208,47,252,10,170,170,164,0,11,208,11,255,143,255,255,252,5,11,208,1,255,223,255,255,252,47,11,208,0,47,79,128,0,252,47,11,208,0,9,15,128,0,252,47,11,208,0,0,15,129,64,252,47,11,208,0,0,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,61,0,15,131,208,252,47,11,208,255,128,15,131,208,252,47,11,208,255,244,15,131,208,252,47,11,208,31,253,15,131,208,252,47,11,208,2,252,15,131,208,252,47,11,208,0,112,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,0,0,15,131,208,252,47,11,208,0,32,15,131,208,252,47,11,208,0,125,15,135,208,252,47,11,208,0,255,15,135,208,252,47,11,208,0,253,15,135,208,252,47,11,208,1,252,15,135,192,252,47,11,208,3,252,15,139,192,252,47,11,208,3,244,0,15,192,0,0,11,208,11,240,0,31,72,0,0,11,208,15,224,0,63,127,0,0,11,208,31,208,0,190,47,128,0,11,208,63,192,2,252,15,224,0,11,208,127,128,11,240,3,244,0,11,208,191,0,127,208,0,252,31,255,192,30,0,127,0,0,125,15,255,128,0,0,36,0,0,32,11,249,0, + // 0x6d88 消 + 136,109,34,37,77,38,2,251,1,0,0,0,0,127,0,0,0,7,192,0,20,0,127,0,9,0,31,248,1,252,0,127,0,31,208,15,255,64,254,0,127,0,63,192,1,255,208,191,64,127,0,63,128,0,63,224,63,192,127,0,191,0,0,11,128,47,208,127,1,254,0,0,1,0,15,240,127,3,252,0,0,0,0,11,224,127,3,244,0,0,0,0,2,0,127,0,96,0,0,0,0,0,0,127,0,0,0,56,0,0,191,255,255,255,255,0,255,128,0,191,255,255,255,255,0,255,244,0,191,255,255,255,255,0,31,254,0,191,85,85,85,191,0,2,255,0,191,0,0,0,127,0,0,125,0,191,0,0,0,127,0,0,24,0,191,0,0,0,127,0,0,0,0,191,255,255,255,255,0,0,0,0,191,255,255,255,255,0,0,0,0,191,255,255,255,255,0,0,7,0,191,0,0,0,127,0,0,15,192,191,0,0,0,127,0,0,15,208,191,0,0,0,127,0,0,47,192,191,0,0,0,127,0,0,63,128,191,255,255,255,255,0,0,191,0,191,255,255,255,255,0,0,254,0,191,255,255,255,255,0,2,253,0,191,0,0,0,127,0,3,252,0,191,0,0,0,127,0,11,244,0,191,0,0,0,127,0,15,240,0,191,0,0,0,127,0,63,208,0,191,0,0,80,191,0,63,192,0,191,0,1,255,255,0,15,64,0,191,0,0,255,254,0,2,0,0,191,0,0,191,228,0,0,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,36,35,59,38,1,253,0,0,0,0,0,47,128,0,0,0,224,0,0,0,47,128,0,0,3,254,0,1,0,63,128,4,0,7,255,208,11,240,63,128,31,208,0,191,248,15,208,63,128,63,192,0,15,252,31,192,63,64,127,128,0,1,240,47,128,63,64,255,0,0,0,64,127,64,127,2,252,0,0,0,0,255,0,191,3,244,0,0,0,0,124,0,255,209,224,0,0,0,0,0,2,255,252,0,0,14,0,0,0,7,255,255,128,0,63,208,0,0,31,244,255,248,0,127,253,0,0,191,224,31,255,0,11,255,128,31,255,128,2,255,224,0,255,194,255,253,0,0,63,240,0,31,0,255,208,63,128,11,208,0,0,0,121,0,63,128,1,128,0,0,0,0,0,63,128,0,0,0,0,0,11,144,63,64,15,144,0,2,0,15,208,63,64,31,240,0,3,208,31,192,63,64,63,192,0,11,240,63,128,127,192,127,128,0,15,240,127,64,191,192,255,0,0,47,208,255,0,255,226,253,0,0,63,194,253,1,255,247,248,0,0,191,64,184,3,255,252,160,0,0,255,0,0,11,250,254,0,0,2,254,0,0,31,240,255,64,0,7,252,0,0,191,208,127,224,0,15,244,0,11,255,128,31,253,0,31,240,6,255,253,0,7,255,228,15,208,15,255,240,0,0,255,253,2,192,7,255,64,0,0,31,244,0,0,2,144,0,0,0,0,160, + // 0x6df7 混 + 247,109,35,36,68,38,2,252,1,0,0,0,0,0,0,0,0,7,208,0,0,0,0,0,0,0,15,252,2,255,255,255,255,254,0,31,255,130,255,255,255,255,254,0,1,255,226,255,255,255,255,254,0,0,47,194,248,0,0,0,190,0,0,3,66,248,0,0,0,190,0,0,0,2,254,170,170,170,254,0,0,0,2,255,255,255,255,254,0,0,0,2,255,255,255,255,254,0,16,0,2,248,0,0,0,190,0,126,0,2,248,0,0,0,190,0,255,224,2,248,0,0,0,190,0,255,252,2,255,255,255,255,254,0,31,254,2,255,255,255,255,254,0,1,252,2,255,255,255,255,254,0,0,52,0,0,0,0,0,0,0,0,0,0,84,0,1,80,0,0,0,0,1,252,0,11,240,0,0,0,0,1,252,0,11,240,0,0,0,0,1,252,0,11,240,7,0,0,14,1,252,0,11,240,47,192,0,31,193,255,255,219,242,255,224,0,47,193,255,255,219,255,255,64,0,63,129,255,255,219,255,244,0,0,191,1,252,0,11,255,64,0,0,254,1,252,0,11,244,0,0,2,253,1,252,0,11,240,0,0,3,252,1,252,0,11,240,1,208,11,244,1,252,0,75,240,1,248,15,240,1,254,191,219,240,2,244,47,208,91,255,255,219,240,3,244,63,192,191,255,255,215,255,255,240,63,128,127,255,148,3,255,255,224,11,0,58,64,0,1,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x6e05 清 + 5,110,36,37,77,38,1,251,0,128,0,0,0,47,128,0,0,2,253,0,0,0,63,128,0,0,7,255,192,106,170,191,234,170,160,0,255,244,255,255,255,255,255,240,0,31,252,255,255,255,255,255,240,0,3,240,0,0,63,128,0,0,0,0,160,0,0,63,128,0,0,0,0,0,63,255,255,255,255,208,0,0,0,63,255,255,255,255,208,0,0,0,21,85,127,213,85,64,0,0,0,0,0,63,128,0,0,14,0,0,0,0,63,128,0,0,63,224,3,255,255,255,255,255,253,127,254,3,255,255,255,255,255,253,11,255,194,170,170,170,170,170,169,0,191,192,0,0,0,0,0,0,0,31,0,6,170,170,170,170,64,0,1,0,11,255,255,255,255,128,0,0,0,11,255,255,255,255,128,0,0,0,11,224,0,0,47,128,0,0,0,11,224,0,0,47,128,0,0,208,11,229,85,85,127,128,0,2,244,11,255,255,255,255,128,0,3,248,11,255,255,255,255,128,0,11,244,11,224,0,0,47,128,0,15,240,11,224,0,0,47,128,0,47,208,11,229,85,85,127,128,0,63,192,11,255,255,255,255,128,0,191,64,11,255,255,255,255,128,0,255,0,11,224,0,0,47,128,2,253,0,11,224,0,0,47,128,7,252,0,11,224,0,0,47,128,15,244,0,11,224,0,0,63,128,15,240,0,11,224,0,127,255,128,3,208,0,11,224,0,63,255,0,0,64,0,11,224,0,47,249,0,0,0,0,0,0,0,0,0,0, + // 0x6e29 温 + 41,110,35,35,59,38,2,252,3,208,0,0,0,0,0,0,0,11,253,0,191,255,255,255,252,0,11,255,192,191,255,255,255,252,0,1,255,244,191,255,255,255,252,0,0,31,240,190,0,0,2,252,0,0,2,208,190,0,0,2,252,0,0,0,0,190,0,0,2,252,0,0,0,0,191,255,255,255,252,0,0,0,0,191,255,255,255,252,0,0,0,0,191,255,255,255,252,0,36,0,0,190,0,0,2,252,0,191,64,0,190,0,0,2,252,0,255,240,0,190,0,0,2,252,0,127,254,0,191,255,255,255,252,0,7,255,0,191,255,255,255,252,0,0,189,0,191,255,255,255,252,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,0,0,6,3,255,255,255,255,255,0,0,15,195,255,255,255,255,255,0,0,31,211,244,47,3,224,63,0,0,63,195,244,47,3,224,63,0,0,127,67,244,47,3,224,63,0,0,255,3,244,47,3,224,63,0,1,253,3,244,47,3,224,63,0,3,252,3,244,47,3,224,63,0,11,244,3,244,47,3,224,63,0,15,240,3,244,47,3,224,63,0,47,208,3,244,47,3,240,127,0,127,192,255,255,255,255,255,255,244,63,64,255,255,255,255,255,255,244,11,0,255,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x6e38 游 + 56,110,35,37,77,38,2,251,0,0,0,63,64,1,164,0,0,15,128,0,63,64,2,252,0,0,47,244,0,63,64,3,248,0,0,31,255,0,63,64,3,244,0,0,2,255,128,63,64,7,240,0,0,0,127,0,63,64,11,255,255,244,0,13,255,255,255,207,255,255,244,0,0,255,255,255,239,255,255,244,0,0,255,255,255,255,213,85,80,0,0,87,249,85,191,64,0,0,0,0,3,244,0,255,0,0,0,61,0,3,244,1,254,0,0,0,255,208,3,240,0,127,255,255,208,255,248,3,240,0,11,255,255,240,31,253,3,244,0,7,255,255,224,2,248,3,255,255,64,0,63,192,0,48,3,255,255,64,0,191,0,0,0,7,255,255,64,6,253,0,0,0,7,240,63,64,15,244,0,0,0,11,240,63,0,15,224,0,0,0,11,224,63,0,15,208,0,0,160,11,224,63,63,255,255,244,0,253,15,208,63,63,255,255,244,0,253,15,192,63,63,255,255,244,2,252,15,192,63,0,15,224,0,3,248,31,192,63,0,15,208,0,7,244,47,128,63,0,15,208,0,11,240,63,64,127,0,15,208,0,15,224,127,0,127,0,15,208,0,31,208,254,0,127,0,15,208,0,47,193,252,0,190,0,15,208,0,63,131,252,0,254,0,15,208,0,191,71,244,1,253,0,15,208,0,255,15,224,255,252,15,255,208,0,46,7,192,191,248,15,255,192,0,0,1,64,127,224,11,254,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,35,37,77,38,2,251,1,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,31,253,3,255,255,255,255,255,240,11,255,131,255,255,255,255,255,240,1,255,211,255,255,255,255,255,240,0,47,131,244,0,11,244,0,0,0,7,3,240,0,11,240,0,0,0,0,3,240,0,15,240,0,0,0,0,3,240,0,15,208,0,0,0,0,3,240,255,255,255,255,192,0,0,3,240,255,255,255,255,192,61,0,3,240,254,170,170,191,192,255,192,3,240,252,0,0,47,192,255,248,7,240,252,0,0,47,192,31,254,7,240,254,85,85,127,192,2,252,7,240,255,255,255,255,192,0,116,7,240,255,255,255,255,192,0,0,7,240,252,0,0,47,192,0,0,7,240,252,0,0,47,192,0,0,11,240,252,0,0,47,192,0,0,11,240,255,255,255,255,192,0,40,15,224,255,255,255,255,192,0,63,15,224,170,175,250,170,64,0,127,15,208,0,11,240,0,0,0,255,15,208,16,11,240,24,0,1,253,31,192,127,11,240,254,0,2,252,47,192,254,11,240,191,0,3,248,63,129,252,11,240,63,192,11,244,63,67,252,11,240,47,208,15,240,191,7,244,11,240,15,240,31,208,255,15,224,11,240,11,244,63,193,253,63,192,11,240,3,248,127,131,252,31,64,11,240,2,224,191,11,244,2,11,255,224,0,0,14,7,240,0,3,255,208,0,0,0,0,80,0,3,254,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x6ea2 溢 + 162,110,35,36,68,38,2,252,2,0,0,0,0,0,0,0,0,11,224,0,0,15,255,253,0,0,31,253,0,5,15,255,255,0,0,11,255,128,15,223,255,255,64,0,0,255,192,47,192,0,63,192,0,0,47,64,127,128,0,31,224,0,0,6,0,255,0,0,11,248,0,0,0,3,253,0,0,3,255,0,0,0,15,251,255,255,255,255,224,0,0,63,227,255,255,254,63,224,0,0,31,131,255,255,253,11,128,61,0,6,0,0,0,0,1,0,255,208,0,0,0,0,0,0,0,255,248,0,0,15,255,255,0,0,31,254,0,0,15,255,255,64,0,2,252,0,10,79,255,255,192,0,0,112,0,31,208,0,31,208,0,0,0,0,63,192,0,15,240,0,0,0,0,255,0,0,11,248,0,0,0,2,254,0,0,3,254,0,0,0,7,252,0,0,0,255,192,0,0,31,240,0,0,0,127,244,0,56,191,255,255,255,255,255,240,0,127,127,255,255,255,255,255,192,0,255,29,255,255,255,255,252,0,0,254,0,248,47,7,192,252,0,2,252,0,248,47,7,192,252,0,3,252,0,248,47,7,192,252,0,7,244,0,248,47,7,192,252,0,15,240,0,248,47,7,192,252,0,31,224,0,248,47,7,192,252,0,47,192,1,248,47,7,208,252,0,63,192,255,255,255,255,255,255,244,191,64,255,255,255,255,255,255,244,31,0,255,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x6ed1 滑 + 209,110,35,36,68,38,1,252,0,144,0,0,0,0,0,0,0,2,253,0,7,255,255,255,253,0,3,255,192,11,255,255,255,253,0,0,255,248,11,255,255,255,253,0,0,31,252,11,224,0,0,253,0,0,3,244,11,224,0,0,253,0,0,0,176,11,224,21,85,253,0,0,0,0,11,224,63,255,253,0,0,0,0,11,224,63,255,253,0,0,0,0,11,224,62,0,253,0,0,0,0,11,224,62,0,253,0,14,0,0,11,224,62,0,253,0,63,224,7,255,255,255,255,255,252,127,254,7,255,255,255,255,255,252,11,255,199,250,170,170,170,171,252,0,191,135,240,0,0,0,1,252,0,15,7,240,0,0,0,1,252,0,0,7,251,255,255,255,254,252,0,0,2,171,255,255,255,254,168,0,0,0,11,255,255,255,253,0,0,0,0,11,224,0,0,253,0,0,0,208,11,224,0,0,253,0,0,2,248,11,255,255,255,253,0,0,7,248,11,255,255,255,253,0,0,15,240,11,250,170,170,253,0,0,31,224,11,224,0,0,253,0,0,63,192,11,224,0,0,253,0,0,127,128,11,255,255,255,253,0,0,255,0,11,255,255,255,253,0,1,254,0,11,250,170,170,253,0,3,252,0,11,224,0,0,253,0,11,248,0,11,224,0,0,253,0,15,240,0,11,224,0,0,253,0,11,224,0,11,224,1,255,253,0,1,192,0,11,224,0,255,252,0,0,0,0,10,144,0,170,144,0, + // 0x6f0f 漏 + 15,111,34,36,68,38,2,252,6,0,0,0,0,0,0,0,0,15,208,11,255,255,255,255,255,128,63,252,15,255,255,255,255,255,128,11,255,143,255,255,255,255,255,128,1,255,207,208,0,0,0,47,128,0,63,15,208,0,0,0,47,128,0,14,15,208,0,0,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,255,255,255,255,255,128,0,0,15,255,255,255,255,255,128,0,0,15,255,255,255,255,255,128,36,0,15,208,0,0,0,0,0,191,64,15,208,0,0,0,0,0,255,244,15,255,255,255,255,255,240,47,255,15,255,255,255,255,255,240,3,253,15,255,255,255,255,255,224,0,120,15,208,0,15,128,0,0,0,0,15,208,0,15,128,0,0,0,0,15,234,170,191,234,170,128,0,0,15,255,255,255,255,255,208,0,0,15,255,255,255,255,255,208,0,112,31,239,0,15,128,11,208,0,189,31,239,4,15,136,11,208,0,254,47,175,126,15,175,75,208,1,252,47,175,47,223,159,219,208,3,252,63,111,11,223,131,219,208,3,248,63,47,1,79,128,139,208,7,240,127,47,0,15,132,11,208,15,240,190,47,60,15,174,11,208,31,208,253,47,127,15,175,139,208,47,193,252,47,31,223,139,219,208,63,130,252,47,7,223,130,139,208,191,67,244,47,0,15,128,11,208,255,11,240,47,0,15,129,95,208,45,2,208,47,0,15,130,255,192,0,0,64,47,0,15,129,254,64, + // 0x6fc0 激 + 192,111,35,37,77,38,2,251,0,0,0,14,128,0,248,0,0,11,128,0,31,208,0,253,0,0,31,244,0,47,192,0,252,0,0,31,254,0,63,128,1,252,0,0,2,255,175,255,255,194,252,0,0,0,127,47,255,255,194,248,0,0,0,13,47,170,175,195,244,0,0,0,0,47,0,15,195,255,255,248,0,0,47,0,15,199,255,255,248,0,0,47,255,255,203,255,255,248,0,0,47,255,255,207,224,47,192,61,0,47,149,95,223,224,47,128,255,192,47,0,15,255,224,47,64,255,244,47,0,15,255,240,63,64,31,252,47,255,255,255,240,63,0,2,248,47,255,255,255,240,63,0,0,112,26,191,234,254,244,63,0,0,0,0,31,192,56,248,126,0,0,0,0,31,192,0,252,190,0,0,0,255,255,255,244,188,253,0,0,0,255,255,255,244,125,252,0,0,52,255,255,255,244,63,252,0,0,126,0,252,0,0,63,248,0,0,191,0,252,0,0,47,240,0,0,253,1,255,255,192,15,240,0,2,252,1,255,255,192,15,208,0,3,252,2,255,255,192,31,240,0,7,244,3,244,15,192,63,244,0,11,240,3,240,31,192,191,252,0,15,224,11,240,31,129,254,254,0,47,208,15,208,31,135,252,191,64,63,192,63,192,47,159,244,63,208,127,128,191,64,63,191,224,31,240,191,2,254,31,255,255,192,11,248,14,3,252,15,255,191,0,2,240,0,0,224,10,164,28,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x706f 灯 + 111,112,35,36,68,38,2,252,0,10,144,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,3,255,255,255,255,244,0,15,208,3,255,255,255,255,244,0,15,208,3,255,255,255,255,244,0,15,208,1,85,85,255,149,80,0,15,208,144,0,0,191,0,0,47,15,208,252,0,0,191,0,0,47,15,209,248,0,0,191,0,0,47,15,210,244,0,0,191,0,0,63,15,211,240,0,0,191,0,0,63,15,215,224,0,0,191,0,0,63,15,219,192,0,0,191,0,0,126,15,223,128,0,0,191,0,0,125,15,235,0,0,0,191,0,0,188,15,208,0,0,0,191,0,0,252,15,208,0,0,0,191,0,0,20,15,192,0,0,0,191,0,0,0,31,192,0,0,0,191,0,0,0,31,192,0,0,0,191,0,0,0,47,192,0,0,0,191,0,0,0,63,224,0,0,0,191,0,0,0,63,248,0,0,0,191,0,0,0,127,254,0,0,0,191,0,0,0,191,191,128,0,0,191,0,0,0,255,47,224,0,0,191,0,0,1,254,15,248,0,0,191,0,0,3,252,3,252,0,0,191,0,0,7,248,1,240,0,0,191,0,0,15,240,0,144,0,0,191,0,0,63,224,0,0,0,0,191,0,0,191,192,0,0,31,255,255,0,0,255,64,0,0,15,255,255,0,0,61,0,0,0,11,255,252,0,0,8,0,0,0,6,170,64,0,0, + // 0x70b9 点 + 185,112,34,36,68,38,2,252,0,0,0,3,244,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,255,255,255,255,64,0,0,0,3,255,255,255,255,64,0,0,0,3,255,255,255,255,64,0,0,0,3,249,85,85,85,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,21,85,87,249,85,85,64,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,15,240,0,0,254,0,0,0,0,15,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,21,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,1,160,0,0,254,2,160,6,240,11,240,0,2,253,3,240,7,244,3,252,0,3,252,3,244,3,248,1,254,0,11,244,3,248,1,252,0,255,0,31,240,3,248,0,254,0,63,192,63,208,2,252,0,255,0,47,208,255,128,2,252,0,127,0,15,240,191,0,2,252,0,62,0,11,208,8,0,1,64,0,16,0,1,0, + // 0x70ed 热 + 237,112,35,37,77,38,2,251,0,10,128,0,3,244,0,0,0,0,15,192,0,3,244,0,0,0,0,15,192,0,3,244,0,0,0,0,15,192,0,3,244,0,0,0,0,15,192,0,3,244,0,0,0,21,95,213,64,3,244,0,0,0,127,255,255,223,255,255,255,240,0,127,255,255,223,255,255,255,240,0,127,255,255,223,255,255,255,240,0,0,15,192,0,3,240,7,240,0,0,15,192,0,3,240,7,240,0,0,15,192,0,7,240,7,240,0,0,15,192,80,7,240,7,240,0,0,15,255,210,11,224,7,240,0,1,191,255,231,239,224,7,224,0,191,255,255,223,255,208,7,224,0,255,255,228,3,255,208,7,224,0,255,239,192,0,127,244,7,240,0,184,15,192,0,63,255,7,240,0,0,15,192,0,191,255,211,240,128,0,15,192,0,255,63,227,240,248,0,15,192,3,253,11,195,240,248,0,15,192,15,248,1,66,249,248,31,255,192,127,240,0,1,255,244,15,255,192,191,192,0,0,255,240,11,254,0,46,0,0,0,47,192,0,0,0,4,0,0,0,0,0,0,164,0,0,0,0,0,176,0,1,254,2,240,7,240,7,244,0,3,252,3,244,3,248,3,252,0,7,244,3,248,2,252,1,255,0,15,240,2,248,1,253,0,191,128,47,208,2,252,0,254,0,63,192,127,192,2,252,0,255,0,31,240,255,0,1,252,0,191,0,15,240,29,0,1,144,0,16,0,7,64,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,37,40,38,2,251,0,0,0,0,7,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,234,170,170,170,170,170,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,0,0,0,0,0,0,0,191,170,170,170,170,168,0,0,191,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,3,252,0,1,254,0,0,0,3,252,0,2,253,0,0,0,3,252,0,3,252,0,0,0,3,252,0,7,252,0,0,0,3,252,0,11,244,0,0,0,3,252,0,15,240,0,0,0,3,252,0,47,224,0,0,0,3,252,0,127,192,0,0,0,3,252,0,255,128,0,0,0,3,252,0,255,0,0,0,0,3,252,0,61,0,0,0,0,3,252,0,24,0,0,0,0,3,252,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,35,36,68,38,1,252,0,2,244,0,2,144,0,0,0,0,2,248,0,7,240,0,0,0,5,66,248,0,11,240,0,0,0,11,210,248,0,15,224,0,0,0,11,210,248,0,15,192,0,0,0,15,194,248,0,31,192,0,0,0,15,194,248,0,63,213,85,85,84,15,194,248,0,63,255,255,255,252,15,255,255,240,191,255,255,255,252,31,255,255,240,255,255,255,255,252,47,255,255,242,252,15,194,249,252,63,87,249,83,248,31,131,245,252,63,2,248,11,240,63,3,241,252,126,2,248,31,224,63,7,241,252,189,2,248,63,192,190,11,226,252,124,2,248,47,64,252,15,210,248,4,2,248,6,2,252,15,194,248,0,2,248,4,3,244,47,130,248,0,2,254,248,7,240,63,67,248,0,7,255,252,15,208,127,3,244,1,191,255,248,63,192,190,3,244,127,255,254,64,127,64,252,3,244,127,255,248,0,254,2,252,3,240,63,230,248,3,252,3,244,3,240,40,2,248,15,244,11,240,7,240,0,2,248,15,224,15,224,7,240,0,2,248,2,128,47,192,11,240,0,2,248,0,0,127,128,11,224,0,2,248,0,0,255,0,15,224,0,2,248,0,3,253,0,15,208,0,2,248,0,15,248,0,31,192,0,2,248,0,47,240,0,63,192,0,2,248,0,255,192,191,255,128,0,2,248,0,127,0,127,255,0,0,2,248,0,12,0,63,253,0,0,2,248,0,0,0,21,64,0, + // 0x7279 特 + 121,114,36,36,68,38,1,252,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,6,66,248,0,0,3,244,0,0,11,210,248,0,0,3,244,0,0,15,210,248,0,255,255,255,255,224,15,194,248,0,255,255,255,255,224,15,194,248,0,255,255,255,255,224,15,195,248,0,0,7,244,0,0,31,255,255,240,0,3,244,0,0,31,255,255,240,0,3,244,0,0,47,255,255,240,0,3,244,0,0,63,2,248,5,85,87,249,85,84,63,2,248,31,255,255,255,255,253,126,2,248,31,255,255,255,255,253,189,2,248,31,255,255,255,255,253,60,2,248,0,0,0,2,252,0,4,2,248,0,0,0,2,252,0,0,2,248,120,0,0,2,252,0,0,2,255,252,0,0,2,252,0,0,47,255,255,255,255,255,255,252,27,255,255,239,255,255,255,255,252,127,255,248,15,255,255,255,255,252,63,255,248,1,85,85,86,253,84,62,66,248,0,28,0,2,252,0,0,2,248,0,191,0,2,252,0,0,2,248,0,127,192,2,252,0,0,2,248,0,47,224,2,252,0,0,2,248,0,15,244,2,252,0,0,2,248,0,3,252,2,252,0,0,2,248,0,1,248,2,252,0,0,2,248,0,0,208,2,252,0,0,2,248,0,0,0,2,252,0,0,2,248,0,0,9,87,252,0,0,2,248,0,0,11,255,252,0,0,2,248,0,0,7,255,244,0,0,2,248,0,0,3,255,144,0, + // 0x7387 率 + 135,115,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,0,31,208,0,0,0,0,1,0,0,47,192,0,0,52,0,11,208,0,127,0,64,0,255,0,47,248,5,253,2,244,3,254,0,7,255,31,248,7,240,31,244,0,0,191,239,240,31,208,191,192,0,0,31,67,253,63,128,62,0,0,0,5,0,191,254,0,0,0,0,0,0,0,31,248,96,0,0,0,0,0,144,15,243,244,56,0,0,0,31,224,63,192,253,255,64,0,2,255,240,191,0,191,255,244,0,127,255,191,255,255,255,159,254,0,191,244,63,255,255,255,194,255,192,63,64,63,255,250,159,224,63,208,20,0,0,3,248,3,208,11,64,0,0,0,3,248,1,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,21,85,85,87,253,85,85,85,80,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x73af 环 + 175,115,35,34,50,38,1,252,0,0,0,5,85,85,85,85,84,127,255,255,15,255,255,255,255,252,127,255,255,15,255,255,255,255,252,127,255,255,15,255,255,255,255,252,0,63,0,0,0,3,248,0,0,0,63,0,0,0,11,244,0,0,0,63,0,0,0,15,240,0,0,0,63,0,0,0,31,224,0,0,0,63,0,0,0,63,192,0,0,0,63,0,0,0,127,192,0,0,0,63,0,0,0,255,198,0,0,5,127,84,0,2,255,239,64,0,63,255,253,0,3,255,255,208,0,63,255,253,0,15,255,223,240,0,63,255,253,0,47,255,199,252,0,0,63,0,0,127,239,194,254,0,0,63,0,0,255,159,192,255,64,0,63,0,3,255,31,192,63,192,0,63,0,15,252,31,192,31,240,0,63,0,63,244,31,192,15,248,0,63,0,127,208,31,192,3,248,0,63,0,31,128,31,192,2,208,0,63,1,6,0,31,192,0,0,0,63,175,0,0,31,192,0,0,0,63,255,0,0,31,192,0,0,6,255,255,0,0,31,192,0,0,127,255,244,0,0,31,192,0,0,127,253,0,0,0,31,192,0,0,63,128,0,0,0,31,192,0,0,16,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0, + // 0x7528 用 + 40,117,33,34,50,38,1,252,0,21,85,85,85,85,85,85,64,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,85,85,191,85,85,127,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,255,255,255,255,255,255,192,0,191,255,255,255,255,255,255,192,0,191,255,255,255,255,255,255,192,0,255,85,85,191,85,85,127,192,0,254,0,0,127,0,0,63,192,1,253,0,0,127,0,0,63,192,2,252,0,0,127,0,0,63,192,3,252,0,0,127,0,0,63,192,7,248,0,0,127,0,0,63,192,11,240,0,0,127,0,0,63,192,31,224,0,0,127,0,0,63,128,63,192,0,0,127,3,255,255,128,127,128,0,0,127,2,255,255,64,31,0,0,0,127,1,255,253,0,5,0,0,0,0,0,85,0,0, + // 0x7535 电 + 53,117,33,36,68,38,4,252,0,0,0,63,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,21,85,85,191,213,85,85,64,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,64,0,127,128,0,63,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,64,0,63,128,0,47,192,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,255,255,255,255,255,255,192,0,127,149,85,191,213,85,85,64,0,127,64,0,63,128,0,0,56,0,127,64,0,63,128,0,0,63,64,0,0,0,63,128,0,0,63,64,0,0,0,63,128,0,0,127,64,0,0,0,63,128,0,0,191,0,0,0,0,63,208,0,1,255,0,0,0,0,63,255,255,255,254,0,0,0,0,31,255,255,255,252,0,0,0,0,11,255,255,255,244,0,0,0,0,0,90,170,169,64,0, + // 0x7565 略 + 101,117,34,36,68,38,3,252,0,0,0,0,1,224,0,0,0,0,0,0,0,3,252,0,0,0,255,255,255,128,7,244,0,0,0,255,255,255,128,15,240,0,0,0,255,255,255,128,47,255,255,248,0,248,61,15,128,63,255,255,254,0,248,61,15,128,255,255,255,253,0,248,61,15,130,254,0,3,252,0,248,61,15,139,255,0,11,244,0,248,61,15,175,255,192,15,240,0,248,61,15,255,223,224,63,192,0,248,61,15,255,7,244,191,64,0,248,61,15,173,3,254,254,0,0,255,255,255,128,0,255,252,0,0,255,255,255,128,0,63,240,0,0,255,255,255,128,0,255,244,0,0,248,61,15,128,7,255,254,0,0,248,61,15,128,31,253,255,192,0,248,61,15,128,255,240,127,248,0,248,61,15,139,255,128,15,255,128,248,61,15,255,253,0,2,255,240,248,61,15,255,244,0,0,191,208,248,61,15,255,255,255,255,255,128,248,61,15,151,255,255,255,253,0,248,61,15,131,255,255,255,253,0,255,255,255,131,248,0,0,253,0,255,255,255,131,248,0,0,253,0,255,255,255,131,248,0,0,253,0,248,0,0,3,248,0,0,253,0,248,0,0,3,248,0,0,253,0,248,0,0,3,248,0,0,253,0,0,0,0,3,255,255,255,253,0,0,0,0,3,255,255,255,253,0,0,0,0,3,255,255,255,253,0,0,0,0,3,248,0,1,253,0,0,0,0,1,164,0,0,84,0, + // 0x767d 白 + 125,118,28,36,252,38,5,252,0,0,2,233,0,0,0,0,0,3,254,0,0,0,0,0,3,252,0,0,0,0,0,11,248,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,170,170,170,170,170,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,170,170,170,170,170,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,190,0,0,0,0,0,170, + // 0x7684 的 + 132,118,33,36,68,38,3,252,0,31,144,0,2,228,0,0,0,0,31,208,0,3,248,0,0,0,0,47,192,0,3,244,0,0,0,0,63,128,0,7,240,0,0,0,0,63,64,0,15,240,0,0,0,0,127,0,0,15,208,0,0,0,191,255,255,240,47,255,255,255,64,191,255,255,240,63,255,255,255,64,191,255,255,240,127,255,255,255,64,190,0,7,240,255,0,0,127,0,189,0,7,241,253,0,0,63,0,189,0,7,243,252,0,0,63,0,189,0,7,251,248,0,0,63,0,189,0,7,255,240,0,0,63,0,189,0,7,247,208,0,0,63,0,189,0,7,240,129,128,0,127,0,190,0,7,240,15,208,0,127,0,191,255,255,240,15,240,0,127,0,191,255,255,240,3,252,0,127,0,191,255,255,240,1,254,0,127,0,189,0,7,240,0,191,64,191,0,189,0,7,240,0,63,192,190,0,189,0,7,240,0,31,224,190,0,189,0,7,240,0,15,240,190,0,189,0,7,240,0,7,192,254,0,189,0,7,240,0,1,0,253,0,189,0,7,240,0,0,0,253,0,189,0,7,240,0,0,0,253,0,190,0,7,240,0,0,1,252,0,191,255,255,240,0,0,1,252,0,191,255,255,240,0,0,3,252,0,191,255,255,240,0,0,7,248,0,189,0,0,0,0,255,255,244,0,189,0,0,0,0,191,255,224,0,189,0,0,0,0,127,255,128,0,0,0,0,0,0,5,80,0,0, + // 0x76d1 监 + 209,118,34,35,59,38,2,253,0,0,10,144,0,36,0,0,0,1,80,15,208,0,127,64,0,0,7,240,15,208,0,191,0,0,0,7,240,15,208,0,254,0,0,0,7,240,15,208,0,253,0,0,0,7,240,15,208,2,253,0,0,0,7,240,15,208,3,255,255,255,240,7,240,15,208,7,255,255,255,240,7,240,15,208,11,255,255,255,240,7,240,15,208,15,224,0,0,0,7,240,15,208,63,192,0,0,0,7,240,15,208,127,128,208,0,0,7,240,15,208,255,7,248,0,0,7,240,15,210,254,7,255,0,0,7,240,15,215,252,0,255,192,0,7,240,15,210,240,0,47,244,0,7,240,15,208,80,0,11,253,0,7,240,15,208,0,0,2,253,0,0,0,15,208,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,244,3,244,0,0,253,1,252,3,248,7,244,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x76f4 直 + 244,118,34,36,68,38,2,252,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,21,85,85,86,254,85,85,85,64,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,26,171,254,170,170,144,0,5,80,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,213,85,85,95,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,213,85,85,95,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,26,170,170,170,170,144,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,245,85,85,85,85,85,85,80,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,240,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0, + // 0x7701 省 + 1,119,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,1,228,3,248,0,124,0,0,0,7,252,3,248,1,255,64,0,0,15,244,3,248,0,127,224,0,0,63,224,3,248,0,31,252,0,1,255,128,3,248,0,3,255,0,11,254,0,3,248,1,208,255,192,127,248,0,3,248,7,252,47,240,191,208,15,255,248,47,248,15,208,31,64,11,255,244,255,208,2,0,4,0,7,255,155,255,64,0,0,0,0,0,1,191,252,0,0,0,0,0,0,31,255,208,0,0,0,0,0,27,255,254,0,0,0,0,0,22,255,255,208,0,0,0,0,111,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,127,255,254,170,170,170,175,224,0,46,67,248,0,0,0,15,224,0,0,3,248,0,0,0,15,224,0,0,3,253,85,85,85,95,224,0,0,3,255,255,255,255,255,224,0,0,3,255,255,255,255,255,224,0,0,3,248,0,0,0,15,224,0,0,3,248,0,0,0,15,224,0,0,3,253,85,85,85,111,224,0,0,3,255,255,255,255,255,224,0,0,3,255,255,255,255,255,224,0,0,3,248,0,0,0,15,224,0,0,3,248,0,0,0,15,224,0,0,3,248,0,0,0,15,224,0,0,3,255,255,255,255,255,224,0,0,3,255,255,255,255,255,224,0,0,3,254,170,170,170,175,224,0,0,3,248,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0, + // 0x7720 眠 + 32,119,34,34,50,38,3,252,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,252,2,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,252,1,252,15,208,11,224,0,0,252,1,252,15,208,11,224,0,0,252,1,252,15,208,11,240,0,0,252,1,252,15,208,7,240,0,0,252,1,252,15,208,7,240,0,0,255,255,252,15,255,255,255,255,208,255,255,252,15,255,255,255,255,208,255,255,252,15,255,255,255,255,208,252,1,252,15,229,87,249,85,64,252,1,252,15,208,3,248,0,0,252,1,252,15,208,2,248,0,0,252,1,252,15,208,2,252,0,0,252,1,252,15,208,1,252,0,0,255,255,252,15,208,0,252,0,0,255,255,252,15,208,0,253,1,64,255,255,252,15,208,0,191,2,224,253,0,0,15,208,0,127,2,240,252,0,0,15,209,191,63,67,240,252,0,0,31,255,255,47,195,240,84,0,7,255,255,255,15,251,224,0,0,7,255,255,228,11,255,208,0,0,3,255,144,0,2,255,192,0,0,1,64,0,0,0,190,0, + // 0x786e 确 + 110,120,34,37,77,38,1,251,0,0,0,0,0,164,0,0,0,0,0,0,0,0,253,0,0,0,63,255,255,252,2,252,0,0,0,63,255,255,252,3,255,255,208,0,63,255,255,252,7,255,255,244,0,0,63,192,0,15,255,255,240,0,0,63,128,0,47,192,15,224,0,0,63,64,0,63,128,47,192,0,0,63,0,0,255,0,63,128,0,0,127,0,2,254,0,191,0,0,0,191,0,7,255,255,255,255,240,0,254,0,15,255,255,255,255,240,0,253,0,7,255,255,255,255,240,1,253,0,1,255,1,248,3,240,2,255,255,240,191,1,248,3,240,3,255,255,240,127,1,248,3,240,3,255,255,240,127,1,248,3,240,11,252,3,240,127,255,255,255,240,15,252,3,240,127,255,255,255,240,47,252,3,240,127,255,255,255,240,63,252,3,240,191,1,248,3,240,191,252,3,240,190,1,248,3,240,127,252,3,240,190,1,248,3,240,45,252,3,240,191,255,255,255,240,5,252,3,240,255,255,255,255,240,1,252,3,240,255,255,255,255,240,1,252,3,240,252,0,0,3,240,1,252,3,241,252,0,0,3,240,1,255,255,242,252,0,0,3,240,1,255,255,243,248,0,0,3,240,1,255,255,247,240,0,0,3,240,1,252,0,15,240,0,0,3,240,1,252,0,31,208,0,5,91,240,1,252,0,63,192,0,11,255,240,0,0,0,47,64,0,7,255,224,0,0,0,6,0,0,3,255,64,0,0,0,0,0,0,0,0,0, + // 0x79bb 离 + 187,121,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,64,0,0,0,0,42,0,64,1,248,10,128,0,0,63,2,249,11,240,15,208,0,0,63,3,255,255,208,15,208,0,0,63,0,127,255,64,15,208,0,0,63,0,15,255,192,15,208,0,0,63,1,255,255,248,15,208,0,0,63,31,254,7,252,15,208,0,0,63,15,224,0,180,15,208,0,0,63,2,0,0,16,15,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,0,0,31,224,0,0,0,0,0,0,0,31,208,0,0,0,0,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,11,240,0,127,0,104,0,254,0,11,240,0,191,0,253,0,254,0,11,240,0,253,0,127,0,254,0,11,240,0,253,21,127,192,254,0,11,242,255,255,255,255,208,254,0,11,243,255,255,255,255,240,254,0,11,242,255,250,149,3,244,254,0,11,240,0,0,0,1,208,254,0,11,240,0,0,0,0,0,254,0,11,240,0,0,0,2,255,254,0,11,240,0,0,0,0,255,252,0,6,160,0,0,0,0,255,224,0, + // 0x79fb 移 + 251,121,35,36,68,38,1,252,0,0,0,64,0,7,224,0,0,0,0,111,208,0,15,240,0,0,0,111,255,244,0,63,192,0,0,63,255,255,208,0,255,255,255,128,63,255,244,0,2,255,255,255,208,47,151,240,0,15,255,255,255,192,0,3,240,0,127,224,0,127,128,0,3,240,2,255,208,0,255,0,0,3,240,15,255,248,2,253,0,0,3,240,11,247,254,7,252,0,0,3,240,3,192,191,223,240,0,63,255,255,248,0,47,255,192,0,63,255,255,248,0,11,255,64,0,63,255,255,248,0,47,253,0,0,21,95,245,80,2,255,240,0,0,0,15,240,0,127,255,255,0,0,0,47,248,7,255,245,254,0,0,0,63,254,2,255,67,252,0,0,0,191,255,128,224,15,255,255,248,0,255,255,224,0,63,255,255,252,2,251,247,248,0,255,255,255,252,3,247,241,252,7,254,0,7,244,11,211,240,240,47,248,0,15,240,31,195,240,18,255,253,0,47,208,63,131,240,7,255,255,192,127,192,191,3,240,1,244,127,240,255,64,125,3,240,0,128,11,255,253,0,60,3,240,0,0,2,255,248,0,16,3,240,0,0,0,255,224,0,0,3,240,0,0,7,255,128,0,0,3,240,0,0,127,253,0,0,0,3,240,0,27,255,240,0,0,0,3,240,11,255,255,64,0,0,0,3,240,15,255,244,0,0,0,0,3,240,7,254,64,0,0,0,0,3,240,2,144,0,0,0,0, + // 0x7a7a 空 + 122,122,34,35,59,38,2,253,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,128,7,248,3,252,0,47,192,63,128,7,244,2,252,0,47,192,63,128,11,240,2,252,0,47,192,63,128,15,240,2,252,0,47,192,63,128,15,224,2,252,0,0,0,0,0,63,192,2,252,0,8,0,0,0,191,192,2,252,0,15,128,0,7,255,0,2,252,0,47,128,0,127,253,0,2,255,255,255,128,47,255,240,0,0,255,255,255,0,47,255,128,0,0,127,255,253,0,15,244,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,244,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224, + // 0x7aef 端 + 239,122,36,36,68,38,1,252,0,5,0,0,0,7,240,0,0,0,31,128,0,0,7,240,0,0,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,47,128,3,240,7,240,7,240,63,255,255,195,255,255,255,255,240,63,255,255,195,255,255,255,255,240,63,255,255,195,255,255,255,255,240,0,0,0,0,0,0,0,0,0,6,64,58,0,0,0,0,0,0,15,128,63,0,0,0,0,0,0,15,128,63,47,255,255,255,255,253,15,192,127,47,255,255,255,255,253,11,192,126,47,255,255,255,255,253,11,192,189,0,0,15,240,0,0,7,208,189,0,0,15,224,0,0,7,224,252,0,0,31,192,0,0,3,224,252,11,255,255,255,255,248,3,224,248,11,255,255,255,255,248,3,241,244,11,255,255,255,255,248,3,226,244,11,224,188,15,130,248,1,2,240,91,224,188,15,130,248,0,2,255,235,224,188,15,130,248,1,191,255,251,224,188,15,130,248,127,255,255,235,224,188,15,130,248,127,255,248,11,224,188,15,130,248,127,249,0,11,224,188,15,130,248,57,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,191,248,0,0,0,11,224,188,15,159,240,0,0,0,6,144,20,0,14,128, + // 0x7b2c 第 + 44,123,35,36,68,38,1,252,0,30,64,0,0,126,0,0,0,0,63,192,0,0,255,0,0,0,0,63,64,0,0,254,0,0,0,0,255,255,255,211,255,255,255,252,1,255,255,255,219,255,255,255,252,3,255,255,255,239,255,255,255,252,11,244,253,0,63,192,255,0,0,47,224,255,0,255,128,127,64,0,127,192,127,2,255,0,63,192,0,63,64,63,0,188,0,31,192,0,10,0,36,0,32,0,9,0,0,0,255,255,255,255,255,255,254,0,0,255,255,255,255,255,255,254,0,0,255,255,255,255,255,255,254,0,0,0,0,0,254,0,0,254,0,0,0,0,0,254,0,0,254,0,0,0,0,0,254,0,0,254,0,0,31,255,255,255,255,255,254,0,0,47,255,255,255,255,255,254,0,0,63,255,255,255,255,255,254,0,0,63,64,0,254,0,0,0,0,0,127,64,0,254,0,0,0,0,0,191,0,0,254,0,0,0,0,0,255,255,255,255,255,255,255,240,0,255,255,255,255,255,255,255,240,1,255,255,255,255,255,255,255,224,1,252,0,127,254,0,0,15,224,0,0,2,255,254,0,0,15,208,0,0,31,252,254,0,0,15,208,0,0,255,224,254,0,0,31,192,0,31,255,64,254,0,0,63,192,1,255,248,0,254,0,255,255,128,47,255,208,0,254,0,255,255,0,15,253,0,0,254,0,191,252,0,7,144,0,0,254,0,0,0,0,0,0,0,0,190,0,0,0,0, + // 0x7b49 等 + 73,123,35,36,68,38,1,252,0,14,64,0,0,126,0,0,0,0,47,192,0,0,255,0,0,0,0,63,128,0,0,254,0,0,0,0,255,255,255,227,255,255,255,252,1,255,255,255,231,255,255,255,252,3,255,255,255,255,255,255,255,252,15,244,253,0,63,208,255,0,0,63,224,191,0,255,128,63,128,0,127,192,63,64,191,0,47,192,0,31,0,57,0,255,0,15,64,0,0,0,0,0,255,0,0,0,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,61,0,0,1,253,0,0,0,0,255,64,0,1,253,0,0,0,0,255,208,0,1,253,0,0,0,0,47,244,0,1,253,0,0,0,0,11,252,0,1,253,0,0,0,0,2,255,0,1,253,0,0,0,0,0,254,5,6,253,0,0,0,0,0,52,15,255,252,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,3,255,144,0,0, + // 0x7bb1 箱 + 177,123,35,36,68,38,1,252,0,14,64,0,0,57,0,0,0,0,31,192,0,0,191,0,0,0,0,63,192,0,0,255,0,0,0,0,127,128,0,1,254,0,0,0,0,191,255,255,227,255,255,255,252,0,255,255,255,231,255,255,255,252,3,255,255,255,239,255,255,255,252,7,248,254,0,47,224,254,0,0,15,240,127,0,127,192,127,64,0,63,208,63,129,255,64,47,192,0,47,64,47,64,190,0,15,208,0,6,0,252,0,24,0,10,64,0,0,0,252,0,0,0,0,0,0,0,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,47,255,255,255,207,255,255,255,224,47,255,255,255,207,192,0,15,224,47,255,255,255,207,192,0,15,224,0,7,253,0,15,192,0,15,224,0,7,253,0,15,255,255,255,224,0,15,255,64,15,255,255,255,224,0,31,255,208,15,250,170,175,224,0,63,255,244,15,192,0,15,224,0,191,255,253,15,192,0,15,224,1,254,252,255,143,192,0,15,224,3,252,252,63,207,255,255,255,224,11,240,252,31,15,255,255,255,224,47,224,252,9,15,250,170,175,224,127,192,252,0,15,192,0,15,224,63,64,252,0,15,192,0,15,224,30,0,252,0,15,192,0,15,224,4,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,0,0,252,0,15,192,0,15,224,0,0,252,0,10,128,0,5,80, + // 0x7c7b 类 + 123,124,35,36,68,38,2,252,0,0,0,2,248,0,0,0,0,0,6,0,3,248,0,30,64,0,0,63,192,3,248,0,63,208,0,0,47,224,3,248,0,191,128,0,0,11,248,3,248,1,255,0,0,0,3,252,3,248,3,252,0,0,0,1,254,3,248,11,244,0,0,21,85,249,87,253,91,229,85,64,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,0,0,1,255,255,244,0,0,0,0,0,11,255,255,254,0,0,0,0,0,127,243,248,255,208,0,0,0,3,255,195,248,63,253,0,0,0,127,254,3,248,11,255,224,0,27,255,244,3,248,0,255,255,144,191,255,64,3,248,0,31,255,208,63,248,0,0,80,5,0,191,128,14,64,0,3,252,47,208,6,0,0,0,0,3,248,31,254,0,0,0,0,0,3,248,1,255,128,0,21,85,85,87,249,85,111,85,64,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,0,0,0,63,255,128,0,0,0,0,0,0,191,255,224,0,0,0,0,0,2,255,15,248,0,0,0,0,0,31,253,7,255,64,0,0,0,1,255,248,1,255,228,0,0,0,111,255,208,0,127,255,144,0,191,255,255,0,0,11,255,255,244,191,255,244,0,0,1,191,255,224,63,253,0,0,0,0,11,255,192,42,64,0,0,0,0,0,26,64, + // 0x7d22 索 + 34,125,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,0,0,127,128,0,0,15,208,63,0,1,255,0,4,0,15,208,63,0,11,252,0,127,64,15,208,63,10,47,224,2,255,128,15,208,0,47,255,64,15,253,0,0,0,0,47,254,0,127,240,0,0,0,0,7,255,210,255,129,192,0,0,0,0,191,255,252,11,248,0,0,0,0,31,255,208,3,255,0,0,0,0,3,254,0,0,191,224,0,0,0,31,254,170,170,255,252,0,127,255,255,255,255,255,255,255,0,127,255,255,255,255,255,255,255,192,63,255,255,255,248,0,0,31,128,0,0,0,3,248,1,208,5,0,0,1,249,3,248,11,248,0,0,0,11,253,3,248,7,255,64,0,0,127,244,3,248,0,191,240,0,2,255,192,3,248,0,31,253,0,47,254,0,3,248,0,2,255,128,191,244,0,3,248,0,0,127,208,47,64,0,3,248,0,0,15,0,4,0,0,3,248,0,0,0,0, + // 0x7d2b 紫 + 43,125,35,36,68,38,1,252,0,0,47,64,2,252,0,0,0,0,0,63,64,2,252,0,0,0,0,0,63,64,2,252,0,6,0,3,240,63,64,2,252,0,191,128,3,240,63,255,242,252,31,255,224,3,240,63,255,242,255,255,255,64,3,240,63,255,242,255,255,208,0,3,240,63,64,2,255,228,0,0,3,240,63,64,2,252,0,0,0,3,240,63,64,2,252,0,0,228,3,240,63,65,162,252,0,0,252,3,240,127,255,241,253,0,2,252,27,255,255,255,241,255,255,255,248,127,255,255,255,144,255,255,255,240,63,255,165,15,208,47,255,255,208,41,64,0,63,224,0,0,0,0,0,0,0,255,128,11,128,0,0,0,3,135,253,0,63,240,0,0,0,31,255,240,1,255,192,0,0,0,31,255,192,11,254,0,0,0,0,1,255,244,63,244,30,0,0,0,0,31,255,255,128,191,192,0,0,0,2,255,253,0,47,240,0,0,0,0,255,224,0,11,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,224,63,255,255,255,255,255,255,175,248,4,0,0,0,254,0,0,7,252,0,0,32,0,254,0,36,1,208,0,0,255,64,254,1,255,0,0,0,11,254,0,254,1,255,224,0,0,127,248,0,254,0,47,253,0,7,255,208,0,254,0,3,255,192,47,254,0,0,254,0,0,127,244,11,244,0,0,254,0,0,15,224,1,64,0,0,254,0,0,2,0, + // 0x7ea2 红 + 162,126,35,34,50,38,1,254,0,1,144,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,244,1,170,170,170,170,160,0,15,240,3,255,255,255,255,244,0,47,208,3,255,255,255,255,244,0,63,192,3,255,255,255,255,244,0,191,0,0,0,3,248,0,0,1,254,1,192,0,3,248,0,0,3,252,3,248,0,3,248,0,0,11,244,11,248,0,3,248,0,0,31,224,31,240,0,3,248,0,0,127,255,255,208,0,3,248,0,0,127,255,255,128,0,3,248,0,0,63,255,255,0,0,3,248,0,0,62,87,252,0,0,3,248,0,0,0,15,244,0,0,3,248,0,0,0,47,224,0,0,3,248,0,0,0,127,192,0,0,3,248,0,0,1,255,0,0,0,3,248,0,0,7,253,26,240,0,3,248,0,0,31,255,255,240,0,3,248,0,0,127,255,255,244,0,3,248,0,0,63,255,254,80,0,3,248,0,0,47,229,0,0,0,3,248,0,0,20,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,16,0,3,248,0,0,0,0,107,240,0,3,248,0,0,0,111,255,240,0,3,248,0,0,127,255,255,251,255,255,255,255,252,127,255,254,71,255,255,255,255,252,63,254,64,7,255,255,255,255,252,57,0,0,6,170,170,170,170,168, + // 0x7ea7 级 + 167,126,35,37,77,38,1,251,0,2,128,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,244,1,85,85,85,84,0,0,15,240,11,255,255,255,252,0,0,15,208,11,255,255,255,248,0,0,47,192,11,255,255,255,244,0,0,63,64,0,15,224,7,240,0,0,191,0,0,15,224,11,240,0,0,253,2,0,15,224,15,224,0,2,248,7,208,15,224,15,208,0,7,240,15,240,15,208,31,192,0,15,224,47,208,15,208,47,192,0,47,213,191,128,15,208,63,128,0,191,255,255,0,31,192,63,255,224,127,255,253,0,31,208,191,255,240,63,235,252,0,31,224,255,255,240,16,11,240,0,47,240,0,15,224,0,31,208,0,47,244,0,15,208,0,63,128,0,63,252,0,47,192,0,255,6,224,63,253,0,63,128,2,254,191,224,63,255,0,63,64,11,255,255,224,127,127,64,191,0,47,255,254,64,191,47,192,254,0,127,255,128,0,254,15,227,252,0,63,208,0,0,253,11,251,248,0,40,0,0,17,252,3,255,240,0,0,0,7,243,252,1,255,208,0,0,0,191,243,248,0,255,192,0,0,31,255,251,244,1,255,224,0,7,255,254,79,240,11,255,248,0,63,255,224,47,208,47,251,255,0,63,253,0,63,192,255,209,255,208,47,128,0,255,139,255,64,127,252,20,0,1,255,31,253,0,15,252,0,0,0,189,11,224,0,2,244,0,0,0,24,2,64,0,0,80,0,0,0,0,0,0,0,0,0, + // 0x7ebf 线 + 191,126,35,36,68,38,2,252,0,1,0,0,0,253,0,0,0,0,11,208,0,0,253,15,0,0,0,15,240,0,0,253,63,224,0,0,31,208,0,0,254,15,253,0,0,47,192,0,0,254,1,253,0,0,63,64,0,0,254,0,56,0,0,191,0,0,0,254,0,1,0,0,254,0,0,0,254,26,255,64,2,252,5,0,5,255,255,255,128,3,244,15,135,255,255,255,255,128,15,224,47,215,255,255,254,80,0,31,192,63,131,255,255,0,0,0,127,150,255,2,64,191,0,0,0,255,255,254,0,0,127,0,0,0,255,255,252,0,0,127,0,22,208,127,239,244,0,0,127,107,255,224,16,15,224,0,1,191,255,255,224,0,63,192,6,255,255,255,254,64,0,191,0,15,255,255,249,0,0,1,253,0,15,255,255,128,1,0,7,248,6,142,144,47,192,11,224,15,251,255,128,0,31,192,31,208,127,255,255,128,0,15,208,63,128,191,255,250,0,0,15,209,255,0,127,249,0,0,0,15,231,253,0,57,0,0,0,0,11,255,244,0,0,0,0,0,0,7,255,208,0,0,0,7,192,0,3,255,64,0,0,6,255,192,0,47,253,0,0,1,191,255,192,1,255,253,0,208,127,255,253,0,31,255,255,0,244,191,255,64,6,255,248,127,129,244,127,208,0,63,255,208,63,247,240,36,0,0,47,253,0,15,255,240,0,0,0,15,128,0,7,255,208,0,0,0,0,0,0,0,191,64, + // 0x7ec6 细 + 198,126,35,36,68,38,1,252,0,0,224,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,3,252,2,255,255,255,255,244,0,7,248,2,255,255,255,255,244,0,15,240,2,255,255,255,255,244,0,31,224,2,254,171,250,171,244,0,63,192,2,248,3,244,3,244,0,127,64,2,248,3,244,3,244,0,255,0,2,248,3,244,3,244,2,252,0,210,248,3,244,3,244,7,244,3,250,248,3,244,3,244,15,240,7,250,248,3,244,3,244,127,234,255,242,248,3,244,3,244,127,255,255,194,248,3,244,3,244,63,255,255,66,248,3,244,3,244,63,166,254,2,248,3,244,3,244,0,3,252,2,255,255,255,255,244,0,15,240,2,255,255,255,255,244,0,63,192,2,255,255,255,255,244,0,255,0,2,249,87,249,87,244,3,253,22,182,248,3,244,3,244,15,255,255,246,248,3,244,3,244,127,255,255,246,248,3,244,3,244,63,255,254,146,248,3,244,3,244,47,249,0,2,248,3,244,3,244,24,0,0,2,248,3,244,3,244,0,0,0,2,248,3,244,3,244,0,0,0,2,248,3,244,3,244,0,0,1,182,248,3,244,3,244,0,26,255,246,249,87,249,87,244,47,255,255,246,255,255,255,255,244,127,255,255,146,255,255,255,255,244,63,254,80,2,255,255,255,255,244,57,0,0,2,248,0,0,3,244,0,0,0,2,248,0,0,3,244,0,0,0,0,80,0,0,0,0, + // 0x7ec8 终 + 200,126,36,36,68,38,1,252,0,2,64,0,0,105,0,0,0,0,3,244,0,0,255,0,0,0,0,11,244,0,1,254,0,0,0,0,15,240,0,3,252,0,0,0,0,31,208,0,7,255,255,255,64,0,63,192,0,15,255,255,255,192,0,127,64,0,63,255,255,255,192,0,255,0,0,191,208,0,191,64,1,253,1,1,255,240,0,254,0,3,252,7,199,255,244,3,252,0,7,244,15,255,250,252,7,248,0,15,224,31,255,224,255,31,240,0,47,192,63,203,128,127,255,192,0,191,255,255,1,0,47,255,64,0,127,255,254,0,0,15,254,0,0,63,255,252,0,0,47,255,64,0,37,11,240,0,1,255,255,224,0,0,31,208,0,11,255,111,253,0,0,63,128,0,191,248,7,255,208,0,255,0,31,255,208,0,255,254,2,252,0,95,254,0,0,31,253,11,250,255,211,224,30,64,2,248,63,255,255,209,0,127,244,0,16,63,255,255,208,0,47,255,64,0,63,254,80,0,0,2,255,224,0,41,0,0,0,0,0,47,240,0,0,0,0,0,0,0,3,192,0,0,0,0,0,9,0,0,0,0,0,0,6,240,63,228,0,0,0,0,91,255,240,191,255,144,0,0,127,255,255,244,27,255,253,0,0,127,255,254,64,0,111,255,224,0,127,249,64,0,0,1,255,254,0,37,0,0,0,0,0,11,255,64,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,8,0, + // 0x7ed3 结 + 211,126,35,36,68,38,1,252,0,2,64,0,0,3,248,0,0,0,3,244,0,0,3,248,0,0,0,11,248,0,0,3,248,0,0,0,15,240,0,0,3,248,0,0,0,31,224,0,0,3,248,0,0,0,63,192,7,255,255,255,255,252,0,127,128,7,255,255,255,255,252,0,255,0,7,255,255,255,255,252,2,253,3,129,85,87,253,85,84,3,252,7,244,0,3,248,0,0,11,240,15,244,0,3,248,0,0,31,224,31,224,0,3,248,0,0,127,234,255,192,0,3,248,0,0,191,255,255,64,0,3,248,0,0,127,255,255,1,255,255,255,255,240,63,235,252,1,255,255,255,255,240,0,11,244,1,255,255,255,255,240,0,47,224,0,85,85,85,85,80,0,127,192,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,253,26,244,0,0,0,0,0,15,255,255,244,127,255,255,255,208,127,255,255,244,127,255,255,255,208,63,255,254,64,127,255,255,255,208,63,233,0,0,127,0,0,31,208,20,0,0,0,127,0,0,31,208,0,0,0,0,127,0,0,31,208,0,0,0,0,127,0,0,31,208,0,0,27,248,127,0,0,31,208,0,111,255,248,127,0,0,31,208,127,255,255,248,127,0,0,31,208,127,255,255,144,127,255,255,255,208,127,254,64,0,127,255,255,255,208,57,64,0,0,127,255,255,255,208,0,0,0,0,127,0,0,31,208,0,0,0,0,127,0,0,10,128, + // 0x7ed9 给 + 217,126,35,36,68,38,1,252,0,2,64,0,0,6,64,0,0,0,3,244,0,0,15,240,0,0,0,11,244,0,0,31,240,0,0,0,15,240,0,0,47,240,0,0,0,31,208,0,0,63,252,0,0,0,63,192,0,0,191,253,0,0,0,127,64,0,1,255,191,0,0,0,255,0,0,3,252,63,192,0,1,253,3,0,11,248,31,224,0,3,252,11,224,31,240,11,248,0,7,240,15,240,63,208,3,254,0,15,224,47,208,255,128,0,255,128,63,214,191,131,255,0,0,191,240,191,255,255,31,255,255,255,255,252,63,255,253,63,255,255,255,247,248,63,235,252,31,207,255,255,241,224,16,15,240,6,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,252,22,224,255,255,255,254,0,15,255,255,208,255,255,255,254,0,63,255,255,208,255,255,255,254,0,63,255,249,0,253,0,0,254,0,47,228,0,0,253,0,0,254,0,24,0,0,0,253,0,0,254,0,0,0,0,0,253,0,0,254,0,0,0,0,0,253,0,0,254,0,0,0,111,224,253,0,0,254,0,0,111,255,240,253,0,0,254,0,63,255,255,224,253,0,0,254,0,63,255,249,0,255,255,255,254,0,63,249,0,0,255,255,255,254,0,41,0,0,0,255,255,255,254,0,0,0,0,0,253,0,0,254,0,0,0,0,0,253,0,0,254,0, + // 0x7edf 统 + 223,126,36,36,68,38,1,252,0,2,64,0,0,6,128,0,0,0,3,248,0,0,31,192,0,0,0,7,248,0,0,15,224,0,0,0,15,240,0,0,11,240,0,0,0,31,224,0,0,7,248,0,0,0,63,192,0,0,3,228,0,0,0,63,192,11,255,255,255,255,252,0,191,64,11,255,255,255,255,252,0,254,1,11,255,255,255,255,252,3,252,11,208,0,191,128,0,0,7,244,15,240,1,255,0,32,0,15,240,47,208,3,252,2,248,0,63,230,191,128,15,244,2,252,0,191,255,255,0,47,224,0,255,0,63,255,253,0,191,192,0,127,128,63,255,252,2,255,154,191,255,208,20,15,240,31,255,255,255,255,240,0,47,208,15,255,255,255,251,244,0,127,128,11,255,165,64,3,252,0,255,0,69,10,144,42,65,224,3,253,111,192,15,208,63,128,0,15,255,255,192,15,208,63,128,0,63,255,255,192,15,208,63,128,0,63,255,228,0,15,208,63,128,0,47,228,0,0,31,192,63,128,0,20,0,0,0,47,192,63,128,0,0,0,0,64,63,192,63,128,0,0,0,31,208,63,128,63,128,180,0,7,255,224,191,0,63,128,189,6,255,255,208,255,0,63,128,189,63,255,248,3,253,0,63,128,252,63,254,64,31,252,0,63,128,252,63,208,1,255,240,0,47,255,252,20,0,0,255,192,0,31,255,244,0,0,0,126,0,0,7,255,224,0,0,0,32,0,0,0,0,0, + // 0x7ee7 继 + 231,126,35,34,50,38,1,254,0,3,64,0,0,0,42,0,0,0,7,240,1,64,0,63,0,0,0,15,240,7,224,0,63,0,0,0,15,208,7,225,224,63,2,224,0,47,192,7,226,240,63,3,240,0,63,128,7,224,244,63,3,224,0,127,0,7,224,248,63,11,192,0,255,0,7,224,188,63,15,128,1,252,1,7,224,125,63,31,64,2,248,11,135,224,62,63,47,0,3,240,15,231,224,16,63,4,0,15,224,47,199,224,0,63,0,0,47,192,63,71,231,255,255,255,252,127,255,255,7,231,255,255,255,252,127,255,253,7,231,255,255,255,252,63,255,248,7,224,0,255,192,0,21,11,240,7,224,2,255,224,0,0,31,208,7,224,3,255,244,0,0,63,128,7,224,11,255,252,0,0,255,0,7,224,15,191,127,0,2,252,5,135,224,47,63,47,128,11,254,255,199,224,126,63,15,224,47,255,255,199,224,252,63,3,244,63,255,250,71,227,248,63,2,248,63,249,0,7,227,240,63,0,240,25,0,0,7,226,208,63,0,64,0,0,0,7,224,64,63,0,0,0,0,1,135,224,0,63,0,0,0,1,191,215,224,0,63,0,0,1,191,255,215,224,0,42,0,0,127,255,255,135,224,0,0,0,0,63,255,144,7,255,255,255,255,252,63,144,0,7,255,255,255,255,252,16,0,0,7,255,255,255,255,252, + // 0x7eea 绪 + 234,126,36,36,68,38,1,252,0,2,0,0,0,47,64,0,0,0,3,224,0,0,63,64,0,0,0,7,240,0,0,63,64,1,64,0,15,224,0,0,63,64,3,244,0,15,208,0,0,63,64,11,240,0,47,192,2,255,255,255,223,224,0,63,64,2,255,255,255,255,192,0,191,0,2,255,255,255,255,128,0,253,0,0,0,63,64,255,0,2,252,3,128,0,63,67,252,0,3,240,15,240,0,63,75,244,0,15,224,31,208,0,63,95,224,0,47,213,191,175,255,255,255,255,253,127,255,255,47,255,255,255,255,253,63,255,253,47,255,255,255,255,253,63,235,252,0,0,47,244,0,0,16,11,240,0,0,191,208,0,0,0,15,208,0,3,255,64,0,0,0,63,128,0,31,254,0,0,0,0,191,0,0,191,255,255,255,208,1,252,1,11,255,255,255,255,208,7,254,255,191,255,255,255,255,208,31,255,255,191,255,192,0,15,208,63,255,250,15,95,192,0,15,208,47,229,0,0,31,192,0,15,208,20,0,0,0,31,255,255,255,208,0,0,0,0,31,255,255,255,208,0,0,0,80,31,255,255,255,208,0,1,175,240,31,192,0,15,208,1,191,255,240,31,192,0,15,208,63,255,255,144,31,192,0,15,208,63,255,144,0,31,255,255,255,208,63,144,0,0,31,255,255,255,208,20,0,0,0,31,255,255,255,208,0,0,0,0,31,192,0,15,208,0,0,0,0,10,128,0,5,64, + // 0x7eed 续 + 237,126,35,37,77,38,1,251,0,1,64,0,0,11,224,0,0,0,3,240,0,0,11,224,0,0,0,7,240,0,0,11,224,0,0,0,11,224,1,255,255,255,255,128,0,15,208,1,255,255,255,255,128,0,47,192,1,255,255,255,255,128,0,63,64,0,0,11,224,0,0,0,127,0,0,0,11,224,0,0,0,253,4,0,0,11,224,0,0,1,252,15,128,0,11,224,0,0,3,240,31,203,255,255,255,255,244,11,224,63,139,255,255,255,255,244,31,193,127,11,255,255,255,255,240,127,255,253,0,0,0,0,7,224,127,255,252,0,13,2,244,11,208,63,255,244,0,63,131,244,15,192,20,11,224,0,15,243,244,31,128,0,31,192,1,2,251,244,11,64,0,63,64,7,208,115,244,0,0,0,190,0,7,252,3,244,0,0,1,253,111,64,255,3,244,0,0,7,255,255,64,47,3,244,0,0,31,255,255,64,4,3,240,0,0,63,255,144,47,255,255,255,255,244,63,228,0,47,255,255,255,255,244,24,0,0,47,255,255,255,255,244,0,0,2,64,0,47,192,0,0,0,0,127,128,0,127,134,0,0,0,31,255,192,0,255,31,192,0,6,255,254,0,3,253,31,244,0,63,255,208,0,31,248,3,254,0,63,248,0,0,191,224,0,191,192,63,64,0,11,255,64,0,47,240,16,0,0,63,253,0,0,7,252,0,0,0,31,224,0,0,1,248,0,0,0,10,0,0,0,0,96,0,0,0,0,0,0,0,0,0, + // 0x7eff 绿 + 255,126,36,35,59,38,1,252,0,11,128,0,0,0,0,0,0,0,15,240,1,255,255,255,255,192,0,31,224,1,255,255,255,255,192,0,47,192,1,255,255,255,255,192,0,63,128,0,0,0,0,47,192,0,191,0,0,0,0,0,47,128,0,254,0,0,106,170,170,191,128,1,252,9,0,191,255,255,255,128,3,248,15,128,191,255,255,255,128,11,240,47,192,0,0,0,63,128,15,224,63,64,0,0,0,63,64,47,192,191,0,0,0,0,63,64,127,255,252,7,255,255,255,255,253,127,255,248,7,255,255,255,255,253,63,255,240,7,255,255,255,255,253,41,15,208,0,0,3,244,0,0,0,47,128,0,0,3,240,0,0,0,63,0,1,240,3,240,0,64,0,253,0,3,252,3,240,3,248,2,248,5,0,255,3,240,11,240,7,255,255,64,63,195,244,63,128,31,255,255,64,31,211,252,254,0,63,255,254,0,7,71,255,244,0,63,254,64,0,0,63,255,192,0,45,0,0,0,1,255,255,208,0,0,0,0,0,11,255,255,244,0,0,0,6,64,127,243,247,253,0,0,1,191,66,255,131,240,255,128,0,127,255,159,253,3,240,63,244,47,255,254,31,240,3,240,15,254,63,255,144,15,128,3,240,2,252,63,228,0,1,0,3,240,0,112,41,0,0,0,2,255,240,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,255,128,0,0, + // 0x7f16 编 + 22,127,35,36,68,38,1,252,0,6,64,0,0,6,208,0,0,0,11,240,0,0,15,240,0,0,0,15,224,0,0,11,244,0,0,0,31,192,0,0,3,248,0,0,0,47,192,7,255,255,255,255,240,0,63,64,7,255,255,255,255,240,0,127,0,7,255,255,255,255,240,0,253,0,7,240,0,0,7,240,1,252,12,7,240,0,0,7,240,3,248,31,135,240,0,0,7,240,3,240,63,135,240,0,0,7,240,15,208,127,7,255,255,255,255,240,31,193,254,7,255,255,255,255,240,127,255,252,7,255,255,255,255,240,127,255,248,7,240,0,0,0,0,63,255,240,7,240,0,0,0,0,41,15,208,11,224,0,0,0,0,0,47,192,11,255,255,255,255,244,0,63,0,11,255,255,255,255,244,0,254,0,11,255,255,255,255,244,2,252,22,15,255,7,195,209,244,11,255,255,15,255,7,195,209,244,63,255,255,15,255,7,195,209,244,63,255,144,15,239,7,195,209,244,47,144,0,31,239,255,255,255,244,0,0,0,47,175,255,255,255,244,0,0,46,63,111,255,255,255,244,0,6,255,63,47,7,195,209,244,0,127,255,127,47,7,195,209,244,27,255,244,190,47,7,195,209,244,127,254,0,253,47,7,195,209,244,63,224,1,252,47,7,195,209,244,62,0,3,248,47,7,195,209,244,16,0,3,244,47,7,195,223,244,0,0,0,176,47,2,130,143,240,0,0,0,0,26,0,0,6,64, + // 0x7f3a 缺 + 58,127,36,36,68,38,1,252,2,228,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,248,0,0,0,7,240,0,0,3,244,0,0,0,7,240,0,0,7,244,0,0,0,7,240,0,0,11,255,255,255,0,7,240,0,0,15,255,255,255,47,255,255,255,192,15,255,255,255,47,255,255,255,192,47,195,244,0,47,255,255,255,192,63,131,244,0,5,91,245,111,192,127,67,244,0,0,7,240,31,192,127,3,244,0,0,7,240,31,192,5,3,244,0,0,7,240,31,192,127,255,255,255,128,7,240,31,192,127,255,255,255,128,7,240,31,192,127,255,255,255,128,7,240,31,192,0,3,248,0,0,7,240,31,192,0,3,244,0,63,255,255,255,253,5,3,244,0,63,255,255,255,253,31,131,244,63,63,255,255,255,253,31,131,244,63,21,95,254,85,84,31,131,244,63,0,15,255,0,0,31,131,244,63,0,31,255,0,0,31,131,244,63,0,47,255,128,0,31,131,244,63,0,63,175,192,0,31,131,244,63,0,127,79,224,0,31,131,244,63,0,255,15,240,0,31,255,255,255,1,254,7,248,0,31,255,255,255,3,252,3,253,0,31,255,255,255,15,248,1,255,0,31,128,0,63,47,240,0,191,192,31,128,0,63,191,208,0,63,240,31,128,0,23,255,64,0,31,253,10,64,0,11,254,0,0,7,253,0,0,0,3,244,0,0,1,244,0,0,0,0,128,0,0,0,96, + // 0x7f51 网 + 81,127,32,34,16,38,3,252,21,85,85,85,85,85,85,85,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,190,0,11,224,0,253,0,191,190,0,11,224,0,253,0,191,190,0,11,208,0,253,0,191,190,0,11,208,0,253,0,191,190,0,15,208,0,252,0,191,190,0,15,208,128,252,0,191,190,29,15,194,240,252,0,191,190,63,79,195,253,252,0,191,190,63,239,193,255,252,0,191,190,11,255,192,127,252,0,191,190,2,255,128,31,248,0,191,190,0,255,128,7,252,0,191,190,0,63,192,3,254,0,191,190,0,63,240,3,255,128,191,190,0,63,252,3,255,208,191,190,0,127,254,7,255,240,191,190,0,190,191,11,227,252,191,190,0,253,63,15,209,248,191,190,0,252,12,31,192,176,191,190,2,248,0,47,192,0,191,190,3,244,0,63,64,0,191,190,11,240,0,191,0,0,191,190,15,224,0,254,0,0,191,190,63,192,3,252,0,0,191,190,63,128,7,248,0,0,191,190,15,0,1,240,0,0,191,190,0,0,0,64,1,85,255,190,0,0,0,0,3,255,254,190,0,0,0,0,2,255,252,190,0,0,0,0,1,255,224, + // 0x7f6e 置 + 110,127,35,35,59,38,2,252,5,85,85,85,85,85,85,85,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,224,3,240,1,252,0,191,0,11,224,3,240,1,252,0,191,0,11,224,3,240,1,252,0,191,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,5,85,85,86,254,85,85,85,0,0,0,0,1,252,0,0,0,0,42,170,170,171,254,170,170,170,128,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,80,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,240,7,255,255,255,255,255,255,255,244,7,255,255,255,255,255,255,255,244,7,240,0,0,0,0,0,0,0,2,160,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,35,35,59,38,1,252,1,85,85,85,85,85,85,85,64,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,252,0,127,0,47,192,2,248,0,252,0,127,0,47,192,2,248,0,252,0,127,0,47,192,2,253,86,254,85,191,85,127,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,13,0,0,47,255,255,255,255,248,127,128,0,63,255,255,255,255,249,255,128,0,63,255,255,255,255,255,253,0,0,0,0,3,248,0,127,244,0,0,0,0,3,248,3,255,128,0,47,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,7,255,244,0,0,0,0,0,1,191,255,64,0,0,0,0,0,47,255,254,170,170,169,0,0,27,255,255,255,255,255,253,0,27,255,255,255,255,255,255,253,0,127,255,255,64,0,0,0,253,0,47,254,63,64,0,0,0,253,0,14,64,63,149,85,85,85,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,170,170,170,170,253,0,0,0,63,0,0,0,0,169,0, + // 0x8005 者 + 5,128,35,37,77,38,1,251,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,4,0,0,0,0,31,192,0,0,47,0,0,0,0,31,192,0,0,127,192,0,0,0,31,208,0,0,255,0,0,191,255,255,255,255,243,253,0,0,191,255,255,255,255,255,248,0,0,191,255,255,255,255,255,224,0,0,0,0,31,192,0,255,128,0,0,0,0,31,192,7,254,0,0,0,0,0,31,192,31,248,0,0,0,0,0,31,192,191,208,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,11,255,64,0,0,0,0,0,0,63,252,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,31,255,64,0,0,0,0,0,1,255,255,255,255,255,244,0,0,47,255,255,255,255,255,244,0,6,255,255,255,255,255,255,244,0,127,255,255,64,0,0,7,244,0,63,249,63,64,0,0,7,244,0,31,128,63,64,0,0,7,244,0,4,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,0,0,0,63,64,0,0,7,244,0,0,0,63,64,0,0,7,244,0,0,0,63,64,0,0,7,244,0,0,0,63,64,0,0,7,244,0,0,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,0,0,0,63,64,0,0,7,244,0,0,0,0,0,0,0,0,0,0, + // 0x806a 聪 + 106,128,36,36,68,38,1,252,0,0,0,0,1,64,0,36,0,0,0,0,0,15,192,0,127,0,63,255,255,252,15,224,0,255,0,63,255,255,252,7,244,0,253,0,63,255,255,252,3,252,2,252,0,3,224,15,192,1,252,3,244,0,3,224,15,192,0,253,7,240,0,3,224,15,192,0,164,15,208,0,3,224,15,192,191,255,255,255,224,3,224,15,192,191,255,255,255,224,3,255,255,192,191,255,255,255,224,3,255,255,192,190,0,0,11,224,3,255,255,192,190,0,0,11,224,3,224,15,192,190,0,0,11,224,3,224,15,192,190,0,0,11,224,3,224,15,192,190,0,0,11,224,3,224,15,192,190,0,0,11,224,3,224,15,192,191,255,255,255,224,3,255,255,192,191,255,255,255,224,3,255,255,192,191,255,255,255,224,3,255,255,192,0,0,64,0,0,3,224,15,192,0,7,208,0,0,3,224,15,192,0,3,240,0,0,3,224,15,192,1,245,252,1,0,3,224,15,232,229,244,190,15,192,3,224,111,252,249,244,63,75,208,7,255,255,253,245,244,31,131,240,127,255,255,230,241,244,8,3,244,127,255,239,194,241,244,0,1,248,63,144,15,195,241,244,0,124,252,16,0,15,199,225,244,0,124,189,0,0,15,207,209,244,0,188,62,0,0,15,203,193,255,255,252,36,0,0,15,192,64,255,255,244,0,0,0,15,192,0,127,255,224,0,0,0,15,192,0,0,0,0,0, + // 0x80fd 能 + 253,128,36,37,77,38,1,251,0,10,64,0,0,253,0,0,0,0,15,240,0,0,253,0,0,0,0,31,224,0,0,253,0,0,0,0,47,192,108,0,253,0,31,0,0,63,193,253,0,253,1,255,128,0,127,64,191,0,253,47,255,192,0,255,0,63,128,255,255,253,0,1,253,0,47,192,255,255,128,0,127,255,255,255,224,255,224,0,0,127,255,255,255,240,253,0,0,0,63,255,255,255,248,253,0,0,224,21,85,80,2,252,253,0,0,253,0,0,0,0,208,253,0,0,252,0,0,0,0,0,254,0,2,252,3,255,255,255,128,255,255,255,252,3,255,255,255,128,191,255,255,244,3,255,255,255,128,47,255,255,208,3,240,0,63,128,0,0,0,0,3,240,0,63,128,253,0,0,0,3,240,0,63,128,253,0,0,0,3,255,255,255,128,253,0,7,0,3,255,255,255,128,253,0,111,192,3,250,170,191,128,253,7,255,224,3,240,0,63,128,254,191,255,64,3,240,0,63,128,255,255,228,0,3,250,170,191,128,255,249,0,0,3,255,255,255,128,255,64,0,0,3,255,255,255,128,253,0,0,80,3,240,0,63,128,253,0,0,125,3,240,0,63,128,253,0,0,190,3,240,0,63,128,253,0,0,190,3,240,0,63,128,254,0,1,253,3,240,0,63,128,255,255,255,252,3,240,63,255,64,191,255,255,248,3,240,31,255,0,31,255,255,208,3,240,15,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,27,37,3,38,6,251,0,0,3,164,0,0,0,0,0,7,252,0,0,0,0,0,11,244,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,85,85,111,229,85,85,80,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,85,85,85,85,87,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,85,85,85,85,87,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,85,85,85,85,87,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,244,0,0,0,0,0,0,0, + // 0x81f3 至 + 243,129,34,33,41,38,2,253,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,21,85,87,253,85,85,85,85,64,0,0,11,252,0,11,0,0,0,0,0,15,244,0,63,192,0,0,0,0,47,240,0,127,244,0,0,0,0,63,208,0,15,253,0,0,0,0,127,128,0,3,255,128,0,0,0,255,0,0,0,255,224,0,26,171,255,171,255,255,255,248,0,31,255,255,255,255,255,255,254,0,31,255,255,255,255,255,255,255,128,31,255,254,170,165,85,0,191,192,0,0,0,0,0,0,0,47,0,0,0,0,3,248,0,0,8,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,21,85,85,85,85,85,85,85,80, + // 0x83dc 菜 + 220,131,34,36,68,38,2,252,0,0,63,64,0,31,192,0,0,0,0,63,64,0,31,192,0,0,0,0,63,128,0,47,192,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,63,64,0,31,192,0,0,0,0,63,64,0,31,192,0,0,0,0,42,64,0,22,255,208,0,0,1,85,170,191,255,255,244,0,31,255,255,255,255,255,255,248,0,15,255,255,255,255,254,148,0,0,15,255,254,169,80,0,0,128,0,0,0,0,6,192,0,2,253,0,1,184,0,15,208,0,3,252,0,2,253,0,11,240,0,11,244,0,0,255,0,7,244,0,15,240,0,0,63,128,3,248,0,47,192,0,0,47,192,2,224,0,127,64,0,0,15,128,3,248,0,190,0,0,0,4,0,3,248,0,8,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,2,255,255,244,0,0,0,0,0,11,255,255,253,0,0,0,0,0,127,243,248,255,128,0,0,0,2,255,195,248,63,248,0,0,0,47,254,3,248,15,255,128,0,6,255,244,3,248,2,255,249,0,191,255,192,3,248,0,63,255,224,255,253,0,3,248,0,7,255,224,127,208,0,3,248,0,0,127,192,41,0,0,3,248,0,0,6,64,0,0,0,3,248,0,0,0,0, + // 0x84dd 蓝 + 221,132,34,35,59,38,2,253,0,0,42,0,0,10,144,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,0,0,1,232,0,0,0,0,0,15,208,2,252,0,0,0,3,240,15,208,3,248,0,0,0,3,240,15,208,7,255,255,255,64,3,240,15,208,11,255,255,255,64,3,240,15,208,15,255,255,255,64,3,240,15,208,47,192,16,0,0,3,240,15,208,63,130,244,0,0,3,240,15,208,255,3,252,0,0,3,240,15,210,254,0,255,0,0,3,240,15,210,252,0,127,64,0,3,240,15,208,116,0,47,192,0,3,240,15,208,0,0,15,208,0,0,0,15,208,0,0,11,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,253,0,248,2,244,3,244,0,0,253,0,248,2,244,3,244,0,0,253,0,248,2,244,3,244,0,0,253,0,248,2,244,3,244,0,0,253,0,248,2,244,3,244,0,0,253,0,252,2,244,3,244,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x86c7 蛇 + 199,134,35,36,68,38,1,252,0,1,80,0,0,1,168,0,0,0,7,240,0,0,1,252,0,0,0,7,240,0,0,1,252,0,0,0,7,240,0,0,1,252,0,0,0,7,240,0,0,1,252,0,0,0,7,240,0,0,2,252,0,0,0,7,240,0,255,255,255,255,252,15,255,255,248,255,255,255,255,252,31,255,255,252,255,255,255,255,252,31,255,255,252,252,0,0,1,252,31,67,208,252,252,0,0,1,252,31,67,208,252,252,0,0,1,252,31,67,208,252,255,240,0,1,252,31,67,208,252,7,240,0,0,0,31,67,208,252,3,240,0,0,0,31,67,208,252,3,240,0,15,0,31,67,208,252,3,240,0,191,192,31,67,208,252,3,240,11,255,208,31,255,255,252,3,240,191,254,0,31,255,255,252,3,255,255,224,0,31,255,255,252,3,255,253,0,0,31,71,224,0,3,255,144,0,0,31,71,224,0,3,248,0,0,0,0,7,224,96,3,240,0,0,0,0,7,225,248,3,240,0,0,0,0,7,224,252,3,240,0,0,0,0,7,224,252,3,240,0,0,64,0,7,224,125,3,240,0,0,248,0,7,245,191,3,240,0,0,252,0,111,255,255,3,240,0,0,252,127,255,255,255,67,240,0,0,252,127,255,255,175,67,244,0,2,248,63,254,64,31,131,255,255,255,244,37,0,0,15,66,255,255,255,240,0,0,0,0,0,127,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x884c 行 + 76,136,35,36,68,38,1,252,0,0,32,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,2,254,0,85,85,85,85,80,0,11,252,1,255,255,255,255,240,0,47,240,1,255,255,255,255,240,0,191,192,1,255,255,255,255,240,3,255,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,127,240,4,0,0,0,0,0,0,63,192,15,144,0,0,0,0,0,14,0,63,208,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,15,255,255,255,255,252,0,15,248,15,255,255,255,255,252,0,63,240,15,255,255,255,255,252,0,255,224,5,85,85,95,245,84,3,255,224,0,0,0,15,224,0,31,255,224,0,0,0,15,224,0,127,255,224,0,0,0,15,224,0,191,207,224,0,0,0,15,224,0,47,15,224,0,0,0,15,224,0,12,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,1,255,255,224,0,0,15,224,0,0,255,255,208,0,0,15,224,0,0,191,255,128,0,0,10,160,0,0,21,84,0,0, + // 0x88ab 被 + 171,136,36,36,68,38,1,252,0,15,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,1,255,255,255,255,252,63,255,255,193,255,255,255,255,252,63,255,255,241,255,255,255,255,252,63,255,255,209,252,2,252,3,248,0,0,47,193,252,1,252,3,244,0,0,63,129,252,1,252,3,240,0,0,127,1,252,1,252,11,240,0,0,253,1,252,1,252,6,208,0,3,252,33,252,1,252,0,0,0,11,244,189,255,255,255,255,208,0,31,241,249,255,255,255,255,240,0,127,251,225,255,255,255,255,208,0,255,255,193,255,244,0,31,192,3,255,255,66,255,248,0,63,192,31,255,239,194,249,252,0,63,128,191,255,207,226,248,253,0,191,0,191,143,195,243,244,191,0,255,0,62,15,193,211,244,63,130,253,0,40,15,192,67,240,47,199,252,0,0,15,192,7,240,15,255,244,0,0,15,192,11,240,7,255,224,0,0,15,192,15,224,3,255,192,0,0,15,192,15,208,2,255,128,0,0,15,192,31,192,15,255,240,0,0,15,192,63,128,127,255,253,0,0,15,192,127,66,255,215,255,208,0,15,192,255,47,255,1,255,253,0,15,194,253,63,248,0,63,253,0,15,192,188,31,208,0,7,244,0,15,192,20,9,0,0,0,96, + // 0x88c5 装 + 197,136,36,37,77,38,1,251,0,0,63,0,0,7,240,0,0,0,0,63,0,0,7,240,0,0,3,64,63,0,0,7,240,0,0,15,224,63,0,0,7,240,0,0,15,252,63,0,0,7,240,0,0,2,255,63,15,255,255,255,255,252,0,190,63,15,255,255,255,255,252,0,40,63,15,255,255,255,255,252,0,0,63,0,0,7,240,0,0,0,0,63,0,0,7,240,0,0,0,1,63,0,0,7,240,0,0,0,31,127,0,0,7,240,0,0,2,255,191,0,0,7,240,0,0,47,255,191,0,0,7,240,0,0,127,248,63,3,255,255,255,255,240,63,64,63,3,255,255,255,255,240,20,0,63,3,255,255,255,255,240,0,0,63,0,0,0,0,0,0,0,0,42,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,47,255,255,255,255,255,255,255,252,0,0,1,255,143,224,0,29,0,0,0,31,253,3,244,0,191,128,0,6,255,224,2,252,7,255,64,6,255,255,128,0,255,127,244,0,127,255,255,128,0,63,255,128,0,31,249,47,128,0,15,252,0,0,9,0,47,128,1,67,255,64,0,0,0,47,218,255,192,255,244,0,0,26,255,255,255,192,47,255,144,0,63,255,255,254,128,3,255,253,0,63,255,165,0,0,0,111,248,0,25,64,0,0,0,0,1,176,0,0,0,0,0,0,0,0,0, + // 0x8981 要 + 129,137,34,35,59,38,2,251,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,0,0,3,240,2,252,0,0,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,240,3,240,2,252,0,191,0,11,240,3,240,2,252,0,191,0,11,240,3,240,2,252,0,191,0,11,240,3,240,2,252,0,191,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,248,0,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,255,0,0,7,248,0,0,0,3,253,0,0,15,240,0,0,0,7,248,0,0,63,208,0,0,0,15,255,144,0,255,128,0,0,0,63,255,255,151,255,0,0,0,0,47,239,255,255,252,0,0,0,0,0,0,111,255,255,144,0,0,0,0,1,191,255,255,254,64,0,1,90,255,255,245,191,255,249,0,63,255,255,254,64,2,255,255,128,47,255,254,64,0,0,11,255,0,31,169,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0, + // 0x89d2 角 + 210,137,32,37,40,38,1,251,0,0,3,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,255,255,255,64,0,0,0,63,255,255,255,208,0,0,0,191,255,255,255,192,0,0,0,255,0,0,191,128,0,0,3,253,0,0,255,0,0,0,15,248,0,2,253,0,0,0,63,240,0,3,248,0,0,0,255,255,255,255,255,255,255,3,255,255,255,255,255,255,255,31,255,255,255,255,255,255,255,15,255,224,0,63,128,0,127,3,139,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,15,224,0,63,128,0,127,0,15,224,0,63,128,0,127,0,15,208,0,63,128,0,127,0,15,208,0,63,128,0,127,0,31,255,255,255,255,255,255,0,47,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,63,64,0,0,0,0,127,0,191,0,0,0,0,0,127,0,254,0,0,0,0,0,127,3,253,0,0,0,0,0,127,11,248,0,0,0,0,0,127,31,240,0,0,0,21,85,191,127,208,0,0,0,47,255,255,47,128,0,0,0,15,255,253,10,0,0,0,0,15,255,224,0,0,0,0,0,0,0,0, + // 0x8ba1 计 + 161,139,35,36,68,38,2,252,0,0,0,0,0,26,128,0,0,0,176,0,0,0,47,192,0,0,1,253,0,0,0,47,192,0,0,2,255,64,0,0,47,192,0,0,0,191,208,0,0,47,192,0,0,0,31,244,0,0,47,192,0,0,0,7,252,0,0,47,192,0,0,0,2,248,0,0,47,192,0,0,0,0,160,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,255,255,192,0,0,47,192,0,0,255,255,192,255,255,255,255,255,244,255,255,192,255,255,255,255,255,244,85,111,192,255,255,255,255,255,244,0,31,192,170,170,191,234,170,164,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,0,0,47,192,0,0,0,31,192,96,0,47,192,0,0,0,31,194,240,0,47,192,0,0,0,31,223,244,0,47,192,0,0,0,31,255,240,0,47,192,0,0,0,47,255,128,0,47,192,0,0,0,63,253,0,0,47,192,0,0,0,255,240,0,0,47,192,0,0,0,255,128,0,0,47,192,0,0,0,125,0,0,0,47,192,0,0,0,52,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0, + // 0x8bae 议 + 174,139,35,36,68,38,2,251,0,192,0,0,2,240,0,0,0,7,240,0,0,7,244,0,16,0,7,252,0,173,3,252,0,63,128,2,254,0,254,1,253,0,127,64,0,255,64,190,0,255,0,191,0,0,63,192,127,0,191,0,191,0,0,31,128,63,0,63,128,255,0,0,9,0,63,64,47,192,254,0,0,0,0,63,128,29,1,253,0,0,0,0,47,192,0,2,252,0,0,0,0,31,192,0,3,252,0,255,255,0,15,208,0,3,248,0,255,255,0,11,240,0,7,240,0,255,255,0,7,240,0,15,240,0,85,191,0,3,248,0,15,224,0,0,63,0,2,252,0,47,208,0,0,63,0,1,253,0,63,192,0,0,63,0,0,255,0,127,64,0,0,63,0,0,191,64,255,0,0,0,63,0,0,63,193,254,0,0,0,63,0,0,47,227,252,0,0,0,63,0,0,15,251,248,0,0,0,63,0,0,7,255,240,0,0,0,63,0,0,3,255,208,0,0,0,63,1,128,1,255,192,0,0,0,63,11,192,2,255,208,0,0,0,63,127,208,11,255,244,0,0,0,63,255,192,47,255,253,0,0,0,127,254,0,255,211,255,128,0,0,191,244,7,255,64,255,244,0,0,255,208,47,253,0,63,255,64,3,255,2,255,240,0,11,255,244,0,248,15,255,128,0,1,255,244,0,96,3,253,0,0,0,47,224,0,0,1,208,0,0,0,2,192,0,0,0,0,0,0,0,0,0, + // 0x8bbe 设 + 190,139,35,36,68,38,1,251,0,52,0,0,5,85,85,64,0,0,253,0,0,47,255,255,240,0,0,255,128,0,47,255,255,240,0,0,63,224,0,47,255,255,240,0,0,15,248,0,47,128,7,240,0,0,3,253,0,47,128,7,240,0,0,1,252,0,63,64,7,240,0,0,0,112,0,63,64,7,240,0,0,0,0,0,127,0,7,240,0,0,0,0,0,255,0,7,240,0,0,0,0,2,253,0,7,240,0,127,255,192,15,252,0,3,255,252,127,255,192,127,240,0,3,255,252,127,255,192,191,192,0,0,191,252,21,111,192,46,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,31,255,255,255,255,64,0,31,192,31,255,255,255,255,192,0,31,192,31,255,255,255,255,128,0,31,192,7,249,85,85,191,64,0,31,192,2,252,0,0,255,0,0,31,192,0,254,0,2,253,0,0,31,192,0,191,0,3,252,0,0,31,192,0,63,192,15,240,0,0,31,192,192,31,240,63,208,0,0,31,195,208,11,252,255,128,0,0,31,223,240,2,255,255,0,0,0,31,255,208,0,255,252,0,0,0,31,255,64,1,255,253,0,0,0,63,252,0,31,255,255,192,0,0,191,224,1,255,254,255,253,0,0,255,128,191,255,208,47,255,248,0,125,0,255,254,0,3,255,252,0,36,0,127,208,0,0,111,240,0,0,0,36,0,0,0,1,160,0,0,0,0,0,0,0,0,0, + // 0x8bd5 试 + 213,139,35,36,68,38,2,252,0,0,0,0,0,2,168,0,0,0,208,0,0,0,3,252,184,0,3,248,0,0,0,2,252,254,0,3,254,0,0,0,2,252,127,64,0,255,128,0,0,2,252,47,192,0,63,224,0,0,2,252,15,224,0,15,240,0,0,2,252,7,192,0,3,208,0,0,2,252,1,0,0,1,66,255,255,255,255,255,244,0,0,2,255,255,255,255,255,244,0,0,2,255,255,255,255,255,244,0,0,1,85,85,86,253,85,80,255,255,64,0,0,1,252,0,0,255,255,64,0,0,1,252,0,0,255,255,64,0,0,1,252,0,0,85,127,64,0,0,0,253,0,0,0,63,64,21,85,80,253,0,0,0,63,64,191,255,244,253,0,0,0,63,64,191,255,244,254,0,0,0,63,64,191,255,244,254,0,0,0,63,64,0,253,0,254,0,0,0,63,64,0,253,0,191,0,0,0,63,64,0,253,0,191,0,0,0,63,64,0,253,0,127,0,0,0,63,64,0,253,0,127,64,0,0,63,64,0,253,0,63,64,0,0,63,65,0,253,0,63,128,208,0,63,79,128,253,45,63,192,248,0,63,255,192,255,254,47,193,248,0,63,255,155,255,255,31,210,244,0,191,253,255,255,248,15,243,240,1,255,224,255,249,0,11,255,240,2,255,64,190,64,0,3,255,224,0,248,0,0,0,0,2,255,192,0,80,0,0,0,0,0,191,128,0,0,0,0,0,0,0,25,0, + // 0x8bef 误 + 239,139,36,36,68,38,1,251,0,96,0,0,0,0,0,0,0,1,248,0,3,255,255,255,255,192,3,255,0,3,255,255,255,255,192,0,255,192,3,255,255,255,255,192,0,63,240,3,240,0,0,31,192,0,15,252,3,240,0,0,31,192,0,3,248,3,240,0,0,31,192,0,1,224,3,240,0,0,31,192,0,0,64,3,244,0,0,31,192,0,0,0,3,255,255,255,255,192,0,0,0,3,255,255,255,255,192,127,255,192,3,255,255,255,255,192,127,255,192,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,21,111,192,0,0,0,0,0,0,0,15,192,15,255,255,255,255,240,0,15,192,15,255,255,255,255,240,0,15,192,15,255,255,255,255,240,0,15,192,0,0,15,208,0,0,0,15,192,0,0,15,208,0,0,0,15,192,0,0,15,208,0,0,0,15,192,0,0,15,208,0,0,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,64,0,63,248,0,0,0,15,195,192,0,255,253,0,0,0,15,239,208,1,254,255,0,0,0,31,255,208,7,252,127,192,0,0,47,255,0,31,244,47,244,0,0,127,248,1,255,224,11,254,0,0,127,208,31,255,128,2,255,244,0,47,0,191,253,0,0,191,253,0,8,0,63,224,0,0,15,244,0,0,0,29,0,0,0,0,176,0,0,0,0,0,0,0,0,0, + // 0x8bf7 请 + 247,139,36,37,77,38,1,251,0,0,0,0,0,15,208,0,0,0,160,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,255,0,31,255,255,255,255,240,0,191,192,31,255,255,255,255,240,0,47,240,26,170,175,250,170,160,0,11,248,0,0,15,208,0,0,0,2,240,5,85,95,229,85,64,0,0,128,11,255,255,255,255,192,0,0,0,11,255,255,255,255,192,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,127,255,192,106,170,175,250,170,168,127,255,192,191,255,255,255,255,253,127,255,192,191,255,255,255,255,253,21,95,192,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,15,192,3,255,255,255,255,128,0,15,192,3,255,255,255,255,128,0,15,192,3,254,170,170,191,128,0,15,192,3,240,0,0,63,128,0,15,192,3,240,0,0,63,128,0,15,192,3,249,85,85,127,128,0,15,192,3,255,255,255,255,128,0,15,192,3,255,255,255,255,128,0,15,192,67,240,0,0,63,128,0,15,194,195,240,0,0,63,128,0,15,223,227,249,85,85,127,128,0,15,255,227,255,255,255,255,128,0,15,255,131,255,255,255,255,128,0,47,253,3,240,0,0,63,128,0,63,244,3,240,0,0,63,128,0,255,192,3,240,0,0,63,128,0,127,0,3,240,0,127,255,64,0,40,0,3,240,0,63,255,0,0,0,0,3,240,0,47,248,0,0,0,0,0,0,0,0,0,0, + // 0x8bfb 读 + 251,139,35,37,77,38,1,251,0,0,0,0,0,15,208,0,0,0,240,0,0,0,15,208,0,0,3,253,0,0,0,15,208,0,0,1,255,128,15,255,255,255,255,192,0,127,224,15,255,255,255,255,192,0,31,248,15,255,255,255,255,192,0,11,248,0,0,15,208,0,0,0,2,240,0,0,15,208,0,0,0,0,208,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,63,255,255,255,255,244,0,0,0,63,255,255,255,255,244,127,255,192,63,255,255,255,255,240,127,255,192,0,0,0,0,7,224,127,255,192,0,96,3,240,11,208,21,111,192,0,254,3,240,15,192,0,15,192,0,127,211,240,31,128,0,15,192,13,11,251,240,11,64,0,15,192,63,129,247,240,0,0,0,15,192,31,244,3,240,0,0,0,15,192,2,253,7,240,0,0,0,15,192,0,191,7,240,0,0,0,15,192,0,28,11,240,0,0,0,15,192,255,255,255,255,255,252,0,15,192,255,255,255,255,255,252,0,15,192,255,255,255,255,255,252,0,15,199,64,0,63,128,0,0,0,15,239,128,0,255,10,0,0,0,15,255,192,3,254,47,192,0,0,31,255,0,15,252,47,244,0,0,31,252,0,127,240,7,254,0,0,63,224,2,255,192,0,255,192,0,191,128,47,255,0,0,47,240,0,190,1,255,248,0,0,7,252,0,56,0,191,192,0,0,1,248,0,0,0,57,0,0,0,0,96,0,0,0,0,0,0,0,0,0, + // 0x8c03 调 + 3,140,34,36,68,38,1,251,0,96,0,0,0,0,0,0,0,2,248,0,47,255,255,255,255,240,3,255,0,47,255,255,255,255,240,0,255,192,47,255,255,255,255,240,0,63,240,47,128,0,0,3,240,0,15,248,47,128,11,192,3,240,0,3,244,47,128,11,192,3,240,0,0,208,47,128,11,192,3,240,0,0,0,47,135,255,255,195,240,0,0,0,47,135,255,255,195,240,0,0,0,47,130,175,234,131,240,21,85,64,47,128,11,192,3,240,127,255,192,47,128,11,192,3,240,127,255,192,47,128,11,192,3,240,127,255,192,47,143,255,255,227,240,0,31,192,47,143,255,255,227,240,0,31,192,47,138,170,170,147,240,0,31,192,47,64,0,0,3,240,0,31,192,47,64,0,0,3,240,0,31,192,47,70,170,170,67,240,0,31,192,47,75,255,255,131,240,0,31,192,63,75,255,255,131,240,0,31,192,63,11,192,15,131,240,0,31,192,63,11,192,15,131,240,0,31,192,63,11,192,15,131,240,0,31,203,127,11,192,15,131,240,0,31,255,254,11,255,255,131,240,0,31,255,253,11,255,255,131,240,0,47,254,252,11,234,170,67,240,0,63,249,252,11,192,0,3,240,0,127,211,248,5,64,0,3,240,0,255,71,240,0,0,0,7,240,0,253,15,240,0,0,11,255,240,0,52,11,208,0,0,3,255,224,0,0,1,128,0,0,3,255,64,0,0,0,0,0,0,0,0,0, + // 0x8d25 败 + 37,141,35,36,68,38,2,252,0,0,0,0,0,16,0,0,0,0,0,0,0,0,63,64,0,0,47,255,255,253,0,63,64,0,0,47,255,255,253,0,127,0,0,0,47,255,255,253,0,190,0,0,0,47,64,0,253,0,253,0,0,0,47,0,0,189,0,252,0,0,0,47,1,80,189,1,255,255,255,240,47,3,240,189,3,255,255,255,240,47,3,240,189,3,255,255,255,240,47,3,240,189,11,240,0,189,0,47,3,240,189,15,208,0,189,0,47,3,240,189,31,192,0,252,0,47,3,240,189,63,192,0,252,0,47,3,240,189,191,208,0,252,0,47,3,240,189,255,224,1,248,0,47,3,240,189,255,240,2,244,0,47,3,240,189,123,240,3,240,0,47,7,240,189,34,248,3,240,0,47,7,240,189,0,252,7,224,0,47,7,224,189,0,253,11,208,0,47,7,224,189,0,127,15,192,0,47,11,224,189,0,63,95,192,0,47,11,208,189,0,31,255,64,0,47,15,192,189,0,15,255,0,0,26,15,192,84,0,7,254,0,0,0,31,129,0,0,3,252,0,0,0,63,95,64,0,3,255,0,0,0,127,47,192,0,15,255,128,0,0,254,15,224,0,63,255,224,0,3,252,3,244,0,255,143,248,0,11,244,2,252,3,254,3,255,0,63,224,0,254,47,248,0,255,224,255,128,0,126,191,224,0,63,244,126,0,0,36,47,64,0,11,208,36,0,0,0,8,0,0,0,128, + // 0x8d2a 贪 + 42,141,35,37,77,38,2,251,0,0,0,0,116,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,191,255,224,0,0,0,0,0,11,255,159,254,0,0,0,0,0,191,253,2,255,228,0,0,0,31,255,226,192,127,255,144,0,6,255,254,11,244,7,255,254,64,191,255,224,3,253,0,127,255,244,255,254,0,0,255,0,2,255,224,63,208,0,0,61,0,0,27,192,20,63,255,255,255,255,253,0,0,0,63,255,255,255,255,255,64,0,0,63,255,255,255,255,253,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,191,64,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,2,164,0,31,192,0,0,63,0,3,248,0,31,192,0,0,63,0,3,248,0,31,192,0,0,63,0,3,248,0,31,192,0,0,63,0,3,248,0,31,192,0,0,63,0,7,244,0,31,192,0,0,63,0,15,240,0,31,192,0,0,63,0,63,227,224,26,128,0,0,0,1,255,203,255,128,0,0,0,0,31,255,11,255,253,0,0,0,6,255,248,0,111,255,224,0,1,191,255,208,0,1,255,254,0,47,255,253,0,0,0,27,255,128,11,255,128,0,0,0,0,191,0,3,224,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0, + // 0x8d77 起 + 119,141,36,37,77,38,1,251,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,2,255,255,255,208,0,0,253,0,2,255,255,255,208,15,255,255,255,194,255,255,255,208,15,255,255,255,192,0,0,15,208,15,255,255,255,192,0,0,15,208,0,0,253,0,0,0,0,15,208,0,0,253,0,0,0,0,15,208,0,0,253,0,0,0,0,15,208,0,0,253,0,0,0,0,15,208,0,0,253,0,0,0,0,15,208,63,255,255,255,240,170,170,175,208,63,255,255,255,241,255,255,255,208,63,255,255,255,241,255,255,255,208,0,0,127,0,1,252,0,15,208,0,0,127,0,1,252,0,0,0,0,0,127,0,1,252,0,0,0,7,240,127,0,1,252,0,0,0,7,240,127,0,1,252,0,0,0,11,240,127,255,225,252,0,0,0,11,224,127,255,225,252,0,0,164,11,224,127,255,225,252,0,0,189,11,240,127,0,1,252,0,0,253,15,240,127,0,1,252,0,0,252,15,248,127,0,0,253,0,1,252,15,252,127,0,0,255,255,255,252,15,255,127,0,0,191,255,255,244,15,255,255,0,0,47,255,255,208,31,239,255,0,0,0,0,0,0,47,143,255,64,0,0,0,0,0,63,67,255,254,165,85,85,85,85,63,64,191,255,255,255,255,255,253,191,0,27,255,255,255,255,255,252,254,0,0,27,255,255,255,255,248,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8d85 超 + 133,141,36,36,68,38,1,252,0,1,248,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,1,252,0,15,255,255,255,244,0,1,252,0,15,255,255,255,240,0,1,252,0,15,255,255,255,240,15,255,255,255,128,11,224,3,240,15,255,255,255,128,15,208,7,240,15,255,255,255,128,15,192,7,240,0,1,252,0,0,47,192,7,240,0,1,252,0,0,63,128,11,240,0,1,252,0,0,191,0,15,224,0,1,252,0,2,254,0,15,224,63,255,255,255,219,248,31,255,208,63,255,255,255,255,240,15,255,192,63,255,255,255,255,128,11,254,0,0,0,253,0,5,0,0,0,0,0,0,253,0,3,255,255,255,208,7,208,253,0,3,255,255,255,208,11,224,253,0,3,255,255,255,208,11,224,253,0,3,240,0,15,208,11,224,255,255,195,240,0,15,208,11,224,255,255,195,240,0,15,208,11,208,255,255,195,240,0,15,208,11,224,253,0,3,240,0,15,208,15,240,253,0,3,240,0,15,208,15,240,253,0,3,240,0,15,208,15,248,253,0,3,255,255,255,208,15,253,253,0,3,255,255,255,208,31,255,253,0,3,255,255,255,208,31,255,253,0,0,0,0,0,0,47,143,254,0,0,0,0,0,0,63,71,255,254,165,85,85,85,85,127,0,255,255,255,255,255,255,253,191,0,31,255,255,255,255,255,252,189,0,0,107,255,255,255,255,248,8,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,36,35,59,38,1,252,0,0,0,0,5,85,85,85,84,11,255,255,252,31,255,255,255,252,11,255,255,252,31,255,255,255,252,11,255,255,252,31,255,255,255,252,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,224,0,252,31,213,85,85,64,11,255,255,252,31,255,255,255,208,11,255,255,252,31,255,255,255,208,11,255,255,252,31,255,255,255,208,0,1,248,0,31,192,0,15,208,0,1,248,0,31,192,0,15,208,0,1,248,0,31,192,0,15,208,11,193,248,0,31,192,0,15,208,11,193,248,0,31,192,0,15,208,11,193,255,255,31,192,0,15,208,11,193,255,255,31,192,0,15,208,11,193,255,255,31,213,85,95,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,192,0,0,0,11,193,248,0,31,192,0,0,0,11,193,248,6,31,192,0,0,0,11,193,254,255,31,192,0,0,0,11,219,255,255,95,192,0,0,0,47,255,255,254,31,213,85,85,84,191,255,254,64,31,255,255,255,253,127,254,64,0,31,255,255,255,253,58,64,0,0,31,255,255,255,253,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0, + // 0x8f6c 转 + 108,143,36,37,77,38,1,251,0,6,64,0,0,0,164,0,0,0,11,240,0,0,0,253,0,0,0,15,224,0,0,1,253,0,0,0,15,208,0,0,2,252,0,0,0,31,208,0,0,3,252,0,0,127,255,255,252,127,255,255,255,240,127,255,255,252,127,255,255,255,240,127,255,255,252,127,255,255,255,240,0,63,0,0,0,15,224,0,0,0,190,0,0,0,15,208,0,0,0,252,0,0,0,31,192,0,0,0,252,253,0,85,111,213,85,84,1,248,253,3,255,255,255,255,253,3,240,253,3,255,255,255,255,253,3,240,253,3,255,255,255,255,253,11,208,253,0,0,255,0,0,0,15,208,254,0,0,254,0,0,0,47,255,255,252,1,253,0,0,0,47,255,255,252,2,252,0,0,0,15,255,255,252,3,255,255,255,208,4,0,253,0,7,255,255,255,240,0,0,253,0,11,255,255,255,192,0,0,253,0,5,85,85,255,64,0,0,253,6,0,0,1,255,0,0,0,255,255,0,0,3,252,0,1,111,255,255,0,0,11,244,0,127,255,255,255,0,248,31,224,0,63,255,255,80,3,255,127,192,0,63,249,253,0,1,255,255,0,0,20,0,253,0,0,47,254,0,0,0,0,253,0,0,7,255,128,0,0,0,253,0,0,0,255,224,0,0,0,253,0,0,0,47,252,0,0,0,253,0,0,0,7,254,0,0,0,253,0,0,0,1,248,0,0,0,253,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0, + // 0x8f6f 软 + 111,143,35,36,68,38,1,252,0,0,144,0,0,57,0,0,0,0,1,252,0,0,63,64,0,0,0,2,252,0,0,127,0,0,0,0,3,248,0,0,127,0,0,0,21,87,249,85,64,191,0,0,0,63,255,255,255,192,254,0,0,0,63,255,255,255,192,255,255,255,248,63,255,255,255,193,255,255,255,252,0,31,192,0,2,255,255,255,252,0,47,128,0,3,248,0,2,252,0,63,64,0,7,244,0,2,248,0,127,47,128,11,240,0,3,244,0,190,47,128,15,224,0,3,240,0,253,47,128,47,208,252,7,240,2,252,47,128,63,192,252,7,224,3,244,47,128,191,64,252,11,208,11,244,47,128,31,0,252,11,192,31,255,255,255,193,1,252,0,64,15,255,255,255,192,1,252,0,0,15,255,255,255,192,1,253,0,0,0,0,47,128,0,2,254,0,0,0,0,47,128,0,2,255,0,0,0,0,47,128,0,3,255,0,0,0,0,47,128,0,7,255,64,0,0,0,47,239,192,11,255,192,0,1,107,255,255,208,15,255,208,0,127,255,255,255,208,31,219,240,0,63,255,255,229,0,63,199,244,0,63,254,191,128,0,191,67,252,0,37,0,47,128,1,255,1,254,0,0,0,47,128,3,253,0,255,128,0,0,47,128,15,248,0,63,224,0,0,47,128,127,224,0,31,252,0,0,47,128,255,192,0,11,252,0,0,47,128,126,0,0,1,244,0,0,31,64,24,0,0,0,96, + // 0x8f74 轴 + 116,143,35,37,77,38,1,251,0,10,64,0,0,1,252,0,0,0,15,224,0,0,1,252,0,0,0,15,208,0,0,1,252,0,0,0,15,192,0,0,1,252,0,0,21,95,213,80,0,1,252,0,0,63,255,255,252,0,1,252,0,0,63,255,255,252,0,1,252,0,0,63,255,255,252,0,1,252,0,0,0,127,0,0,0,2,253,0,0,0,190,0,0,191,255,255,255,244,0,253,0,0,191,255,255,255,244,0,252,190,0,191,255,255,255,244,1,252,190,0,190,0,252,3,244,2,244,190,0,190,0,252,3,244,3,240,190,0,190,0,252,3,244,7,224,190,0,190,0,252,3,244,15,208,190,0,190,0,252,3,244,47,255,255,252,190,0,252,3,244,31,255,255,252,190,0,252,3,244,15,255,255,252,191,255,255,255,244,4,0,190,0,191,255,255,255,244,0,0,190,0,191,255,255,255,244,0,0,190,0,190,1,252,3,244,0,0,190,20,190,0,252,3,244,0,0,191,252,190,0,252,3,244,0,107,255,252,190,0,252,3,244,127,255,255,252,190,0,252,3,244,63,255,255,144,190,0,252,3,244,63,254,254,0,190,0,252,3,244,41,0,190,0,190,0,252,3,244,0,0,190,0,190,1,252,3,244,0,0,190,0,191,255,255,255,244,0,0,190,0,191,255,255,255,244,0,0,190,0,191,255,255,255,244,0,0,190,0,190,0,0,3,244,0,0,125,0,190,0,0,3,244,0,0,0,0,0,0,0,0,0, + // 0x8f7d 载 + 125,143,35,36,68,38,2,252,0,0,63,0,0,42,0,0,0,0,0,63,0,0,63,66,192,0,0,0,63,0,0,63,79,244,0,15,255,255,255,248,63,67,252,0,15,255,255,255,248,63,64,255,0,15,255,255,255,248,63,64,127,128,0,0,63,0,0,63,64,47,0,0,0,63,0,0,63,64,8,0,0,0,63,0,0,63,64,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,3,228,0,0,63,128,0,0,0,11,240,0,0,47,128,16,0,0,15,224,0,0,47,192,63,64,127,255,255,255,255,47,192,63,0,127,255,255,255,255,31,192,191,0,127,255,255,255,254,31,192,253,0,0,254,0,0,0,31,192,252,0,1,252,11,224,0,15,210,252,0,3,248,11,224,0,15,211,244,0,11,240,11,224,0,15,231,240,0,31,255,255,255,253,11,239,224,0,15,255,255,255,252,11,255,192,0,15,255,255,255,252,7,255,128,0,4,0,11,224,0,3,255,0,0,0,0,11,224,0,3,254,0,0,0,0,11,224,21,3,252,1,208,21,171,255,255,255,11,252,1,244,127,255,255,255,255,31,254,1,244,127,255,255,254,80,127,255,2,240,62,149,11,224,1,255,127,211,240,0,0,11,224,11,253,47,255,240,0,0,11,224,47,244,11,255,208,0,0,11,224,11,208,2,255,128,0,0,5,80,2,0,0,20,0, + // 0x8f91 辑 + 145,143,36,36,68,38,1,252,0,10,64,0,0,0,0,0,0,0,15,224,0,42,170,170,170,64,0,15,208,0,63,255,255,255,192,0,31,192,0,63,255,255,255,192,21,111,213,80,63,64,0,47,192,63,255,255,248,63,64,0,47,192,63,255,255,248,63,64,0,47,192,63,255,255,248,63,255,255,255,192,0,127,0,0,63,255,255,255,192,0,190,0,0,42,170,170,170,128,0,252,84,0,0,0,0,0,0,0,252,253,0,0,0,0,0,0,2,248,253,3,255,255,255,255,252,3,244,253,3,255,255,255,255,252,3,240,253,3,255,255,255,255,252,11,224,253,0,47,128,0,47,128,15,208,253,0,47,128,0,47,128,47,255,255,244,47,234,170,191,128,47,255,255,244,47,255,255,255,128,15,255,255,244,47,255,255,255,128,4,0,253,0,47,128,0,47,128,0,0,253,0,47,128,0,47,128,0,0,253,0,47,128,0,47,128,0,0,253,0,47,255,255,255,128,0,1,255,252,47,255,255,255,128,26,255,255,252,47,234,170,191,128,127,255,255,252,47,128,0,47,128,63,255,253,0,47,128,0,47,128,62,144,253,0,63,150,171,255,253,0,0,253,11,255,255,255,255,253,0,0,253,11,255,255,255,255,253,0,0,253,7,255,234,80,47,128,0,0,253,0,0,0,0,47,128,0,0,253,0,0,0,0,47,128,0,0,253,0,0,0,0,47,128,0,0,169,0,0,0,0,47,128, + // 0x8f93 输 + 147,143,36,36,68,38,1,252,0,41,0,0,0,2,208,0,0,0,63,0,0,0,7,244,0,0,0,63,0,0,0,15,240,0,0,0,127,0,0,0,63,252,0,0,0,191,0,0,0,255,255,0,0,63,255,255,192,7,252,63,192,0,63,255,255,192,47,240,15,244,0,63,255,255,192,255,192,2,254,0,0,252,0,11,254,0,0,127,224,1,248,0,127,255,255,255,255,254,2,244,0,63,255,255,255,255,252,3,242,240,31,127,255,255,253,180,3,243,240,0,0,0,0,0,0,7,211,240,0,0,0,0,0,80,11,195,240,0,0,0,0,2,240,15,195,240,7,255,255,199,194,240,31,131,244,7,255,255,199,210,240,63,255,255,199,255,255,199,210,240,63,255,255,199,208,15,199,210,240,47,255,255,199,208,15,199,210,240,4,3,240,7,255,255,199,210,240,0,3,240,7,255,255,199,210,240,0,3,240,7,250,175,199,210,240,0,3,245,135,208,15,199,210,240,0,3,255,199,208,15,199,210,240,6,255,255,199,250,175,199,210,240,127,255,255,135,255,255,199,210,240,63,255,240,7,255,255,199,210,240,63,147,240,7,208,15,199,210,240,0,3,240,7,208,15,199,194,240,0,3,240,7,208,15,192,2,240,0,3,240,7,208,15,192,2,240,0,3,240,7,208,15,192,2,240,0,3,240,7,210,255,130,255,240,0,3,240,7,209,255,65,255,224,0,2,240,7,208,233,0,250,64, + // 0x8fb9 边 + 185,143,36,37,77,38,1,251,0,0,0,0,0,84,0,0,0,1,224,0,0,1,253,0,0,0,11,248,0,0,1,253,0,0,0,3,254,0,0,1,253,0,0,0,0,255,128,0,1,253,0,0,0,0,127,208,0,1,252,0,0,0,0,31,240,0,2,252,0,0,0,0,11,240,255,255,255,255,255,240,0,3,192,255,255,255,255,255,240,0,0,0,255,255,255,255,255,240,0,0,0,85,87,253,85,95,240,0,0,0,0,3,248,0,11,240,0,0,0,0,3,248,0,11,240,127,255,192,0,7,244,0,15,240,127,255,192,0,7,244,0,15,224,127,255,192,0,11,240,0,15,224,21,127,192,0,15,240,0,15,224,0,47,192,0,31,224,0,15,224,0,47,192,0,47,192,0,15,224,0,47,192,0,63,192,0,15,208,0,47,192,0,127,128,0,31,208,0,47,192,0,255,0,0,31,208,0,47,192,2,254,0,0,47,192,0,47,192,7,252,0,0,47,192,0,47,192,15,244,0,0,63,192,0,47,192,127,240,0,0,127,128,0,47,193,255,192,11,255,255,64,0,47,194,255,0,3,255,255,0,0,127,192,184,0,3,255,252,0,3,255,244,16,0,1,85,64,0,15,255,255,64,0,0,0,0,0,63,245,255,249,64,0,0,21,106,255,192,47,255,255,255,255,255,253,127,64,3,255,255,255,255,255,252,46,0,0,47,255,255,255,255,252,8,0,0,0,21,85,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x8fc1 迁 + 193,143,36,36,68,38,1,252,0,0,0,0,0,0,0,4,0,0,244,0,0,0,0,6,253,0,3,254,0,0,0,22,255,255,64,1,255,192,1,175,255,255,255,64,0,63,244,255,255,255,255,144,0,0,11,252,191,255,255,144,0,0,0,2,240,127,165,63,64,0,0,0,0,128,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,7,192,0,0,0,63,64,0,0,31,248,0,0,0,63,64,0,0,15,255,0,0,0,63,64,0,0,1,255,208,0,0,63,64,0,0,0,63,240,0,0,63,128,0,0,0,11,195,255,255,255,255,255,252,0,2,3,255,255,255,255,255,252,0,0,3,255,255,255,255,255,252,0,0,0,0,0,63,64,0,0,63,255,208,0,0,63,64,0,0,63,255,208,0,0,63,64,0,0,63,255,208,0,0,63,64,0,0,21,95,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,15,208,0,0,63,64,0,0,0,63,240,0,0,63,64,0,0,1,255,253,0,0,63,64,0,0,11,255,255,144,0,0,0,0,0,63,248,127,254,149,85,85,85,89,127,224,15,255,255,255,255,255,252,63,64,1,255,255,255,255,255,252,28,0,0,10,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x8fd0 运 + 208,143,36,36,68,38,1,252,0,64,0,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,3,255,64,31,255,255,255,255,192,1,255,224,31,255,255,255,255,192,0,47,248,31,255,255,255,255,192,0,7,244,5,85,85,85,85,64,0,1,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,47,253,0,0,0,0,0,0,0,7,255,130,255,255,255,255,255,253,0,191,226,255,255,255,255,255,253,0,47,194,255,255,255,255,255,253,0,7,0,85,95,249,85,85,84,0,0,0,0,15,240,0,0,0,0,0,0,0,31,224,1,64,0,0,0,0,0,47,192,15,208,0,63,255,192,0,63,192,15,240,0,63,255,192,0,127,64,3,248,0,63,255,192,0,191,0,1,253,0,21,111,192,0,254,0,0,255,0,0,31,192,1,252,0,0,63,128,0,31,192,3,248,5,106,255,208,0,31,192,171,255,255,255,255,240,0,31,193,255,255,255,255,255,244,0,31,192,255,255,255,234,87,252,0,31,192,254,165,0,0,2,252,0,127,240,0,0,0,0,0,208,1,255,248,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,127,244,191,254,85,0,1,85,85,127,208,47,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,27,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x8fd1 近 + 209,143,36,36,68,38,1,252,0,0,0,0,0,0,0,40,0,2,64,0,0,0,0,27,254,0,15,224,0,0,0,111,255,255,192,31,252,0,7,255,255,255,249,0,3,255,0,7,255,255,249,0,0,0,255,192,7,255,164,0,0,0,0,63,240,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,3,64,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,252,0,0,0,7,255,255,255,255,252,0,0,0,7,255,255,255,255,252,0,0,0,11,245,85,127,149,84,63,255,208,11,240,0,63,64,0,63,255,208,15,224,0,63,64,0,63,255,208,15,224,0,63,64,0,21,95,208,15,208,0,63,64,0,0,15,208,31,192,0,63,64,0,0,15,208,47,192,0,63,64,0,0,15,208,63,128,0,63,64,0,0,15,208,127,64,0,63,64,0,0,15,208,255,0,0,63,64,0,0,15,209,254,0,0,63,64,0,0,15,211,252,0,0,63,64,0,0,15,219,244,0,0,63,64,0,0,31,210,240,0,0,63,64,0,0,127,240,128,0,0,63,64,0,2,255,253,0,0,0,63,64,0,15,255,255,144,0,0,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,36,35,59,38,1,252,2,64,0,0,0,0,0,0,0,15,208,0,31,255,255,255,255,240,31,248,0,31,255,255,255,255,240,7,254,0,31,255,255,255,255,240,1,255,128,31,213,85,85,85,80,0,127,208,31,192,0,0,0,0,0,31,224,31,192,0,0,0,0,0,11,64,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,255,255,255,255,128,0,0,0,47,255,255,255,255,128,0,0,0,47,255,255,255,255,64,0,0,0,47,239,192,0,191,0,0,0,0,47,207,208,0,254,0,63,255,192,47,139,240,1,253,0,63,255,192,63,135,244,3,252,0,63,255,192,63,131,252,11,244,0,21,111,192,63,65,254,31,240,0,0,47,192,127,0,191,127,208,0,0,47,192,191,0,63,255,128,0,0,47,192,255,0,31,255,0,0,0,47,192,253,0,15,253,0,0,0,47,193,252,0,63,255,64,0,0,47,195,252,1,255,255,240,0,0,47,199,244,27,255,127,254,0,0,47,207,241,255,252,11,255,228,0,47,203,210,255,224,1,255,252,0,127,241,192,255,0,0,47,244,2,255,252,0,52,0,0,1,224,15,255,255,128,0,0,0,0,0,127,244,191,254,149,85,85,85,105,127,208,47,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,27,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x8fd8 还 + 216,143,36,37,77,38,1,251,0,64,0,0,0,0,0,0,0,2,240,0,0,0,0,0,0,0,11,252,0,85,85,85,85,85,80,3,255,1,255,255,255,255,255,240,0,255,193,255,255,255,255,255,240,0,63,225,255,255,255,255,255,240,0,15,244,0,0,15,240,0,0,0,7,224,0,0,47,208,0,0,0,2,64,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,15,255,5,0,0,127,255,192,0,63,255,31,64,0,127,255,192,0,191,255,127,208,0,127,255,192,2,255,191,31,244,0,21,127,192,11,253,127,7,253,0,0,47,192,47,244,127,2,255,64,0,47,192,255,224,127,0,191,208,0,47,199,255,128,127,0,47,240,0,47,207,253,0,127,0,15,252,0,47,199,244,0,127,0,3,240,0,47,193,192,0,127,0,0,192,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,47,192,0,0,127,0,0,0,0,191,208,0,0,127,0,0,0,3,255,248,0,0,127,0,0,0,15,255,255,64,0,0,0,0,0,63,245,255,249,64,0,0,21,170,255,192,47,255,255,255,255,255,253,127,64,3,255,255,255,255,255,252,46,0,0,47,255,255,255,255,252,8,0,0,0,21,85,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x8fdb 进 + 219,143,36,35,59,38,1,252,1,192,0,0,63,128,15,208,0,11,240,0,0,63,128,15,208,0,11,252,0,0,63,128,15,208,0,2,255,0,0,63,128,15,208,0,0,191,192,0,63,128,15,208,0,0,47,240,0,63,128,15,208,0,0,15,240,255,255,255,255,255,240,0,3,128,255,255,255,255,255,240,0,0,0,255,255,255,255,255,240,0,0,0,85,127,149,95,229,80,0,0,0,0,63,128,15,208,0,0,0,0,0,63,128,15,208,0,0,0,0,0,63,128,15,208,0,63,255,208,0,63,128,15,208,0,63,255,208,0,63,64,15,208,0,63,255,208,85,127,149,95,229,84,21,95,209,255,255,255,255,255,252,0,15,209,255,255,255,255,255,252,0,15,209,255,255,255,255,255,252,0,15,208,0,191,0,15,208,0,0,15,208,0,254,0,15,208,0,0,15,208,1,253,0,15,208,0,0,15,208,2,252,0,15,208,0,0,15,208,7,248,0,15,208,0,0,15,208,15,244,0,15,208,0,0,15,208,63,224,0,15,208,0,0,15,208,127,192,0,15,208,0,0,127,224,31,64,0,15,208,0,2,255,253,9,0,0,10,144,0,11,255,255,208,0,0,0,0,0,47,240,63,255,149,85,85,106,253,127,192,11,255,255,255,255,255,252,47,64,0,191,255,255,255,255,252,14,0,0,6,191,255,255,255,164,0,0,0,0,0,0,0,0,0, + // 0x8fde 连 + 222,143,36,37,77,38,1,251,0,64,0,0,10,64,0,0,0,2,224,0,0,15,240,0,0,0,11,248,0,0,15,240,0,0,0,3,253,0,0,47,208,0,0,0,0,255,66,255,255,255,255,255,240,0,127,194,255,255,255,255,255,240,0,31,226,255,255,255,255,255,240,0,15,224,0,254,0,0,0,0,0,3,64,2,252,0,0,0,0,0,0,0,3,252,11,240,0,0,0,0,0,7,244,11,240,0,0,0,0,0,15,240,11,240,0,0,0,0,0,47,192,11,240,0,0,63,255,192,191,255,255,255,255,192,63,255,192,127,255,255,255,255,192,63,255,192,63,255,255,255,255,192,21,111,192,37,85,91,245,85,64,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,195,255,255,255,255,255,248,0,47,195,255,255,255,255,255,248,0,47,195,255,255,255,255,255,248,0,47,193,85,85,91,245,85,80,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,191,208,0,0,11,240,0,0,3,255,248,0,0,11,240,0,0,15,255,255,64,0,11,240,0,0,63,244,255,249,64,0,0,21,170,191,192,47,255,255,255,255,255,253,127,64,3,255,255,255,255,255,252,46,0,0,47,255,255,255,255,252,8,0,0,0,21,85,85,85,0,0,0,0,0,0,0,0,0,0, + // 0x8ff7 迷 + 247,143,36,36,68,38,1,252,0,0,0,0,0,21,0,0,0,2,64,0,0,0,63,64,0,0,15,224,0,29,0,63,64,15,128,31,252,0,191,0,63,64,31,224,7,255,0,63,64,63,64,63,192,0,255,192,47,192,63,64,63,64,0,63,240,15,208,63,64,191,0,0,15,224,15,240,63,64,253,0,0,3,64,7,240,63,66,252,0,0,0,0,3,224,63,66,240,0,0,0,0,1,0,63,64,16,0,0,0,0,0,0,63,64,0,0,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,63,255,209,85,87,255,249,85,80,63,255,208,0,11,255,252,0,0,63,255,208,0,31,255,254,0,0,21,95,208,0,63,255,191,64,0,0,15,208,0,255,127,111,192,0,0,15,208,2,253,63,79,240,0,0,15,208,7,248,63,71,252,0,0,15,208,31,240,63,66,255,0,0,15,208,191,208,63,64,255,208,0,15,211,255,64,63,64,63,248,0,15,219,253,0,63,64,15,252,0,15,210,244,0,63,64,3,240,0,31,208,208,0,63,64,0,128,0,127,240,0,0,63,64,0,0,2,255,253,0,0,63,64,0,0,15,255,255,144,0,0,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,36,34,50,38,1,252,3,208,0,15,255,255,255,254,0,15,248,0,15,255,255,255,254,0,7,255,0,15,255,255,255,254,0,0,255,192,15,224,0,0,190,0,0,47,240,15,224,0,0,190,0,0,11,240,15,250,170,170,254,0,0,3,128,15,255,255,255,254,0,0,0,0,15,255,255,255,254,0,0,0,0,15,224,0,0,190,0,0,0,0,15,224,0,0,190,0,0,0,0,15,224,0,0,190,0,0,0,0,15,255,255,255,254,0,0,0,0,15,255,255,255,254,0,63,255,208,15,255,255,255,255,0,63,255,208,15,224,31,192,3,192,63,255,208,15,224,15,208,31,244,21,95,208,15,224,11,240,191,224,0,15,208,15,224,3,247,255,64,0,15,208,15,224,3,255,248,0,0,15,208,15,224,0,255,208,0,0,15,208,15,224,0,191,128,0,0,15,208,15,224,6,127,224,0,0,15,208,15,230,255,95,252,0,0,15,208,31,255,255,135,255,128,0,15,209,255,255,254,65,255,248,0,31,208,255,255,144,0,127,248,0,127,240,255,144,0,0,11,240,2,255,253,80,0,0,0,0,128,15,255,255,144,0,0,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x9009 选 + 9,144,35,36,68,38,2,252,0,0,0,0,0,127,0,0,0,5,0,0,6,64,127,0,0,0,47,64,0,15,224,127,0,0,0,127,208,0,15,208,127,0,0,0,31,248,0,47,192,127,0,0,0,7,253,0,63,255,255,255,255,64,1,255,64,191,255,255,255,255,64,0,191,128,255,255,255,255,255,64,0,61,3,253,0,127,0,0,0,0,0,7,248,0,127,0,0,0,0,0,7,240,0,127,0,0,0,0,0,0,224,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,15,255,255,255,255,255,240,255,255,15,255,255,255,255,255,240,255,255,15,255,255,255,255,255,240,255,255,0,0,127,1,252,0,0,21,191,0,0,191,1,252,0,0,0,127,0,0,255,1,252,0,0,0,127,0,0,254,1,252,0,0,0,127,0,2,253,1,252,0,0,0,127,0,3,252,1,252,2,128,0,127,0,11,244,1,252,2,244,0,127,0,47,240,1,252,3,244,0,127,1,255,192,1,252,3,240,0,127,31,255,64,1,255,255,240,0,127,15,252,0,0,255,255,224,0,127,199,224,0,0,127,255,192,1,255,245,0,0,0,1,84,0,15,255,254,0,0,0,0,0,0,63,248,191,249,0,0,0,21,164,255,208,31,255,255,255,255,255,240,191,64,2,255,255,255,255,255,240,61,0,0,27,255,255,255,255,224,20,0,0,0,1,85,64,0,0, + // 0x901f 速 + 31,144,36,36,68,38,1,252,0,0,0,0,0,63,64,0,0,2,64,0,0,0,63,64,0,0,15,224,0,0,0,63,64,0,0,31,248,0,0,0,63,64,0,0,7,255,3,255,255,255,255,255,248,1,255,195,255,255,255,255,255,248,0,63,243,255,255,255,255,255,248,0,15,240,0,0,63,64,0,0,0,7,128,0,0,63,64,0,0,0,1,0,0,0,63,64,0,0,0,0,0,127,255,255,255,255,192,0,0,0,127,255,255,255,255,192,0,0,0,127,170,255,234,191,192,0,0,0,127,0,63,64,15,192,0,0,0,127,0,63,64,15,192,63,255,208,127,0,63,64,15,192,63,255,208,127,0,63,64,15,192,63,255,208,127,255,255,255,255,192,21,95,208,127,255,255,255,255,192,0,15,208,127,255,255,255,255,192,0,15,208,0,7,255,244,0,0,0,15,208,0,31,255,253,0,0,0,15,208,0,127,191,255,128,0,0,15,208,1,255,63,95,240,0,0,15,208,11,252,63,71,253,0,0,15,208,127,240,63,65,255,192,0,15,211,255,192,63,64,127,248,0,31,211,254,0,63,64,31,240,0,127,240,244,0,63,64,2,208,2,255,253,0,0,63,64,0,0,15,255,255,144,0,21,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,36,36,68,38,1,252,0,0,42,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,5,85,85,64,0,0,63,0,0,47,255,255,244,31,255,255,255,254,47,255,255,253,31,255,255,255,254,47,255,255,252,31,255,255,255,254,47,192,3,248,0,4,0,5,0,47,192,11,240,0,252,0,15,208,47,192,15,224,0,253,0,15,192,47,192,31,208,0,190,0,31,192,47,192,47,192,0,127,0,63,64,47,192,63,64,0,63,0,63,0,47,192,127,0,0,63,64,126,0,47,192,254,0,0,37,0,25,0,47,193,252,0,127,255,255,255,255,47,194,252,0,127,255,255,255,255,47,194,253,0,127,255,255,255,255,47,192,191,0,0,0,0,0,0,47,192,47,192,0,0,0,0,0,47,192,15,224,0,0,0,0,0,47,192,7,240,3,255,255,255,240,47,192,3,244,3,255,255,255,240,47,192,2,248,3,255,255,255,240,47,192,2,252,3,244,0,7,240,47,192,2,252,3,244,0,7,240,47,192,2,252,3,244,0,7,240,47,192,3,252,3,244,0,7,240,47,193,111,248,3,244,0,7,240,47,195,255,240,3,244,0,7,240,47,195,255,224,3,244,0,7,240,47,194,254,64,3,255,255,255,240,47,192,0,0,3,255,255,255,240,47,192,0,0,3,255,255,255,240,47,192,0,0,3,244,0,7,240,47,192,0,0,3,244,0,3,240,31,192,0,0, + // 0x914d 配 + 77,145,35,34,50,38,2,252,255,255,255,255,199,255,255,255,192,255,255,255,255,199,255,255,255,192,255,255,255,255,199,255,255,255,192,0,47,31,0,1,85,85,95,192,0,47,31,0,0,0,0,15,192,0,47,31,0,0,0,0,15,192,0,47,31,0,0,0,0,15,192,63,255,255,255,64,0,0,15,192,63,255,255,255,64,0,0,15,192,63,255,255,255,64,0,0,15,192,62,14,44,47,64,0,0,15,192,62,14,44,47,64,0,0,15,192,62,14,44,47,67,255,255,255,192,62,14,44,47,67,255,255,255,192,62,14,44,47,67,255,255,255,192,62,29,44,47,67,249,85,95,192,62,60,45,47,67,244,0,15,192,62,60,31,255,67,244,0,15,192,63,244,15,255,67,244,0,0,0,62,160,0,47,67,244,0,0,0,62,0,0,47,67,244,0,0,0,62,0,0,47,67,244,0,0,0,63,170,170,191,67,244,0,0,0,63,255,255,255,67,244,0,0,0,63,255,255,255,67,244,0,2,208,62,0,0,47,67,244,0,2,248,62,0,0,47,67,244,0,2,248,62,0,0,47,67,244,0,3,244,63,255,255,255,67,244,0,3,244,63,255,255,255,67,248,0,11,240,63,255,255,255,67,255,255,255,240,62,0,0,47,66,255,255,255,208,62,0,0,47,64,191,255,255,128,41,0,0,0,0,1,85,80,0, + // 0x91ca 释 + 202,145,36,36,68,38,1,252,0,0,0,80,0,0,0,0,0,0,5,175,248,0,0,0,0,0,47,255,255,252,127,255,255,255,240,63,255,255,248,127,255,255,255,248,47,171,244,0,127,255,255,255,240,0,3,240,0,11,224,0,31,224,6,3,240,61,3,244,0,63,192,47,3,240,126,1,252,0,255,0,15,131,240,252,0,191,3,253,0,11,195,241,248,0,63,223,244,0,7,227,243,240,0,15,255,208,0,3,227,243,224,0,7,255,64,0,1,67,240,0,0,47,255,208,0,0,3,240,0,2,255,255,253,0,63,255,255,252,127,255,7,255,228,63,255,255,255,255,244,0,191,255,63,255,255,254,255,64,0,27,252,0,15,244,0,224,2,252,0,120,0,31,253,0,0,2,252,0,0,0,63,255,64,0,2,252,0,0,0,127,255,208,63,255,255,255,208,0,255,251,244,63,255,255,255,208,2,251,243,253,63,255,255,255,208,3,247,240,252,0,2,252,0,0,15,227,240,116,0,2,252,0,0,47,195,240,0,0,2,252,0,0,127,131,240,0,0,2,252,0,0,127,3,240,2,255,255,255,255,252,61,3,240,2,255,255,255,255,252,24,3,240,2,255,255,255,255,252,0,3,240,0,0,2,252,0,0,0,3,240,0,0,2,252,0,0,0,3,240,0,0,2,252,0,0,0,3,240,0,0,2,252,0,0,0,3,240,0,0,2,252,0,0,0,3,240,0,0,2,252,0,0, + // 0x91cd 重 + 205,145,34,35,59,38,2,253,0,0,0,0,0,0,22,128,0,0,0,0,5,106,255,255,192,0,2,255,255,255,255,255,255,240,0,1,255,255,255,255,255,233,64,0,1,255,170,151,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,85,87,253,85,91,240,0,0,254,0,3,248,0,7,240,0,0,254,0,3,248,0,11,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,0,3,248,0,7,240,0,0,254,0,3,248,0,7,240,0,0,255,85,87,253,85,91,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,254,0,3,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x91cf 量 + 207,145,34,34,50,38,2,253,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,87,253,85,85,84,0,0,0,0,3,248,0,0,0,0,170,170,170,171,254,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x9488 针 + 136,148,35,36,68,38,1,252,0,8,0,0,0,0,84,0,0,0,47,192,0,0,1,253,0,0,0,63,128,0,0,1,253,0,0,0,127,0,0,0,1,253,0,0,0,255,85,84,0,1,253,0,0,2,255,255,252,0,1,253,0,0,3,255,255,252,0,1,253,0,0,15,255,255,252,0,1,253,0,0,63,208,0,0,0,1,253,0,0,191,128,0,0,0,1,253,0,0,126,0,0,0,0,1,253,0,0,63,255,255,240,0,1,253,0,0,23,255,255,240,0,1,253,0,0,3,255,255,243,255,255,255,255,252,2,175,254,163,255,255,255,255,252,0,3,240,3,255,255,255,255,252,0,3,240,1,85,86,254,85,84,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,47,255,255,252,0,1,253,0,0,47,255,255,252,0,1,253,0,0,47,255,255,252,0,1,253,0,0,0,7,244,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,4,0,1,253,0,0,0,3,240,125,0,1,253,0,0,0,7,247,254,0,1,253,0,0,0,7,255,254,0,1,253,0,0,0,15,255,224,0,1,253,0,0,0,63,255,64,0,1,253,0,0,0,47,244,0,0,1,253,0,0,0,15,128,0,0,1,253,0,0,0,4,0,0,0,1,252,0,0, + // 0x94ae 钮 + 174,148,36,36,68,38,1,252,0,100,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,253,0,2,255,255,255,255,240,1,252,0,2,255,255,255,255,240,3,255,255,246,255,255,255,255,224,3,255,255,244,0,47,192,15,224,15,255,255,244,0,47,192,15,224,31,213,85,80,0,47,192,15,224,63,128,0,0,0,63,128,15,208,191,0,0,0,0,63,128,15,208,190,0,0,0,0,63,64,15,208,63,255,255,224,0,63,64,15,208,43,255,255,224,0,63,64,15,192,3,255,255,224,0,127,0,31,192,0,15,224,0,0,127,0,31,192,0,11,208,1,255,255,255,255,192,0,11,208,1,255,255,255,255,192,0,11,208,1,255,255,255,255,192,0,11,208,0,85,254,85,127,128,63,255,255,248,0,253,0,63,128,63,255,255,248,0,253,0,63,128,63,255,255,248,0,252,0,63,64,0,15,224,0,1,252,0,63,64,0,11,208,0,1,252,0,63,64,0,11,208,0,2,252,0,63,64,0,11,208,0,2,248,0,127,0,0,11,208,0,3,248,0,127,0,0,11,208,96,3,244,0,191,0,0,11,211,240,3,244,0,191,0,0,15,255,244,3,240,0,191,0,0,15,255,224,7,240,0,254,0,0,15,255,85,91,245,85,255,84,0,63,248,63,255,255,255,255,253,0,191,208,63,255,255,255,255,253,0,62,0,63,255,255,255,255,253,0,20,0,0,0,0,0,0,0, + // 0x9519 错 + 25,149,36,36,68,38,1,252,0,24,0,0,2,244,3,240,0,0,63,64,0,2,244,3,244,0,0,127,0,0,2,244,3,244,0,0,191,0,0,2,244,3,244,0,1,254,85,80,2,244,3,244,0,3,255,255,244,255,255,255,255,244,11,255,255,244,255,255,255,255,244,31,255,255,244,255,255,255,255,244,63,192,0,0,2,248,3,244,0,127,64,0,0,2,244,3,244,0,62,0,0,0,2,244,3,244,0,27,255,255,240,2,244,3,244,0,3,255,255,240,3,248,3,244,0,3,255,255,243,255,255,255,255,253,0,11,224,3,255,255,255,255,253,0,11,224,3,255,255,255,255,253,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,47,255,255,248,63,255,255,255,192,47,255,255,248,63,255,255,255,192,47,255,255,248,63,255,255,255,192,0,11,224,0,63,64,0,31,192,0,11,224,0,63,64,0,31,192,0,11,224,0,63,64,0,31,192,0,11,224,0,63,255,255,255,192,0,11,224,0,63,255,255,255,192,0,11,224,16,63,255,255,255,192,0,11,225,240,63,64,0,31,192,0,11,255,240,63,64,0,31,192,0,15,255,240,63,64,0,31,192,0,31,255,128,63,255,255,255,192,0,63,248,0,63,255,255,255,192,0,63,208,0,63,255,255,255,192,0,30,0,0,63,64,0,31,192,0,0,0,0,42,0,0,5,64, + // 0x955c 镜 + 92,149,36,37,77,38,1,251,0,41,0,0,0,1,176,0,0,0,63,128,0,0,3,244,0,0,0,127,0,0,0,2,252,0,0,0,254,0,0,255,255,255,255,240,1,255,255,224,255,255,255,255,240,3,255,255,224,255,255,255,255,240,11,255,255,224,2,240,0,168,0,31,224,0,0,3,244,0,253,0,127,192,0,0,2,248,1,252,0,127,64,0,0,1,248,3,244,0,62,0,0,3,255,255,255,255,252,31,255,255,195,255,255,255,255,252,3,255,255,195,255,255,255,255,252,3,255,255,192,0,0,0,0,0,0,15,224,0,21,85,85,85,64,0,15,208,0,127,255,255,255,224,0,15,208,0,127,255,255,255,224,0,15,208,0,126,0,0,11,224,0,15,208,0,126,0,0,11,224,47,255,255,240,127,255,255,255,224,47,255,255,240,127,255,255,255,224,47,255,255,240,126,0,0,15,224,0,15,224,0,126,0,0,11,224,0,15,208,0,126,85,85,95,224,0,15,208,0,127,255,255,255,224,0,15,208,0,127,255,255,255,224,0,15,208,0,0,252,15,208,0,0,15,208,176,1,252,15,208,0,0,15,215,240,2,252,15,208,0,0,15,255,244,3,248,15,208,16,0,31,255,208,11,244,15,208,61,0,63,254,0,31,240,15,208,62,0,255,244,1,255,192,15,208,125,0,127,128,47,255,0,15,255,252,0,45,0,47,248,0,7,255,252,0,0,0,15,128,0,1,170,144,0,0,0,0,0,0,0,0,0, + // 0x957f 长 + 127,149,35,36,68,38,2,252,0,2,168,0,0,0,0,0,0,0,3,252,0,0,0,15,64,0,0,3,252,0,0,0,63,240,0,0,3,252,0,0,0,255,208,0,0,3,252,0,0,3,255,64,0,0,3,252,0,0,31,253,0,0,0,3,252,0,0,191,244,0,0,0,3,252,0,11,255,192,0,0,0,3,252,0,127,254,0,0,0,0,3,252,7,255,244,0,0,0,0,3,252,47,255,128,0,0,0,0,3,252,11,252,0,0,0,0,0,3,252,2,208,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,87,253,85,255,149,85,85,80,0,3,252,0,127,64,0,0,0,0,3,252,0,63,192,0,0,0,0,3,252,0,31,224,0,0,0,0,3,252,0,15,240,0,0,0,0,3,252,0,7,252,0,0,0,0,3,252,0,3,255,0,0,0,0,3,252,0,0,255,128,0,0,0,3,252,0,0,127,224,0,0,0,3,252,0,0,31,252,0,0,0,3,252,0,25,11,255,128,0,0,3,252,27,253,2,255,244,0,0,3,255,255,254,0,191,255,128,0,7,255,255,254,0,31,255,244,0,31,255,255,144,0,2,255,224,0,15,255,144,0,0,0,47,192,0,11,228,0,0,0,0,1,64,0,1,0,0,0,0,0,0,0, + // 0x95ed 闭 + 237,149,32,37,40,38,3,251,1,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,63,224,11,255,255,255,255,255,15,248,11,255,255,255,255,255,3,253,11,255,255,255,255,255,0,255,1,85,85,85,85,191,0,126,0,0,0,0,0,191,0,32,0,0,10,144,0,191,0,0,0,0,15,224,0,191,254,0,0,0,15,224,0,191,254,0,0,0,15,224,0,191,254,0,0,0,15,224,0,191,254,1,85,85,95,245,80,191,254,11,255,255,255,255,248,191,254,11,255,255,255,255,248,191,254,11,255,255,255,255,248,191,254,0,0,1,255,224,0,191,254,0,0,3,255,224,0,191,254,0,0,15,255,224,0,191,254,0,0,47,239,224,0,191,254,0,0,191,207,224,0,191,254,0,2,255,15,224,0,191,254,0,15,252,15,224,0,191,254,0,63,244,15,224,0,191,254,1,255,208,15,224,0,191,254,15,255,0,15,224,0,191,254,63,252,0,15,224,0,191,254,31,208,0,15,224,0,191,254,11,0,0,15,224,0,191,254,0,0,127,255,224,0,191,254,0,0,63,255,192,0,191,254,0,0,47,255,64,0,191,254,0,0,5,64,0,0,255,254,0,0,0,0,0,255,254,254,0,0,0,0,0,191,253,254,0,0,0,0,0,127,228,0,0,0,0,0,0,0,0, + // 0x95f2 闲 + 242,149,32,36,32,38,3,252,1,0,0,0,0,0,0,0,11,192,1,85,85,85,85,84,31,240,7,255,255,255,255,255,7,252,7,255,255,255,255,255,2,254,7,255,255,255,255,255,0,191,64,0,0,0,0,191,0,63,192,0,0,0,0,191,0,31,224,0,0,0,0,191,0,11,64,0,0,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,15,255,255,255,255,244,191,253,15,255,255,255,255,244,191,253,15,255,255,255,255,244,191,253,0,0,63,252,0,0,191,253,0,0,255,255,0,0,191,253,0,1,255,255,192,0,191,253,0,3,255,239,240,0,191,253,0,15,235,231,252,0,191,253,0,63,203,225,255,0,191,253,0,255,11,224,127,128,191,253,3,253,11,224,47,208,191,253,31,248,11,224,15,240,191,253,47,224,11,224,3,208,191,253,11,128,11,224,1,0,191,253,1,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,11,224,0,0,191,253,0,0,5,64,15,255,254,253,0,0,0,0,11,255,253,253,0,0,0,0,7,255,244,253,0,0,0,0,1,85,0, + // 0x95f4 间 + 244,149,32,37,40,38,3,251,1,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,63,224,15,255,255,255,255,255,15,248,15,255,255,255,255,255,3,253,15,255,255,255,255,255,1,255,1,85,85,85,85,255,0,189,0,0,0,0,0,255,0,32,0,0,0,0,0,255,0,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,0,0,253,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,127,255,255,253,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,127,254,191,0,0,0,0,0,63,253,191,0,0,0,0,0,63,228,0,0,0,0,0,0,0,0, + // 0x9608 阈 + 8,150,32,37,40,38,3,251,0,128,0,0,0,0,0,0,7,224,0,0,0,0,0,0,15,248,7,255,255,255,255,254,3,253,7,255,255,255,255,254,0,255,7,255,255,255,255,254,0,127,192,0,0,0,0,254,0,47,224,0,125,0,0,254,0,15,192,0,125,125,0,254,191,2,0,0,125,63,64,254,191,0,0,0,125,15,192,254,191,0,0,0,125,2,0,254,191,31,255,255,255,255,244,254,191,31,255,255,255,255,244,254,191,15,255,255,255,255,244,254,191,0,0,0,62,0,0,254,191,0,0,0,63,2,64,254,191,7,255,252,63,11,208,254,191,7,255,252,63,15,192,254,191,7,192,60,47,15,128,254,191,7,192,60,47,95,64,254,191,7,192,60,31,127,0,254,191,7,192,60,15,190,0,254,191,7,255,252,15,252,0,254,191,7,255,252,15,252,0,254,191,0,0,0,11,244,16,254,191,0,0,1,7,240,56,254,191,0,26,255,15,240,60,254,191,47,255,255,63,244,124,254,191,47,255,249,191,253,248,254,191,31,148,2,252,191,244,254,191,0,0,15,240,63,240,254,191,0,0,11,192,11,192,254,191,0,0,1,0,0,0,254,191,0,0,0,0,11,255,253,191,0,0,0,0,3,255,252,191,0,0,0,0,3,255,208,0,0,0,0,0,0,0,0, + // 0x964d 降 + 77,150,34,36,68,38,3,252,0,0,0,0,3,160,0,0,0,0,0,0,0,11,240,0,0,0,255,255,244,0,31,208,0,0,0,255,255,252,0,63,255,255,224,0,255,255,252,0,255,255,255,248,0,252,3,244,2,255,255,255,240,0,252,3,240,11,252,0,15,224,0,252,7,240,47,255,0,47,192,0,252,11,224,255,255,128,127,128,0,252,15,195,254,31,209,255,0,0,252,31,192,248,11,251,252,0,0,252,47,64,16,3,255,240,0,0,252,63,0,0,0,255,224,0,0,252,63,0,0,7,255,248,0,0,252,63,64,0,127,255,255,144,0,252,31,192,11,255,225,255,254,64,252,11,225,255,255,0,47,255,208,252,3,241,255,244,7,242,255,128,252,3,244,254,64,7,240,11,0,252,2,248,80,0,7,240,0,0,252,1,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,3,248,2,244,7,240,0,0,252,255,244,2,244,7,240,0,0,252,191,240,2,244,7,240,0,0,252,127,128,2,244,7,240,0,0,252,0,3,255,255,255,255,255,192,252,0,3,255,255,255,255,255,192,252,0,3,255,255,255,255,255,192,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0, + // 0x9650 限 + 80,150,34,34,50,38,3,252,255,255,253,15,255,255,255,252,0,255,255,255,15,255,255,255,252,0,255,255,254,15,255,255,255,252,0,253,0,253,15,192,0,1,252,0,253,1,252,15,192,0,1,252,0,253,2,248,15,192,0,1,252,0,253,3,244,15,192,0,1,252,0,253,7,240,15,255,255,255,252,0,253,11,224,15,255,255,255,252,0,253,15,192,15,255,255,255,252,0,253,31,128,15,192,0,1,252,0,253,47,64,15,192,0,1,252,0,253,31,192,15,192,0,1,252,0,253,7,240,15,192,0,1,252,0,253,3,244,15,255,255,255,252,0,253,1,252,15,255,255,255,252,0,253,0,253,15,255,255,255,252,0,253,0,190,15,192,63,0,0,0,253,0,190,15,192,63,64,44,0,253,0,190,15,192,47,128,191,64,253,0,190,15,192,31,194,255,0,253,1,254,15,192,15,219,248,0,253,127,253,15,192,11,255,224,0,253,63,252,15,192,3,255,64,0,253,63,224,15,192,2,253,0,0,253,0,0,15,192,0,254,0,0,253,0,0,15,192,0,255,128,0,253,0,0,15,192,106,63,208,0,253,0,0,15,255,255,31,244,0,253,0,6,255,255,255,11,254,0,253,0,15,255,255,249,3,255,208,253,0,11,255,249,0,0,255,192,253,0,7,228,0,0,0,47,0,253,0,0,0,0,0,0,1,0, + // 0x9664 除 + 100,150,34,36,68,38,3,252,0,0,0,0,1,252,0,0,0,0,0,0,0,3,255,0,0,0,255,255,244,0,11,255,128,0,0,255,255,252,0,31,255,224,0,0,255,255,252,0,63,203,244,0,0,252,3,244,0,255,3,253,0,0,252,3,240,3,253,0,255,128,0,252,7,240,15,244,0,63,224,0,252,11,208,127,208,0,15,252,0,252,15,194,255,64,0,3,255,128,252,31,143,253,0,0,0,191,224,252,47,79,251,255,255,255,239,192,252,63,3,139,255,255,255,199,64,252,63,0,11,255,255,255,192,0,252,47,128,0,0,253,0,0,0,252,15,192,0,0,253,0,0,0,252,11,224,0,0,253,0,0,0,252,3,240,0,0,253,0,0,0,252,3,244,0,0,253,0,0,0,252,2,248,255,255,255,255,255,0,252,1,252,255,255,255,255,255,0,252,1,252,255,255,255,255,255,0,252,1,252,0,0,253,0,0,0,252,3,248,0,0,253,0,0,0,252,255,244,31,128,253,11,192,0,252,191,240,47,128,253,15,208,0,252,127,128,63,64,253,11,240,0,252,0,0,191,0,253,3,252,0,252,0,1,253,0,253,1,253,0,252,0,3,252,0,253,0,191,0,252,0,15,240,0,253,0,63,64,252,0,47,224,0,253,0,47,192,252,0,11,128,85,253,0,15,64,252,0,2,0,255,252,0,4,0,252,0,0,0,191,252,0,0,0,252,0,0,0,63,160,0,0,0, + // 0x9669 险 + 105,150,34,36,68,38,3,252,0,0,0,0,0,120,0,0,0,0,0,0,0,0,254,0,0,0,255,255,244,0,2,254,0,0,0,255,255,252,0,3,255,64,0,0,255,255,252,0,15,255,192,0,0,253,3,244,0,47,223,240,0,0,253,3,240,0,191,135,252,0,0,253,7,240,1,255,1,255,0,0,253,11,208,7,252,0,127,208,0,253,15,192,31,240,0,31,248,0,253,31,128,191,208,0,7,255,0,253,47,67,255,64,0,1,255,224,253,63,15,255,255,255,255,127,224,253,63,11,247,255,255,255,15,192,253,47,195,195,255,255,255,2,128,253,15,209,0,0,0,0,0,0,253,7,240,0,0,0,0,0,0,253,3,244,0,0,0,0,0,0,253,2,248,1,0,252,0,126,0,253,1,248,63,0,188,0,190,0,253,1,252,47,0,189,0,253,0,253,1,252,31,128,126,1,252,0,253,1,252,15,192,63,2,244,0,253,3,248,15,192,63,3,240,0,253,255,244,11,208,63,7,224,0,253,127,240,7,224,47,15,192,0,253,127,128,3,240,47,95,192,0,253,0,0,3,240,0,47,64,0,253,0,0,1,0,0,63,0,0,253,0,0,0,0,0,189,0,0,253,0,0,0,0,0,252,0,0,253,0,3,255,255,255,255,255,192,253,0,3,255,255,255,255,255,192,253,0,3,255,255,255,255,255,192,253,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0, + // 0x96f6 零 + 246,150,35,35,59,38,2,252,2,170,170,170,170,170,170,164,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,85,85,87,249,85,85,95,192,63,0,0,3,248,0,0,15,192,63,26,170,147,248,170,170,79,192,63,31,255,227,248,255,255,79,192,63,0,0,3,248,0,0,15,192,0,0,0,3,248,0,0,0,0,0,63,255,225,80,255,255,208,0,0,63,255,231,252,255,255,208,0,0,0,0,47,255,64,0,0,0,0,0,1,255,255,224,0,0,0,0,0,11,254,15,254,0,0,0,0,0,191,244,1,255,224,0,0,0,27,255,128,0,47,255,64,0,2,255,255,255,255,255,255,249,0,191,255,159,255,255,255,111,255,244,255,248,5,85,85,85,2,255,240,190,64,0,0,0,0,0,11,208,16,85,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,127,0,0,47,192,0,0,0,0,127,0,0,47,192,0,0,0,0,127,0,0,47,192,0,0,0,0,127,0,42,191,192,0,0,0,0,127,0,47,255,128,0,0,0,0,127,0,15,249,0,0,0,0,0,127,0,0,0,0,0,0,0,0,63,0,0,0,0,0, + // 0x9700 需 + 0,151,34,35,59,38,2,252,2,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,21,85,85,87,253,85,85,85,64,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,0,0,3,248,0,0,15,192,63,0,0,3,248,0,0,15,192,63,31,255,227,248,191,255,79,192,63,31,255,227,248,191,255,79,192,63,0,0,3,248,0,0,15,192,0,0,0,3,248,0,0,0,0,0,63,255,227,248,191,255,192,0,0,63,255,227,248,191,255,192,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,208,0,0,0,7,240,0,0,0,0,0,0,0,11,240,0,0,0,0,2,255,255,255,255,255,255,253,0,2,255,255,255,255,255,255,253,0,2,255,255,255,255,255,255,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,0,253,0,2,248,1,248,0,252,63,253,0,2,248,1,248,0,252,63,252,0,2,248,1,164,0,168,31,224,0, + // 0x9752 青 + 82,151,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,2,170,170,171,254,170,170,169,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,170,170,171,254,170,170,160,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,144,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,128,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,213,85,85,85,127,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,213,85,85,85,127,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,1,255,255,128,0,0,47,192,0,0,255,255,0,0,0,31,192,0,0,191,164,0,0, + // 0x975e 非 + 94,151,36,37,77,38,1,251,0,0,1,168,0,106,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,5,85,86,252,0,127,85,85,80,15,255,255,252,0,127,255,255,248,15,255,255,252,0,127,255,255,248,15,255,255,252,0,127,255,255,248,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,1,85,86,252,0,127,85,85,64,11,255,255,252,0,127,255,255,240,11,255,255,252,0,127,255,255,240,11,255,255,252,0,127,255,255,240,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,3,255,240,127,0,0,0,0,90,255,255,240,127,85,85,84,127,255,255,255,240,127,255,255,253,127,255,255,249,0,127,255,255,253,63,254,175,224,0,127,255,255,253,41,0,63,192,0,127,0,0,0,0,0,191,128,0,127,0,0,0,0,1,255,0,0,127,0,0,0,0,7,253,0,0,127,0,0,0,0,47,248,0,0,127,0,0,0,0,255,224,0,0,127,0,0,0,11,255,128,0,0,127,0,0,0,7,253,0,0,0,127,0,0,0,1,224,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9760 靠 + 96,151,35,37,77,38,2,251,0,5,64,2,244,0,0,0,0,0,15,208,3,248,0,0,0,0,0,47,213,87,249,85,85,80,0,0,127,255,255,255,255,255,248,0,0,255,255,255,255,255,255,248,0,3,252,0,3,248,0,0,0,0,3,244,0,3,248,0,0,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,42,170,170,171,254,170,170,170,128,0,0,0,1,84,0,0,0,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,244,0,0,191,85,85,85,85,91,244,0,0,191,0,0,0,0,7,244,0,0,191,0,0,0,0,7,244,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,244,0,0,0,7,244,2,253,0,0,0,0,0,3,240,1,252,0,0,0,63,255,255,240,1,255,255,255,192,63,255,255,240,1,255,255,255,192,21,85,87,240,1,253,0,0,0,0,0,3,240,1,252,0,0,0,31,255,255,240,1,255,255,255,64,31,255,255,240,1,255,255,255,64,0,0,7,240,1,253,0,0,0,0,0,7,240,1,252,0,0,0,170,191,255,240,1,253,85,85,80,255,255,255,224,1,255,255,255,244,250,165,127,192,1,255,255,255,244,0,0,255,128,1,252,0,0,0,0,31,254,0,1,252,0,0,0,3,255,244,0,1,252,0,0,0,2,255,128,0,1,252,0,0,0,0,244,0,0,1,168,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,34,34,50,38,2,252,21,85,85,85,85,85,85,85,80,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,0,11,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,31,208,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,15,208,0,254,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,229,95,213,85,254,85,191,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,0,0,0,0,0,191,0,15,208,0,0,0,0,0,191,0, + // 0x9875 页 + 117,152,34,35,59,38,2,251,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,21,85,85,95,249,85,85,85,64,0,0,0,15,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,47,192,0,0,0,0,0,21,85,127,213,85,85,80,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,191,0,0,0,0,11,240,0,0,191,0,0,0,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,2,252,0,11,240,0,0,191,0,3,252,0,11,240,0,0,191,0,3,252,0,11,240,0,0,191,0,3,248,0,11,240,0,0,191,0,7,244,0,11,240,0,0,191,0,15,240,144,11,240,0,0,106,0,63,225,253,6,160,0,0,0,0,255,195,255,208,0,0,0,0,11,255,0,191,253,0,0,0,0,191,252,0,11,255,208,0,0,31,255,224,0,0,255,252,0,27,255,255,64,0,0,31,255,128,191,255,228,0,0,0,1,255,208,63,253,0,0,0,0,0,47,128,14,64,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0, + // 0x9879 项 + 121,152,36,34,50,38,1,252,0,0,0,31,255,255,255,255,253,0,0,0,31,255,255,255,255,253,21,85,85,95,255,255,255,255,253,63,255,255,192,0,31,224,0,0,63,255,255,192,0,47,192,0,0,63,255,255,192,0,63,192,0,0,0,47,192,0,0,127,64,0,0,0,47,192,3,255,255,255,255,192,0,47,192,3,255,255,255,255,192,0,47,192,3,255,255,255,255,192,0,47,192,3,240,0,0,47,192,0,47,192,3,240,0,0,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,192,3,240,15,224,47,192,0,47,219,211,240,15,224,47,192,0,47,255,211,240,15,224,47,192,6,255,255,211,240,15,208,47,192,191,255,249,3,240,31,208,47,192,191,255,64,3,240,63,192,26,128,127,208,0,0,0,127,129,0,0,56,0,0,0,1,255,15,192,0,0,0,0,0,7,253,47,248,0,0,0,0,0,47,244,11,255,0,0,0,0,2,255,224,1,255,208,0,0,0,111,255,64,0,47,248,0,0,2,255,248,0,0,7,253,0,0,0,255,128,0,0,1,244,0,0,0,36,0,0,0,0,16, + // 0x9884 预 + 132,152,36,35,59,38,1,251,47,255,255,252,127,255,255,255,253,47,255,255,253,127,255,255,255,253,47,255,255,252,127,255,255,255,253,0,0,11,240,0,0,255,0,0,0,0,31,208,0,0,253,0,0,1,128,127,128,0,1,252,0,0,3,245,254,0,15,255,255,255,240,7,255,248,0,15,255,255,255,240,0,255,240,0,15,255,255,255,240,0,47,248,0,15,192,0,11,240,0,11,255,0,15,192,0,11,240,0,2,255,128,15,192,0,11,240,0,0,191,64,15,192,189,11,240,191,255,255,255,143,192,253,11,240,191,255,255,255,143,192,253,11,240,191,255,255,255,15,192,253,11,240,0,11,240,63,15,192,253,11,240,0,11,240,126,15,192,253,11,240,0,11,240,188,15,192,253,11,240,0,11,240,252,15,192,253,11,240,0,11,241,248,15,192,253,11,240,0,11,241,176,15,192,252,11,240,0,11,240,0,15,192,252,11,240,0,11,240,0,15,193,252,11,240,0,11,240,0,15,195,252,11,240,0,11,240,0,0,7,244,0,0,0,11,240,0,0,15,240,224,0,0,11,240,0,0,63,211,248,0,0,11,240,0,0,255,131,255,0,0,11,240,0,7,255,0,191,192,5,95,240,0,127,248,0,47,244,15,255,224,3,255,208,0,11,252,11,255,208,1,254,0,0,1,248,7,254,0,0,160,0,0,0,160,0,0,0,0,0,0,0,0,0, + // 0x9891 频 + 145,152,36,37,77,38,1,251,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,7,255,255,255,252,0,0,63,0,7,255,255,255,252,3,240,63,0,7,255,255,255,252,3,240,63,255,192,0,47,128,0,3,240,63,255,192,0,63,64,0,3,240,63,255,192,0,63,0,0,3,240,63,0,0,0,190,0,0,3,240,63,0,1,170,255,170,160,3,240,63,0,2,255,255,255,240,3,240,63,0,2,255,255,255,240,127,255,255,255,242,244,0,3,240,127,255,255,255,242,244,5,3,240,127,255,255,255,242,244,47,3,240,0,0,253,0,2,244,47,3,240,0,0,253,0,2,244,47,3,240,1,144,253,0,2,244,63,3,240,2,244,253,7,226,244,63,3,240,3,240,253,11,226,244,63,3,240,7,240,253,15,210,244,63,3,240,15,208,253,31,194,244,63,3,240,31,192,253,47,130,244,63,3,240,63,128,253,127,66,244,63,3,240,127,0,253,255,2,244,62,3,240,29,0,254,253,2,244,126,3,240,0,0,175,252,2,244,189,3,240,0,0,15,240,0,80,252,0,0,0,0,63,208,0,2,254,224,0,0,0,255,128,0,3,251,252,0,0,7,254,0,0,15,241,255,0,0,127,248,0,0,127,192,127,208,7,255,208,0,7,255,64,15,244,63,254,0,0,191,253,0,3,253,31,244,0,0,63,224,0,0,252,14,0,0,0,45,0,0,0,32,0,0,0,0,0,0,0,0,0, + // 0x989d 额 + 157,152,36,37,77,38,1,251,0,0,96,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,1,252,0,7,255,255,255,252,0,0,254,0,7,255,255,255,252,63,255,255,255,247,255,255,255,252,63,255,255,255,240,0,63,0,0,63,255,255,255,240,0,127,0,0,63,64,0,7,240,0,190,0,0,63,75,224,7,240,0,252,0,0,63,79,208,7,242,255,255,255,224,0,63,234,169,3,255,255,255,240,0,191,255,255,131,255,255,255,240,2,255,255,255,67,240,0,3,240,11,248,0,255,3,240,0,3,240,47,224,3,252,3,240,63,3,240,127,143,75,248,3,240,63,3,240,30,63,255,224,3,240,63,3,240,4,47,255,192,3,240,63,3,240,0,7,255,224,3,240,63,3,240,0,47,255,253,3,240,63,3,240,6,255,235,255,195,240,63,3,240,63,255,64,191,243,240,126,3,240,63,248,0,31,211,240,126,3,240,47,192,0,2,67,240,190,3,240,25,255,255,255,3,240,189,3,240,0,255,255,255,3,240,252,3,240,0,255,255,255,3,240,252,3,240,0,252,0,127,2,161,248,2,144,0,252,0,127,0,3,244,160,0,0,252,0,127,0,11,242,252,0,0,252,0,127,0,31,210,255,64,0,252,0,127,0,127,192,127,208,0,255,255,255,2,255,0,31,248,0,255,255,255,47,252,0,3,254,0,255,255,255,127,224,0,0,253,0,248,0,127,46,64,0,0,56,0,0,0,0,0,0,0,0,0, + // 0x98ce 风 + 206,152,36,36,68,38,1,251,0,21,85,85,85,85,85,84,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,47,67,248,0,0,63,129,128,0,63,67,248,0,0,63,143,240,0,127,3,248,0,0,63,139,248,0,190,3,248,0,0,63,131,253,0,253,3,248,0,0,63,128,255,2,252,3,248,0,0,63,128,127,195,248,3,248,0,0,63,128,47,231,240,2,248,0,0,63,128,15,255,224,2,248,0,0,63,64,3,255,192,2,248,0,0,63,64,1,255,192,2,248,0,0,127,64,0,255,128,2,248,0,0,127,0,1,255,208,2,248,0,0,191,0,3,255,240,2,252,0,0,191,0,11,255,248,2,252,0,0,255,0,31,243,253,1,252,0,0,254,0,63,193,255,1,252,0,0,254,0,255,64,255,129,252,0,1,253,3,255,0,63,192,252,0,2,252,15,252,0,47,240,252,24,3,252,127,240,0,15,244,253,30,7,248,127,208,0,7,240,253,47,11,240,31,64,0,3,64,190,46,15,240,4,0,0,0,0,127,62,47,208,0,0,0,0,0,63,253,127,192,0,0,0,0,0,47,252,47,64,0,0,0,0,0,15,248,7,0,0,0,0,0,0,1,160,0,0,0,0,0,0,0,0,0, + // 0x9971 饱 + 113,153,36,36,68,38,1,252,0,100,0,0,2,0,0,0,0,0,190,0,0,7,240,0,0,0,0,253,0,0,11,224,0,0,0,0,253,0,0,15,208,0,0,0,0,252,0,0,47,192,0,0,0,1,252,0,0,63,255,255,255,208,2,255,255,224,127,255,255,255,208,3,255,255,240,255,255,255,255,208,3,255,255,226,252,0,0,15,208,11,240,15,215,244,0,0,15,208,15,208,15,207,240,0,0,15,208,31,192,47,255,255,255,252,15,208,63,128,63,127,255,255,252,15,208,127,69,127,30,255,255,252,15,208,191,47,128,8,253,0,252,15,208,61,47,128,0,253,0,252,15,208,8,47,128,0,253,0,252,15,208,0,47,128,0,253,0,252,15,208,0,47,128,0,253,0,252,15,208,0,47,128,0,253,0,252,15,192,0,47,128,0,255,255,252,15,192,0,47,128,0,255,255,252,31,192,0,47,128,0,255,255,252,47,192,0,47,128,0,253,0,63,255,192,0,47,128,0,253,0,47,255,64,0,47,128,64,253,0,31,253,0,0,47,131,192,253,0,0,0,0,0,47,159,192,253,0,0,0,64,0,47,255,208,253,0,0,0,184,0,47,255,64,253,0,0,0,253,0,63,253,0,253,0,0,0,252,0,63,240,0,255,0,0,2,252,0,191,192,0,191,255,255,255,248,0,254,0,0,63,255,255,255,240,0,56,0,0,11,255,255,255,128,0,16,0,0,0,0,0,0,0, + // 0x9a6c 马 + 108,154,33,35,59,38,2,251,1,85,85,85,85,85,101,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,253,0,0,0,6,80,0,0,0,253,0,0,0,11,240,0,0,0,253,0,0,0,11,240,0,0,1,252,0,0,0,15,224,0,0,1,252,0,0,0,15,224,0,0,2,252,0,0,0,15,224,0,0,2,252,0,0,0,15,208,0,0,3,248,0,0,0,15,208,0,0,3,248,0,0,0,31,192,0,0,3,248,0,0,0,31,255,255,255,255,255,255,192,0,47,255,255,255,255,255,255,192,0,47,255,255,255,255,255,255,192,0,21,85,85,85,85,85,127,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,64,85,85,85,85,85,85,64,127,64,191,255,255,255,255,255,192,127,0,191,255,255,255,255,255,192,191,0,191,255,255,255,255,255,192,191,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,64,11,252,0,0,0,0,0,1,255,255,244,0,0,0,0,0,0,255,255,224,0,0,0,0,0,0,191,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9a71 驱 + 113,154,36,34,50,38,1,252,31,255,255,192,255,255,255,255,248,31,255,255,192,255,255,255,255,248,31,255,255,192,255,255,255,255,248,0,0,15,192,254,0,0,0,0,0,0,15,192,254,0,0,0,0,2,144,15,192,254,0,0,9,0,7,224,15,192,254,8,0,15,208,7,224,31,128,254,63,0,47,192,7,224,31,128,254,63,128,63,128,7,224,31,128,254,31,208,127,64,11,208,47,64,254,15,240,191,0,11,208,47,64,254,3,248,254,0,11,208,47,64,254,1,254,252,0,15,192,63,0,254,0,255,252,0,15,192,63,0,254,0,63,244,0,15,192,63,0,254,0,31,240,0,15,255,255,248,254,0,15,240,0,15,255,255,248,254,0,47,248,0,31,255,255,248,254,0,127,252,0,0,0,2,244,254,0,255,255,0,0,0,2,244,254,1,253,127,64,0,0,2,244,254,3,248,63,192,0,0,99,244,254,15,240,31,208,0,111,243,240,254,47,224,11,240,111,255,243,240,254,127,192,3,244,191,254,67,240,254,191,0,3,224,126,64,3,240,254,29,0,0,0,0,0,7,240,254,4,0,0,0,0,0,7,224,254,0,0,0,0,0,0,11,208,255,255,255,255,253,0,0,31,208,255,255,255,255,253,0,127,255,192,255,255,255,255,253,0,63,255,64,0,0,0,0,0,0,43,232,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,34,36,68,38,2,252,0,0,0,3,244,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,84,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,240,0,0,1,252,0,0,0,3,240,0,0,1,252,0,0,0,3,240,0,0,1,252,0,0,0,3,249,85,85,86,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,224,0,0,0,0,0,127,0,15,224,0,0,0,0,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,234,170,191,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,213,85,87,65,191,0,15,224,15,192,0,2,255,255,0,15,224,5,64,0,1,255,254,0,15,224,0,0,0,0,255,228,0, + // 0x9ec4 黄 + 196,158,34,36,68,38,2,252,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,106,170,171,254,170,170,160,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,0,3,252,0,7,240,0,0,254,0,3,252,0,7,240,0,0,254,0,3,252,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,85,87,253,85,91,240,0,0,254,0,3,252,0,7,240,0,0,254,0,3,252,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,106,170,170,170,170,170,160,0,0,0,11,64,0,30,64,0,0,0,0,191,224,0,127,248,0,0,0,31,255,208,0,111,255,208,0,6,255,254,0,0,1,255,254,0,127,255,224,0,0,0,27,255,208,47,249,0,0,0,0,0,191,128,10,64,0,0,0,0,0,9,0, + // 0x9ede 點 + 222,158,36,36,68,38,1,252,0,0,0,0,0,0,190,0,0,5,85,85,85,64,0,190,0,0,15,255,255,255,192,0,190,0,0,15,255,255,255,192,0,190,0,0,15,128,184,11,192,0,190,0,0,15,148,184,91,192,0,190,0,0,15,188,184,251,192,0,190,0,0,15,172,184,251,192,0,190,0,0,15,157,185,219,192,0,191,85,84,15,142,186,203,192,0,191,255,253,15,142,187,203,192,0,191,255,253,15,132,185,75,192,0,191,255,253,15,128,184,11,192,0,190,0,0,15,255,255,255,192,0,190,0,0,15,255,255,255,192,0,190,0,0,5,86,254,85,64,0,190,0,0,0,0,252,0,0,0,190,0,0,0,0,252,0,0,0,190,0,0,15,255,255,255,208,0,255,0,0,15,255,255,255,211,255,255,255,240,10,171,255,170,147,255,255,255,240,0,0,252,0,3,255,255,255,240,0,0,254,170,163,240,0,7,240,47,255,255,255,243,240,0,7,240,63,255,255,255,243,240,0,7,240,63,254,169,80,3,240,0,7,240,0,0,0,0,3,240,0,7,240,0,0,5,31,3,240,0,7,240,7,207,79,15,131,240,0,7,240,11,203,143,135,211,240,0,7,240,15,203,199,195,243,240,0,7,240,15,135,195,193,243,255,255,255,240,47,71,195,208,247,255,255,255,240,63,7,194,208,3,255,255,255,240,125,2,64,0,3,244,0,7,240,24,0,0,0,3,240,0,2,160, + // 0x9f50 齐 + 80,159,35,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,3,252,0,0,3,252,0,0,0,0,255,0,0,15,244,0,0,0,0,127,192,0,63,224,0,0,0,0,31,240,0,255,192,0,0,0,0,7,254,7,255,0,0,0,0,0,1,255,239,248,0,0,0,0,0,0,63,255,224,0,0,0,0,0,0,47,255,224,0,0,0,0,0,6,255,255,255,64,0,0,0,6,255,255,159,255,254,80,0,91,255,255,248,1,191,255,255,228,255,255,254,64,0,7,255,255,240,127,255,228,0,0,0,111,255,208,62,145,252,0,0,2,252,22,128,0,1,252,0,0,2,252,0,0,0,1,252,0,0,2,252,0,0,0,1,252,0,0,2,252,0,0,0,1,252,0,0,2,252,0,0,0,1,252,0,0,2,252,0,0,0,2,252,0,0,2,252,0,0,0,3,252,0,0,2,252,0,0,0,7,248,0,0,2,252,0,0,0,11,244,0,0,2,252,0,0,0,31,240,0,0,2,252,0,0,0,127,224,0,0,2,252,0,0,2,255,192,0,0,2,252,0,0,31,255,0,0,0,2,252,0,0,11,252,0,0,0,2,252,0,0,1,224,0,0,0,2,252,0,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,6,25,50,38,16,1,63,192,255,240,255,240,255,240,191,224,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,255,240,255,240,255,240,191,224,47,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Symbols_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Symbols_28.cpp new file mode 100644 index 000000000000..8bbd87b0b51f --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Symbols_28.cpp @@ -0,0 +1,38 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium_Symbols 38pt, capital 'A' height: 28px, width: 100% +extern const uint8_t NotoSans_Medium_Symbols_28[140] = { + 130,28,8,0,10,0,37,246, // unifont_t + // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 + 22,46,20,25,2,248,0,7,255,253,0,0,0,31,255,255,64,0,0,47,255,255,128,0,0,63,0,31,128,0,0,63,0,15,128,0,0,63,240,15,128,0,0,63,0,15,128,0,0,63,0,15,128,0,0,63,0,15,128,0,0,63,0,15,128,0,0,63,240,15,128,0,0,63,0,15,128,0,0,63,0,15,128,0,0,63,47,79,128,0,0,63,191,79,128,0,0,63,191,79,128,0,0,63,63,79,128,0,0,63,63,79,128,0,0,63,63,79,128,0,0,63,255,79,128,0,0,63,63,79,128,0,0,63,63,79,128,0,0,63,63,79,128,0,0,63,191,79,128,0,0,63,191,79,128,0,0,63,63,79,128,0,0,63,63,79,128,0,0,63,63,79,192,0,0,255,255,79,224,0,3,253,63,75,252,0,15,224,63,64,255,0,47,129,255,224,63,128,63,7,255,253,15,192,189,31,255,255,11,208,252,63,255,255,131,224,252,63,255,255,195,240,252,63,255,255,195,240,252,63,255,255,195,224,189,47,255,255,75,208,127,15,255,255,15,192,63,131,255,252,63,128,15,240,111,144,255,0,7,254,0,27,252,0,1,255,255,255,240,0,0,47,255,255,128,0,0,1,191,228,0,0, + // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° + 13,13,52,16,2,15,0,85,0,0,11,255,224,0,47,255,252,0,127,65,254,0,253,0,63,0,252,0,47,0,252,0,47,64,252,0,47,0,253,0,63,0,127,129,254,0,47,255,252,0,11,255,224,0,0,85,0,0, + // 0x0a - replacement for 0x2026 used in Greek language files … + 26,6,42,31,2,255,31,128,0,248,0,11,192,63,224,3,255,0,63,240,127,224,3,255,0,63,240,127,224,3,255,0,63,240,63,208,2,253,0,47,224,5,0,0,84,0,5,64, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Traditional_Chinese_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Traditional_Chinese_28.cpp new file mode 100644 index 000000000000..a88c195cbf1b --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Traditional_Chinese_28.cpp @@ -0,0 +1,646 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Traditional Chinese 38pt, capital 'A' height: 28px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +extern const uint8_t NotoSans_Medium_Traditional_Chinese_28[22554] = { + 162,28,191,34,26,255,37,246, // unifont_t + // 0x22bf ⊿ + 191,34,29,31,248,38,4,255,0,0,0,0,0,0,0,128,0,0,0,0,0,0,2,192,0,0,0,0,0,0,11,192,0,0,0,0,0,0,47,192,0,0,0,0,0,0,191,192,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,192,0,0,0,0,0,47,255,192,0,0,0,0,0,191,223,192,0,0,0,0,2,255,31,192,0,0,0,0,11,252,31,192,0,0,0,0,31,240,31,192,0,0,0,0,127,192,31,192,0,0,0,1,255,0,31,192,0,0,0,7,252,0,31,192,0,0,0,31,240,0,31,192,0,0,0,127,192,0,31,192,0,0,1,255,0,0,31,192,0,0,7,252,0,0,31,192,0,0,31,240,0,0,31,192,0,0,127,192,0,0,31,192,0,1,255,0,0,0,31,192,0,7,252,0,0,0,31,192,0,31,240,0,0,0,31,192,0,127,192,0,0,0,31,192,1,255,0,0,0,0,31,192,7,252,0,0,0,0,31,192,15,255,255,255,255,255,255,192,63,255,255,255,255,255,255,192,255,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0x4e00 一 + 0,78,35,4,36,38,2,12,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244, + // 0x4e09 三 + 9,78,34,29,5,38,2,255,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,253,0,2,170,170,170,170,170,170,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,0,0,0,47,255,255,255,255,255,64,0,0,47,255,255,255,255,255,64,0,0,47,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,170,170,170,128,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208, + // 0x4e0a 上 + 10,78,34,34,50,38,2,254,0,0,0,5,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,250,170,170,168,0,0,0,0,15,255,255,255,253,0,0,0,0,15,255,255,255,253,0,0,0,0,15,255,255,255,253,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,170,170,170,175,250,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e0b 下 + 11,78,34,33,41,38,2,252,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,106,170,170,175,250,170,170,170,144,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,11,251,255,244,0,0,0,0,0,11,240,191,254,0,0,0,0,0,11,240,31,255,208,0,0,0,0,11,240,2,255,248,0,0,0,0,11,240,0,63,254,0,0,0,0,11,240,0,11,252,0,0,0,0,11,240,0,1,244,0,0,0,0,11,240,0,0,16,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0, + // 0x4e0d 不 + 13,78,34,33,41,38,2,252,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,127,255,255,255,255,255,255,255,192,42,170,170,170,255,234,170,170,128,0,0,0,0,255,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,1,255,252,124,0,0,0,0,0,7,255,254,255,64,0,0,0,0,31,255,252,255,240,0,0,0,0,127,243,252,47,253,0,0,0,2,255,195,252,7,255,64,0,0,11,255,3,252,1,255,224,0,0,63,252,3,252,0,63,252,0,2,255,240,3,252,0,11,255,0,31,255,128,3,252,0,2,255,192,191,253,0,3,252,0,0,191,240,191,240,0,3,252,0,0,31,224,63,128,0,3,252,0,0,7,128,8,0,0,3,252,0,0,1,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0, + // 0x4e26 並 + 38,78,34,34,50,38,2,254,0,0,144,0,0,0,100,0,0,0,11,240,0,0,0,255,64,0,0,7,248,0,0,1,255,0,0,0,2,253,0,0,2,253,0,0,0,0,255,0,0,7,252,0,0,0,0,191,64,0,15,240,0,0,0,0,63,128,0,31,224,0,0,21,85,126,85,85,127,229,85,64,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,3,248,3,248,0,0,0,0,0,3,248,3,248,0,0,0,0,0,3,248,3,248,0,0,0,0,96,3,248,3,248,0,228,0,3,244,3,248,3,248,1,253,0,3,248,3,248,3,248,2,252,0,1,252,3,248,3,248,3,252,0,0,253,3,248,3,248,7,244,0,0,191,3,248,3,248,11,240,0,0,127,3,248,3,248,15,240,0,0,63,67,248,3,248,15,208,0,0,63,131,248,3,248,47,192,0,0,47,195,248,3,248,63,128,0,0,31,195,248,3,248,127,64,0,0,15,211,248,3,248,191,0,0,0,15,131,248,3,248,109,0,0,0,0,3,248,3,248,0,0,0,0,0,3,248,3,248,0,0,0,0,0,3,248,3,248,0,0,0,170,170,171,254,171,254,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e2d 中 + 45,78,32,36,32,38,3,252,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,149,85,95,245,85,86,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,1,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,255,255,255,255,255,255,253,127,149,85,95,245,85,86,253,127,0,0,15,224,0,1,253,127,0,0,15,224,0,0,168,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0, + // 0x4e3b 主 + 59,78,34,35,59,38,2,253,0,0,0,9,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,0,63,208,0,0,0,5,85,85,85,111,149,85,85,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,85,85,87,253,85,85,80,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x4e4b 之 + 75,78,35,36,68,38,1,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,1,85,85,85,255,85,85,89,0,3,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,127,224,0,0,0,1,0,0,1,255,128,0,0,0,3,224,0,7,254,0,0,0,0,11,244,0,47,248,0,0,0,0,15,240,0,191,224,0,0,0,0,31,224,2,255,128,0,0,0,0,63,240,15,253,0,0,0,0,0,127,252,127,244,0,0,0,0,0,255,255,255,192,0,0,0,0,2,254,255,254,0,0,0,0,0,3,252,63,252,0,0,0,0,0,11,248,15,255,144,0,0,0,0,31,240,3,255,255,250,165,85,88,63,208,0,127,255,255,255,255,252,191,192,0,6,255,255,255,255,248,31,64,0,0,6,191,255,255,244,1,0,0,0,0,0,0,0,0, + // 0x4ea4 交 + 164,78,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,85,85,85,85,85,85,85,85,80,0,0,20,0,0,2,128,0,0,0,0,63,128,0,15,240,0,0,0,0,255,192,0,47,253,0,0,0,3,255,0,0,7,255,128,0,0,15,252,0,0,0,255,240,0,0,127,240,0,0,0,47,252,0,2,255,192,0,0,0,11,255,0,31,255,6,64,0,30,65,255,192,191,248,63,192,0,47,224,127,224,63,224,47,208,0,63,192,31,128,15,0,15,240,0,191,128,9,0,0,0,11,244,0,255,0,0,0,0,0,3,252,3,254,0,0,0,0,0,2,255,11,252,0,0,0,0,0,0,255,175,240,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,255,208,0,0,0,0,0,2,255,255,248,0,0,0,0,0,47,255,95,255,128,0,0,0,7,255,252,3,255,249,0,0,1,191,255,208,0,191,255,228,0,191,255,253,0,0,11,255,255,240,255,255,208,0,0,0,191,255,240,63,248,0,0,0,0,6,255,192,46,0,0,0,0,0,0,6,64,0,0,0,0,0,0,0,0,0, + // 0x4eae 亮 + 174,78,34,37,77,38,2,251,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,64,0,0,47,255,255,255,255,255,128,0,0,47,255,255,255,255,255,128,0,0,47,192,0,0,0,63,128,0,0,47,192,0,0,0,63,128,0,0,47,192,0,0,0,63,128,0,0,47,255,255,255,255,255,128,0,0,47,255,255,255,255,255,128,0,0,5,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,0,0,0,0,0,0,15,208,127,0,0,0,0,0,0,15,208,127,0,15,224,3,252,0,15,208,127,0,15,224,3,252,0,15,208,127,0,31,208,3,252,0,15,208,0,0,47,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,127,128,3,252,0,0,0,0,0,255,64,3,252,0,7,128,0,3,254,0,3,252,0,7,240,0,47,252,0,3,252,0,11,240,6,255,240,0,2,253,0,15,224,255,255,128,0,2,255,255,255,208,191,249,0,0,0,255,255,255,192,62,64,0,0,0,47,255,254,0,0,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,36,36,68,38,1,252,0,0,0,1,254,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,47,255,240,0,0,0,0,0,0,127,219,252,0,0,0,0,0,1,255,131,255,0,0,0,0,0,7,254,0,255,192,0,0,0,0,31,252,0,63,244,0,0,0,0,127,240,0,15,253,0,0,0,2,255,192,0,3,255,128,0,0,11,255,0,0,0,255,240,0,0,63,253,0,0,0,127,253,0,1,255,223,255,255,255,247,255,208,15,255,79,255,255,255,240,255,248,127,252,15,255,255,255,240,47,253,63,208,0,0,0,0,0,7,248,15,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,0,0,47,208,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,0,2,252,0,0,0,0,31,192,15,255,252,0,0,0,0,31,192,11,255,248,0,0,0,0,31,192,7,255,224,0,0,0,0,31,192,1,84,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0, + // 0x4ef6 件 + 246,78,35,36,68,38,1,252,0,0,32,0,0,5,64,0,0,0,0,191,0,0,31,192,0,0,0,0,254,2,144,31,192,0,0,0,1,253,3,244,31,192,0,0,0,3,252,7,240,31,192,0,0,0,7,248,11,240,31,192,0,0,0,15,240,15,224,31,192,0,0,0,31,224,15,208,31,192,0,0,0,63,192,31,255,255,255,255,224,0,127,128,47,255,255,255,255,224,0,255,64,63,255,255,255,255,224,3,255,64,127,149,111,229,85,64,7,255,64,255,0,31,192,0,0,31,255,65,253,0,31,192,0,0,63,255,67,252,0,31,192,0,0,191,255,66,244,0,31,192,0,0,63,63,64,32,0,31,192,0,0,44,63,64,0,0,31,192,0,0,4,63,64,0,0,31,192,0,0,0,63,67,255,255,255,255,255,252,0,63,67,255,255,255,255,255,252,0,63,67,255,255,255,255,255,252,0,63,65,85,85,111,229,85,84,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,47,64,0,0,31,192,0,0, + // 0x4efd 份 + 253,78,36,36,68,38,1,252,0,0,100,0,0,0,0,0,0,0,0,255,0,15,255,255,128,0,0,1,253,0,15,255,255,192,0,0,2,252,0,15,255,255,208,0,0,3,248,1,64,0,15,224,0,0,11,240,3,248,0,15,240,0,0,15,224,3,244,0,7,240,0,0,47,192,11,240,0,3,248,0,0,63,128,15,224,0,3,252,0,0,255,64,47,192,0,1,254,0,1,255,64,63,128,0,0,255,0,3,255,64,191,0,0,0,127,192,15,255,64,254,0,0,0,63,224,47,255,67,252,0,0,0,31,248,127,255,75,244,0,0,0,11,254,255,191,95,240,0,0,0,7,253,190,63,111,239,255,255,255,253,248,60,63,71,95,255,255,255,252,32,32,63,64,31,255,255,255,252,0,0,63,64,0,11,224,1,252,0,0,63,64,0,15,224,1,252,0,0,63,64,0,15,208,1,252,0,0,63,64,0,15,208,1,252,0,0,63,64,0,31,192,2,252,0,0,63,64,0,47,192,2,252,0,0,63,64,0,63,64,2,252,0,0,63,64,0,127,0,2,252,0,0,63,64,0,255,0,3,252,0,0,63,64,1,253,0,3,248,0,0,63,64,3,252,0,3,248,0,0,63,64,15,244,0,3,248,0,0,63,64,63,224,0,11,244,0,0,63,66,255,128,15,255,240,0,0,63,67,254,0,11,255,240,0,0,63,64,244,0,7,255,192,0,0,42,0,64,0,1,84,0,0, + // 0x4f11 休 + 17,79,36,36,68,38,1,252,0,0,4,0,0,0,0,0,0,0,0,47,128,0,63,128,0,0,0,0,63,192,0,63,128,0,0,0,0,191,64,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,1,254,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,11,248,0,0,63,128,0,0,0,15,240,0,0,63,128,0,0,0,63,224,0,0,63,128,0,0,0,191,211,255,255,255,255,255,252,1,255,211,255,255,255,255,255,252,3,255,211,255,255,255,255,255,252,15,255,209,85,87,255,253,85,84,63,255,208,0,3,255,252,0,0,255,239,208,0,7,255,253,0,0,191,143,208,0,15,255,255,0,0,63,15,208,0,31,255,255,0,0,44,15,208,0,63,255,175,192,0,0,15,208,0,127,127,159,208,0,0,15,208,0,255,63,143,240,0,0,15,208,2,253,63,135,248,0,0,15,208,7,252,63,130,252,0,0,15,208,15,240,63,128,255,0,0,15,208,47,224,63,128,191,128,0,15,208,191,192,63,128,63,208,0,15,209,255,0,63,128,31,244,0,15,219,253,0,63,128,11,253,0,15,239,248,0,63,128,3,255,0,15,219,240,0,63,128,0,252,0,15,210,192,0,63,128,0,48,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,208,0,0,63,128,0,0,0,15,192,0,0,63,128,0,0, + // 0x4f4d 位 + 77,79,36,36,68,38,1,252,0,0,36,0,0,21,64,0,0,0,0,127,64,0,63,128,0,0,0,0,191,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,11,244,0,0,63,128,0,0,0,31,224,85,85,127,213,85,80,0,63,192,255,255,255,255,255,248,0,191,192,255,255,255,255,255,248,1,255,192,255,255,255,255,255,248,3,255,192,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,47,255,192,1,96,0,0,249,0,191,255,192,3,240,0,1,254,0,255,175,192,3,244,0,1,253,0,127,47,192,2,248,0,2,252,0,60,47,192,1,252,0,3,252,0,16,47,192,1,252,0,3,248,0,0,47,192,0,253,0,7,244,0,0,47,192,0,254,0,11,240,0,0,47,192,0,190,0,15,240,0,0,47,192,0,191,0,15,224,0,0,47,192,0,127,0,15,208,0,0,47,192,0,127,0,47,192,0,0,47,192,0,63,64,63,192,0,0,47,192,0,63,128,63,64,0,0,47,192,0,63,128,127,0,0,0,47,192,0,63,128,191,0,0,0,47,192,0,16,0,254,0,0,0,47,193,85,85,85,253,85,84,0,47,195,255,255,255,255,255,254,0,47,195,255,255,255,255,255,254,0,47,195,255,255,255,255,255,254,0,47,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,36,36,68,38,1,252,0,0,80,0,0,0,0,0,0,0,0,254,0,0,0,0,4,0,0,0,254,0,0,0,6,255,0,0,2,252,0,0,22,255,255,192,0,3,252,53,111,255,255,255,128,0,7,244,63,255,255,255,144,0,0,15,240,63,255,255,248,0,0,0,47,208,63,229,3,248,0,0,0,63,192,63,64,3,248,0,0,0,191,64,63,64,3,252,0,0,1,255,64,63,64,2,252,0,0,3,255,64,63,64,2,252,0,0,11,255,64,63,64,2,252,0,0,31,255,64,63,64,2,252,0,0,127,255,64,63,255,255,255,255,253,255,255,64,63,255,255,255,255,253,255,63,64,63,255,255,255,255,253,60,63,64,63,64,0,253,0,0,36,63,64,63,64,0,254,0,0,0,63,64,63,64,0,254,0,0,0,63,64,63,64,0,191,0,0,0,63,64,63,64,0,191,0,0,0,63,64,63,64,0,127,0,0,0,63,64,63,64,0,63,64,0,0,63,64,63,64,5,63,128,0,0,63,64,63,155,255,111,192,0,0,63,65,191,255,255,95,208,32,0,63,71,255,255,255,79,224,46,0,63,67,255,250,64,11,240,63,0,63,67,229,0,0,7,248,63,0,63,64,0,0,0,3,253,127,0,63,64,0,0,0,1,255,254,0,63,65,255,255,255,252,191,252,0,63,65,255,255,255,252,47,248,0,63,65,255,255,255,252,6,144,0,63,64,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,36,36,68,38,1,252,0,0,20,0,0,0,0,0,0,0,0,63,64,11,224,0,0,0,0,0,191,64,15,240,0,0,0,0,0,255,0,31,208,0,0,0,0,1,253,0,47,192,0,0,0,0,3,252,0,63,128,0,0,0,0,7,248,0,191,149,85,85,84,0,15,240,0,255,255,255,255,253,0,31,224,2,255,255,255,255,253,0,63,192,3,255,255,255,255,253,0,255,192,15,240,127,64,0,0,1,255,192,31,224,127,64,0,0,3,255,192,63,192,127,64,0,0,15,255,192,255,64,127,64,0,0,63,255,194,255,0,127,64,0,0,127,255,195,252,0,127,255,255,248,63,111,192,244,0,127,255,255,248,30,47,192,16,0,127,255,255,248,8,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,85,85,84,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,255,255,252,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,47,192,0,0,127,64,0,0,0,31,192,0,0,127,0,0,0, + // 0x4f9b 供 + 155,79,36,36,68,38,1,252,0,0,36,0,105,0,6,160,0,0,0,191,0,191,0,11,240,0,0,0,254,0,191,0,11,240,0,0,1,253,0,191,0,11,240,0,0,3,252,0,191,0,11,240,0,0,7,244,0,191,0,11,240,0,0,15,240,0,191,0,11,240,0,0,47,208,0,191,0,11,240,0,0,63,192,255,255,255,255,255,252,0,191,64,255,255,255,255,255,252,1,255,64,255,255,255,255,255,252,3,255,64,85,191,85,91,245,84,15,255,64,0,191,0,11,240,0,47,255,64,0,191,0,11,240,0,127,255,64,0,191,0,11,240,0,255,191,64,0,191,0,11,240,0,127,63,64,0,191,0,11,240,0,60,63,64,0,191,0,11,240,0,20,63,64,0,191,0,11,240,0,0,63,64,0,191,0,11,240,0,0,63,65,85,255,85,95,245,84,0,63,67,255,255,255,255,255,253,0,63,67,255,255,255,255,255,253,0,63,67,255,255,255,255,255,253,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,61,0,1,192,0,0,63,64,0,191,64,15,240,0,0,63,64,1,254,0,7,252,0,0,63,64,7,252,0,2,254,0,0,63,64,15,244,0,0,191,128,0,63,64,63,208,0,0,63,208,0,63,65,255,128,0,0,15,240,0,63,67,254,0,0,0,7,252,0,63,65,248,0,0,0,2,244,0,63,64,32,0,0,0,0,128, + // 0x4fdd 保 + 221,79,36,36,68,38,1,252,0,0,36,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,31,255,255,255,255,192,0,0,254,31,255,255,255,255,192,0,2,252,31,255,255,255,255,192,0,3,248,31,192,0,0,31,192,0,15,240,31,192,0,0,31,192,0,31,224,31,192,0,0,31,192,0,63,192,31,192,0,0,31,192,0,191,192,31,192,0,0,31,192,1,255,192,31,192,0,0,31,192,3,255,192,31,255,255,255,255,192,15,255,192,31,255,255,255,255,192,63,255,192,31,255,255,255,255,192,191,239,192,0,0,47,192,0,0,191,111,192,0,0,47,192,0,0,62,47,192,0,0,47,192,0,0,44,47,192,0,0,47,192,0,0,0,47,192,0,0,47,192,0,0,0,47,195,255,255,255,255,255,252,0,47,195,255,255,255,255,255,252,0,47,195,255,255,255,255,255,252,0,47,192,0,3,255,252,0,0,0,47,192,0,11,255,255,0,0,0,47,192,0,31,255,255,128,0,0,47,192,0,63,239,223,208,0,0,47,192,0,255,47,207,244,0,0,47,192,3,253,47,195,253,0,0,47,192,31,248,47,193,255,64,0,47,192,127,224,47,192,127,208,0,47,195,255,128,47,192,47,248,0,47,207,254,0,47,192,11,255,0,47,199,248,0,47,192,2,253,0,47,193,208,0,47,192,0,116,0,47,192,0,0,47,192,0,0,0,31,128,0,0,47,192,0,0, + // 0x4fe1 信 + 225,79,36,36,68,38,1,252,0,0,36,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,7,255,255,255,255,0,0,0,254,7,255,255,255,255,0,0,2,252,3,255,255,255,255,0,0,3,248,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,31,227,255,255,255,255,255,253,0,63,195,255,255,255,255,255,253,0,191,195,255,255,255,255,255,253,0,255,192,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,47,255,192,15,255,255,255,255,128,127,255,192,15,255,255,255,255,128,255,175,192,11,255,255,255,255,128,191,47,192,0,0,0,0,0,0,60,47,192,0,0,0,0,0,0,16,47,192,11,255,255,255,255,64,0,47,192,15,255,255,255,255,128,0,47,192,15,255,255,255,255,128,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,15,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,192,0,0,31,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,255,255,255,255,192,0,47,192,31,192,0,0,31,192,0,26,128,15,192,0,0,26,128, + // 0x500b 個 + 11,80,34,36,68,38,1,252,0,1,144,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,244,255,255,255,255,255,240,0,7,240,255,255,255,255,255,240,0,15,240,255,255,255,255,255,240,0,31,208,253,0,0,0,3,240,0,63,192,252,0,10,64,3,240,0,63,128,252,0,31,64,3,240,0,191,0,252,0,31,64,3,240,0,255,0,252,0,31,64,3,240,3,255,0,252,0,31,64,3,240,7,255,0,252,127,255,255,243,240,15,255,0,252,127,255,255,243,240,47,255,0,252,106,175,234,147,240,127,255,0,252,0,31,64,3,240,255,191,0,252,0,31,64,3,240,190,127,0,252,0,31,64,3,240,124,127,0,252,10,175,234,67,240,48,127,0,252,15,255,255,131,240,0,127,0,252,15,255,255,131,240,0,127,0,252,15,64,15,131,240,0,127,0,252,15,64,15,131,240,0,127,0,252,15,64,15,131,240,0,127,0,252,15,64,15,131,240,0,127,0,252,15,64,15,131,240,0,127,0,252,15,255,255,131,240,0,127,0,252,15,255,255,131,240,0,127,0,252,10,170,170,67,240,0,127,0,252,0,0,0,3,240,0,127,0,252,0,0,0,3,240,0,127,0,255,255,255,255,255,240,0,127,0,255,255,255,255,255,240,0,127,0,255,255,255,255,255,240,0,127,0,253,0,0,0,3,240,0,127,0,252,0,0,0,3,240,0,127,0,168,0,0,0,1,80, + // 0x503c 值 + 60,80,36,36,68,38,1,252,0,0,96,0,0,30,128,0,0,0,0,254,0,0,47,192,0,0,0,0,253,0,0,63,192,0,0,0,2,252,0,0,63,128,0,0,0,3,249,255,255,255,255,255,244,0,7,241,255,255,255,255,255,244,0,15,241,255,255,255,255,255,244,0,31,208,0,0,127,0,0,0,0,63,192,0,0,190,0,0,0,0,191,64,0,0,253,0,0,0,0,255,0,26,170,254,170,170,0,3,255,0,31,255,255,255,255,0,11,255,0,31,255,255,255,255,0,31,255,0,31,128,0,0,63,0,63,255,0,31,128,0,0,63,0,191,255,0,31,128,0,0,63,0,63,127,0,31,255,255,255,255,0,45,63,0,31,255,255,255,255,0,8,63,0,31,234,170,170,191,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,255,255,255,255,0,0,63,0,31,255,255,255,255,0,0,63,0,31,213,85,85,191,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,213,85,85,191,0,0,63,0,31,255,255,255,255,0,0,63,0,31,255,255,255,255,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,0,31,128,0,0,63,0,0,63,15,255,255,255,255,255,253,0,63,15,255,255,255,255,255,253,0,63,15,255,255,255,255,255,253,0,63,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,36,36,68,38,1,252,0,1,128,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,246,255,255,255,255,255,253,0,11,243,255,255,255,255,255,253,0,15,227,255,255,255,255,255,253,0,31,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,64,42,170,170,170,170,160,0,191,0,127,255,255,255,255,240,0,255,0,127,255,255,255,255,240,3,255,0,127,0,0,0,11,240,7,255,0,127,0,0,0,11,240,15,255,0,127,0,0,0,11,240,47,255,0,127,0,0,0,11,240,127,255,0,127,255,255,255,255,240,255,255,0,127,255,255,255,255,240,255,127,0,127,170,170,170,170,160,124,127,0,127,0,0,0,0,0,52,127,0,127,0,0,0,0,0,0,127,0,191,255,255,255,255,248,0,127,0,191,255,255,255,255,248,0,127,0,255,255,255,255,255,248,0,127,0,255,240,124,15,66,248,0,127,0,255,240,124,15,66,248,0,127,1,255,240,124,15,66,248,0,127,2,255,240,124,15,66,248,0,127,3,251,255,255,255,255,248,0,127,3,247,255,255,255,255,248,0,127,7,243,250,255,191,235,248,0,127,15,227,240,124,15,66,248,0,127,31,211,240,124,15,66,248,0,127,63,195,240,124,15,66,248,0,127,127,67,240,124,15,66,248,0,127,30,3,240,124,15,127,244,0,127,0,3,240,124,15,95,240,0,127,0,3,240,124,15,79,208, + // 0x505c 停 + 92,80,36,36,68,38,1,252,0,0,80,0,0,42,128,0,0,0,0,255,0,0,63,128,0,0,0,0,254,0,0,63,128,0,0,0,2,252,0,0,63,192,0,0,0,3,251,255,255,255,255,255,252,0,11,243,255,255,255,255,255,252,0,15,243,255,255,255,255,255,252,0,47,192,0,0,0,0,0,0,0,63,128,5,85,85,85,85,0,0,255,64,15,255,255,255,255,64,2,255,64,15,255,255,255,255,64,7,255,64,15,192,0,0,63,64,15,255,64,15,192,0,0,63,64,63,255,64,15,192,0,0,63,64,191,255,64,15,255,255,255,255,64,255,127,64,15,255,255,255,255,64,125,63,64,5,85,85,85,85,0,56,63,64,0,0,0,0,0,0,16,63,71,255,255,255,255,255,254,0,63,75,255,255,255,255,255,254,0,63,75,255,255,255,255,255,254,0,63,75,224,0,0,0,0,190,0,63,75,224,0,0,0,0,190,0,63,75,226,255,255,255,252,190,0,63,75,227,255,255,255,252,190,0,63,75,227,255,255,255,252,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,0,63,128,0,0,0,63,64,0,255,255,128,0,0,0,63,64,0,191,255,64,0,0,0,63,0,0,127,249,0,0,0, + // 0x5075 偵 + 117,80,35,37,77,38,1,251,0,0,36,0,0,63,128,0,0,0,0,127,64,0,63,128,0,0,0,0,255,0,0,63,128,0,0,0,0,254,0,0,63,255,255,248,0,2,252,0,0,63,255,255,248,0,7,248,0,0,63,255,255,248,0,15,240,0,0,63,128,0,0,0,31,224,0,0,63,128,0,0,0,63,192,0,0,63,128,0,0,0,191,192,42,170,191,234,170,128,1,255,192,47,255,255,255,255,192,3,255,192,47,255,255,255,255,192,15,255,192,47,128,0,0,47,192,63,255,192,47,128,0,0,47,192,191,239,192,47,234,170,170,191,192,255,111,192,47,255,255,255,255,192,126,47,192,47,255,255,255,255,192,56,47,192,47,128,0,0,47,192,0,47,192,47,128,0,0,47,192,0,47,192,47,128,0,0,47,192,0,47,192,47,255,255,255,255,192,0,47,192,47,255,255,255,255,192,0,47,192,47,234,170,170,191,192,0,47,192,47,128,0,0,47,192,0,47,192,47,128,0,0,47,192,0,47,192,47,234,170,170,191,192,0,47,192,47,255,255,255,255,192,0,47,192,47,255,255,255,255,192,0,47,192,0,0,0,0,0,0,0,47,192,0,62,64,7,208,0,0,47,192,1,255,192,47,252,0,0,47,192,11,255,0,11,255,64,0,47,192,191,248,0,0,255,224,0,47,199,255,208,0,0,47,252,0,47,194,255,0,0,0,7,248,0,31,128,116,0,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x5099 備 + 153,80,36,37,77,38,1,251,0,1,64,0,21,0,5,80,0,0,3,248,0,127,0,11,224,0,0,3,248,0,127,0,11,224,0,0,7,240,0,127,0,11,240,0,0,15,243,255,255,255,255,255,253,0,15,211,255,255,255,255,255,253,0,47,195,255,255,255,255,255,253,0,63,128,0,127,0,11,224,0,0,191,0,0,127,0,11,224,0,0,255,0,0,127,0,11,224,0,2,255,0,0,0,0,0,0,0,3,255,2,255,255,255,255,255,253,11,255,2,255,255,255,255,255,253,31,255,2,255,255,255,255,255,253,63,255,2,248,0,0,0,0,0,255,255,2,248,0,0,0,0,0,255,127,2,248,106,170,170,170,164,124,127,2,248,127,255,255,255,248,52,127,2,248,127,255,255,255,248,16,127,2,248,125,0,252,1,248,0,127,2,248,125,0,252,1,248,0,127,2,248,125,0,252,1,248,0,127,2,248,127,255,255,255,248,0,127,3,244,127,255,255,255,248,0,127,3,244,126,85,253,86,248,0,127,3,240,125,0,252,1,248,0,127,3,240,125,0,252,1,248,0,127,7,240,127,255,255,255,248,0,127,11,240,127,255,255,255,248,0,127,15,224,126,85,253,86,248,0,127,15,208,125,0,252,1,248,0,127,31,192,125,0,252,1,248,0,127,63,128,125,0,252,1,248,0,127,127,0,125,0,252,171,244,0,127,46,0,125,0,252,127,240,0,127,9,0,105,0,164,63,144,0,0,0,0,0,0,0,0,0, + // 0x50b3 傳 + 179,80,36,36,68,38,1,252,0,0,80,0,0,26,64,0,0,0,0,255,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,2,255,255,255,255,255,255,252,0,3,254,255,255,255,255,255,252,0,11,245,170,170,191,234,170,168,0,15,240,0,0,47,192,0,0,0,47,208,0,0,47,192,0,0,0,63,192,63,255,255,255,255,224,0,191,64,63,255,255,255,255,224,1,255,64,63,0,47,192,11,224,3,255,64,63,0,47,192,11,224,15,255,64,63,255,255,255,255,224,47,255,64,63,255,255,255,255,224,191,255,64,63,0,47,192,11,224,255,191,64,63,0,47,192,11,224,190,63,64,63,255,255,255,255,224,60,63,64,63,255,255,255,255,224,32,63,64,0,0,47,192,255,0,0,63,64,0,0,47,192,63,192,0,63,67,255,255,255,255,255,240,0,63,67,255,255,255,255,255,252,0,63,66,254,170,165,87,249,253,0,63,64,0,0,0,3,244,32,0,63,64,0,0,0,3,244,0,0,63,75,255,255,255,255,255,253,0,63,75,255,255,255,255,255,253,0,63,75,255,255,255,255,255,253,0,63,64,7,240,0,3,244,0,0,63,64,11,252,0,3,244,0,0,63,64,2,255,0,3,244,0,0,63,64,0,191,128,3,244,0,0,63,64,0,47,192,3,244,0,0,63,64,0,14,15,255,244,0,0,63,64,0,0,15,255,240,0,0,63,0,0,0,7,255,128,0, + // 0x50be 傾 + 190,80,36,37,77,38,1,251,0,1,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,15,224,0,63,255,255,255,253,0,15,208,0,63,255,255,255,253,0,31,202,128,63,255,255,255,253,0,63,143,208,0,0,127,0,0,0,63,15,208,0,0,191,0,0,0,191,15,208,0,0,254,0,0,0,254,15,208,3,255,255,255,240,2,253,15,208,3,255,255,255,240,3,253,15,208,227,250,170,171,240,11,253,15,211,251,240,0,3,240,15,253,15,223,247,240,0,3,240,47,253,15,255,195,240,0,3,240,127,253,15,255,3,255,255,255,240,255,253,15,252,3,255,255,255,240,253,189,15,240,3,250,170,171,240,124,189,15,208,3,240,0,3,240,48,189,15,208,3,240,0,3,240,0,189,15,208,3,250,170,171,240,0,189,15,208,3,255,255,255,240,0,189,15,208,3,255,255,255,240,0,189,15,208,183,240,0,3,240,0,189,15,208,191,240,0,3,240,0,189,15,208,255,240,0,3,240,0,189,15,208,255,250,170,171,240,0,189,15,208,255,255,255,255,240,0,189,11,255,251,255,255,255,240,0,189,7,255,240,0,0,0,0,0,189,2,255,208,28,0,24,0,0,189,0,0,0,191,128,191,0,0,189,0,0,3,255,64,191,208,0,189,0,0,47,252,0,31,244,0,189,0,2,255,224,0,7,253,0,189,0,1,255,64,0,0,253,0,189,0,0,116,0,0,0,48,0,0,0,0,0,0,0,0,0, + // 0x5132 儲 + 50,81,36,36,68,38,1,252,0,1,0,0,0,0,252,0,0,0,7,224,0,0,0,252,0,228,0,11,231,255,252,0,252,0,252,0,15,215,255,252,0,252,2,248,0,31,195,255,252,0,252,3,240,0,63,128,0,0,63,255,247,240,0,63,0,0,0,63,255,255,208,0,191,47,255,255,111,255,255,192,0,254,47,255,255,64,252,47,128,2,253,47,255,255,64,252,63,0,3,253,0,0,0,0,252,190,0,15,253,0,0,0,0,253,252,0,31,253,7,255,253,191,255,255,253,63,253,7,255,253,191,255,255,253,255,253,6,170,169,191,255,255,253,255,189,0,0,0,0,127,142,0,124,189,0,0,0,0,254,47,192,52,189,6,170,169,3,252,11,224,16,189,7,255,253,31,240,2,192,0,189,7,255,253,191,255,255,240,0,189,0,0,3,255,255,255,240,0,189,0,0,1,255,255,255,240,0,189,11,255,254,99,240,3,240,0,189,15,255,255,3,240,3,240,0,189,15,255,255,3,240,3,240,0,189,15,192,63,3,250,171,240,0,189,15,192,63,3,255,255,240,0,189,15,192,63,3,255,255,240,0,189,15,192,63,3,240,3,240,0,189,15,192,63,3,240,3,240,0,189,15,192,63,3,240,3,240,0,189,15,255,255,3,255,255,240,0,189,15,255,255,3,255,255,240,0,189,15,255,255,3,255,255,240,0,189,15,192,0,3,240,3,240,0,189,10,128,0,1,160,1,80, + // 0x5145 充 + 69,81,35,36,68,38,2,252,0,0,0,2,164,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,21,85,85,87,253,85,85,85,64,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,7,248,0,1,0,0,0,0,0,15,240,0,31,128,0,0,0,0,15,224,0,63,224,0,0,0,0,47,192,0,15,252,0,0,0,0,63,128,0,3,255,0,0,0,0,191,0,0,0,255,192,0,0,0,255,170,191,255,255,240,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,255,0,15,255,255,255,234,149,80,255,128,14,149,0,0,0,0,0,63,128,0,0,10,160,0,254,0,28,0,0,0,15,240,0,254,0,0,0,0,0,15,224,0,254,0,0,0,0,0,15,224,0,254,0,0,0,0,0,31,208,0,254,0,0,0,0,0,47,192,0,254,0,0,0,0,0,63,192,0,254,0,0,0,0,0,127,128,0,254,0,3,144,0,0,255,64,0,254,0,3,244,0,2,255,0,0,254,0,3,244,0,11,252,0,0,254,0,3,244,0,127,244,0,0,254,0,3,240,7,255,224,0,0,255,0,11,240,191,255,64,0,0,255,255,255,224,191,248,0,0,0,127,255,255,208,63,128,0,0,0,47,255,255,128,20,0,0,0,0,0,85,80,0, + // 0x5148 先 + 72,81,34,37,77,38,2,251,0,0,0,2,248,0,0,0,0,0,3,160,3,252,0,0,0,0,0,7,244,3,252,0,0,0,0,0,11,240,3,252,0,0,0,0,0,15,240,3,252,0,0,0,0,0,31,208,3,252,0,0,0,0,0,47,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,255,85,87,253,85,85,84,0,1,253,0,3,252,0,0,0,0,3,252,0,3,252,0,0,0,0,11,244,0,3,252,0,0,0,0,11,240,0,3,252,0,0,0,0,1,208,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,21,85,85,87,253,85,85,85,80,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,15,208,0,254,0,0,0,0,0,31,208,0,254,0,0,0,0,0,47,192,0,254,0,0,0,0,0,63,192,0,254,0,0,0,0,0,63,128,0,254,0,0,0,0,0,127,128,0,254,0,0,0,0,0,255,0,0,254,0,1,0,0,1,255,0,0,254,0,3,208,0,3,253,0,0,254,0,3,240,0,15,252,0,0,254,0,7,240,0,63,240,0,0,254,0,7,240,2,255,208,0,0,254,0,15,224,47,255,64,0,0,255,255,255,208,191,252,0,0,0,191,255,255,192,63,224,0,0,0,47,255,255,64,30,0,0,0,0,1,85,80,0,0,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,36,37,77,38,1,251,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,30,0,0,254,0,0,189,0,0,191,0,0,254,0,0,255,0,0,63,128,0,254,0,1,254,0,0,47,208,0,254,0,3,252,0,0,15,240,0,254,0,7,248,0,0,11,244,0,254,0,15,240,0,0,3,248,0,254,0,31,224,0,0,3,252,0,254,0,63,192,0,0,1,253,0,254,0,127,64,0,0,0,253,0,254,0,127,0,0,0,0,80,0,254,0,4,0,0,0,0,0,0,254,0,0,0,0,21,85,85,85,255,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,3,248,0,63,64,0,0,0,0,7,244,0,63,64,0,0,0,0,7,244,0,63,64,0,0,0,0,11,240,0,63,64,0,0,0,0,11,240,0,63,64,0,0,0,0,15,240,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,47,208,0,63,64,0,0,0,0,63,192,0,63,64,0,64,0,0,191,128,0,63,64,0,248,0,1,255,0,0,63,64,0,253,0,7,254,0,0,63,64,0,253,0,31,252,0,0,63,64,0,252,0,255,240,0,0,63,128,1,252,31,255,192,0,0,63,213,87,252,127,254,0,0,0,63,255,255,248,47,244,0,0,0,31,255,255,240,14,64,0,0,0,7,255,255,128,0,0,0,0,0,0,0,0,0, + // 0x5165 入 + 101,81,35,34,50,38,2,252,0,2,170,170,168,0,0,0,0,0,3,255,255,253,0,0,0,0,0,3,255,255,253,0,0,0,0,0,3,255,255,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,5,255,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,127,223,208,0,0,0,0,0,0,191,79,240,0,0,0,0,0,0,255,11,244,0,0,0,0,0,2,254,7,248,0,0,0,0,0,3,253,3,252,0,0,0,0,0,7,252,2,254,0,0,0,0,0,15,244,0,255,64,0,0,0,0,47,240,0,191,192,0,0,0,0,127,192,0,63,224,0,0,0,0,255,128,0,31,244,0,0,0,3,255,0,0,15,253,0,0,0,11,253,0,0,3,255,0,0,0,47,248,0,0,1,255,192,0,0,191,224,0,0,0,127,244,0,3,255,192,0,0,0,47,254,0,31,255,0,0,0,0,11,255,192,255,252,0,0,0,0,1,255,244,255,224,0,0,0,0,0,127,224,47,64,0,0,0,0,0,15,192,8,0,0,0,0,0,0,1,0, + // 0x5168 全 + 104,81,36,35,59,38,1,253,0,0,0,1,255,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,191,199,253,0,0,0,0,0,2,255,66,255,64,0,0,0,0,7,254,0,191,208,0,0,0,0,31,248,0,47,244,0,0,0,0,191,224,0,11,254,0,0,0,2,255,128,0,2,255,192,0,0,15,254,0,0,0,191,244,0,0,127,244,0,0,0,31,254,0,2,255,208,0,0,0,3,255,208,31,255,0,0,0,0,0,255,253,127,251,255,255,255,255,255,239,252,47,211,255,255,255,255,255,195,244,14,3,255,255,255,255,255,192,176,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240, + // 0x5171 共 + 113,81,34,36,68,38,2,252,0,0,106,0,0,10,144,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,21,85,191,85,85,95,245,85,64,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,0,0,191,0,0,15,224,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,63,144,0,63,128,0,0,0,0,191,208,0,191,240,0,0,0,3,255,64,0,31,253,0,0,0,15,253,0,0,3,255,128,0,0,127,244,0,0,0,255,240,0,2,255,208,0,0,0,47,252,0,31,255,0,0,0,0,7,255,0,127,248,0,0,0,0,1,255,192,31,208,0,0,0,0,0,127,64,6,0,0,0,0,0,0,24,0, + // 0x5177 具 + 119,81,34,34,50,38,2,252,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,250,170,170,170,191,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,234,170,170,170,191,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,234,170,170,170,191,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,31,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,85,85,85,85,85,85,64,0,0,11,0,0,9,0,0,0,0,0,127,208,0,63,224,0,0,0,11,255,240,0,255,255,64,0,0,191,255,64,0,31,255,244,0,47,255,244,0,0,1,191,255,128,191,255,64,0,0,0,11,255,240,47,228,0,0,0,0,0,191,128,9,0,0,0,0,0,0,9,0, + // 0x5197 冗 + 151,81,35,34,50,38,2,252,21,85,85,85,85,85,85,85,64,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,0,0,0,0,0,47,192,63,128,21,85,85,85,64,47,192,0,0,127,255,255,255,208,0,0,0,0,127,255,255,255,208,0,0,0,0,127,255,255,255,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,127,64,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,191,0,0,31,208,0,0,0,0,255,0,0,31,208,0,0,0,0,254,0,0,31,208,1,0,0,2,253,0,0,31,208,3,208,0,3,252,0,0,31,208,3,244,0,15,248,0,0,31,208,3,244,0,63,240,0,0,31,208,3,244,1,255,208,0,0,31,208,3,240,11,255,64,0,0,31,224,11,240,191,253,0,0,0,31,255,255,240,255,244,0,0,0,15,255,255,208,63,128,0,0,0,7,255,255,128,40,0,0,0,0,0,85,84,0, + // 0x51b7 冷 + 183,81,36,36,68,38,1,252,0,0,0,0,0,169,0,0,0,0,0,0,0,3,255,64,0,0,2,0,0,0,7,255,192,0,0,15,192,0,0,15,255,224,0,0,47,244,0,0,63,223,248,0,0,31,254,0,0,191,131,254,0,0,3,255,128,1,255,1,255,64,0,0,191,224,7,253,0,127,208,0,0,47,208,31,244,0,47,248,0,0,11,64,127,224,0,11,254,0,0,1,1,255,128,0,2,255,192,0,0,11,255,85,85,85,191,248,0,0,63,250,255,255,255,95,254,0,0,255,226,255,255,255,67,252,0,0,191,66,255,255,255,64,180,0,0,60,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,0,0,3,129,255,255,255,255,255,128,0,7,241,255,255,255,255,255,128,0,15,241,255,255,255,255,255,128,0,47,224,0,15,224,0,63,128,0,63,192,0,15,224,0,63,128,0,191,64,0,15,224,0,63,128,1,255,0,0,15,224,0,63,128,3,253,0,0,15,224,0,63,128,11,252,0,0,15,224,0,63,128,15,244,0,0,15,224,0,63,128,63,224,0,0,15,224,127,255,128,127,192,0,0,15,224,63,255,64,31,64,0,0,15,224,47,254,0,2,0,0,0,15,224,5,64,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,11,224,0,0,0, + // 0x51c6 准 + 198,81,36,36,68,38,1,252,0,0,0,0,36,0,5,0,0,0,0,0,0,191,0,15,224,0,0,0,0,0,255,0,31,208,0,3,192,0,1,253,0,47,192,0,15,244,0,2,252,0,63,128,0,15,254,0,3,248,0,127,0,0,2,255,192,11,240,0,191,0,0,0,127,240,15,240,0,254,0,0,0,31,240,47,255,255,255,255,248,0,3,208,127,255,255,255,255,248,0,0,64,255,255,255,255,255,248,0,0,2,255,192,2,248,0,0,0,0,11,255,192,2,248,0,0,0,0,31,255,192,2,248,0,0,0,0,127,239,192,2,248,0,0,0,0,63,143,255,255,255,255,224,0,0,15,15,255,255,255,255,224,0,0,0,15,255,255,255,255,224,0,0,0,15,208,3,248,0,0,0,1,0,15,192,2,248,0,0,0,3,128,15,192,2,248,0,0,0,15,224,15,192,2,248,0,0,0,31,240,15,192,2,248,0,0,0,63,192,15,255,255,255,255,224,0,191,128,15,255,255,255,255,224,0,255,0,15,255,255,255,255,224,3,253,0,15,208,3,248,0,0,7,252,0,15,192,2,248,0,0,15,240,0,15,192,2,248,0,0,63,224,0,15,192,2,248,0,0,127,192,0,15,213,87,253,85,84,31,64,0,15,255,255,255,255,253,6,0,0,15,255,255,255,255,253,0,0,0,15,255,255,255,255,253,0,0,0,15,192,0,0,0,0,0,0,0,15,192,0,0,0,0, + // 0x51fa 出 + 250,81,30,36,32,38,4,252,0,0,0,42,64,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,192,0,63,128,0,127,64,31,255,255,255,255,255,255,64,31,255,255,255,255,255,255,64,31,255,255,255,255,255,255,64,5,85,85,127,213,85,85,0,0,0,0,63,128,0,0,0,0,0,0,63,128,0,0,0,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,0,0,63,128,0,11,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,191,85,85,85,85,85,95,240,191,0,0,0,0,0,11,240,190,0,0,0,0,0,11,224, + // 0x5206 分 + 6,82,36,35,59,38,1,252,0,0,3,224,0,7,192,0,0,0,0,11,248,0,31,224,0,0,0,0,15,240,0,15,244,0,0,0,0,47,224,0,7,252,0,0,0,0,63,192,0,3,254,0,0,0,0,255,128,0,0,255,64,0,0,2,255,0,0,0,191,192,0,0,3,253,0,0,0,63,240,0,0,15,252,0,0,0,15,248,0,0,63,240,0,0,0,7,254,0,0,255,208,0,0,0,3,255,128,2,255,128,0,0,0,0,255,224,15,254,0,0,0,0,0,63,248,63,254,85,85,85,85,85,111,254,191,235,255,255,255,255,255,247,252,47,139,255,255,255,255,255,241,240,10,11,255,255,255,255,255,240,80,0,0,0,47,192,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,63,192,0,15,224,0,0,0,0,127,128,0,15,224,0,0,0,0,127,64,0,15,224,0,0,0,0,255,0,0,15,208,0,0,0,0,255,0,0,31,208,0,0,0,3,253,0,0,31,208,0,0,0,7,252,0,0,31,192,0,0,0,15,244,0,0,47,192,0,0,0,63,240,0,0,47,192,0,0,0,255,192,0,0,63,192,0,0,11,255,64,0,0,63,128,0,0,127,253,0,0,0,191,64,0,11,255,244,0,31,255,255,0,0,7,255,128,0,15,255,254,0,0,2,253,0,0,11,255,248,0,0,0,128,0,0,1,85,64,0,0, + // 0x5217 列 + 23,82,34,37,77,38,1,251,0,0,0,0,0,0,0,1,64,0,0,0,0,0,0,0,11,240,47,255,255,255,255,0,0,11,240,47,255,255,255,255,0,0,11,240,47,255,255,255,255,47,128,11,240,5,86,253,85,85,47,128,11,240,0,3,252,0,0,47,128,11,240,0,3,248,0,0,47,128,11,240,0,7,244,0,0,47,128,11,240,0,11,240,0,0,47,128,11,240,0,15,240,0,64,47,128,11,240,0,31,255,255,252,47,128,11,240,0,63,255,255,252,47,128,11,240,0,63,255,255,248,47,128,11,240,0,191,0,3,244,47,128,11,240,0,254,0,7,240,47,128,11,240,3,252,0,11,240,47,128,11,240,7,252,0,15,224,47,128,11,240,15,255,64,15,208,47,128,11,240,63,255,240,31,192,47,128,11,240,191,159,253,63,192,47,128,11,240,127,3,255,255,64,47,128,11,240,28,0,191,255,0,47,128,11,240,0,0,31,254,0,47,128,11,240,0,0,3,252,0,47,128,11,240,0,0,7,248,0,47,128,11,240,0,0,15,240,0,0,0,11,240,0,0,47,208,0,0,0,11,240,0,0,191,192,0,0,0,11,240,0,2,255,0,0,0,0,11,240,0,11,253,0,0,0,0,11,240,0,47,244,0,0,0,0,11,240,1,255,224,0,0,0,149,111,224,7,255,64,0,0,0,191,255,224,2,253,0,0,0,0,127,255,192,0,160,0,0,0,0,63,249,0,0,0,0,0,0,0,0,0,0, + // 0x521d 初 + 29,82,35,36,68,38,1,252,0,11,224,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,1,85,85,85,85,80,0,11,240,3,255,255,255,255,248,0,11,240,3,255,255,255,255,248,0,11,240,3,255,255,255,255,248,63,255,255,240,0,127,64,3,248,63,255,255,248,0,127,64,3,248,63,255,255,244,0,127,0,3,248,0,0,15,240,0,127,0,3,248,0,0,15,208,0,127,0,3,248,0,0,63,192,0,191,0,3,248,0,0,127,64,0,191,0,3,244,0,0,255,0,0,191,0,3,244,0,2,253,29,0,191,0,3,244,0,7,248,63,0,254,0,3,244,0,15,244,254,0,254,0,7,244,0,63,254,248,0,253,0,7,244,0,255,255,224,1,253,0,7,244,3,255,255,208,2,252,0,7,240,15,255,251,240,2,252,0,7,240,127,255,243,252,3,248,0,7,240,191,203,240,253,7,244,0,11,240,63,11,240,120,11,240,0,11,240,44,11,240,16,15,240,0,11,240,0,11,240,0,47,208,0,15,240,0,11,240,0,63,192,0,15,240,0,11,240,0,191,64,0,15,224,0,11,240,1,255,0,0,15,224,0,11,240,7,253,0,0,31,208,0,11,240,31,248,0,0,63,192,0,11,240,127,240,3,255,255,192,0,11,240,191,192,2,255,255,64,0,11,240,47,0,1,255,254,0,0,11,224,8,0,0,106,80,0, + // 0x5230 到 + 48,82,34,35,59,38,1,252,0,0,0,0,0,0,0,6,160,0,0,0,0,0,0,0,11,240,63,255,255,255,255,0,0,11,240,63,255,255,255,255,0,0,11,240,63,255,255,255,255,31,192,11,240,0,11,244,0,0,31,192,11,240,0,15,240,1,0,31,192,11,240,0,15,208,47,0,31,192,11,240,0,47,192,47,192,31,192,11,240,0,63,128,15,240,31,192,11,240,0,127,0,3,248,31,192,11,240,21,255,175,255,253,31,192,11,240,63,255,255,255,255,31,192,11,240,63,255,255,255,255,95,192,11,240,63,250,165,64,47,223,192,11,240,0,0,42,0,14,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,15,255,255,255,252,31,192,11,240,15,255,255,255,252,31,192,11,240,15,255,255,255,252,31,192,11,240,0,0,127,64,0,31,192,11,240,0,0,63,64,0,31,192,11,240,0,0,63,64,0,5,64,11,240,0,0,63,64,0,0,0,11,240,0,0,63,64,0,0,0,11,240,0,0,63,70,191,64,0,11,240,0,5,191,255,255,64,0,11,240,111,255,255,255,255,64,0,11,240,127,255,255,255,233,0,106,175,240,63,255,250,80,0,0,127,255,224,62,148,0,0,0,0,63,255,192,0,0,0,0,0,0,63,250,0, + // 0x5236 制 + 54,82,34,36,68,38,1,252,0,0,10,128,0,0,0,1,80,0,228,31,192,0,0,0,3,240,1,252,31,192,0,0,0,3,240,2,252,31,192,0,0,0,3,240,3,248,31,192,0,0,253,3,240,3,248,31,192,0,0,253,3,240,7,255,255,255,255,64,253,3,240,11,255,255,255,255,64,253,3,240,15,255,255,255,255,64,253,3,240,47,192,31,192,0,0,253,3,240,63,128,31,192,0,0,253,3,240,127,0,31,192,0,0,253,3,240,11,0,31,208,0,0,253,3,240,63,255,255,255,255,240,253,3,240,63,255,255,255,255,240,253,3,240,63,255,255,255,255,240,253,3,240,0,0,31,192,0,0,253,3,240,0,0,31,192,0,0,253,3,240,0,0,31,192,0,0,253,3,240,11,255,255,255,255,128,253,3,240,11,255,255,255,255,128,253,3,240,11,255,255,255,255,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,253,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,192,47,128,0,3,240,11,224,31,203,255,128,0,3,240,11,224,31,199,255,64,0,7,240,11,224,31,195,249,0,47,255,240,0,0,31,192,0,0,15,255,240,0,0,31,192,0,0,15,255,192,0,0,31,192,0,0,6,148,0, + // 0x5237 刷 + 55,82,34,36,68,38,1,252,0,0,0,0,0,0,0,1,80,0,0,0,0,0,0,0,7,240,3,255,255,255,255,192,0,7,240,3,255,255,255,255,192,0,7,240,3,255,255,255,255,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,240,0,0,47,195,244,7,240,3,255,255,255,255,195,244,7,240,3,255,255,255,255,195,244,7,240,3,255,255,255,255,195,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,240,0,252,0,3,244,7,240,3,251,255,255,255,195,244,7,240,3,251,255,255,255,195,244,7,240,3,251,255,255,255,195,244,7,240,3,251,192,252,15,195,244,7,240,7,251,192,252,15,195,244,7,240,7,235,192,252,15,195,244,7,240,7,235,192,252,15,195,244,7,240,11,235,192,252,15,195,244,7,240,11,219,192,252,15,194,244,7,240,15,219,192,252,15,192,0,7,240,15,203,192,252,15,192,0,7,240,31,203,192,253,255,192,0,7,240,47,139,192,252,255,128,0,7,240,63,75,192,252,254,0,0,7,240,127,1,64,252,0,0,0,7,240,190,0,0,252,0,0,63,255,240,61,0,0,252,0,0,31,255,224,8,0,0,252,0,0,15,255,192,0,0,0,168,0,0,10,148,0, + // 0x5275 創 + 117,82,34,37,77,38,1,251,0,0,5,64,0,0,0,0,0,0,0,47,244,0,0,0,11,240,0,0,127,254,0,0,0,11,240,0,0,255,255,128,0,0,11,240,0,3,253,63,240,0,0,11,240,0,15,248,15,252,15,208,11,240,0,63,224,3,255,15,208,11,240,0,255,213,86,255,207,208,11,240,7,255,255,255,255,143,208,11,240,47,249,255,255,143,15,208,11,240,127,224,0,0,0,15,208,11,240,47,64,0,0,0,15,208,11,240,8,255,255,255,253,15,208,11,240,0,255,255,255,253,15,208,11,240,0,254,170,170,253,15,208,11,240,0,252,0,0,253,15,208,11,240,0,255,255,255,253,15,208,11,240,0,255,255,255,253,15,208,11,240,0,253,0,0,253,15,208,11,240,0,252,0,0,253,15,208,11,240,0,254,170,170,253,15,208,11,240,0,255,255,255,253,15,208,11,240,0,255,255,255,253,15,208,11,240,0,252,0,0,0,15,208,11,240,1,252,0,0,0,15,208,11,240,2,254,170,170,170,15,208,11,240,3,255,255,255,255,0,0,11,240,3,255,255,255,255,0,0,11,240,7,255,192,0,63,0,0,11,240,15,239,192,0,63,0,0,11,240,31,207,192,0,63,0,0,11,240,63,207,192,0,63,0,0,11,240,127,79,255,255,255,0,105,111,240,62,15,255,255,255,0,127,255,224,12,15,234,170,191,0,63,255,192,0,15,192,0,42,0,63,254,0,0,0,0,0,0,0,0,0,0, + // 0x529b 力 + 155,82,33,37,77,38,2,251,0,0,0,47,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,26,170,170,191,234,170,170,170,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,64,0,0,0,63,128,0,0,127,0,0,0,0,63,128,0,0,127,0,0,0,0,127,64,0,0,191,0,0,0,0,191,64,0,0,191,0,0,0,0,191,0,0,0,191,0,0,0,0,255,0,0,0,191,0,0,0,0,254,0,0,0,255,0,0,0,2,253,0,0,0,255,0,0,0,3,252,0,0,0,254,0,0,0,7,252,0,0,0,254,0,0,0,15,244,0,0,0,254,0,0,0,31,240,0,0,0,253,0,0,0,63,224,0,0,1,253,0,0,0,191,192,0,0,1,253,0,0,1,255,64,0,0,2,252,0,0,3,255,0,0,0,3,252,0,0,15,252,0,0,0,3,252,0,0,63,244,0,0,0,3,248,0,1,255,224,0,0,0,11,244,0,11,255,128,0,0,0,31,240,0,63,253,0,0,7,255,255,240,0,191,244,0,0,3,255,255,192,0,47,192,0,0,2,255,255,64,0,10,0,0,0,0,90,80,0,0,0,0,0,0,0,0,0,0,0, + // 0x52a0 加 + 160,82,34,36,68,38,1,252,0,1,64,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,21,85,85,80,0,15,224,0,0,127,255,255,224,0,15,224,0,0,127,255,255,224,21,95,245,85,80,127,255,255,224,63,255,255,255,240,127,0,15,224,63,255,255,255,240,127,0,15,224,63,255,255,255,240,127,0,15,224,0,15,208,11,240,127,0,15,224,0,15,208,11,224,127,0,15,224,0,15,208,11,224,127,0,15,224,0,15,192,11,224,127,0,15,224,0,31,192,11,224,127,0,15,224,0,31,192,15,224,127,0,15,224,0,31,192,15,224,127,0,15,224,0,47,192,15,224,127,0,15,224,0,47,192,15,224,127,0,15,224,0,63,128,15,224,127,0,15,224,0,63,64,15,208,127,0,15,224,0,63,64,15,208,127,0,15,224,0,127,0,15,208,127,0,15,224,0,191,0,15,208,127,0,15,224,0,255,0,15,208,127,0,15,224,1,253,0,15,208,127,0,15,224,2,252,0,31,192,127,0,15,224,3,252,0,31,192,127,0,15,224,7,244,0,47,192,127,255,255,224,15,240,0,63,192,127,255,255,224,47,224,85,191,128,127,255,255,224,127,192,191,255,64,127,85,95,224,127,128,127,255,0,127,0,15,224,31,0,63,248,0,127,0,15,224,4,0,0,0,0,0,0,0,0, + // 0x52d5 動 + 213,82,35,37,77,38,1,251,0,0,0,0,64,0,84,0,0,0,0,22,191,240,2,252,0,0,43,255,255,255,244,2,252,0,0,47,255,255,255,164,2,252,0,0,31,250,255,0,0,2,252,0,0,0,0,127,0,0,2,252,0,0,0,0,127,0,0,2,252,0,0,127,255,255,255,253,2,252,0,0,127,255,255,255,253,2,252,0,0,42,170,255,85,87,255,255,255,248,0,0,127,0,2,255,255,255,248,5,85,191,255,250,255,255,255,248,31,255,255,255,252,2,249,87,248,31,255,255,255,252,3,248,3,248,31,128,127,0,252,3,244,3,244,31,128,127,0,252,3,244,3,244,31,255,255,255,252,3,244,3,244,31,255,255,255,252,3,240,3,244,31,128,191,1,252,7,240,3,244,31,128,127,0,252,7,240,3,244,31,149,191,85,252,11,240,3,244,31,255,255,255,252,11,224,3,244,31,255,255,255,252,15,208,3,240,0,0,127,0,0,31,192,3,240,0,0,127,0,0,47,192,7,240,10,170,255,170,168,63,128,7,240,31,255,255,255,252,63,64,7,240,31,255,255,255,252,255,0,7,240,0,0,127,0,1,254,0,11,240,0,0,127,0,3,252,0,11,240,0,21,191,107,255,244,0,15,224,127,255,255,255,255,240,0,15,208,63,255,255,234,255,192,16,47,208,63,165,64,0,255,64,127,255,192,0,0,0,0,61,0,63,255,64,0,0,0,0,20,0,63,253,0,0,0,0,0,0,0,0,0,0, + // 0x5316 化 + 22,83,36,35,59,38,1,252,0,0,15,144,47,192,0,0,0,0,0,31,224,47,192,0,0,0,0,0,63,192,47,192,0,0,0,0,0,127,128,47,192,0,0,0,0,0,255,64,47,192,0,0,0,0,1,255,0,47,192,0,0,0,0,3,252,0,47,192,0,0,0,0,11,248,0,47,192,0,11,64,0,31,240,0,47,192,0,63,192,0,63,240,0,47,192,1,255,224,0,255,240,0,47,192,11,255,128,2,255,240,0,47,192,127,253,0,11,255,240,0,47,194,255,240,0,47,255,240,0,47,223,255,64,0,191,251,240,0,47,255,248,0,0,255,203,240,0,47,255,128,0,0,127,75,240,0,47,253,0,0,0,61,11,240,0,47,208,0,0,0,20,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,0,0,11,240,0,47,192,0,0,80,0,11,240,0,47,192,0,0,189,0,11,240,0,47,192,0,0,254,0,11,240,0,47,192,0,0,254,0,11,240,0,47,192,0,0,253,0,11,240,0,47,192,0,1,252,0,11,240,0,47,208,0,3,252,0,11,240,0,31,255,255,255,248,0,11,240,0,15,255,255,255,240,0,11,240,0,2,255,255,255,208,0,11,224,0,0,5,85,84,0, + // 0x534a 半 + 74,83,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,24,0,3,248,0,3,144,0,1,253,0,3,248,0,11,248,0,0,255,0,3,248,0,15,240,0,0,127,128,3,248,0,47,224,0,0,63,192,3,248,0,63,192,0,0,31,224,3,248,0,127,128,0,0,15,240,3,248,0,255,0,0,0,7,248,3,248,2,253,0,0,0,3,248,3,248,3,252,0,0,0,2,128,3,248,0,112,0,0,0,0,0,3,248,0,0,0,0,5,85,85,87,253,85,85,85,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,144,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x5354 協 + 84,83,35,36,68,38,1,252,0,63,64,0,0,31,128,0,0,0,63,64,0,0,47,128,0,0,0,63,64,0,0,47,128,0,0,0,63,64,0,0,63,64,0,0,0,63,64,15,255,255,255,255,208,0,63,64,15,255,255,255,255,208,0,63,64,15,255,255,255,255,208,0,63,64,0,0,253,0,15,208,0,63,64,0,2,252,0,15,192,0,63,64,0,3,248,0,15,192,127,255,255,128,15,240,0,31,192,127,255,255,128,127,192,0,47,192,127,255,255,130,255,64,0,63,128,0,63,128,111,252,0,191,255,64,0,63,64,63,224,0,63,254,0,0,63,64,14,0,0,63,244,0,0,63,64,10,128,0,6,144,0,0,63,64,15,192,0,11,224,0,0,63,64,15,192,0,11,224,0,0,63,64,15,192,0,11,224,0,0,63,70,175,234,162,175,250,168,0,63,71,255,255,243,255,255,252,0,63,71,255,255,243,255,255,252,0,63,64,15,131,240,15,192,252,0,63,64,31,131,240,15,192,252,0,63,64,47,67,240,15,192,252,0,63,64,47,3,240,31,128,248,0,63,64,63,3,240,63,64,248,0,63,64,126,3,240,63,1,248,0,63,64,189,3,240,126,1,248,0,63,64,252,3,224,253,1,244,0,63,66,248,7,226,252,2,244,0,63,75,240,11,215,244,3,244,0,63,95,209,255,223,224,255,240,0,63,75,128,255,199,128,191,224,0,42,66,0,249,1,0,122,64, + // 0x5361 卡 + 97,83,34,36,68,38,2,252,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,245,85,85,80,0,0,0,0,11,255,255,255,240,0,0,0,0,11,255,255,255,240,0,0,0,0,11,255,255,255,240,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,95,249,85,85,85,80,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,246,64,0,0,0,0,0,0,11,255,249,0,0,0,0,0,0,11,255,255,224,0,0,0,0,0,11,251,255,255,64,0,0,0,0,11,240,111,255,248,0,0,0,0,11,240,1,255,252,0,0,0,0,11,240,0,11,248,0,0,0,0,11,240,0,0,176,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0, + // 0x5370 印 + 112,83,31,36,32,38,4,252,0,0,6,0,0,0,0,0,0,0,127,128,0,0,0,0,0,7,255,224,0,0,0,0,0,191,255,145,255,255,255,252,255,255,248,1,255,255,255,252,255,255,64,1,255,255,255,252,255,208,0,1,254,85,87,252,254,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,254,85,85,65,253,0,2,252,255,255,255,209,253,0,2,252,255,255,255,209,253,0,2,252,255,255,255,209,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,253,0,0,1,253,0,2,252,254,85,85,65,253,0,2,252,255,255,255,225,253,10,171,252,255,255,255,225,253,7,255,248,255,255,255,225,253,3,255,244,253,0,0,1,253,2,255,128,253,0,0,1,253,0,0,0,253,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,168,0,0,0, + // 0x5378 卸 + 120,83,34,36,68,38,1,252,0,30,64,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,64,0,0,21,85,85,80,0,191,0,0,0,127,255,255,240,0,255,255,255,248,127,255,255,240,1,255,255,255,248,127,255,255,240,3,255,255,255,248,127,0,7,240,11,240,63,64,0,127,0,7,240,31,224,63,64,0,127,0,7,240,63,192,63,64,0,127,0,7,240,15,64,63,64,0,127,0,7,240,1,0,63,64,0,127,0,7,240,63,255,255,255,253,127,0,7,240,63,255,255,255,253,127,0,7,240,63,255,255,255,253,127,0,7,240,0,0,63,64,0,127,0,7,240,0,0,63,64,0,127,0,7,240,0,0,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,255,240,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,0,7,240,3,240,63,64,0,127,6,175,240,3,240,63,64,4,127,7,255,240,3,240,63,171,253,127,3,255,208,3,246,255,255,253,127,2,254,64,111,255,255,255,253,127,0,0,0,191,255,255,249,64,127,0,0,0,127,255,164,0,0,127,0,0,0,58,64,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0,0, + // 0x537b 卻 + 123,83,34,36,68,38,1,252,0,0,21,0,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,255,248,0,127,255,255,240,0,3,255,255,0,127,255,255,240,0,11,248,255,192,127,255,255,240,0,47,224,63,240,127,85,91,240,0,255,192,15,252,127,0,7,240,7,255,0,3,254,127,0,7,240,47,248,0,0,252,127,0,7,240,31,224,0,0,48,127,0,7,240,7,64,63,192,0,127,0,7,240,0,0,255,240,0,127,0,7,240,0,1,255,252,0,127,0,7,240,0,3,254,255,0,127,0,7,240,0,15,240,127,192,127,0,7,240,0,63,208,47,240,127,0,7,240,0,255,128,11,248,127,0,7,240,3,254,0,2,253,127,0,7,240,15,248,0,0,255,127,0,7,240,127,224,0,0,60,127,0,7,240,127,255,255,255,244,127,0,7,240,46,255,255,255,208,127,0,7,240,4,255,255,255,208,127,0,7,240,0,253,0,15,208,127,0,7,240,0,253,0,15,208,127,0,7,240,0,253,0,15,208,127,6,175,240,0,253,0,15,208,127,7,255,240,0,253,0,15,208,127,3,255,208,0,253,0,15,208,127,3,254,64,0,253,0,15,208,127,0,0,0,0,255,255,255,208,127,0,0,0,0,255,255,255,208,127,0,0,0,0,255,255,255,208,127,0,0,0,0,253,0,15,208,127,0,0,0,0,253,0,11,208,127,0,0,0,0,20,0,0,0,63,0,0,0, + // 0x539f 原 + 159,83,35,34,50,38,1,252,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,253,0,0,11,252,0,0,0,0,253,0,0,11,248,0,0,0,0,253,0,0,11,244,0,0,0,0,253,0,0,15,240,0,0,0,0,253,11,255,255,255,255,255,0,0,253,11,255,255,255,255,255,0,0,253,11,250,170,170,170,255,0,0,253,11,240,0,0,0,255,0,0,253,11,240,0,0,0,255,0,0,253,11,250,170,170,170,255,0,0,253,11,255,255,255,255,255,0,0,253,11,255,255,255,255,255,0,1,252,11,240,0,0,0,255,0,1,252,11,240,0,0,0,255,0,1,252,11,240,0,0,0,255,0,1,252,11,255,255,255,255,255,0,2,252,11,255,255,255,255,255,0,2,252,6,170,171,254,170,170,0,2,248,0,0,2,248,0,0,0,3,248,0,16,2,248,1,64,0,3,244,0,191,2,248,11,208,0,7,244,1,254,2,248,15,244,0,7,240,3,252,2,248,3,253,0,11,240,15,244,2,248,0,255,64,15,224,63,224,2,248,0,63,208,15,208,255,192,2,248,0,31,240,47,199,255,0,2,248,0,7,252,63,203,252,0,3,248,0,2,252,127,65,240,11,255,248,0,0,208,47,0,0,3,255,240,0,0,0,5,0,0,3,255,128,0,0,0, + // 0x53cd 反 + 205,83,34,34,50,38,2,252,0,85,85,85,85,85,85,85,0,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,255,255,255,255,255,224,0,0,191,255,255,255,255,255,244,0,0,191,255,255,255,255,255,240,0,0,191,95,245,85,85,111,224,0,0,191,11,240,0,0,63,208,0,0,190,7,248,0,0,127,192,0,0,254,3,252,0,0,255,64,0,0,254,1,254,0,0,255,0,0,0,254,0,255,0,2,254,0,0,0,253,0,127,192,7,252,0,0,1,252,0,63,224,31,244,0,0,1,252,0,15,244,63,224,0,0,2,252,0,11,253,255,192,0,0,3,252,0,3,255,255,64,0,0,3,248,0,0,255,253,0,0,0,7,244,0,0,127,252,0,0,0,11,240,0,2,255,255,0,0,0,15,224,0,31,255,255,224,0,0,31,208,1,255,253,191,254,0,0,63,192,111,255,224,31,255,244,0,191,135,255,255,0,2,255,255,208,255,3,255,244,0,0,127,255,192,46,1,254,0,0,0,2,255,64,4,0,144,0,0,0,0,26,0, + // 0x53d6 取 + 214,83,36,34,50,38,1,252,21,85,85,85,84,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,254,0,0,0,0,63,255,255,255,255,170,170,170,144,1,252,0,31,199,255,255,255,244,1,252,0,31,199,255,255,255,240,1,252,0,31,199,255,255,255,240,1,252,0,31,194,180,0,11,240,1,255,255,255,195,252,0,15,240,1,255,255,255,193,252,0,15,224,1,255,255,255,192,253,0,31,208,1,252,0,47,192,254,0,31,192,1,252,0,31,192,191,0,47,192,1,252,0,31,192,127,0,63,128,1,252,0,31,192,63,64,127,64,1,252,0,31,192,63,192,191,0,1,255,255,255,192,47,192,254,0,1,255,255,255,192,15,225,253,0,1,255,255,255,192,15,243,252,0,1,253,0,47,192,7,255,248,0,1,252,0,31,192,3,255,240,0,1,252,0,31,192,2,255,224,0,1,252,0,31,192,0,255,192,0,1,252,0,111,192,0,255,192,0,1,254,191,255,192,1,255,224,0,175,255,255,255,192,7,255,244,0,191,255,255,255,192,15,255,252,0,191,255,229,31,192,127,243,255,0,126,144,0,31,193,255,192,255,208,0,0,0,31,203,255,0,63,248,0,0,0,31,255,252,0,31,254,0,0,0,31,207,224,0,3,252,0,0,0,31,199,64,0,0,180,0,0,0,31,192,0,0,0,0, + // 0x53f0 台 + 240,83,34,36,68,38,2,252,0,0,0,228,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,64,0,0,0,0,31,240,0,11,208,0,0,0,0,63,208,0,31,244,0,0,0,0,191,192,0,11,254,0,0,0,0,255,0,0,2,255,128,0,0,2,254,0,0,0,191,224,0,0,7,252,0,0,0,63,244,0,106,175,254,255,255,255,255,253,0,127,255,255,255,255,255,255,255,64,127,255,255,255,255,255,255,255,192,127,255,254,170,149,84,0,63,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,11,128,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,149,85,85,85,111,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,64,0,0,0,47,192,0,0,63,149,85,85,85,111,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,64,0,0,0,47,192,0,0,42,64,0,0,0,26,128,0, + // 0x5408 合 + 8,84,36,36,68,38,1,252,0,0,0,1,254,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,127,219,252,0,0,0,0,0,1,255,131,255,0,0,0,0,0,3,255,0,255,208,0,0,0,0,15,252,0,63,244,0,0,0,0,127,240,0,15,254,0,0,0,1,255,192,0,3,255,192,0,0,11,255,0,0,0,255,244,0,0,63,252,0,0,0,47,254,0,2,255,240,0,0,0,11,255,224,31,254,191,255,255,255,254,191,253,127,244,127,255,255,255,253,31,253,63,192,127,255,255,255,253,2,248,13,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,240,0,0,0,15,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,15,240,0,0,7,224,0,0,0,11,224,0, + // 0x5426 否 + 38,84,35,34,50,38,1,252,31,255,255,255,255,255,255,255,244,31,255,255,255,255,255,255,255,244,31,255,255,255,255,255,255,255,244,5,85,85,85,127,245,85,85,80,0,0,0,0,255,208,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,191,254,7,208,0,0,0,0,3,255,254,31,253,0,0,0,0,47,255,254,31,255,192,0,0,2,255,248,254,1,255,248,0,0,47,255,192,254,0,31,255,64,7,255,254,0,254,0,2,255,240,127,255,224,0,254,0,0,127,252,63,254,0,0,254,0,0,11,248,15,224,0,0,254,0,0,1,224,6,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,208,0,0,0,7,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,208,0,0,0,3,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,255,255,255,255,255,248,0,0,31,208,0,0,0,7,248,0,0,31,192,0,0,0,3,248,0, + // 0x544a 告 + 74,84,34,37,77,38,2,251,0,1,0,0,190,0,0,0,0,0,7,244,0,255,0,0,0,0,0,11,240,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,31,208,0,255,0,0,0,0,0,63,208,0,255,0,0,0,0,0,127,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,7,252,0,0,255,0,0,0,0,31,240,0,0,255,0,0,0,0,63,208,0,0,255,0,0,0,0,11,128,0,0,255,0,0,0,0,1,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,85,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,149,85,85,85,95,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,63,149,85,85,85,95,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,128,0,0,0,15,224,0,0,63,128,0,0,0,15,224,0,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,36,37,77,38,1,251,0,0,0,2,255,0,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,63,255,248,0,0,0,0,0,1,255,199,255,0,0,0,0,0,7,255,1,255,192,0,0,0,0,31,252,0,127,244,0,0,0,0,191,240,0,15,254,0,0,0,7,255,128,0,3,255,208,0,0,47,254,0,0,0,191,248,0,1,255,255,255,255,255,255,255,128,31,255,139,255,255,255,226,255,248,255,253,11,255,255,255,224,127,255,127,224,0,0,0,0,0,7,252,46,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,255,255,255,3,255,255,255,64,0,255,255,255,3,255,255,255,64,0,255,255,255,3,255,255,255,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,253,0,63,3,244,0,63,64,0,255,255,255,3,244,0,63,64,0,255,255,255,3,244,0,127,64,0,255,255,255,3,244,127,255,0,0,253,0,0,3,244,63,255,0,0,253,0,0,3,244,63,248,0,0,253,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x548c 和 + 140,84,34,36,68,38,1,252,0,0,0,5,0,0,0,0,0,0,0,1,191,0,0,0,0,0,0,5,191,255,192,0,0,0,0,26,255,255,255,129,85,85,85,64,31,255,255,144,3,255,255,255,208,15,254,254,0,3,255,255,255,208,4,0,254,0,3,255,255,255,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,21,85,254,85,67,244,0,15,208,63,255,255,255,227,244,0,15,208,63,255,255,255,227,244,0,15,208,63,255,255,255,227,244,0,15,208,0,3,254,0,3,244,0,15,208,0,7,255,0,3,244,0,15,208,0,15,255,192,3,244,0,15,208,0,15,255,240,3,244,0,15,208,0,47,255,252,3,244,0,15,208,0,63,254,254,3,244,0,15,208,0,189,254,127,67,244,0,15,208,1,252,254,47,211,244,0,15,208,3,248,254,15,211,244,0,15,208,11,240,254,7,131,244,0,15,208,31,224,254,2,3,244,0,15,208,63,192,254,0,3,244,0,15,208,191,64,254,0,3,249,85,111,208,126,0,254,0,3,255,255,255,208,44,0,254,0,3,255,255,255,208,0,0,254,0,3,255,255,255,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,3,244,0,15,208,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0, + // 0x555f 啟 + 95,85,36,36,68,38,1,252,0,0,108,0,0,0,164,0,0,0,0,254,0,0,0,253,0,0,0,0,191,0,0,0,252,0,0,0,0,63,64,0,1,252,0,0,0,0,63,128,0,2,252,0,0,3,255,255,255,240,2,248,0,0,3,255,255,255,240,3,244,0,0,3,255,255,255,240,3,245,85,84,3,244,0,3,240,11,255,255,253,3,244,0,3,240,15,255,255,253,3,244,0,3,240,15,255,255,253,3,244,0,3,240,47,192,15,208,3,244,0,3,240,63,192,15,208,3,244,0,3,240,127,208,15,192,3,255,255,255,240,255,224,31,192,3,255,255,255,241,255,240,47,192,3,255,255,255,247,255,240,47,128,3,244,0,0,2,247,240,63,64,3,244,0,0,0,178,248,63,0,3,240,0,0,0,0,252,127,0,3,240,0,0,0,0,252,190,0,3,247,255,255,248,0,190,253,0,7,247,255,255,248,0,127,252,0,7,247,255,255,248,0,63,248,0,11,231,224,1,248,0,47,244,0,11,231,224,1,248,0,31,240,0,15,215,224,1,248,0,31,240,0,15,199,224,1,248,0,63,244,0,31,199,224,1,248,0,255,252,0,47,199,224,1,248,2,255,255,0,63,135,255,255,248,11,252,127,128,127,7,255,255,248,47,240,47,224,191,7,255,255,249,255,208,15,252,45,7,224,1,249,255,64,3,253,4,7,224,1,164,188,0,0,244,0,1,80,0,0,32,0,0,16, + // 0x55ae 單 + 174,85,34,35,59,38,2,252,1,85,85,84,1,85,85,84,0,3,255,255,254,11,255,255,253,0,3,255,255,254,11,255,255,253,0,3,240,0,190,11,224,0,253,0,3,240,0,190,11,224,0,253,0,3,240,0,190,11,224,0,253,0,3,255,255,254,11,255,255,253,0,3,255,255,254,11,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,253,0,3,248,0,3,244,0,0,253,0,3,248,0,3,244,0,0,255,170,171,254,170,171,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,253,0,3,248,0,3,244,0,0,253,0,3,248,0,3,244,0,0,253,0,3,248,0,3,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x5634 嘴 + 52,86,34,37,77,38,3,251,0,0,0,2,224,11,208,0,0,0,0,0,3,240,11,208,0,0,0,0,0,3,240,11,208,24,0,255,255,131,195,240,11,209,255,0,255,255,131,195,250,155,239,253,0,255,255,131,195,255,235,255,208,0,248,31,131,195,255,235,253,0,0,244,15,131,195,240,11,224,0,0,244,15,131,195,240,11,208,1,0,244,15,131,195,240,11,208,3,208,244,15,131,195,251,235,208,7,208,244,15,155,255,255,247,250,175,192,244,15,191,255,255,147,255,255,128,244,15,191,255,252,1,255,254,0,244,15,153,3,253,85,64,0,0,244,15,128,11,255,255,224,0,0,244,15,128,47,255,255,240,0,0,244,15,128,191,64,31,192,0,0,244,15,130,255,85,127,149,84,0,244,15,159,255,255,255,255,253,0,244,15,255,255,255,255,255,253,0,255,255,159,254,0,252,0,253,0,255,255,128,190,0,252,0,253,0,255,255,128,191,255,255,255,253,0,248,0,0,191,255,255,255,253,0,244,0,0,190,0,252,0,253,0,244,0,0,253,0,252,0,253,0,244,0,0,253,0,252,0,253,0,0,0,0,255,255,255,255,253,0,0,0,2,255,255,255,255,253,0,0,0,3,249,85,85,85,253,0,0,0,11,240,0,0,0,253,0,0,0,47,224,0,0,0,253,0,0,0,191,192,0,1,170,253,0,0,0,255,0,0,1,255,252,0,0,0,44,0,0,0,255,224,0,0,0,0,0,0,0,0,0,0, + // 0x5668 器 + 104,86,36,35,59,38,1,251,1,255,255,255,0,255,255,255,64,1,255,255,255,0,255,255,255,64,1,255,255,255,0,255,255,255,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,252,0,127,0,252,0,63,64,1,255,255,255,0,255,255,255,64,1,255,255,255,64,255,255,255,64,1,255,255,255,248,255,255,255,64,0,0,0,7,252,0,0,0,0,0,0,0,15,240,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,31,252,0,63,224,0,0,0,0,191,240,0,15,252,0,0,0,3,255,192,0,3,255,64,0,0,47,254,0,0,0,255,240,0,6,255,244,0,0,0,47,255,64,127,255,255,255,65,255,255,255,249,191,255,255,255,65,255,255,255,254,63,255,255,255,65,255,255,255,252,30,253,0,63,65,248,0,127,112,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,253,0,63,65,248,0,127,0,0,255,255,255,65,255,255,255,0,0,255,255,255,65,255,255,255,0,0,255,255,255,65,255,255,255,0,0,253,0,63,65,248,0,127,0,0,0,0,0,0,0,0,0,0, + // 0x5674 噴 + 116,86,34,37,77,38,3,251,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,253,0,0,0,0,0,1,255,255,255,255,255,0,255,255,225,255,255,255,255,255,0,255,255,224,85,85,254,85,85,0,255,255,224,6,144,253,10,128,0,252,11,224,11,208,253,15,192,0,252,11,224,11,208,0,15,192,0,252,11,239,255,255,255,255,255,208,252,11,239,255,255,255,255,255,208,252,11,229,95,229,85,111,213,64,252,11,224,11,208,0,15,192,0,252,11,224,5,64,0,5,64,0,252,11,224,191,255,255,255,252,0,252,11,224,191,255,255,255,252,0,252,11,224,190,0,0,1,252,0,252,11,224,190,0,0,1,252,0,252,11,224,190,0,0,1,252,0,252,11,224,191,255,255,255,252,0,252,11,224,191,255,255,255,252,0,252,11,224,190,0,0,1,252,0,255,255,224,190,0,0,1,252,0,255,255,224,191,255,255,255,252,0,255,255,224,191,255,255,255,252,0,252,0,0,190,0,0,1,252,0,252,0,0,190,0,0,1,252,0,252,0,0,190,0,0,1,252,0,84,0,0,191,255,255,255,252,0,0,0,0,191,255,255,255,252,0,0,0,0,2,228,0,125,0,0,0,0,0,47,252,1,255,208,0,0,0,6,255,224,0,47,253,0,0,0,191,255,0,0,3,255,128,0,0,127,224,0,0,0,127,192,0,0,29,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x56de 回 + 222,86,32,35,24,38,3,252,170,170,170,170,170,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,190,0,0,253,0,255,255,0,191,0,0,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,191,255,255,253,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255,255,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,255,255,0,0,0,0,0,0,255, + // 0x56e0 因 + 224,86,32,34,16,38,3,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,255,254,0,0,5,64,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,0,0,15,208,0,0,191,254,47,255,255,255,255,248,191,254,47,255,255,255,255,248,191,254,47,255,255,255,255,248,191,254,0,0,47,244,0,0,191,254,0,0,63,244,0,0,191,254,0,0,63,252,0,0,191,254,0,0,127,252,0,0,191,254,0,0,255,190,0,0,191,254,0,1,253,63,64,0,191,254,0,3,252,63,192,0,191,254,0,11,248,31,224,0,191,254,0,47,240,11,252,0,191,254,0,191,208,3,255,64,191,254,7,255,64,0,255,224,191,254,63,252,0,0,63,248,191,254,15,224,0,0,11,224,191,254,7,0,0,0,1,192,191,254,0,0,0,0,0,0,191,255,85,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,0,0,0,0,191,190,0,0,0,0,0,0,190, + // 0x56fa 固 + 250,86,32,35,24,38,3,251,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,85,85,85,85,85,85,255,191,0,0,0,0,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,15,255,255,255,255,244,255,191,15,255,255,255,255,244,255,191,15,255,255,255,255,240,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,0,11,224,0,0,255,191,0,170,175,250,170,0,255,191,0,255,255,255,255,0,255,191,0,255,255,255,255,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,252,0,0,63,0,255,191,0,255,255,255,255,0,255,191,0,255,255,255,255,0,255,191,0,170,170,170,170,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,191,85,85,85,85,85,85,255,191,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0, + // 0x5716 圖 + 22,87,32,34,16,38,3,252,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,0,0,0,0,0,0,127,253,0,191,255,255,253,0,127,253,0,191,255,255,253,0,127,253,0,189,0,0,189,0,127,253,0,189,0,0,189,0,127,253,0,191,255,255,253,0,127,253,0,191,255,255,253,0,127,253,0,0,11,208,0,0,127,253,0,0,11,208,0,0,127,253,63,255,255,255,255,252,127,253,63,255,255,255,255,252,127,253,0,0,0,0,0,0,127,253,3,255,255,255,255,128,127,253,3,255,255,255,255,128,127,253,3,240,0,0,15,128,127,253,3,240,0,0,15,128,127,253,3,240,255,255,15,128,127,253,3,240,250,191,15,128,127,253,3,240,240,31,15,128,127,253,3,240,250,191,15,128,127,253,3,240,255,255,15,128,127,253,3,240,0,0,15,128,127,253,3,240,0,0,15,128,127,253,3,255,255,255,255,128,127,253,3,255,255,255,255,128,127,253,0,0,0,0,0,0,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,0,0,0,0,0,0,127,169,0,0,0,0,0,0,106, + // 0x5728 在 + 40,87,35,36,68,38,1,252,0,0,0,25,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,5,85,95,245,85,85,85,85,80,0,0,31,224,0,0,0,0,0,0,0,63,192,0,31,192,0,0,0,0,191,64,0,47,192,0,0,0,1,255,0,0,47,192,0,0,0,3,253,0,0,47,192,0,0,0,11,248,0,0,47,192,0,0,0,47,240,0,0,47,192,0,0,0,191,224,0,0,47,192,0,0,1,255,224,47,255,255,255,255,192,11,255,224,47,255,255,255,255,192,63,255,224,47,255,255,255,255,192,127,239,224,5,85,111,213,85,64,63,79,224,0,0,47,192,0,0,29,15,224,0,0,47,192,0,0,4,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,0,0,47,192,0,0,0,15,224,85,85,111,213,85,80,0,15,224,255,255,255,255,255,248,0,15,224,255,255,255,255,255,248,0,15,224,255,255,255,255,255,248,0,15,224,0,0,0,0,0,0, + // 0x578b 型 + 139,87,34,35,59,38,2,253,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,127,0,15,255,255,255,252,5,64,127,0,15,255,255,255,252,31,192,127,0,15,255,255,255,252,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,190,0,31,192,127,0,0,63,64,191,0,31,192,127,0,127,255,255,255,254,31,192,127,0,127,255,255,255,254,31,192,127,0,127,255,255,255,254,31,192,127,0,0,127,0,190,0,31,192,127,0,0,191,0,190,0,31,192,127,0,0,253,0,190,0,5,64,127,0,3,252,0,190,0,0,0,127,0,11,248,0,190,0,0,0,127,0,63,240,0,190,0,0,255,255,0,191,192,0,190,0,0,255,254,0,47,0,0,107,252,0,191,248,0,4,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x57f7 執 + 247,87,36,37,77,38,1,251,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,0,1,252,0,0,15,192,0,0,15,255,255,255,0,15,192,0,0,15,255,255,255,0,15,192,0,0,15,255,255,255,0,15,192,0,0,0,1,252,0,21,95,213,85,0,0,1,252,0,63,255,255,255,0,0,1,252,0,63,255,255,255,0,127,255,255,255,255,255,255,255,0,127,255,255,255,224,15,192,63,0,127,255,255,255,224,15,192,63,0,2,240,0,189,0,31,192,63,0,2,244,0,253,0,31,192,63,0,1,248,0,252,0,31,192,63,0,0,252,1,248,12,31,192,63,0,0,188,2,240,47,159,192,63,0,0,189,3,240,127,255,128,63,0,63,255,255,255,223,255,128,63,0,63,255,255,255,194,255,192,63,0,63,255,255,255,192,127,240,63,0,0,1,252,0,0,127,252,63,0,0,1,252,0,0,191,255,127,0,0,1,252,0,0,254,191,191,0,31,255,255,255,65,252,31,63,0,31,255,255,255,67,252,4,63,8,31,255,255,255,71,244,0,63,78,0,1,252,0,15,240,0,63,79,0,1,252,0,47,208,0,47,79,0,1,252,0,127,192,0,31,143,0,1,252,1,255,0,0,31,223,0,1,252,7,253,0,0,15,254,0,1,252,31,248,0,0,11,253,0,1,252,11,224,0,0,3,252,0,1,248,1,128,0,0,0,244,0,0,0,0,0,0,0,0,0, + // 0x584a 塊 + 74,88,36,36,68,38,1,252,0,26,64,0,0,46,144,0,0,0,47,128,0,0,63,192,0,0,0,47,128,0,0,127,128,0,0,0,47,128,0,0,191,0,0,0,0,47,128,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,47,128,31,192,11,240,21,127,149,47,128,31,192,11,240,63,255,255,47,128,31,192,11,240,63,255,255,47,234,191,234,175,240,63,255,255,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,47,128,31,192,11,240,0,47,128,47,128,31,192,11,240,0,47,128,47,128,31,192,11,240,0,47,128,47,128,31,192,11,240,0,47,128,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,64,127,11,224,80,0,0,47,159,128,127,11,224,248,0,0,47,255,192,127,11,224,244,64,0,127,255,192,191,11,225,242,224,27,255,254,0,254,11,226,225,240,191,255,208,0,254,11,227,225,248,127,249,0,1,253,11,239,255,252,63,128,0,2,252,11,239,255,252,36,0,0,7,248,11,230,80,36,0,0,0,15,244,11,224,0,16,0,0,0,63,224,11,224,0,125,0,0,2,255,192,11,240,0,189,0,0,47,255,0,7,255,255,253,0,0,63,252,0,3,255,255,252,0,0,31,208,0,1,255,255,240,0,0,9,0,0,0,0,0,0, + // 0x586b 填 + 107,88,36,36,68,38,1,252,0,5,0,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,191,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,31,208,0,0,21,127,149,3,255,255,255,255,0,63,255,255,3,255,255,255,255,0,63,255,255,3,244,0,0,63,0,63,255,255,3,244,0,0,127,0,0,63,64,3,255,255,255,255,0,0,63,64,3,255,255,255,255,0,0,63,64,3,244,0,0,63,0,0,63,64,3,244,0,0,63,0,0,63,64,3,255,255,255,255,0,0,63,64,3,255,255,255,255,0,0,63,64,3,244,0,0,127,0,0,63,64,3,244,0,0,63,0,0,63,64,3,245,85,85,127,0,0,63,75,131,255,255,255,255,0,0,63,255,195,255,255,255,255,0,0,127,255,192,0,0,0,0,0,11,255,253,0,0,0,0,0,0,127,255,211,255,255,255,255,255,253,127,253,3,255,255,255,255,255,253,63,128,3,255,255,255,255,255,253,24,0,0,0,30,0,3,128,0,0,0,0,0,191,192,31,244,0,0,0,0,7,255,0,11,255,0,0,0,0,191,248,0,0,255,208,0,0,11,255,208,0,0,47,248,0,0,3,254,0,0,0,7,253,0,0,0,160,0,0,0,0,144, + // 0x588a 墊 + 138,88,36,35,59,38,1,253,0,1,252,0,0,6,144,0,0,0,1,252,0,0,11,208,0,0,5,86,253,85,0,11,208,0,0,15,255,255,255,64,11,208,0,0,15,255,255,255,64,11,208,0,0,0,1,252,0,11,255,255,255,0,0,1,252,0,11,255,255,255,0,21,86,255,255,245,95,255,255,0,127,255,255,255,240,11,208,126,0,127,255,255,255,240,15,208,126,0,1,244,0,252,2,15,192,126,0,0,252,2,244,15,239,192,126,0,21,254,87,245,111,255,192,126,0,63,255,255,255,242,255,192,127,0,63,255,255,255,240,63,244,127,0,0,1,252,0,0,127,253,63,0,0,1,252,0,0,255,255,127,4,5,86,253,85,65,252,62,63,13,15,255,255,255,131,248,8,63,31,15,255,255,255,143,240,0,63,30,0,1,252,0,63,208,0,47,174,0,1,252,0,191,64,0,15,253,0,1,252,0,126,0,0,11,252,0,1,252,0,254,0,0,2,244,0,0,0,0,254,0,0,0,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252, + // 0x5916 外 + 22,89,36,36,68,38,1,252,0,0,57,0,0,0,191,0,0,0,0,127,64,0,0,191,0,0,0,0,191,0,0,0,191,0,0,0,0,254,0,0,0,191,0,0,0,1,253,0,0,0,191,0,0,0,2,252,0,0,0,191,0,0,0,3,255,255,254,0,191,0,0,0,11,255,255,255,0,191,0,0,0,15,255,255,255,0,191,0,0,0,31,229,85,255,64,191,0,0,0,63,192,0,255,224,191,0,0,0,191,64,1,255,244,191,0,0,0,255,0,2,255,252,191,0,0,2,253,0,3,252,254,191,0,0,7,253,0,3,244,191,255,0,0,31,255,128,7,240,63,255,0,0,63,255,244,11,240,15,255,0,0,191,223,254,15,224,7,255,0,0,47,2,255,239,192,1,255,64,0,5,0,127,255,192,0,255,224,0,0,0,15,255,64,0,191,252,0,0,0,3,255,0,0,191,255,64,0,0,1,253,0,0,191,255,224,0,0,3,252,0,0,191,127,254,0,0,15,244,0,0,191,15,254,0,0,31,240,0,0,191,2,252,0,0,127,192,0,0,191,0,48,0,0,255,128,0,0,191,0,0,0,3,255,0,0,0,191,0,0,0,15,252,0,0,0,191,0,0,0,127,240,0,0,0,191,0,0,2,255,192,0,0,0,191,0,0,31,255,0,0,0,0,191,0,0,31,252,0,0,0,0,191,0,0,7,224,0,0,0,0,191,0,0,1,0,0,0,0,0,190,0,0, + // 0x591a 多 + 26,89,33,36,68,38,3,252,0,0,0,46,64,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,15,255,255,255,240,0,0,0,0,127,255,255,255,252,0,0,0,3,255,255,255,255,244,0,0,0,47,253,0,0,31,240,0,0,6,255,244,0,0,127,192,0,0,127,255,254,0,1,255,64,0,0,191,250,255,208,7,253,0,0,0,47,64,47,252,47,244,0,0,0,4,0,7,255,255,208,0,0,0,0,0,0,255,255,64,0,0,0,0,0,0,127,249,144,0,0,0,0,0,7,255,215,254,0,0,0,0,0,191,254,15,248,0,0,0,0,47,255,224,127,224,0,0,0,91,255,254,2,255,255,255,253,0,255,255,208,15,255,255,255,255,64,191,248,0,191,255,255,255,255,0,57,0,11,255,128,0,3,252,0,0,0,191,253,0,0,11,248,0,0,31,255,255,0,0,31,240,0,0,255,254,255,224,0,63,208,0,0,127,208,63,252,1,255,128,0,0,45,0,7,255,75,254,0,0,0,0,0,0,255,255,248,0,0,0,0,0,0,47,255,224,0,0,0,0,0,0,31,255,64,0,0,0,0,0,2,255,248,0,0,0,0,0,0,127,255,208,0,0,0,0,0,111,255,253,0,0,0,0,2,191,255,255,144,0,0,0,0,3,255,255,244,0,0,0,0,0,2,255,249,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0, + // 0x5920 夠 + 32,89,34,36,68,38,2,252,0,6,64,0,0,100,0,0,0,0,15,224,0,0,254,0,0,0,0,31,192,0,0,252,0,0,0,0,63,128,0,2,252,0,0,0,0,191,255,248,3,248,0,0,0,2,255,255,253,7,244,0,0,0,7,255,255,252,15,255,255,255,208,31,224,2,248,15,255,255,255,208,191,128,7,240,63,255,255,255,208,255,16,15,224,127,64,0,15,208,56,252,47,192,255,0,0,15,208,0,255,255,66,253,0,0,15,208,0,63,254,7,248,0,0,15,208,0,15,248,11,251,255,255,15,208,0,127,224,2,219,255,255,15,208,2,255,254,0,11,255,255,15,192,47,254,253,0,11,208,63,15,192,191,243,248,0,11,208,63,15,192,63,75,255,255,75,208,63,15,192,20,47,255,255,203,208,63,15,192,0,127,255,255,139,208,63,15,192,2,254,0,63,11,208,63,15,192,11,248,0,191,11,208,63,15,192,127,224,0,253,11,208,63,15,192,255,74,2,252,11,255,255,15,192,124,63,199,244,11,255,255,31,192,16,31,255,224,11,255,254,31,192,0,3,255,192,11,208,0,31,192,0,1,255,0,11,208,0,47,128,0,11,253,0,6,128,0,47,128,0,63,244,0,0,0,0,63,64,6,255,192,0,0,0,0,127,64,191,254,0,0,0,1,255,255,0,255,244,0,0,0,0,255,254,0,127,64,0,0,0,0,255,248,0,36,0,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,170,170,175,255,170,170,170,144,0,0,0,31,255,0,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,63,239,208,0,0,0,0,0,0,191,79,240,0,0,0,0,0,0,255,15,240,0,0,0,0,0,1,254,7,252,0,0,0,0,0,3,253,3,253,0,0,0,0,0,11,252,1,255,0,0,0,0,0,15,244,0,255,192,0,0,0,0,63,240,0,63,208,0,0,0,0,191,192,0,47,244,0,0,0,2,255,128,0,15,252,0,0,0,11,254,0,0,7,255,64,0,0,47,252,0,0,1,255,208,0,1,255,240,0,0,0,127,248,0,11,255,192,0,0,0,31,255,128,191,254,0,0,0,0,7,255,240,191,244,0,0,0,0,0,255,208,47,128,0,0,0,0,0,47,128,8,0,0,0,0,0,0,2,0, + // 0x5929 天 + 41,89,35,33,41,38,2,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,170,170,171,254,170,170,170,144,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,26,170,170,175,255,170,170,170,64,0,0,0,15,255,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,127,223,240,0,0,0,0,0,0,255,75,248,0,0,0,0,0,3,255,3,253,0,0,0,0,0,11,253,2,255,0,0,0,0,0,47,248,0,255,192,0,0,0,0,255,224,0,63,244,0,0,0,7,255,192,0,31,254,0,0,0,127,254,0,0,7,255,208,0,7,255,248,0,0,1,255,253,0,191,255,192,0,0,0,47,255,244,255,253,0,0,0,0,7,255,240,63,208,0,0,0,0,0,191,192,41,0,0,0,0,0,0,6,128, + // 0x5931 失 + 49,89,35,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,11,240,3,248,0,0,0,0,0,15,240,3,248,0,0,0,0,0,31,224,3,248,0,0,0,0,0,47,192,3,248,0,0,0,0,0,63,192,3,248,0,0,0,0,0,191,234,171,254,170,170,164,0,0,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,7,248,0,3,248,0,0,0,0,15,240,0,3,248,0,0,0,0,63,224,0,3,248,0,0,0,0,191,192,0,3,248,0,0,0,0,47,128,0,3,248,0,0,0,0,6,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,106,170,170,171,250,170,170,170,144,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,47,255,64,0,0,0,0,0,0,63,255,192,0,0,0,0,0,0,191,239,224,0,0,0,0,0,0,255,79,240,0,0,0,0,0,3,255,7,252,0,0,0,0,0,11,253,3,255,0,0,0,0,0,47,248,0,255,192,0,0,0,0,255,224,0,127,240,0,0,0,7,255,192,0,31,254,0,0,0,127,254,0,0,7,255,208,0,7,255,248,0,0,1,255,254,0,191,255,192,0,0,0,47,255,244,255,253,0,0,0,0,7,255,240,63,208,0,0,0,0,0,127,208,24,0,0,0,0,0,0,6,128, + // 0x59cb 始 + 203,89,35,36,68,38,2,252,0,62,64,0,0,57,0,0,0,0,63,64,0,0,127,192,0,0,0,127,0,0,0,127,64,0,0,0,127,0,0,0,255,0,0,0,0,190,0,0,0,254,0,0,0,0,254,0,0,1,253,0,0,0,0,253,0,0,2,252,0,144,0,0,252,0,0,3,248,7,240,0,255,255,255,240,7,244,3,248,0,255,255,255,240,11,240,1,253,0,255,255,255,240,15,224,0,255,0,87,245,91,240,31,192,0,63,128,7,240,11,224,47,213,170,191,192,11,240,15,239,255,255,255,255,240,15,224,15,223,255,255,255,255,244,15,208,15,203,255,255,234,151,248,15,192,31,197,80,0,0,2,248,31,192,31,192,0,0,0,1,128,47,128,47,128,0,0,0,0,0,63,64,63,64,0,0,0,0,0,63,64,127,0,127,255,255,255,192,127,224,191,0,127,255,255,255,192,191,253,254,0,127,255,255,255,192,255,255,253,0,127,0,0,47,192,44,191,252,0,127,0,0,47,192,0,31,252,0,127,0,0,47,192,0,15,255,64,127,0,0,47,192,0,31,255,208,127,0,0,47,192,0,63,255,240,127,0,0,47,192,0,255,139,252,127,0,0,47,192,2,255,2,240,127,0,0,47,192,11,252,0,208,127,255,255,255,192,127,244,0,0,127,255,255,255,192,191,192,0,0,127,255,255,255,192,63,0,0,0,127,0,0,47,192,8,0,0,0,127,0,0,26,128, + // 0x5a92 媒 + 146,90,36,36,68,38,1,252,0,46,64,0,63,0,0,254,0,0,63,128,0,63,0,0,254,0,0,63,64,0,63,0,0,254,0,0,63,0,0,63,0,0,254,0,0,127,0,47,255,255,255,255,252,0,127,0,47,255,255,255,255,252,0,190,0,47,255,255,255,255,252,0,254,0,0,63,0,0,254,0,127,255,255,224,63,0,0,254,0,127,255,255,224,63,0,0,254,0,127,255,255,224,63,170,170,254,0,22,253,95,208,63,255,255,254,0,3,248,15,208,63,255,255,254,0,3,244,15,208,63,0,0,254,0,3,240,15,192,63,0,0,254,0,7,240,15,192,63,0,0,254,0,11,224,31,192,63,255,255,254,0,11,224,31,192,63,255,255,254,0,15,208,47,128,63,255,255,254,0,15,192,63,64,0,7,240,0,0,31,192,127,0,0,7,240,0,0,47,240,191,0,0,7,240,0,0,63,253,254,47,255,255,255,255,252,63,255,253,47,255,255,255,255,252,11,127,252,47,255,255,255,255,252,0,15,252,0,0,255,255,0,0,0,7,254,0,2,255,255,192,0,0,15,255,128,11,255,255,240,0,0,47,255,208,47,231,243,252,0,0,127,207,224,191,199,240,255,0,0,255,3,195,255,7,240,127,208,3,254,1,111,252,7,240,47,252,31,248,0,255,240,7,240,11,253,63,224,0,63,128,7,240,1,244,15,128,0,13,0,7,240,0,32,5,0,0,0,0,7,240,0,0, + // 0x5b50 子 + 80,91,34,35,59,38,2,251,0,85,85,85,85,85,85,128,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,127,244,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,31,254,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,170,170,170,171,254,170,170,170,160,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,170,171,252,0,0,0,0,0,0,255,255,248,0,0,0,0,0,0,127,255,240,0,0,0,0,0,0,63,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5b58 存 + 88,91,35,36,68,38,1,252,0,0,0,41,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,5,85,95,249,85,85,85,85,84,0,0,15,240,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,191,128,0,0,0,4,0,0,1,255,3,255,255,255,255,0,0,3,253,3,255,255,255,255,128,0,11,252,3,255,255,255,255,0,0,47,240,0,0,0,11,252,0,0,127,224,0,0,0,47,224,0,1,255,224,0,0,0,255,128,0,7,255,224,0,0,15,253,0,0,47,255,224,0,0,15,240,0,0,191,239,224,0,0,15,224,0,0,63,143,224,255,255,255,255,255,252,29,15,224,255,255,255,255,255,252,0,15,224,255,255,255,255,255,252,0,15,224,85,85,95,245,85,84,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,85,95,224,0,0,0,15,224,0,127,255,224,0,0,0,15,224,0,63,255,192,0,0,0,15,224,0,63,254,0,0,0, + // 0x5b89 安 + 137,91,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,213,85,85,85,85,85,127,192,63,192,0,0,0,0,0,63,192,63,192,0,63,128,0,0,63,192,63,192,0,127,192,0,0,63,192,63,192,0,255,64,0,0,63,192,21,64,0,255,0,0,0,21,64,0,0,2,253,0,0,0,0,0,85,85,87,253,85,85,85,85,80,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,63,192,0,3,252,0,0,0,0,255,64,0,7,248,0,0,0,1,255,0,0,11,244,0,0,0,3,253,0,0,15,240,0,0,0,7,252,0,0,47,208,0,0,0,15,248,0,0,127,192,0,0,0,31,255,144,0,255,64,0,0,0,63,255,254,67,254,0,0,0,0,191,175,255,255,252,0,0,0,0,11,1,255,255,240,0,0,0,0,0,0,11,255,254,0,0,0,0,0,0,47,255,255,224,0,0,0,0,6,255,250,255,254,0,0,0,6,191,255,192,47,255,224,0,26,255,255,253,0,2,255,253,0,15,255,255,128,0,0,47,254,0,11,255,228,0,0,0,2,248,0,3,148,0,0,0,0,0,96,0, + // 0x5b8c 完 + 140,91,34,36,68,38,2,252,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,213,85,85,85,85,85,127,192,63,128,0,0,0,0,0,63,192,63,128,0,0,0,0,0,63,192,63,128,0,0,0,0,0,63,192,63,131,255,255,255,255,252,63,192,21,67,255,255,255,255,252,21,64,0,3,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,255,224,255,255,255,255,255,255,255,255,224,85,85,111,229,87,253,85,85,80,0,0,47,208,2,252,0,0,0,0,0,47,192,2,252,0,0,0,0,0,63,192,2,252,0,0,0,0,0,63,128,2,252,0,0,0,0,0,191,64,2,252,0,0,0,0,0,255,0,2,252,0,3,64,0,3,254,0,2,252,0,3,240,0,11,252,0,2,252,0,3,240,0,63,244,0,2,252,0,3,240,2,255,224,0,2,252,0,11,240,191,255,128,0,1,255,255,255,224,255,253,0,0,0,255,255,255,192,127,208,0,0,0,127,255,255,64,57,0,0,0,0,1,85,80,0, + // 0x5b9a 定 + 154,91,35,37,77,38,1,251,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,5,85,85,85,255,85,85,85,80,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,224,0,0,0,0,0,11,240,15,226,255,255,255,255,255,139,240,5,66,255,255,255,255,255,133,80,0,2,255,255,255,255,255,128,0,0,1,85,85,255,85,85,64,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2,164,0,255,0,0,0,0,0,3,248,0,255,0,0,0,0,0,3,244,0,255,0,0,0,0,0,7,244,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,15,240,0,255,255,255,248,0,0,15,244,0,255,85,85,80,0,0,31,252,0,255,0,0,0,0,0,63,253,0,255,0,0,0,0,0,63,255,0,255,0,0,0,0,0,191,191,192,255,0,0,0,0,0,255,31,244,255,0,0,0,0,3,253,11,255,255,0,0,0,0,11,252,2,255,255,64,0,0,0,47,244,0,191,255,255,255,255,252,127,224,0,11,255,255,255,255,248,47,192,0,0,127,255,255,255,244,11,0,0,0,0,85,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,35,37,77,38,1,251,0,0,0,0,190,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,208,0,36,0,0,0,11,240,15,208,0,191,128,0,0,11,240,15,208,1,255,0,0,0,11,240,15,208,7,255,255,255,253,11,240,0,0,47,255,255,255,255,0,0,0,0,255,234,170,171,253,0,0,0,7,255,208,0,11,248,0,0,0,127,255,248,0,47,240,0,0,3,255,231,254,0,255,192,0,0,1,255,0,255,215,255,0,0,0,0,180,0,63,255,248,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,127,255,254,64,0,0,0,0,11,255,255,255,249,0,0,0,1,255,255,65,255,255,250,64,1,191,255,248,0,31,255,255,252,127,255,255,64,0,0,191,255,248,63,255,255,255,255,255,255,255,240,31,230,255,255,255,255,255,129,80,4,1,255,255,255,255,255,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,252,0,0,0,63,128,0,0,1,255,255,255,255,255,128,0,0,1,255,255,255,255,255,128,0,0,1,255,255,255,255,255,128,0,0,1,252,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0, + // 0x5bb9 容 + 185,91,35,37,77,38,2,251,0,0,0,2,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,128,0,0,0,0,0,47,192,63,128,9,0,0,8,0,47,192,63,128,47,208,0,127,64,47,192,63,128,191,192,0,191,240,47,192,0,2,255,0,0,31,253,0,0,0,15,252,1,84,3,255,128,0,0,127,240,11,254,0,191,240,0,7,255,192,31,255,64,31,252,0,15,254,0,63,255,208,3,254,0,3,244,0,255,175,244,0,252,0,1,192,7,255,11,254,0,32,0,0,0,31,252,2,255,128,0,0,0,0,191,240,0,191,240,0,0,0,3,255,128,0,31,254,0,0,0,31,254,0,0,3,255,208,0,0,191,248,0,0,0,255,249,0,11,255,255,255,255,255,255,255,208,191,255,255,255,255,255,255,255,244,191,251,255,255,255,255,254,127,224,63,71,240,0,0,0,254,7,192,24,7,240,0,0,0,254,0,64,0,7,240,0,0,0,254,0,0,0,7,240,0,0,0,254,0,0,0,7,240,0,0,0,254,0,0,0,7,240,0,0,0,254,0,0,0,7,255,255,255,255,254,0,0,0,7,255,255,255,255,254,0,0,0,7,255,255,255,255,254,0,0,0,7,240,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c0d 對 + 13,92,36,37,77,38,1,251,0,6,129,164,0,0,0,169,0,10,11,193,244,41,0,0,254,0,63,11,193,244,63,64,0,254,0,31,139,193,244,191,0,0,254,0,15,203,193,244,252,0,0,254,0,7,235,193,246,248,0,0,254,0,3,251,193,251,240,0,0,254,0,2,75,193,244,144,0,0,254,0,127,255,255,255,255,0,0,254,0,127,255,255,255,255,0,0,254,0,127,255,255,255,255,255,255,255,253,0,120,0,15,129,255,255,255,253,0,252,0,31,193,255,255,255,253,0,190,0,47,128,85,85,254,84,0,127,0,63,0,0,0,254,0,0,63,0,127,0,0,0,254,0,0,46,0,125,0,1,0,254,0,15,255,255,255,248,47,0,254,0,15,255,255,255,248,63,128,254,0,15,255,255,255,248,31,192,254,0,0,0,63,0,0,15,224,254,0,0,0,63,0,0,11,240,254,0,0,0,63,0,0,3,244,254,0,3,255,255,255,240,3,248,254,0,3,255,255,255,240,2,252,254,0,3,255,255,255,240,1,144,254,0,0,0,63,0,0,0,0,254,0,0,0,63,0,0,0,0,254,0,0,0,63,0,0,0,0,254,0,0,0,63,107,254,0,0,254,0,1,107,255,255,254,0,0,254,0,63,255,255,255,255,0,0,254,0,63,255,255,250,80,1,85,254,0,63,254,148,0,0,3,255,253,0,20,0,0,0,0,2,255,252,0,0,0,0,0,0,1,255,224,0,0,0,0,0,0,0,0,0,0, + // 0x5c0f 小 + 15,92,36,36,68,38,1,252,0,0,0,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,4,0,0,255,0,1,128,0,0,15,240,0,255,0,31,208,0,0,15,240,0,255,0,15,240,0,0,31,240,0,255,0,11,244,0,0,31,224,0,255,0,3,252,0,0,63,208,0,255,0,2,254,0,0,63,192,0,255,0,0,255,0,0,127,128,0,255,0,0,255,64,0,191,64,0,255,0,0,127,192,0,255,0,0,255,0,0,63,208,1,254,0,0,255,0,0,47,224,3,253,0,0,255,0,0,15,240,7,252,0,0,255,0,0,15,248,15,244,0,0,255,0,0,7,252,47,240,0,0,255,0,0,3,252,63,208,0,0,255,0,0,2,253,127,192,0,0,255,0,0,1,254,11,0,0,0,255,0,0,0,254,0,0,0,0,255,0,0,0,208,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,63,255,255,0,0,0,0,0,0,31,255,254,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,6,170,64,0,0,0,0, + // 0x5c31 就 + 49,92,36,36,68,38,1,252,0,0,190,0,0,0,252,0,0,0,0,191,0,0,0,252,8,0,0,0,191,0,0,0,252,191,0,0,0,191,0,0,0,252,63,192,0,0,191,0,0,0,252,31,224,63,255,255,255,252,0,252,11,240,63,255,255,255,252,0,252,3,248,63,255,255,255,252,0,252,1,248,0,0,0,0,0,0,252,0,128,0,0,0,0,0,0,252,0,0,0,0,0,0,3,255,255,255,253,3,255,255,255,211,255,255,255,253,3,255,255,255,211,255,255,255,253,3,255,255,255,209,86,253,85,84,3,240,0,15,208,1,252,0,0,3,240,0,15,208,2,255,208,0,3,240,0,15,208,2,255,208,0,3,240,0,15,208,3,255,208,0,3,255,255,255,208,3,255,208,0,3,255,255,255,208,3,255,208,0,3,255,255,255,208,7,255,208,0,0,0,127,0,0,11,255,208,0,0,0,127,0,0,15,255,208,0,2,228,127,31,128,15,223,208,0,3,244,127,15,192,31,207,208,0,7,240,127,15,208,63,207,208,0,11,240,127,7,240,127,79,208,16,15,208,127,3,240,255,15,208,61,31,192,127,2,249,254,15,208,62,63,192,127,1,247,252,15,208,62,127,64,127,0,75,248,15,208,62,127,0,127,0,31,240,15,224,126,13,0,191,0,127,208,15,255,253,0,63,255,0,255,128,11,255,252,0,47,253,0,126,0,3,255,244,0,31,228,0,8,0,0,85,64, + // 0x5de5 工 + 229,93,34,29,5,38,2,255,10,170,170,170,170,170,170,170,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,170,170,170,171,254,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x5dee 差 + 238,93,35,36,68,38,1,252,0,0,8,0,0,0,164,0,0,0,0,191,0,0,0,255,0,0,0,0,127,128,0,1,254,0,0,0,0,47,192,0,3,252,0,0,0,0,15,224,0,11,240,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,191,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,253,255,255,255,255,253,0,0,3,252,255,255,255,255,253,0,0,7,248,255,255,255,255,253,0,0,15,240,0,2,252,0,0,0,0,31,224,0,2,252,0,0,0,0,63,208,0,2,252,0,0,0,0,191,192,0,2,252,0,0,0,1,255,0,0,2,252,0,0,0,7,253,0,0,2,252,0,0,0,47,248,191,255,255,255,255,255,240,127,240,191,255,255,255,255,255,240,31,192,191,255,255,255,255,255,240,2,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,33,33,41,38,3,253,21,85,85,85,85,85,85,0,0,127,255,255,255,255,255,255,64,0,127,255,255,255,255,255,255,64,0,127,255,255,255,255,255,255,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,5,80,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,245,85,85,85,85,191,64,0,11,255,255,255,255,255,255,64,0,11,255,255,255,255,255,255,64,0,11,255,255,255,255,255,255,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,127,64,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,20,0,11,240,0,0,0,0,0,47,128,11,240,0,0,0,0,0,47,192,11,240,0,0,0,0,0,63,192,11,240,0,0,0,0,0,63,192,11,240,0,0,0,0,0,127,128,7,248,0,0,0,0,0,255,64,3,255,165,85,85,85,107,255,0,3,255,255,255,255,255,255,253,0,0,255,255,255,255,255,255,244,0,0,27,255,255,255,255,255,128,0, + // 0x5e73 平 + 115,94,34,34,50,38,2,252,5,85,85,85,85,85,85,85,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,4,0,0,0,47,0,3,252,0,15,208,0,0,63,128,3,252,0,47,208,0,0,47,192,3,252,0,63,192,0,0,31,208,3,252,0,127,128,0,0,15,240,3,252,0,191,0,0,0,7,240,3,252,0,254,0,0,0,3,248,3,252,2,252,0,0,0,3,252,3,252,3,248,0,0,0,2,228,3,252,3,240,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,170,170,170,171,254,170,170,170,160,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x5e8a 床 + 138,94,36,36,68,38,1,252,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,253,85,85,85,85,85,85,84,1,252,0,0,0,84,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,0,0,1,252,0,0,0,1,252,63,255,255,255,255,255,252,1,252,63,255,255,255,255,255,252,1,252,63,255,255,255,255,255,252,1,252,21,85,95,255,149,85,84,2,252,0,0,47,255,192,0,0,2,252,0,0,127,255,240,0,0,2,252,0,0,255,255,244,0,0,3,248,0,2,255,255,253,0,0,3,248,0,7,249,252,255,0,0,3,248,0,15,241,252,127,192,0,3,244,0,63,209,252,47,240,0,7,240,0,255,129,252,11,253,0,11,240,3,255,1,252,3,255,64,15,240,31,252,1,252,0,255,224,15,224,191,240,1,252,0,63,253,31,210,255,192,1,252,0,15,253,63,192,254,0,1,252,0,2,244,63,128,56,0,1,252,0,0,96,191,0,0,0,1,252,0,0,0,47,0,0,0,1,252,0,0,0,5,0,0,0,1,252,0,0,0, + // 0x5ea6 度 + 166,94,35,36,68,38,1,252,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,192,0,0,0,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,252,0,0,0,0,0,0,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,255,255,255,255,255,255,248,1,252,255,255,255,255,255,255,248,1,252,255,255,255,255,255,255,244,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,192,0,47,128,0,1,252,0,31,234,170,191,128,0,1,252,0,31,255,255,255,128,0,2,252,0,31,255,255,255,128,0,2,252,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,3,248,127,255,255,255,255,248,0,3,244,191,255,255,255,255,255,0,3,244,191,255,255,255,255,253,0,3,244,0,47,64,0,7,252,0,7,240,0,47,224,0,31,240,0,11,240,0,15,248,0,191,192,0,15,224,0,3,255,71,255,0,0,15,208,0,0,191,255,248,0,0,31,192,0,0,47,255,224,0,0,63,192,0,6,255,255,254,64,0,63,64,91,255,255,255,255,254,148,191,2,255,255,249,1,255,255,252,46,0,255,254,64,0,11,255,244,5,0,185,0,0,0,0,6,224, + // 0x5ee2 廢 + 226,94,36,37,77,38,1,251,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,3,255,255,255,255,255,255,255,252,3,255,255,255,255,255,255,255,252,3,255,255,255,255,255,255,255,252,3,244,0,0,0,0,0,0,0,3,244,0,0,0,27,0,64,0,3,244,63,255,253,31,130,244,0,3,244,63,255,253,15,223,240,0,3,244,21,86,252,3,255,128,0,3,244,24,3,244,2,253,2,224,3,244,191,79,224,0,255,31,240,3,244,47,255,192,0,63,255,64,3,244,7,255,0,0,15,252,0,3,244,15,253,80,21,91,255,128,3,245,191,255,240,127,255,255,253,3,255,255,255,240,127,255,219,252,3,247,228,2,240,124,11,192,180,3,241,0,2,240,188,11,193,64,3,240,21,87,240,252,11,194,224,3,240,63,255,247,248,7,231,208,3,240,63,255,251,240,7,255,192,7,240,125,0,2,192,2,255,64,7,240,188,0,1,85,85,84,0,11,224,253,85,83,255,255,255,0,11,224,255,255,243,255,255,253,0,15,209,255,255,240,108,0,252,0,15,193,160,3,240,126,2,248,0,31,192,0,7,224,63,139,240,0,47,128,0,7,224,15,255,192,0,63,128,0,11,208,3,255,64,0,127,0,0,15,208,31,255,228,0,191,0,41,111,198,255,255,255,228,125,0,47,255,143,254,2,255,244,12,0,31,254,7,144,0,27,224,0,0,0,0,0,0,0,0,0, + // 0x5efa 建 + 250,94,36,37,77,38,1,251,0,0,0,0,0,42,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,127,255,248,31,255,255,255,255,128,127,255,244,31,255,255,255,255,128,127,255,240,31,255,255,255,255,128,0,15,208,0,0,63,64,63,128,0,31,192,0,0,63,64,63,128,0,63,131,255,255,255,255,255,253,0,127,3,255,255,255,255,255,253,0,254,3,255,255,255,255,255,253,1,252,0,0,0,63,64,63,128,3,248,0,0,0,63,64,63,128,7,255,254,31,255,255,255,255,128,15,255,255,47,255,255,255,255,128,31,255,255,47,255,255,255,255,128,63,128,190,0,0,63,64,0,0,2,0,254,0,0,63,64,0,0,0,0,253,42,170,191,234,170,128,1,64,253,63,255,255,255,255,192,31,193,252,63,255,255,255,255,192,15,193,252,0,0,63,64,0,0,11,211,248,0,0,63,64,0,0,7,243,244,0,0,63,64,0,0,3,251,241,255,255,255,255,255,248,1,255,241,255,255,255,255,255,248,0,255,225,255,255,255,255,255,244,0,127,192,0,0,63,64,0,0,0,63,244,0,0,63,64,0,0,0,255,254,0,0,63,64,0,0,1,255,255,244,0,21,0,0,0,7,252,127,255,250,85,85,85,84,31,244,11,255,255,255,255,255,252,127,224,0,127,255,255,255,255,252,47,128,0,1,111,255,255,255,244,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5f15 引 + 21,95,30,37,40,38,3,251,0,0,0,0,0,0,5,64,21,85,85,85,0,0,31,208,63,255,255,255,0,0,31,208,63,255,255,255,0,0,31,208,63,255,255,255,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,0,0,0,127,0,0,31,208,5,85,85,127,0,0,31,208,15,255,255,255,0,0,31,208,31,255,255,255,0,0,31,208,47,255,255,255,0,0,31,208,47,192,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,128,0,0,0,0,31,208,63,64,0,0,0,0,31,208,127,85,85,85,0,0,31,208,191,255,255,255,64,0,31,208,191,255,255,255,64,0,31,208,255,255,255,255,0,0,31,208,253,0,0,127,0,0,31,208,109,0,0,191,0,0,31,208,0,0,0,191,0,0,31,208,0,0,0,255,0,0,31,208,0,0,0,255,0,0,31,208,0,0,0,254,0,0,31,208,0,0,0,254,0,0,31,208,0,0,1,253,0,0,31,208,0,0,2,252,0,0,31,208,0,0,3,252,0,0,31,208,2,170,175,248,0,0,31,208,1,255,255,244,0,0,31,208,0,255,255,224,0,0,31,208,0,191,254,64,0,0,31,208,0,0,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,36,36,68,38,1,252,0,0,144,0,0,10,128,0,0,0,1,253,0,0,31,192,0,0,0,3,252,0,0,31,192,0,0,0,15,244,0,0,31,192,0,0,0,63,224,0,0,31,192,0,0,0,255,128,31,255,255,255,255,224,7,255,0,31,255,255,255,255,224,47,252,0,31,255,255,255,255,224,63,224,0,0,0,31,208,0,0,31,128,56,0,0,31,192,0,0,13,0,255,0,0,31,192,0,0,0,1,253,0,0,31,192,0,0,0,3,252,0,0,31,208,0,0,0,15,241,255,255,255,255,255,253,0,47,225,255,255,255,255,255,253,0,191,209,255,255,255,255,255,253,2,255,192,0,0,0,3,244,0,11,255,192,0,0,0,3,244,0,63,255,192,0,0,0,3,244,0,191,239,192,0,0,0,7,248,0,63,79,192,255,255,255,255,255,252,45,15,192,255,255,255,255,255,252,4,15,192,255,255,255,255,255,252,0,15,192,0,0,0,3,244,0,0,15,192,1,240,0,3,244,0,0,15,192,7,248,0,3,244,0,0,15,192,2,253,0,3,244,0,0,15,192,0,255,0,3,244,0,0,15,192,0,127,192,3,244,0,0,15,192,0,47,208,3,244,0,0,15,192,0,15,208,3,244,0,0,15,192,0,10,0,3,244,0,0,15,192,0,0,5,87,244,0,0,15,192,0,0,15,255,244,0,0,15,192,0,0,15,255,240,0,0,15,192,0,0,11,254,64,0, + // 0x5f8c 後 + 140,95,36,37,77,38,1,251,0,1,144,0,0,208,0,0,0,0,3,252,0,2,252,0,0,0,0,11,244,0,7,252,0,0,0,0,47,224,0,15,240,3,128,0,0,191,128,16,63,192,11,244,0,2,255,0,125,191,0,47,240,0,11,252,0,255,253,0,127,192,0,63,240,0,127,248,1,255,0,0,127,192,96,31,253,7,252,0,0,46,0,254,3,255,95,240,0,0,4,2,252,0,255,255,192,184,0,0,7,248,0,63,255,2,253,0,0,15,240,0,15,252,0,255,0,0,63,208,0,15,224,0,63,192,0,191,192,0,63,234,171,255,224,2,255,199,255,255,255,255,255,244,11,255,195,255,255,255,255,255,252,63,255,195,255,255,253,64,1,254,255,255,192,0,7,244,0,0,253,191,95,192,0,15,224,0,0,96,61,31,192,0,63,250,170,168,0,20,31,192,1,255,255,255,255,0,0,31,192,7,255,255,255,253,0,0,31,192,47,252,0,3,252,0,0,31,193,255,255,0,11,244,0,0,31,203,255,127,128,47,224,0,0,31,195,252,31,224,191,192,0,0,31,192,208,11,255,255,0,0,0,31,192,0,2,255,252,0,0,0,31,192,0,0,255,244,0,0,0,31,192,0,31,255,255,64,0,0,31,192,1,255,255,255,248,0,0,31,193,191,255,208,127,255,228,0,31,203,255,253,0,7,255,253,0,31,195,255,144,0,0,111,248,0,31,193,224,0,0,0,1,176,0,0,0,0,0,0,0,0,0, + // 0x5f91 徑 + 145,95,36,36,68,38,1,252,0,1,144,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,244,127,255,255,255,255,252,0,47,224,127,255,255,255,255,252,0,191,128,127,255,255,255,255,252,2,254,0,0,0,0,0,0,0,15,252,0,0,144,2,64,9,0,63,224,0,2,252,11,240,31,192,127,128,96,3,244,15,208,63,128,45,0,254,11,240,47,128,191,0,0,2,253,15,192,127,0,253,0,0,7,248,63,128,253,3,248,0,0,15,240,127,2,252,11,240,0,0,63,208,190,3,248,15,224,0,0,255,192,63,65,253,3,244,0,3,255,192,31,192,191,1,252,0,15,255,192,15,224,63,128,191,0,63,255,192,3,244,15,208,63,192,255,239,192,2,252,11,240,15,224,127,31,192,0,253,3,248,11,240,44,31,192,0,164,1,144,2,64,0,31,192,0,0,0,0,0,0,0,31,192,63,255,255,255,255,224,0,31,192,63,255,255,255,255,224,0,31,192,63,255,255,255,255,224,0,31,192,0,0,47,192,0,0,0,31,192,0,0,31,192,0,0,0,31,192,0,0,31,192,0,0,0,31,192,0,0,31,192,0,0,0,31,192,0,0,31,192,0,0,0,31,192,0,0,31,192,0,0,0,31,192,0,0,47,192,0,0,0,31,199,255,255,255,255,255,253,0,31,199,255,255,255,255,255,253,0,31,199,255,255,255,255,255,253,0,31,192,0,0,0,0,0,0, + // 0x5f9e 從 + 158,95,36,36,68,38,1,252,0,1,144,0,41,64,1,164,0,0,3,252,0,63,128,2,248,0,0,11,244,0,63,64,3,248,0,0,47,224,0,127,0,3,244,0,0,127,192,0,191,0,7,240,0,1,255,0,0,254,0,11,240,0,11,252,0,1,253,0,15,224,0,47,240,0,2,255,64,31,240,0,127,192,16,3,255,224,63,252,0,47,0,254,11,255,248,127,255,0,8,1,253,31,227,252,255,191,192,0,3,248,63,192,246,253,47,224,0,15,240,191,128,39,252,11,248,0,47,210,255,0,31,244,3,253,0,127,195,252,0,47,208,0,252,1,255,192,244,0,11,128,0,48,7,255,192,16,0,15,208,0,0,31,255,192,0,0,15,208,0,0,191,255,192,1,64,15,208,0,0,191,159,192,7,240,15,208,0,0,63,31,192,7,240,15,208,0,0,40,31,192,11,240,15,208,0,0,0,31,192,11,240,15,255,255,208,0,31,192,11,224,15,255,255,208,0,31,192,15,224,15,255,255,208,0,31,192,15,240,15,208,0,0,0,31,192,31,244,15,208,0,0,0,31,192,47,252,15,208,0,0,0,31,192,63,254,15,208,0,0,0,31,192,191,127,143,208,0,0,0,31,192,254,47,239,208,0,0,0,31,195,252,15,255,224,0,0,0,31,207,248,2,255,255,255,252,0,31,207,240,0,127,255,255,252,0,31,195,192,0,2,255,255,248,0,31,128,0,0,0,0,0,0, + // 0x5fa9 復 + 169,95,36,36,68,38,1,252,0,0,128,0,100,0,0,0,0,0,3,252,0,255,0,0,0,0,0,11,244,1,254,0,0,0,0,0,47,224,3,252,0,0,0,0,0,127,192,3,255,255,255,255,252,2,255,0,11,255,255,255,255,252,11,252,0,31,255,255,255,255,252,63,240,0,63,192,0,0,0,0,127,192,100,255,64,0,0,0,0,46,0,255,255,255,255,255,255,128,4,2,255,255,255,255,255,255,128,0,7,248,182,249,85,85,127,128,0,15,240,2,244,0,0,47,128,0,63,208,2,248,0,0,63,128,0,255,192,2,255,255,255,255,128,2,255,192,2,255,255,255,255,128,11,255,192,2,244,0,0,47,128,63,255,192,2,244,0,0,47,128,255,239,192,2,255,255,255,255,128,127,31,192,2,255,255,255,255,128,60,31,192,0,87,249,85,85,0,16,31,192,0,15,240,0,0,0,0,31,192,0,47,208,0,0,0,0,31,192,0,191,255,255,254,0,0,31,192,2,255,255,255,255,64,0,31,192,11,255,85,86,254,0,0,31,192,63,255,128,3,252,0,0,31,194,255,159,224,15,244,0,0,31,192,253,7,252,127,208,0,0,31,192,32,1,255,255,64,0,0,31,192,0,0,191,253,0,0,0,31,192,0,31,255,255,224,0,0,31,192,107,255,254,255,255,228,0,31,195,255,255,208,31,255,253,0,31,193,255,248,0,0,191,248,0,31,192,164,0,0,0,1,160, + // 0x5fae 微 + 174,95,36,36,68,38,1,252,0,9,0,3,208,0,26,64,0,0,31,208,3,208,0,31,192,0,0,63,192,3,208,0,47,128,0,0,255,69,67,208,80,63,64,0,2,254,15,131,208,244,63,64,0,7,252,15,131,208,244,63,0,0,31,240,15,131,208,244,127,0,0,127,192,15,131,208,244,190,0,0,127,66,15,131,208,244,255,255,253,61,7,255,131,208,244,255,255,253,4,15,239,131,208,245,255,255,253,0,47,207,255,255,247,248,7,240,0,63,143,255,255,251,252,7,224,0,255,11,255,255,255,252,11,224,2,254,0,0,0,15,252,11,208,7,254,0,0,0,63,253,15,192,15,254,0,0,0,47,126,15,192,63,254,31,255,255,254,63,15,192,255,254,31,255,255,248,47,31,128,190,190,31,255,255,248,31,111,64,60,126,0,252,31,128,31,191,0,16,126,0,252,31,128,15,255,0,0,126,0,252,31,128,15,254,0,0,126,0,252,31,128,7,253,0,0,126,0,248,31,128,3,252,0,0,126,1,248,31,128,3,248,0,0,126,2,244,31,138,7,248,0,0,126,3,244,31,255,15,252,0,0,126,3,240,127,255,47,255,0,0,126,11,224,191,244,127,191,64,0,126,15,208,126,0,255,47,208,0,126,47,192,16,3,252,15,244,0,126,63,64,0,31,244,7,253,0,126,30,0,0,63,208,2,254,0,126,8,0,0,31,0,0,184,0,126,0,0,0,4,0,0,16, + // 0x5fc3 心 + 195,95,36,36,68,38,1,252,0,0,0,32,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,1,255,255,64,0,0,0,0,0,0,11,255,244,0,0,0,0,0,0,0,191,254,0,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,2,224,0,0,248,7,240,0,0,15,244,0,0,253,7,240,0,0,7,252,0,1,252,7,240,0,0,2,254,0,1,252,7,240,0,0,0,255,0,2,252,7,240,0,0,0,127,192,3,252,7,240,0,0,0,63,208,3,248,7,240,0,0,0,31,240,7,244,7,240,0,0,0,15,240,11,240,7,240,0,0,0,11,248,15,240,7,240,0,0,0,3,252,31,224,7,240,0,0,16,2,253,63,192,7,240,0,0,46,1,254,127,192,7,240,0,0,47,128,255,255,64,7,240,0,0,63,128,244,47,0,7,240,0,0,63,64,0,0,0,7,240,0,0,63,64,0,0,0,7,240,0,0,127,0,0,0,0,7,248,0,0,255,0,0,0,0,3,255,255,255,254,0,0,0,0,2,255,255,255,252,0,0,0,0,0,191,255,255,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x6027 性 + 39,96,35,36,68,38,1,252,0,47,192,0,0,7,224,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,253,11,240,0,0,0,47,192,1,253,11,240,0,0,0,47,192,1,252,11,240,0,0,0,47,192,2,252,11,240,0,0,0,47,196,3,248,11,240,0,0,9,47,254,3,244,11,240,0,0,15,111,255,7,255,255,255,255,240,31,111,223,139,255,255,255,255,240,31,111,207,207,255,255,255,255,240,47,47,203,239,229,95,245,85,80,47,47,199,255,192,11,240,0,0,63,47,194,127,128,11,240,0,0,62,47,192,191,64,11,240,0,0,125,47,192,255,0,11,240,0,0,189,47,192,29,0,11,240,0,0,188,47,192,0,0,11,240,0,0,4,47,192,0,0,11,240,0,0,0,47,192,7,255,255,255,255,208,0,47,192,7,255,255,255,255,208,0,47,192,7,255,255,255,255,208,0,47,192,1,85,95,245,85,64,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,47,192,255,255,255,255,255,252,0,47,192,255,255,255,255,255,252,0,47,192,255,255,255,255,255,252,0,47,192,85,85,85,85,85,84,0,42,128,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,36,36,68,38,1,252,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,128,11,208,0,0,0,0,0,47,130,255,255,255,255,255,253,0,47,130,255,255,255,255,255,253,0,47,150,255,255,255,255,255,253,5,47,253,95,229,85,85,85,84,15,47,189,11,208,0,105,0,0,15,47,175,11,208,0,190,0,0,31,47,159,11,208,0,190,0,0,31,47,143,139,208,0,190,0,0,31,47,139,203,208,0,190,0,80,47,47,135,203,211,208,190,0,252,62,47,129,15,211,224,190,1,248,61,47,128,15,211,224,190,2,244,188,47,128,15,211,208,190,3,240,184,47,128,15,199,208,190,7,224,0,47,128,15,203,192,190,11,192,0,47,128,15,207,192,190,15,192,0,47,128,15,207,128,255,31,64,0,47,128,31,223,0,255,27,0,0,47,128,31,129,0,255,0,0,0,47,128,47,128,2,255,128,0,0,47,128,63,64,3,255,192,0,0,47,128,63,64,7,235,208,0,0,47,128,63,0,15,215,240,0,0,47,128,191,0,47,195,244,0,0,47,128,254,0,127,65,252,0,0,47,129,252,0,255,0,255,0,0,47,130,252,3,252,0,127,192,0,47,131,244,31,248,0,47,240,0,47,139,240,191,224,0,15,253,0,47,143,225,255,128,0,3,254,0,47,135,192,190,0,0,0,252,0,47,128,64,32,0,0,0,32, + // 0x606f 息 + 111,96,36,36,68,38,1,252,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,253,0,0,0,0,0,7,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,250,170,170,170,175,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,250,170,170,170,175,240,0,0,11,240,0,0,0,11,240,0,0,11,240,0,0,0,11,240,0,0,11,250,170,170,170,175,240,0,0,11,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,0,0,0,144,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,254,0,0,0,0,0,120,5,81,255,128,1,240,0,0,191,15,224,63,208,7,252,0,0,254,15,224,15,240,3,255,0,2,252,15,224,7,224,0,255,128,3,252,15,224,2,64,64,63,224,11,244,15,224,0,0,248,15,244,31,240,15,224,0,0,252,7,252,127,208,11,244,0,2,252,2,253,47,128,11,255,255,255,248,0,252,6,0,3,255,255,255,240,0,144,0,0,0,191,255,255,128,0,0, + // 0x61b6 憶 + 182,97,36,36,68,38,1,252,0,47,128,0,0,15,208,0,0,0,47,128,0,0,15,224,0,0,0,47,128,0,0,15,224,0,0,0,47,128,47,255,255,255,255,240,0,47,128,47,255,255,255,255,240,0,47,128,26,191,170,171,254,160,0,47,132,0,63,0,2,248,0,4,47,252,0,47,128,3,240,0,15,47,190,0,15,192,7,224,0,15,47,175,127,255,255,255,255,253,31,47,159,255,255,255,255,255,253,31,47,143,255,255,255,255,255,253,31,47,139,192,0,0,0,0,0,47,47,135,192,0,0,0,0,0,62,47,129,3,255,255,255,255,208,61,47,128,3,255,255,255,255,208,124,47,128,3,240,0,0,15,208,188,47,128,3,240,0,0,15,208,0,47,128,3,255,255,255,255,208,0,47,128,3,255,255,255,255,208,0,47,128,3,240,0,0,15,208,0,47,128,3,240,0,0,15,208,0,47,128,3,255,255,255,255,208,0,47,128,3,255,255,255,255,208,0,47,128,0,0,127,64,0,0,0,47,128,0,0,191,128,0,0,0,47,128,0,0,47,240,4,0,0,47,128,30,75,215,248,62,0,0,47,128,47,139,208,244,127,64,0,47,128,63,75,208,16,47,192,0,47,128,127,11,208,0,79,240,0,47,128,254,11,208,0,247,248,0,47,130,252,11,224,2,245,252,0,47,135,248,11,255,255,244,253,0,47,129,240,7,255,255,240,116,0,47,128,0,1,191,255,128,0, + // 0x61c9 應 + 201,97,35,36,68,38,1,252,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,0,3,255,255,255,255,255,255,255,252,3,255,255,255,255,255,255,255,252,3,255,255,255,255,255,255,255,252,3,244,0,164,3,144,9,0,0,3,244,1,252,7,240,31,192,0,3,244,3,244,15,224,63,128,0,3,244,11,240,31,208,127,64,0,3,244,15,208,63,255,255,255,240,3,244,63,192,255,255,255,255,240,3,244,255,194,255,64,189,0,0,3,247,255,203,255,255,255,255,192,3,255,255,223,255,255,255,255,192,3,255,239,195,175,64,189,0,0,3,247,143,192,47,64,189,0,0,3,244,15,192,47,255,255,255,192,3,240,15,192,47,255,255,255,192,3,240,15,192,47,64,189,0,0,3,240,15,192,47,64,189,0,0,3,240,15,192,47,255,255,255,244,3,240,15,192,47,255,255,255,244,7,240,15,192,14,85,85,85,80,7,240,0,0,47,208,0,0,0,11,224,0,0,47,248,0,0,0,11,224,0,0,7,255,64,16,0,15,208,31,71,240,191,193,252,0,15,192,47,71,240,31,0,255,0,31,192,63,7,240,0,0,127,128,47,128,190,7,240,0,13,47,208,63,65,253,7,240,0,15,143,240,127,3,252,7,240,0,47,131,248,191,15,240,3,255,255,255,66,252,45,2,208,3,255,255,255,0,244,8,0,0,0,111,255,248,0,0, + // 0x6210 成 + 16,98,36,37,77,38,1,251,0,0,0,0,2,248,9,0,0,0,0,0,0,3,252,63,128,0,0,0,0,0,3,252,127,244,0,0,0,0,0,3,252,11,254,0,0,0,0,0,2,252,1,255,192,0,0,0,0,2,252,0,63,0,0,85,85,85,87,253,85,110,84,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,255,255,255,255,255,255,255,252,1,253,0,0,1,252,0,0,0,1,253,0,0,1,253,0,0,0,1,253,0,0,0,253,0,0,0,1,253,0,0,0,254,0,63,64,1,254,0,0,0,254,0,127,128,1,255,255,255,192,255,0,191,0,1,255,255,255,192,191,0,254,0,1,255,255,255,192,191,1,253,0,1,253,0,47,192,127,3,252,0,1,253,0,47,192,127,75,244,0,1,253,0,47,192,63,143,240,0,1,252,0,47,192,63,239,208,0,1,252,0,47,128,47,255,192,0,2,252,0,47,128,31,255,0,0,2,252,0,63,128,15,254,0,0,3,252,0,63,128,15,252,0,128,3,248,0,127,64,31,244,0,248,3,248,255,255,0,127,248,0,253,7,244,127,255,1,255,252,0,252,11,240,127,248,7,255,255,0,252,15,240,0,0,47,252,255,65,252,47,224,0,1,255,240,127,210,248,63,192,0,11,255,192,47,255,244,127,128,0,7,254,0,15,255,240,47,0,0,1,244,0,2,255,208,6,0,0,0,64,0,0,25,0,0,0,0,0,0,0,0,0,0, + // 0x6236 戶 + 54,98,30,36,32,38,2,252,0,0,0,0,0,0,100,0,0,0,0,0,0,111,254,0,0,0,0,1,111,255,255,128,0,16,22,255,255,255,228,0,0,127,255,255,255,229,0,0,0,127,255,255,148,0,0,0,0,127,233,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,255,255,255,255,255,240,0,127,255,255,255,255,255,240,0,127,255,255,255,255,255,240,0,127,149,85,85,85,91,240,0,127,64,0,0,0,11,240,0,127,64,0,0,0,11,240,0,127,64,0,0,0,11,240,0,127,64,0,0,0,11,240,0,127,0,0,0,0,11,240,0,127,0,0,0,0,11,240,0,191,85,85,85,85,91,240,0,191,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,255,255,255,255,255,255,240,0,254,0,0,0,0,11,240,1,253,0,0,0,0,11,240,2,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,192,0,0,0,0,0,0,191,128,0,0,0,0,0,0,255,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,36,36,68,38,1,252,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,192,47,255,255,255,240,0,2,255,244,47,255,255,255,241,1,191,255,244,47,255,255,255,242,255,255,254,0,0,0,0,0,2,255,255,144,0,0,0,0,0,2,255,208,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,248,0,0,0,7,255,255,255,194,248,0,0,0,7,255,255,255,194,248,0,0,0,7,255,255,255,194,248,0,0,0,7,240,0,47,194,248,0,0,0,7,240,0,47,194,255,255,255,254,7,240,0,47,195,255,255,255,254,7,240,0,47,195,255,255,255,254,7,240,0,47,195,253,85,255,84,7,240,0,47,195,248,0,191,0,7,255,255,255,195,244,0,191,0,7,255,255,255,195,244,0,191,0,7,255,255,255,195,244,0,191,0,7,240,0,0,7,240,0,191,0,7,240,0,0,7,240,0,191,0,7,240,0,0,11,240,0,191,0,11,240,0,0,15,224,0,191,0,11,224,0,0,15,208,0,191,0,15,224,0,0,47,192,0,191,0,15,208,0,0,63,192,0,191,0,15,192,0,0,127,64,0,191,0,31,192,0,0,255,0,0,191,0,47,192,0,1,254,0,0,191,0,63,64,0,3,252,0,0,191,0,191,0,0,15,244,0,0,191,0,255,0,0,15,240,0,0,191,0,61,0,0,3,192,0,0,191,0,8,0,0,0,64,0,0,190,0, + // 0x6247 扇 + 71,98,34,34,50,38,1,252,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,170,170,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,0,0,0,127,0,0,191,0,0,0,0,0,127,0,0,191,0,0,0,0,0,127,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,170,170,170,170,170,170,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,191,255,252,127,255,255,128,0,190,191,255,252,127,255,255,128,0,254,106,171,252,42,170,191,128,0,254,5,0,252,2,0,47,128,0,253,63,64,252,31,192,47,128,0,252,31,208,252,11,240,47,128,1,252,11,240,252,3,248,47,128,2,252,3,240,252,0,244,47,128,3,248,0,64,252,0,64,47,128,3,244,0,44,252,0,27,111,128,11,240,6,253,252,2,255,175,128,15,241,191,253,252,127,254,47,128,31,211,255,208,252,255,224,47,128,63,194,249,0,252,126,0,47,128,127,128,128,0,252,16,0,63,128,191,0,0,255,252,0,31,255,128,29,0,0,127,248,0,15,255,0,0,0,0,62,144,0,11,232,0, + // 0x624b 手 + 75,98,34,37,77,38,2,251,0,0,0,0,0,0,27,64,0,0,0,0,0,5,175,255,208,0,0,5,106,191,255,255,255,240,0,7,255,255,255,255,255,249,64,0,3,255,255,255,255,164,0,0,0,3,255,250,151,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,7,255,255,255,255,255,255,255,0,7,255,255,255,255,255,255,255,0,7,255,255,255,255,255,255,255,0,1,85,85,87,253,85,85,85,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,87,253,85,85,85,80,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,1,85,91,252,0,0,0,0,0,1,255,255,248,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,254,64,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6253 打 + 83,98,36,36,68,38,1,252,0,11,224,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,2,170,170,170,170,168,0,11,240,3,255,255,255,255,253,0,11,240,3,255,255,255,255,253,0,11,240,3,255,255,255,255,253,21,95,245,80,0,0,63,192,0,63,255,255,248,0,0,63,192,0,63,255,255,248,0,0,63,192,0,63,255,255,248,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,4,0,0,63,192,0,0,11,246,252,0,0,63,192,0,0,15,255,252,0,0,63,192,0,6,255,255,252,0,0,63,192,0,127,255,255,64,0,0,63,192,0,63,255,240,0,0,0,63,192,0,47,239,240,0,0,0,63,192,0,20,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,11,240,0,0,0,63,192,0,0,15,240,0,0,0,63,192,0,15,255,224,0,11,255,255,192,0,11,255,208,0,3,255,255,128,0,7,255,64,0,3,255,254,0,0,1,64,0,0,1,234,144,0,0, + // 0x6279 批 + 121,98,36,36,68,38,1,252,0,63,64,5,64,0,168,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,21,127,149,15,208,0,253,0,0,127,255,255,15,208,0,253,0,0,127,255,255,15,208,0,253,0,128,127,255,255,15,208,0,253,2,240,0,63,64,15,208,0,253,11,248,0,63,64,15,229,80,253,63,244,0,63,64,15,255,248,254,255,208,0,63,64,15,255,248,255,255,0,0,63,64,15,255,248,255,244,0,0,63,64,15,208,0,255,192,0,0,63,175,15,208,0,254,0,0,0,63,255,15,208,0,253,0,0,27,255,255,15,208,0,253,0,0,191,255,248,15,208,0,253,0,0,127,255,64,15,208,0,253,0,0,62,127,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,0,0,63,64,15,208,0,253,0,64,0,63,64,15,208,0,253,0,184,0,63,64,15,208,0,253,0,190,0,63,64,15,208,20,253,0,189,0,63,64,15,235,252,253,0,253,0,63,70,255,255,252,254,0,252,0,127,75,255,255,228,255,255,252,47,255,3,255,228,0,127,255,248,31,254,3,148,0,0,47,255,224,15,244,0,0,0,0,0,0,0, + // 0x6296 抖 + 150,98,36,36,68,38,1,252,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,15,0,3,244,0,0,15,192,0,63,224,3,244,0,0,15,192,0,47,252,3,244,0,0,15,192,0,7,255,67,244,0,21,95,213,64,0,191,195,244,0,63,255,255,240,0,31,67,244,0,63,255,255,240,0,6,3,244,0,63,255,255,240,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,144,0,3,244,0,0,15,192,1,253,0,3,244,0,0,15,192,3,255,192,3,244,0,0,15,192,0,191,248,3,244,0,0,15,192,16,15,254,3,244,0,0,15,235,240,1,252,3,244,0,0,31,255,240,0,52,3,244,0,27,255,255,240,0,0,3,244,0,127,255,254,64,0,0,3,244,0,63,255,208,0,0,0,3,250,252,63,159,192,0,0,1,175,255,253,16,15,192,0,26,255,255,255,254,0,15,192,15,255,255,255,254,144,0,15,192,15,255,255,235,244,0,0,15,192,15,254,144,3,244,0,0,15,192,5,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,15,192,0,0,0,3,244,0,0,31,192,0,0,0,3,244,0,31,255,192,0,0,0,3,244,0,15,255,192,0,0,0,3,244,0,15,254,0,0,0,0,3,244,0,0,0,0,0,0,0,1,80,0, + // 0x62bd 抽 + 189,98,35,37,77,38,1,251,0,31,192,0,0,7,224,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,0,31,192,0,0,7,240,0,0,21,111,213,64,0,7,240,0,0,127,255,255,192,0,7,240,0,0,127,255,255,207,255,255,255,255,248,127,255,255,207,255,255,255,255,248,0,31,192,15,255,255,255,255,248,0,31,192,15,229,91,245,87,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,219,207,208,7,240,3,248,0,31,255,207,208,7,240,3,248,2,255,255,223,255,255,255,255,248,191,255,254,79,255,255,255,255,248,191,255,208,15,255,255,255,255,248,127,255,192,15,229,91,245,87,248,52,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,208,7,240,3,248,0,31,192,15,229,91,245,87,248,0,31,192,15,255,255,255,255,248,0,31,192,15,255,255,255,255,248,0,47,192,15,255,255,255,255,248,31,255,192,15,208,0,0,3,248,15,255,64,15,208,0,0,3,248,15,249,0,11,208,0,0,1,164,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,36,37,77,38,1,251,0,31,192,0,7,240,1,0,0,0,31,192,0,7,240,15,128,0,0,31,192,0,7,240,47,244,0,0,31,192,0,7,240,11,255,0,0,31,192,0,7,240,0,255,208,0,31,192,0,7,240,0,47,224,0,31,192,0,7,240,0,7,192,21,111,213,64,7,240,0,1,0,127,255,255,218,175,250,170,170,168,127,255,255,223,255,255,255,255,252,127,255,255,223,255,255,255,255,252,0,31,192,0,11,240,0,0,0,0,31,192,0,11,240,0,0,0,0,31,192,0,15,240,0,0,0,0,31,192,0,15,244,0,42,0,0,31,192,0,15,248,0,63,0,0,31,192,0,15,252,0,127,0,0,31,199,192,15,252,0,191,0,0,31,255,192,31,253,0,254,0,2,255,255,208,47,255,0,253,0,191,255,254,64,63,191,65,252,0,191,255,208,0,63,111,194,252,0,127,255,192,0,127,15,195,244,0,56,31,192,0,191,11,231,240,0,0,31,192,0,254,7,255,240,0,0,31,192,1,252,2,255,208,0,0,31,192,3,252,0,255,192,0,0,31,192,3,244,0,255,128,0,0,31,192,15,240,1,255,208,0,0,31,192,31,224,7,255,244,0,0,31,192,63,192,15,255,253,0,0,31,192,191,64,127,226,255,128,0,47,194,255,2,255,128,191,244,31,255,203,252,15,254,0,31,254,15,255,67,240,7,248,0,3,252,15,249,0,208,1,208,0,0,112,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,36,37,77,38,1,251,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,0,0,15,224,0,0,0,31,192,31,255,255,255,255,252,0,31,192,31,255,255,255,255,252,21,111,213,95,255,255,255,255,252,127,255,255,223,192,0,0,1,252,127,255,255,223,192,16,0,1,252,127,255,255,223,192,127,64,1,252,0,31,192,31,192,191,0,1,252,0,31,192,31,192,255,0,1,252,0,31,192,0,0,253,0,0,0,0,31,192,0,1,252,0,0,0,0,31,192,0,3,252,0,0,0,0,31,192,47,255,255,255,255,253,0,31,198,239,255,255,255,255,253,0,31,255,255,255,255,255,255,253,1,191,255,208,15,208,0,255,0,127,255,255,128,31,192,0,254,0,191,255,208,0,63,128,1,253,0,127,255,192,0,63,64,2,252,0,57,31,192,0,191,0,3,248,0,0,31,192,0,255,128,11,244,0,0,31,192,1,255,249,15,240,0,0,31,192,2,255,255,255,208,0,0,31,192,1,185,255,255,192,0,0,31,192,0,0,31,255,192,0,0,31,192,0,0,11,255,248,0,0,31,192,0,0,127,255,255,64,0,31,192,0,27,255,194,255,224,0,47,192,22,255,254,0,127,252,31,255,192,191,255,224,0,11,252,15,255,64,63,253,0,0,1,244,15,249,0,46,64,0,0,0,96,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,36,37,77,38,1,251,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,255,255,252,0,63,128,0,0,31,192,0,0,21,127,149,0,0,31,192,0,0,127,255,255,64,0,31,192,0,0,127,255,255,95,255,255,255,255,192,127,255,255,95,255,255,255,255,192,0,63,128,31,255,255,255,255,192,0,63,128,31,192,0,0,31,192,0,63,128,31,192,0,0,31,192,0,63,128,31,192,0,0,31,192,0,63,128,31,255,255,255,255,192,0,63,128,31,255,255,255,255,192,0,63,175,95,234,170,170,191,192,0,63,255,159,192,0,0,31,192,6,255,255,159,192,0,0,31,192,127,255,254,31,192,0,0,31,192,127,255,208,31,255,255,255,255,192,63,255,128,31,255,255,255,255,192,36,63,128,31,255,255,255,255,192,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,63,130,255,255,255,255,255,253,0,63,130,255,255,255,255,255,253,0,63,130,255,255,255,255,255,253,0,63,128,0,0,31,192,0,0,0,63,128,0,0,31,192,0,0,0,127,128,0,0,31,192,0,0,63,255,64,0,0,31,192,0,0,47,255,0,0,0,31,192,0,0,31,248,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x63a2 探 + 162,99,36,36,68,38,1,252,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,63,255,255,255,255,248,0,63,64,63,255,255,255,255,248,0,63,64,63,255,255,255,255,248,0,63,64,63,0,0,0,1,248,0,63,64,63,2,160,63,1,248,21,127,149,63,3,240,63,1,248,127,255,255,63,7,240,63,1,248,127,255,255,42,7,240,63,0,0,127,255,255,0,15,224,63,0,80,0,63,64,0,31,208,63,0,125,0,63,64,0,127,192,63,64,189,0,63,64,6,255,0,63,255,252,0,63,64,127,253,0,47,255,248,0,63,64,63,224,0,11,255,224,0,63,91,14,0,15,208,0,0,0,63,255,0,0,15,208,0,0,0,127,255,0,0,15,208,0,0,111,255,255,0,0,15,208,0,0,191,255,224,127,255,255,255,255,252,127,255,64,127,255,255,255,255,252,57,63,64,127,255,255,255,255,252,0,63,64,0,2,255,255,0,0,0,63,64,0,3,255,255,64,0,0,63,64,0,15,255,255,192,0,0,63,64,0,47,223,223,240,0,0,63,64,0,191,143,215,252,0,0,63,64,2,255,15,210,255,0,0,63,64,15,252,15,208,191,192,0,63,64,127,240,15,208,63,244,0,63,67,255,192,15,208,15,254,0,127,67,255,0,15,208,3,252,47,255,0,244,0,15,208,0,180,31,254,0,0,0,15,208,0,0,15,244,0,0,0,15,208,0,0, + // 0x63a5 接 + 165,99,36,37,77,38,1,251,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,0,0,15,208,0,0,0,31,192,63,255,255,255,255,244,0,31,192,63,255,255,255,255,244,0,31,192,63,255,255,255,255,244,21,111,213,0,63,0,2,252,0,63,255,255,64,63,64,3,248,0,63,255,255,64,47,128,3,240,0,63,255,255,64,31,192,7,240,0,0,31,192,0,15,192,15,208,0,0,31,192,0,15,192,15,192,0,0,31,192,255,255,255,255,255,253,0,31,192,255,255,255,255,255,253,0,31,192,255,255,255,255,255,253,0,31,192,0,0,254,0,0,0,0,31,219,64,2,252,0,0,0,0,47,255,128,3,248,0,0,0,27,255,255,255,255,255,255,255,252,255,255,248,255,255,255,255,255,252,191,255,192,255,255,255,255,255,252,127,111,192,0,63,128,3,252,0,16,31,192,0,127,0,3,244,0,0,31,192,0,254,0,7,240,0,0,31,192,1,253,0,15,240,0,0,31,192,3,255,144,47,208,0,0,31,192,7,255,253,127,192,0,0,31,192,7,255,255,255,64,0,0,31,192,0,81,255,255,0,0,0,31,192,0,0,47,255,224,0,0,31,192,0,6,255,255,254,0,21,111,192,6,191,255,75,255,208,31,255,194,255,255,244,0,191,244,15,255,64,255,254,64,0,15,224,15,249,0,250,64,0,0,1,192,0,0,0,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,36,36,68,38,1,252,0,47,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,21,127,149,190,3,240,63,0,252,127,255,255,190,7,240,63,0,252,127,255,255,190,7,240,63,0,252,127,255,255,190,11,224,63,0,168,0,63,64,0,15,224,63,0,0,0,63,64,0,15,208,63,0,160,0,63,64,0,47,192,63,0,188,0,63,64,0,191,64,63,64,252,0,63,64,7,255,0,63,255,252,0,63,91,127,252,0,47,255,244,0,63,255,63,208,0,11,255,208,1,191,255,29,0,0,0,0,0,47,255,253,0,0,0,0,0,0,191,255,128,0,0,0,0,0,0,127,255,64,15,255,255,255,255,224,57,63,64,15,255,255,255,255,224,0,63,64,15,255,255,255,255,224,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,15,192,0,0,0,63,64,0,0,31,208,0,0,0,127,65,255,255,255,255,255,253,47,255,1,255,255,255,255,255,253,31,254,1,255,255,255,255,255,253,15,244,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,36,36,68,38,1,252,0,63,0,0,0,0,0,0,0,0,63,0,6,170,170,170,170,64,0,63,0,7,255,255,255,255,128,0,63,0,7,255,255,255,255,128,0,63,0,7,240,0,0,47,128,0,63,0,7,240,0,0,47,128,0,63,0,7,245,85,85,127,128,21,127,85,7,255,255,255,255,128,127,255,255,7,255,255,255,255,128,127,255,255,7,240,0,0,47,128,127,255,255,7,240,0,0,47,128,0,63,0,7,250,170,170,191,128,0,63,0,7,255,255,255,255,128,0,63,0,7,255,255,255,255,128,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,6,63,255,255,255,255,248,0,63,255,127,255,255,255,255,248,1,191,255,127,255,255,255,255,248,127,255,254,0,0,15,192,0,0,191,255,144,1,80,15,192,0,0,127,255,0,3,244,15,192,0,0,57,63,0,3,240,15,192,0,0,0,63,0,7,240,15,255,255,192,0,63,0,11,224,15,255,255,192,0,63,0,15,240,15,255,255,128,0,63,0,15,244,15,192,0,0,0,63,0,47,252,15,192,0,0,0,63,0,63,191,15,192,0,0,0,63,0,191,47,223,192,0,0,0,63,1,253,15,255,208,0,0,63,255,7,252,3,255,255,255,254,31,255,15,240,0,191,255,255,252,15,248,3,208,0,6,255,255,252,0,0,0,64,0,0,0,0,0, + // 0x63d2 插 + 210,99,35,36,68,38,1,252,0,47,64,0,0,0,0,0,0,0,63,64,0,0,0,1,111,64,0,63,64,0,1,90,255,255,192,0,63,64,47,255,255,255,255,224,0,63,64,31,255,255,255,164,0,0,63,64,15,250,175,208,0,0,0,63,64,0,0,15,208,0,0,21,127,149,0,0,15,208,0,0,127,255,255,0,0,15,208,0,0,127,255,255,191,255,255,255,255,252,127,255,255,191,255,255,255,255,252,0,63,64,191,255,255,255,255,252,0,63,64,0,0,15,208,0,0,0,63,64,0,0,15,208,0,0,0,63,64,0,1,15,208,0,0,0,63,64,0,15,143,208,0,0,0,63,64,57,191,255,215,255,240,0,63,175,63,255,239,215,255,240,0,63,255,63,249,15,215,255,240,11,255,255,63,128,15,208,3,240,191,255,248,63,64,15,208,3,240,191,255,64,63,64,15,208,3,240,127,127,64,63,64,15,208,3,240,16,63,64,63,255,143,211,255,240,0,63,64,63,255,143,211,255,240,0,63,64,63,255,143,211,255,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,64,15,208,3,240,0,63,64,63,255,255,255,255,240,0,127,64,63,255,255,255,255,240,47,255,0,63,255,255,255,255,240,31,254,0,63,64,0,0,3,240,15,244,0,47,64,0,0,3,240, + // 0x63db 換 + 219,99,35,37,77,38,1,251,0,47,64,0,15,144,0,0,0,0,63,64,0,31,192,0,0,0,0,63,64,0,63,192,0,0,0,0,63,64,0,127,255,254,0,0,0,63,64,0,255,255,255,128,0,0,63,64,2,255,255,255,64,0,0,63,64,7,244,0,255,0,0,21,127,149,31,224,1,253,0,0,127,255,255,191,192,3,248,0,0,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,0,63,64,63,255,255,255,255,224,0,63,64,31,129,244,188,7,224,0,63,64,31,129,240,188,7,224,0,63,64,31,131,240,188,7,224,0,63,64,31,135,224,124,7,224,0,63,65,31,143,192,127,255,224,0,63,191,31,255,64,63,255,224,0,127,255,31,173,0,1,91,224,111,255,255,31,128,0,0,7,224,191,255,224,31,128,31,192,7,224,127,255,64,15,128,31,192,6,144,57,63,64,0,0,47,128,0,0,0,63,64,255,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,255,255,255,255,255,252,0,63,64,0,0,191,244,0,0,0,63,64,0,0,255,252,0,0,0,63,64,0,2,253,254,0,0,0,63,64,0,11,248,191,128,0,0,63,64,0,47,240,63,224,0,0,63,64,1,255,192,31,253,0,0,127,64,47,255,0,7,255,228,47,255,7,255,248,0,0,255,252,31,254,3,255,128,0,0,31,244,15,244,1,228,0,0,0,0,160,0,0,0,0,0,0,0,0,0, + // 0x64c7 擇 + 199,100,36,37,77,38,1,251,0,63,64,0,0,0,0,0,0,0,63,64,5,85,85,85,85,80,0,63,64,31,255,255,255,255,244,0,63,64,31,255,255,255,255,244,0,63,64,31,129,244,47,2,244,0,63,64,31,129,244,47,2,244,0,63,64,31,129,244,47,2,244,21,127,149,31,214,249,111,151,244,127,255,255,31,255,255,255,255,244,127,255,255,31,255,255,255,255,244,127,255,255,0,0,15,208,0,0,0,63,64,0,0,15,208,0,0,0,63,64,15,255,255,255,255,224,0,63,64,15,255,255,255,255,224,0,63,64,6,170,175,250,170,144,0,63,64,0,0,15,208,0,0,0,63,65,0,0,15,208,0,0,0,63,255,191,255,255,255,255,253,0,127,255,255,255,255,255,255,253,111,255,255,170,255,234,171,255,169,191,255,224,0,63,64,2,252,0,127,255,64,0,47,128,3,244,0,62,127,64,0,31,192,7,240,0,16,63,64,42,175,234,175,250,168,0,63,64,127,255,255,255,255,252,0,63,64,127,255,255,255,255,252,0,63,64,0,0,15,208,0,0,0,63,64,0,0,15,208,0,0,0,63,64,26,170,175,250,170,160,0,63,64,31,255,255,255,255,240,0,63,64,31,255,255,255,255,240,0,63,64,0,0,15,208,0,0,0,127,64,0,0,15,208,0,0,47,255,0,0,0,15,208,0,0,31,254,0,0,0,15,208,0,0,15,244,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x64ca 擊 + 202,100,34,36,68,38,2,252,0,3,240,0,0,0,0,0,0,0,3,240,0,2,255,255,208,0,127,255,255,255,194,255,255,208,0,127,255,255,255,194,249,95,208,0,0,3,240,0,2,244,11,208,224,31,255,255,254,3,240,11,225,240,31,87,245,126,11,240,7,255,240,31,87,245,126,63,208,3,255,208,31,255,255,254,47,128,0,105,64,31,3,240,62,14,85,85,84,0,31,255,255,254,31,255,255,255,0,5,87,245,85,31,255,255,253,0,0,3,240,0,1,244,1,252,0,255,255,255,255,192,253,7,240,0,255,255,255,255,192,127,175,192,0,15,67,240,61,0,31,255,0,0,15,67,240,61,6,191,255,128,0,15,255,255,253,63,255,255,254,64,15,255,255,253,31,228,11,255,240,0,0,0,0,26,106,252,111,208,0,255,255,255,255,255,255,0,64,0,255,255,255,254,165,64,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,85,85,85,87,253,85,85,85,80,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,10,171,248,0,0,0,0,0,0,15,255,244,0,0,0,0,0,0,7,255,144,0,0,0,0, + // 0x64cb 擋 + 203,100,35,36,68,38,1,252,0,63,64,0,64,15,192,4,0,0,63,64,7,224,15,192,31,192,0,63,64,3,244,15,192,63,128,0,63,64,2,252,15,192,127,0,0,63,64,0,252,15,192,254,0,0,63,64,0,253,15,192,252,0,0,63,64,63,255,255,255,255,248,21,127,149,63,255,255,255,255,252,127,255,255,127,255,255,255,255,252,127,255,255,127,0,0,0,1,252,127,255,255,127,0,0,0,1,252,0,63,64,63,85,85,85,86,252,0,63,64,63,255,255,255,255,252,0,63,64,0,255,255,255,253,0,0,63,64,0,253,0,0,253,0,0,63,64,0,253,0,0,253,0,0,63,65,0,253,0,0,253,0,0,63,255,0,255,255,255,253,0,0,127,255,0,255,255,255,253,0,47,255,255,0,85,85,85,84,0,191,255,228,0,0,0,0,0,0,127,255,64,10,170,170,170,170,144,61,63,64,15,255,255,255,255,224,0,63,64,15,255,255,255,255,224,0,63,64,15,192,15,192,11,224,0,63,64,15,192,15,192,11,224,0,63,64,15,229,95,229,95,224,0,63,64,15,255,255,255,255,224,0,63,64,15,255,255,255,255,224,0,63,64,15,192,15,192,11,224,0,63,64,15,192,15,192,11,224,0,63,64,15,192,15,192,11,224,0,127,64,15,255,255,255,255,224,47,255,0,15,255,255,255,255,224,31,254,0,15,234,170,170,175,224,15,244,0,15,192,0,0,11,224, + // 0x64e0 擠 + 224,100,36,37,77,38,1,251,0,63,0,0,0,15,192,0,0,0,63,0,0,0,15,192,0,0,0,63,0,0,0,15,192,0,0,0,63,1,255,255,255,255,255,252,0,63,1,255,255,255,255,255,252,0,63,1,255,255,255,255,255,252,0,63,0,0,2,208,30,0,0,21,127,84,0,2,240,63,0,0,127,255,253,0,0,244,61,2,240,127,255,253,255,255,248,190,47,244,127,255,253,255,255,224,119,255,192,0,63,0,95,159,143,135,215,192,0,63,0,31,15,79,135,195,208,0,63,0,47,15,79,135,194,240,0,63,0,62,15,79,135,193,240,0,63,0,125,31,79,135,234,252,0,63,94,249,255,15,159,254,126,0,63,255,240,254,15,143,228,44,2,255,254,128,80,10,64,0,0,127,255,248,7,240,0,0,47,128,191,255,64,7,240,0,0,47,128,127,255,0,7,255,255,255,255,128,56,63,0,7,255,255,255,255,128,0,63,0,7,255,255,255,255,128,0,63,0,7,240,0,0,47,128,0,63,0,7,240,0,0,47,128,0,63,0,11,240,0,0,47,128,0,63,0,11,255,255,255,255,128,0,63,0,15,255,255,255,255,128,0,63,0,15,255,255,255,255,128,0,63,0,47,192,0,0,47,128,0,63,0,63,128,0,0,47,128,0,127,0,191,0,0,0,47,128,63,255,2,254,0,0,0,47,128,31,254,2,252,0,0,0,47,128,15,228,0,112,0,0,0,47,128,0,0,0,0,0,0,0,0,0, + // 0x6536 收 + 54,101,36,36,68,38,1,252,0,0,6,160,0,169,0,0,0,0,0,11,240,0,254,0,0,0,0,0,11,240,1,253,0,0,0,0,0,11,240,2,252,0,0,0,1,80,11,240,3,252,0,0,0,3,240,11,240,3,248,0,0,0,3,240,11,240,11,244,0,0,0,3,240,11,240,15,255,255,255,254,3,240,11,240,31,255,255,255,254,3,240,11,240,47,255,255,255,254,3,240,11,240,63,229,85,111,228,3,240,11,240,191,208,0,47,192,3,240,11,240,255,240,0,63,192,3,240,11,243,255,240,0,63,128,3,240,11,251,255,244,0,127,64,3,240,11,255,247,248,0,191,0,3,240,11,255,226,252,0,254,0,3,240,11,247,192,253,1,253,0,3,240,11,241,64,254,3,252,0,3,240,11,240,0,191,3,248,0,3,240,11,240,0,63,139,240,0,3,240,11,240,0,63,207,240,0,3,240,111,240,0,31,255,208,0,3,255,255,240,0,15,255,192,0,47,255,255,240,0,7,255,64,0,127,255,255,240,0,3,254,0,0,63,253,11,240,0,11,255,0,0,63,64,11,240,0,47,255,192,0,0,0,11,240,0,191,255,240,0,0,0,11,240,2,255,143,252,0,0,0,11,240,31,253,7,255,64,0,0,11,240,191,244,1,255,224,0,0,11,251,255,208,0,127,253,0,0,11,251,255,0,0,31,253,0,0,11,243,248,0,0,2,248,0,0,11,225,128,0,0,0,96, + // 0x653e 放 + 62,101,36,37,77,38,1,251,0,2,248,0,0,30,128,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,63,192,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,64,0,0,0,2,252,0,0,127,0,0,0,63,255,255,255,208,191,0,0,0,63,255,255,255,208,255,255,255,253,63,255,255,255,209,255,255,255,253,21,127,85,85,66,255,255,255,253,0,63,0,0,3,253,85,127,212,0,63,0,0,7,252,0,63,128,0,63,0,0,15,252,0,63,64,0,63,0,0,15,253,0,127,0,0,63,255,255,63,254,0,191,0,0,63,255,255,127,255,0,254,0,0,63,255,255,255,191,0,253,0,0,63,64,191,191,63,65,252,0,0,63,0,127,45,47,195,252,0,0,63,0,127,4,31,195,248,0,0,63,0,191,0,15,231,240,0,0,127,0,191,0,11,255,240,0,0,127,0,191,0,7,255,208,0,0,191,0,190,0,3,255,192,0,0,190,0,190,0,1,255,128,0,0,253,0,190,0,0,255,0,0,0,253,0,190,0,2,255,128,0,1,252,0,254,0,7,255,208,0,3,252,0,254,0,31,255,240,0,7,248,0,253,0,127,239,252,0,15,240,0,253,2,255,131,255,0,31,224,0,253,15,254,1,255,208,63,192,2,252,191,248,0,127,252,255,130,255,254,255,224,0,31,253,63,1,255,244,255,0,0,3,244,12,0,255,208,116,0,0,0,160,0,0,0,0,0,0,0,0,0, + // 0x6557 敗 + 87,101,36,36,68,38,1,252,0,0,0,0,0,21,0,0,0,0,0,0,0,0,63,192,0,0,11,255,255,255,0,63,128,0,0,11,255,255,255,0,127,64,0,0,11,255,255,255,0,191,0,0,0,11,240,0,127,0,255,0,0,0,11,240,0,127,0,254,0,0,0,11,240,0,127,2,255,255,255,253,11,240,0,127,3,255,255,255,253,11,255,255,255,7,255,255,255,253,11,255,255,255,11,249,85,127,148,11,250,170,255,15,248,0,127,64,11,240,0,127,47,252,0,127,0,11,240,0,127,127,252,0,191,0,11,240,0,127,255,253,0,255,0,11,240,0,127,255,254,0,254,0,11,255,255,255,253,191,1,253,0,11,255,255,255,248,127,2,252,0,11,250,170,255,32,63,131,252,0,11,240,0,127,0,63,199,248,0,11,240,0,127,0,31,219,240,0,11,240,0,127,0,15,239,240,0,11,240,0,127,0,11,255,208,0,11,255,255,255,0,3,255,192,0,11,255,255,255,0,3,255,64,0,7,255,255,255,0,1,255,0,0,0,16,0,64,0,3,255,128,0,0,191,7,240,0,15,255,208,0,0,255,7,248,0,63,255,244,0,1,253,2,253,0,255,223,253,0,3,252,0,255,7,255,67,255,64,11,244,0,127,175,253,0,255,224,31,224,0,47,255,244,0,63,254,127,192,0,9,255,208,0,15,252,47,64,0,0,126,0,0,2,244,5,0,0,0,36,0,0,0,96, + // 0x6574 整 + 116,101,34,35,59,38,2,253,0,2,244,0,0,14,64,0,0,0,2,244,0,0,31,192,0,0,85,87,249,85,80,63,128,0,0,191,255,255,255,224,63,64,0,0,191,255,255,255,224,191,255,255,240,0,2,244,0,0,255,255,255,240,0,2,248,0,2,255,255,255,240,47,255,255,255,199,252,0,253,0,47,255,255,255,223,253,1,252,0,47,2,244,15,255,255,2,248,0,47,2,244,15,255,127,67,240,0,47,66,248,31,206,31,207,240,0,47,255,255,255,192,11,255,192,0,47,255,255,255,192,3,255,64,0,0,47,255,64,0,2,255,0,0,0,255,255,244,0,31,255,224,0,7,254,250,255,64,191,239,253,0,111,226,244,127,159,255,67,255,224,255,130,244,11,63,248,0,191,240,60,2,244,0,31,128,0,11,208,0,0,80,0,4,0,0,0,64,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,15,192,3,248,0,0,0,0,0,15,192,3,255,255,255,192,0,0,15,192,3,255,255,255,192,0,0,15,192,3,254,170,170,128,0,0,15,192,3,248,0,0,0,0,0,15,192,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x6578 數 + 120,101,36,36,68,38,1,252,0,0,63,0,0,1,232,0,0,0,0,63,0,0,2,252,0,0,3,255,255,255,248,2,252,0,0,3,255,255,255,248,3,248,0,0,3,245,127,86,248,3,244,0,0,3,240,63,2,248,7,240,0,0,107,240,63,66,254,135,240,0,0,127,255,255,255,255,203,255,255,253,127,255,255,255,255,207,255,255,253,3,240,63,2,248,15,255,255,253,3,245,127,86,248,31,213,95,212,3,255,255,255,248,47,192,15,192,3,255,255,255,248,63,208,31,192,0,0,63,0,0,127,224,31,192,1,85,127,85,84,255,224,47,128,15,255,255,255,254,255,240,63,128,15,255,255,255,255,255,240,63,64,15,192,63,0,191,251,244,127,0,15,192,63,0,190,242,248,191,0,15,255,255,255,253,81,252,254,0,15,255,255,255,253,0,253,253,0,1,86,253,85,84,0,255,252,0,0,3,244,0,0,0,127,248,0,106,175,250,170,170,128,63,240,0,127,255,255,255,255,192,63,240,0,127,255,255,255,255,192,31,208,0,0,63,0,15,192,0,63,240,0,0,191,0,47,192,0,127,244,0,1,255,224,127,64,0,255,252,0,3,255,255,254,0,3,254,255,0,0,97,255,252,0,15,244,191,128,0,0,191,255,64,127,208,63,224,0,111,255,255,226,255,128,31,252,15,255,248,31,247,254,0,7,252,11,255,128,2,209,244,0,1,244,7,144,0,0,0,144,0,0,16, + // 0x6599 料 + 153,101,36,36,68,38,1,252,0,2,160,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,20,0,0,1,252,0,63,7,240,63,2,208,1,252,0,47,7,240,126,3,252,1,252,0,31,71,240,189,3,255,65,252,0,15,135,240,252,0,191,209,252,0,15,199,240,252,0,31,241,252,0,11,199,241,244,0,3,209,252,0,7,215,242,240,0,0,129,252,0,7,215,243,224,0,0,1,252,0,3,71,241,208,0,0,1,252,0,0,7,240,0,8,0,1,252,0,63,255,255,255,47,64,1,252,0,63,255,255,255,127,240,1,252,0,63,255,255,255,31,253,1,252,0,21,111,245,85,2,255,65,252,0,0,63,248,0,0,127,1,252,0,0,63,253,0,0,29,1,252,0,0,191,255,64,0,0,1,252,0,0,255,255,192,0,0,1,252,0,1,251,251,240,0,0,1,253,188,3,247,243,248,0,0,27,255,253,7,231,241,253,0,111,255,255,254,15,215,240,253,191,255,255,255,228,31,199,240,116,255,255,255,252,0,63,71,240,16,255,249,65,252,0,191,7,240,0,164,0,1,252,0,126,7,240,0,0,0,1,252,0,60,7,240,0,0,0,1,252,0,20,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0,0,7,240,0,0,0,1,252,0, + // 0x659c 斜 + 156,101,36,36,68,38,1,252,0,0,255,0,0,0,0,127,0,0,2,255,192,0,0,0,127,0,0,3,255,240,0,0,0,127,0,0,11,255,253,0,30,0,127,0,0,31,227,255,64,191,128,127,0,0,63,192,255,208,63,240,127,0,0,191,64,63,240,11,252,127,0,2,254,0,15,252,2,254,127,0,7,252,0,3,240,0,190,191,0,31,240,0,1,208,0,56,127,0,127,255,255,255,128,0,0,127,0,255,255,255,255,128,0,0,127,0,61,255,255,255,128,112,0,127,0,20,0,127,0,1,253,0,127,0,0,0,127,0,2,255,64,127,0,0,0,127,0,0,127,208,127,0,0,0,127,0,0,31,244,127,0,63,255,255,255,248,7,252,127,0,63,255,255,255,248,1,240,127,0,63,255,255,255,248,0,64,127,0,0,0,127,0,0,0,0,127,0,0,0,127,0,0,0,0,127,253,1,144,127,7,64,0,6,255,254,3,248,127,31,192,27,255,255,254,3,240,127,15,199,255,255,255,228,7,240,127,11,227,255,255,255,0,11,224,127,3,243,255,144,127,0,15,208,127,3,246,144,0,127,0,47,192,127,2,252,0,0,127,0,63,64,127,0,252,0,0,127,0,191,0,127,0,244,0,0,127,0,45,0,127,0,0,0,0,127,0,4,0,191,0,0,0,0,127,0,0,63,255,0,0,0,0,127,0,0,63,253,0,0,0,0,127,0,0,47,228,0,0,0,0,127,0, + // 0x65b0 新 + 176,101,36,36,68,38,1,252,0,0,169,0,0,0,0,0,0,0,0,253,0,0,0,0,27,208,0,0,253,0,0,0,6,255,244,0,0,253,0,0,145,191,255,244,47,255,255,255,241,255,255,254,0,47,255,255,255,241,255,254,64,0,47,255,255,255,241,254,64,0,0,0,180,0,57,1,252,0,0,0,1,248,0,127,1,252,0,0,0,0,252,0,189,1,252,0,0,0,0,189,0,252,1,252,0,0,0,0,126,1,248,1,252,0,0,0,0,121,1,180,1,252,0,0,0,63,255,255,255,249,255,255,255,253,63,255,255,255,249,255,255,255,253,63,255,255,255,249,255,255,255,253,0,0,253,0,1,253,85,254,84,0,0,253,0,1,252,0,253,0,0,0,253,0,1,252,0,253,0,63,255,255,255,241,252,0,253,0,63,255,255,255,241,252,0,253,0,63,255,255,255,242,252,0,253,0,0,3,254,0,2,248,0,253,0,0,11,255,64,3,248,0,253,0,0,15,255,224,3,244,0,253,0,0,63,255,252,3,240,0,253,0,0,255,255,255,7,240,0,253,0,2,252,253,127,207,240,0,253,0,11,244,253,31,79,208,0,253,0,47,240,253,10,47,192,0,253,0,191,192,253,0,63,128,0,253,0,63,0,253,0,255,0,0,253,0,12,0,253,2,254,0,0,253,0,0,0,253,3,252,0,0,253,0,0,0,253,0,244,0,0,253,0,0,0,253,0,32,0,0,169,0, + // 0x65b7 斷 + 183,101,34,36,68,38,3,252,0,4,0,16,0,0,0,16,0,164,30,0,60,0,0,1,252,0,252,60,0,184,0,0,31,255,64,252,184,65,241,1,7,255,254,0,254,242,231,211,194,255,255,208,0,254,243,199,203,130,255,248,0,0,252,255,130,255,2,253,0,0,0,252,63,0,253,2,244,0,0,0,252,45,64,125,130,244,0,0,0,252,60,224,178,210,244,0,0,0,252,186,240,246,242,244,0,0,0,255,255,255,255,242,244,0,0,0,254,148,59,148,114,244,0,0,0,252,0,0,0,2,255,255,255,208,255,255,255,255,226,255,255,255,208,255,255,255,255,226,255,255,255,208,254,175,170,190,146,248,7,240,0,252,45,0,124,3,244,7,240,0,252,60,0,244,3,244,7,240,0,253,244,67,226,67,244,7,240,0,255,243,219,199,195,244,7,240,0,252,251,195,239,67,244,7,240,0,252,127,64,254,3,240,7,240,0,252,46,0,124,3,240,7,240,0,252,61,208,182,199,240,7,240,0,252,180,241,241,231,240,7,240,0,255,255,255,255,251,240,7,240,0,255,250,127,233,191,224,7,240,0,252,0,0,0,127,208,7,240,0,252,0,0,0,31,192,7,240,0,255,255,255,255,255,128,7,240,0,255,255,255,255,255,64,7,240,0,255,255,255,255,255,0,7,240,0,252,0,0,0,254,0,7,240,0,252,0,0,0,124,0,7,240,0,84,0,0,0,20,0,7,240,0, + // 0x65bc 於 + 188,101,36,37,77,38,1,251,0,3,248,0,0,2,252,0,0,0,3,248,0,0,3,254,0,0,0,3,248,0,0,7,255,0,0,0,3,248,0,0,11,255,64,0,0,3,248,0,0,15,239,192,0,0,3,248,0,0,47,207,208,0,63,255,255,255,192,63,75,240,0,63,255,255,255,192,191,3,248,0,63,255,255,255,193,254,2,252,0,21,191,85,85,67,252,0,255,0,0,127,0,0,11,244,0,191,128,0,127,0,0,31,240,0,63,208,0,127,0,0,63,208,0,31,244,0,127,0,0,255,128,0,11,253,0,127,0,2,255,0,0,3,253,0,127,255,253,252,2,0,0,252,0,191,255,253,176,15,208,0,52,0,191,255,253,0,47,248,0,0,0,191,0,253,0,7,255,0,0,0,254,0,252,0,1,255,192,0,0,254,0,252,0,0,63,240,0,0,254,0,252,0,0,15,240,0,0,253,0,252,0,0,3,192,0,0,253,0,252,0,0,0,0,0,1,252,0,252,0,0,0,0,0,2,252,1,252,0,128,0,0,0,2,248,1,252,3,249,0,0,0,3,248,1,252,11,255,128,0,0,7,244,1,252,2,255,248,0,0,11,240,2,252,0,47,255,64,0,15,224,2,252,0,7,255,224,0,31,208,3,248,0,0,127,253,0,63,192,7,248,0,0,15,255,64,191,67,255,244,0,0,2,255,128,63,3,255,240,0,0,0,63,0,12,2,255,128,0,0,0,12,0,0,0,0,0,0,0,0,0,0, + // 0x6607 昇 + 7,102,34,34,50,38,2,252,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,0,0,0,11,240,0,0,253,0,0,0,0,11,240,0,0,254,170,170,170,170,175,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,0,0,0,11,240,0,0,253,0,0,0,0,11,240,0,0,253,0,0,0,0,11,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,1,128,0,0,0,0,0,0,1,191,240,7,244,0,0,0,91,255,255,252,7,244,0,0,15,255,255,255,144,7,244,0,0,11,255,255,208,0,7,244,0,0,7,165,31,192,0,7,244,0,0,0,0,31,192,0,7,244,0,0,0,0,31,192,0,7,244,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,63,128,0,7,244,0,0,0,0,191,64,0,7,244,0,0,0,1,255,0,0,7,244,0,0,0,7,254,0,0,7,244,0,0,0,47,252,0,0,7,244,0,0,2,255,240,0,0,7,244,0,0,31,255,128,0,0,7,244,0,0,11,248,0,0,0,7,244,0,0,3,128,0,0,0,7,244,0,0, + // 0x660e 明 + 14,102,33,36,68,38,3,251,0,0,0,0,85,85,85,85,0,0,0,0,0,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,255,255,255,255,64,255,255,255,128,253,0,0,127,64,253,0,47,128,253,0,0,63,64,253,0,47,128,253,0,0,63,64,253,0,47,128,252,0,0,63,64,253,0,47,129,252,0,0,63,64,253,0,47,129,252,0,0,63,64,253,0,47,129,255,255,255,255,64,253,0,47,130,255,255,255,255,64,255,255,255,130,255,255,255,255,64,255,255,255,131,248,0,0,127,64,255,255,255,131,244,0,0,63,64,254,85,85,7,240,0,0,63,64,253,0,0,15,240,0,0,63,64,253,0,0,15,208,0,0,63,64,253,0,0,63,192,0,0,63,64,0,0,0,127,128,0,0,63,64,0,0,0,255,64,0,0,63,64,0,0,2,254,0,0,0,63,64,0,0,11,252,0,1,85,191,0,0,0,47,244,0,3,255,255,0,0,0,31,208,0,2,255,254,0,0,0,7,64,0,1,255,228,0,0,0,0,0,0,0,0,0,0, + // 0x662f 是 + 47,102,36,36,68,38,1,251,0,42,170,170,170,170,170,164,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,63,213,85,85,85,87,248,0,0,63,128,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,63,255,255,255,255,255,248,0,0,63,255,255,255,255,255,248,0,0,42,170,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,0,0,127,0,0,0,0,0,1,164,0,127,0,0,0,0,0,3,252,0,127,0,0,0,0,0,3,248,0,127,0,0,0,0,0,7,244,0,127,255,255,255,0,0,11,240,0,127,255,255,255,0,0,15,248,0,127,255,255,255,0,0,47,253,0,127,0,0,0,0,0,63,255,0,127,0,0,0,0,0,191,191,208,127,0,0,0,0,1,255,31,248,127,0,0,0,0,7,252,11,255,255,0,0,0,0,31,248,1,255,255,255,255,255,253,127,224,0,47,255,255,255,255,252,47,128,0,1,191,255,255,255,248,10,0,0,0,0,5,85,85,80,0,0,0,0,0,0,0,0,0, + // 0x6642 時 + 66,102,34,36,68,38,3,252,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,255,255,252,0,0,127,64,0,0,255,255,252,0,0,127,64,0,0,255,255,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,1,252,0,0,127,64,0,0,252,1,252,0,0,127,64,0,0,252,1,252,0,0,127,64,0,0,252,1,252,0,0,127,64,0,0,252,1,253,255,255,255,255,255,208,252,1,253,255,255,255,255,255,208,255,255,253,255,255,255,255,255,208,255,255,252,0,0,0,31,192,0,255,255,252,0,0,0,31,192,0,252,1,252,0,0,0,31,192,0,252,1,252,0,0,0,31,192,0,252,1,252,255,255,255,255,255,192,252,1,252,255,255,255,255,255,192,252,1,252,255,255,255,255,255,192,252,1,252,0,0,0,31,192,0,252,1,252,0,128,0,31,192,0,252,1,252,11,240,0,31,192,0,255,255,252,11,248,0,31,192,0,255,255,252,3,253,0,31,192,0,255,255,252,0,255,0,31,192,0,253,0,0,0,127,192,31,192,0,252,0,0,0,63,192,31,192,0,252,0,0,0,15,64,31,192,0,252,0,0,0,4,0,31,192,0,0,0,0,0,0,80,47,192,0,0,0,0,0,0,191,255,192,0,0,0,0,0,0,63,255,128,0,0,0,0,0,0,63,249,0,0, + // 0x66ab 暫 + 171,102,34,36,68,38,2,252,0,1,244,0,0,0,0,4,0,0,2,244,0,0,0,6,254,0,0,2,248,0,3,150,255,255,128,191,255,255,255,211,255,255,253,0,191,255,255,255,211,255,250,64,0,0,2,244,0,3,245,0,0,0,47,255,255,255,131,240,0,0,0,47,171,254,175,131,240,0,0,0,47,2,244,15,131,240,0,0,0,47,171,254,175,131,255,255,255,240,47,255,255,255,135,255,255,255,240,47,2,244,15,135,255,255,255,240,47,171,254,191,139,224,11,224,0,47,255,255,255,143,208,11,224,0,0,2,244,0,15,192,11,224,0,0,2,248,0,47,192,11,224,0,255,255,255,255,255,64,11,224,0,255,255,255,255,255,0,11,224,0,0,2,244,2,253,0,11,224,0,0,2,244,0,180,0,11,224,0,0,1,80,0,16,0,1,80,0,0,42,170,170,170,170,170,128,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,213,85,85,85,127,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,128,0,0,0,63,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,128,0,0,0,47,128,0, + // 0x66f4 更 + 244,102,35,34,50,38,2,252,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,2,253,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,255,170,171,255,170,171,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,253,0,2,252,0,1,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,252,0,0,7,64,7,244,0,0,0,0,0,63,192,15,240,0,0,0,0,0,15,244,31,224,0,0,0,0,0,7,253,127,192,0,0,0,0,0,1,255,255,64,0,0,0,0,0,0,127,255,0,0,0,0,0,0,1,191,255,228,0,0,0,0,0,111,255,255,255,250,84,0,0,111,255,254,27,255,255,255,255,244,191,255,208,0,111,255,255,255,240,63,249,0,0,0,107,255,255,224,9,0,0,0,0,0,0,85,64, + // 0x6700 最 + 0,103,34,35,59,38,2,252,0,21,85,85,85,85,85,64,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,0,0,0,0,15,208,0,0,63,0,0,0,0,15,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,64,0,0,0,31,208,0,0,63,0,0,0,0,15,208,0,0,63,85,85,85,85,95,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,2,248,0,127,0,0,0,0,0,2,248,0,127,0,0,0,0,0,2,255,255,255,63,255,255,254,0,2,255,255,255,63,255,255,255,0,2,254,170,191,43,250,170,255,0,2,248,0,127,3,240,0,253,0,2,248,0,127,3,244,3,252,0,2,255,255,255,1,252,7,244,0,2,255,255,255,0,255,31,240,0,2,254,170,191,0,63,191,192,0,2,248,0,127,0,47,255,64,0,2,248,0,191,0,15,254,0,0,6,255,255,255,0,47,255,64,0,255,255,255,255,1,255,255,224,0,255,255,255,255,31,255,111,254,64,254,148,0,127,255,248,3,255,240,0,0,0,127,63,128,0,127,208,0,0,0,127,24,0,0,6,128, + // 0x6709 有 + 9,103,34,37,77,38,2,251,0,0,0,164,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,21,85,127,213,85,85,85,85,64,0,0,127,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,3,255,255,255,255,255,208,0,0,15,255,255,255,255,255,208,0,0,31,255,255,255,255,255,208,0,0,63,252,0,0,0,31,208,0,0,255,252,0,0,0,15,208,0,3,255,252,0,0,0,15,208,0,15,254,252,0,0,0,15,208,0,63,242,255,255,255,255,255,208,0,255,210,255,255,255,255,255,208,0,255,2,255,255,255,255,255,208,0,60,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,255,255,255,255,255,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,0,15,208,0,0,2,252,0,0,85,111,192,0,0,2,252,0,0,255,255,192,0,0,2,252,0,0,127,255,128,0,0,2,252,0,0,63,249,0,0,0,0,0,0,0,0,0,0,0, + // 0x677f 板 + 127,103,36,36,68,38,1,252,0,7,224,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,11,224,0,21,85,85,85,80,0,11,224,0,255,255,255,255,252,0,11,224,0,255,255,255,255,252,0,11,224,0,255,255,255,255,252,0,11,224,0,254,0,0,0,0,0,11,224,0,254,0,0,0,0,63,255,255,244,254,0,0,0,0,63,255,255,244,254,0,0,0,0,63,255,255,244,254,0,0,0,0,21,95,245,80,254,0,0,0,0,0,31,224,0,255,255,255,255,224,0,47,224,0,255,255,255,255,244,0,63,240,0,255,255,255,255,240,0,63,252,0,255,248,0,11,240,0,191,254,0,255,252,0,15,224,0,255,255,64,254,252,0,31,208,1,255,255,192,253,254,0,47,192,2,251,235,240,253,127,0,63,128,3,235,227,249,252,63,64,127,64,11,219,225,245,252,47,192,255,0,15,203,224,225,252,31,209,254,0,47,139,224,66,252,15,243,252,0,127,11,224,3,248,7,251,248,0,190,11,224,3,244,3,255,240,0,60,11,224,7,240,0,255,208,0,40,11,224,11,240,0,255,192,0,0,11,224,15,224,2,255,224,0,0,11,224,31,208,11,255,248,0,0,11,224,63,192,47,251,254,0,0,11,224,127,129,255,209,255,208,0,11,224,255,11,255,64,127,253,0,11,225,254,15,253,0,31,253,0,11,224,124,7,224,0,2,244,0,11,224,4,2,64,0,0,96, + // 0x67f1 柱 + 241,103,36,36,68,38,1,252,0,3,240,0,0,28,0,0,0,0,3,240,0,0,191,64,0,0,0,3,240,0,0,255,224,0,0,0,3,240,0,0,47,252,0,0,0,3,240,0,0,7,255,0,0,0,3,240,0,0,0,255,192,0,0,3,240,0,0,0,63,128,0,0,3,240,0,85,85,95,85,84,63,255,255,252,255,255,255,255,252,63,255,255,252,255,255,255,255,252,63,255,255,252,255,255,255,255,252,21,95,245,84,0,1,253,0,0,0,15,240,0,0,1,253,0,0,0,15,240,0,0,1,253,0,0,0,47,244,0,0,1,253,0,0,0,63,252,0,0,1,253,0,0,0,63,255,0,0,1,253,0,0,0,191,255,192,0,1,253,0,0,0,255,255,224,0,1,253,0,0,1,251,247,244,63,255,255,255,248,3,243,242,253,63,255,255,255,248,7,227,240,253,63,255,255,255,248,15,211,240,120,21,86,254,85,80,47,195,240,32,0,1,253,0,0,63,67,240,0,0,1,253,0,0,191,3,240,0,0,1,253,0,0,61,3,240,0,0,1,253,0,0,40,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,0,0,1,253,0,0,0,3,240,15,255,255,255,255,254,0,3,240,15,255,255,255,255,254,0,3,240,15,255,255,255,255,254,0,3,240,5,85,85,85,85,84,0,2,160,0,0,0,0,0,0, + // 0x6821 校 + 33,104,36,36,68,38,1,252,0,6,144,0,0,2,160,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,0,0,3,244,0,0,0,11,224,1,85,87,249,85,84,0,11,224,11,255,255,255,255,252,0,11,224,11,255,255,255,255,252,63,255,250,171,255,255,255,255,252,63,255,255,240,0,0,0,0,0,63,255,255,240,7,128,0,180,0,21,95,229,80,15,240,3,252,0,0,31,224,0,31,208,0,255,0,0,47,224,0,63,192,0,127,192,0,63,240,0,255,64,0,47,224,0,63,248,2,254,0,0,15,244,0,191,253,11,252,0,1,67,252,0,255,255,31,251,192,3,253,253,1,255,255,139,207,224,3,248,248,2,255,239,210,7,240,7,244,64,3,235,231,240,3,248,15,240,0,11,219,226,240,2,252,31,224,0,15,203,224,208,0,254,63,192,0,47,139,224,64,0,191,191,64,0,63,11,224,0,0,63,255,0,0,190,11,224,0,0,31,253,0,0,61,11,224,0,0,15,252,0,0,40,11,224,0,0,47,254,0,0,0,11,224,0,0,191,255,128,0,0,11,224,0,2,255,191,240,0,0,11,224,0,31,253,31,253,0,0,11,224,0,191,244,7,255,208,0,11,224,27,255,192,1,255,253,0,11,224,63,253,0,0,63,252,0,11,224,31,224,0,0,11,244,0,11,208,10,0,0,0,0,160, + // 0x683c 格 + 60,104,36,36,68,38,1,252,0,11,224,0,0,121,0,0,0,0,11,224,0,0,255,0,0,0,0,11,224,0,0,254,0,0,0,0,11,224,0,3,252,0,0,0,0,11,224,0,7,255,255,255,64,0,11,224,0,15,255,255,255,128,0,11,224,0,47,255,255,255,64,0,11,224,0,127,192,0,255,0,63,255,255,245,255,208,1,253,0,63,255,255,251,255,240,3,252,0,63,255,255,255,251,248,7,244,0,21,95,245,127,225,253,31,240,0,0,31,224,15,192,255,63,192,0,0,47,244,3,0,63,255,64,0,0,63,252,0,0,31,254,0,0,0,63,255,0,0,15,253,0,0,0,127,255,128,0,127,255,128,0,0,191,255,208,2,255,255,240,0,0,255,231,240,15,255,47,254,0,1,255,227,240,191,248,7,255,224,3,251,225,219,255,208,0,255,254,7,235,224,255,255,0,0,47,252,15,203,224,127,255,255,255,255,248,31,203,224,47,191,255,255,255,144,63,75,224,0,127,255,255,255,128,191,11,224,0,127,0,0,63,128,125,11,224,0,127,0,0,63,128,56,11,224,0,127,0,0,63,128,16,11,224,0,127,0,0,63,128,0,11,224,0,127,0,0,63,128,0,11,224,0,127,0,0,63,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,255,255,255,128,0,11,224,0,127,0,0,63,128,0,6,144,0,106,0,0,42,64, + // 0x689d 條 + 157,104,36,36,68,38,1,252,0,1,64,0,0,164,0,0,0,0,3,248,0,0,254,0,0,0,0,3,244,0,1,252,0,0,0,0,11,240,0,3,248,0,0,0,0,15,224,0,11,255,255,255,252,0,31,199,224,31,255,255,255,252,0,63,199,224,63,255,255,255,252,0,127,71,224,255,192,0,255,0,0,191,7,227,255,224,1,253,0,1,255,7,255,255,244,3,248,0,3,255,7,235,226,253,15,240,0,7,255,7,226,128,191,191,192,0,15,255,7,224,0,47,255,64,0,63,255,7,224,0,15,254,0,0,191,255,7,224,1,191,255,224,0,255,191,7,224,31,255,191,255,64,190,127,7,235,255,248,7,255,253,60,127,7,231,255,128,0,127,252,32,127,7,225,244,3,248,1,244,0,127,7,224,0,3,248,0,0,0,127,7,224,0,3,248,0,0,0,127,7,227,255,255,255,255,252,0,127,7,227,255,255,255,255,252,0,127,7,227,255,255,255,255,252,0,127,7,224,0,31,255,0,0,0,127,7,224,0,63,255,192,0,0,127,7,224,0,255,255,224,0,0,127,7,224,3,255,255,248,0,0,127,7,224,15,247,249,253,0,0,127,0,0,127,211,248,191,128,0,127,0,2,255,67,248,63,224,0,127,0,31,253,3,248,15,253,0,127,0,47,244,3,248,3,253,0,127,0,15,192,3,248,0,184,0,127,0,1,0,3,248,0,16,0,126,0,0,0,3,244,0,0, + // 0x68c4 棄 + 196,104,34,36,68,38,2,252,0,0,0,2,248,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,224,0,0,47,208,0,47,240,0,0,0,0,63,128,0,15,254,0,0,0,0,255,0,5,86,255,208,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,255,64,15,255,170,169,85,80,0,127,0,0,5,64,2,164,0,21,8,0,0,15,192,3,248,0,127,0,0,0,15,192,3,248,0,127,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,106,175,234,171,254,170,255,170,160,0,15,192,3,248,0,127,0,0,0,15,192,3,248,0,127,0,0,0,15,255,255,255,255,255,0,0,0,15,255,255,255,255,255,0,0,0,10,170,171,254,170,170,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,7,255,255,253,0,0,0,0,0,47,243,249,255,144,0,0,0,7,255,131,248,47,253,0,0,0,191,252,3,248,7,255,228,0,111,255,208,3,248,0,127,255,224,255,253,0,3,248,0,7,255,240,63,144,0,3,248,0,0,47,192,20,0,0,3,248,0,0,1,64, + // 0x69fd 槽 + 253,105,36,36,68,38,1,252,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,63,255,255,255,255,253,0,15,192,0,1,248,31,128,0,0,15,192,0,1,248,31,128,0,21,95,213,15,255,255,255,255,244,63,255,255,207,255,255,255,255,244,63,255,255,207,213,253,111,151,244,63,255,255,207,192,248,31,2,244,0,47,192,15,192,248,31,2,244,0,63,192,15,255,255,255,255,244,0,63,192,15,255,255,255,255,244,0,127,224,15,213,249,111,87,244,0,191,244,15,192,248,31,2,244,0,255,252,15,192,248,31,2,244,1,255,254,15,255,255,255,255,244,3,255,239,79,255,255,255,255,244,3,239,207,197,85,85,85,85,80,11,223,199,192,0,0,0,0,0,15,207,195,1,255,255,255,255,192,47,79,192,1,255,255,255,255,192,63,15,192,1,254,170,170,191,192,190,15,192,1,252,0,0,47,192,60,15,192,1,252,0,0,47,192,40,15,192,1,255,255,255,255,192,0,15,192,1,255,255,255,255,192,0,15,192,1,253,85,85,127,192,0,15,192,1,252,0,0,47,192,0,15,192,1,252,0,0,47,192,0,15,192,1,255,255,255,255,192,0,15,192,1,255,255,255,255,192,0,15,192,1,254,170,170,191,192,0,15,192,1,252,0,0,31,192, + // 0x6a59 橙 + 89,106,36,36,68,38,1,252,0,15,208,0,0,0,25,0,0,0,15,208,11,255,244,126,5,0,0,15,208,15,255,252,63,31,64,0,15,208,15,255,252,63,191,128,0,15,208,0,2,244,47,253,0,0,15,208,4,3,240,15,224,32,0,15,208,15,75,240,15,224,248,0,15,208,47,255,208,7,247,253,63,255,255,219,255,192,3,255,244,63,255,255,209,255,64,1,255,192,63,255,255,208,255,255,255,255,0,21,95,229,66,255,255,255,255,128,0,47,208,11,255,255,255,239,224,0,63,208,47,240,0,0,15,252,0,63,224,255,192,0,0,3,255,0,127,244,255,0,0,0,0,252,0,191,252,61,255,255,255,255,96,0,255,255,0,255,255,255,255,64,1,255,255,128,254,170,170,191,64,2,255,223,208,252,0,0,63,64,3,239,215,240,252,0,0,63,64,11,223,210,192,252,0,0,63,64,15,207,208,64,254,170,170,191,64,47,143,208,0,255,255,255,255,64,127,15,208,0,255,255,255,255,64,190,15,208,0,1,0,1,144,0,60,15,208,0,47,64,2,252,0,40,15,208,0,31,192,3,248,0,0,15,208,0,15,192,7,240,0,0,15,208,0,15,208,11,224,0,0,15,208,0,11,224,15,192,0,0,15,208,0,7,128,11,128,0,0,15,208,127,255,255,255,255,253,0,15,208,127,255,255,255,255,253,0,15,208,127,255,255,255,255,253,0,15,208,0,0,0,0,0,0, + // 0x6a5f 機 + 95,106,36,36,68,38,1,252,0,31,128,0,64,31,128,16,0,0,47,128,2,244,31,128,189,0,0,47,128,3,240,31,128,252,0,0,47,128,7,208,31,129,244,0,0,47,128,15,194,31,131,240,128,0,47,128,127,75,239,175,195,240,0,47,128,255,15,223,255,135,224,0,47,128,191,47,15,239,207,192,63,255,255,95,254,15,199,255,128,63,255,255,71,252,15,193,255,0,63,255,255,66,244,15,192,253,16,0,63,192,3,231,79,192,248,240,0,63,128,11,203,207,195,240,248,0,127,192,31,71,223,199,225,252,0,191,208,191,255,239,255,255,253,0,255,240,255,255,255,255,255,254,0,255,248,255,166,251,233,180,46,1,255,252,0,0,75,208,252,0,2,255,190,0,0,7,224,191,0,3,255,159,64,0,7,224,47,128,7,239,143,255,255,255,255,255,252,11,239,139,191,255,255,255,255,252,15,175,128,191,255,255,255,255,252,47,47,128,7,240,2,244,9,0,63,47,128,7,240,1,248,47,192,189,47,128,11,248,0,252,63,64,124,47,128,11,255,64,252,254,0,56,47,128,15,255,224,191,252,0,16,47,128,31,207,244,127,244,0,0,47,128,47,130,240,63,208,20,0,47,128,127,64,128,255,192,46,0,47,128,255,0,7,255,208,62,0,47,131,253,0,127,251,244,126,0,47,139,248,7,255,131,255,252,0,47,131,224,3,253,0,255,252,0,31,128,128,0,144,0,31,224, + // 0x6aa2 檢 + 162,106,36,37,77,38,1,251,0,15,192,0,0,15,224,0,0,0,15,208,0,0,47,248,0,0,0,15,208,0,0,63,253,0,0,0,15,208,0,0,255,255,64,0,0,15,208,0,3,252,63,192,0,0,15,208,0,11,244,31,240,0,0,15,208,0,47,224,7,253,0,0,15,208,0,191,128,1,255,128,5,95,213,67,254,0,0,127,240,63,255,255,223,255,255,255,255,254,63,255,255,255,239,255,255,247,253,63,255,255,255,79,255,255,240,252,0,31,208,28,0,0,0,0,32,0,47,208,0,0,0,0,0,0,0,63,224,5,85,84,21,85,80,0,63,240,11,255,253,63,255,240,0,191,252,11,255,253,63,255,240,0,255,254,11,192,125,62,2,240,1,255,255,75,192,125,62,2,240,2,255,223,203,192,125,62,2,240,3,239,215,235,192,125,62,2,240,11,207,211,203,255,253,63,255,240,15,207,209,75,255,253,63,255,240,47,143,208,6,170,168,42,170,160,63,15,208,0,25,0,1,164,0,190,15,208,0,63,128,2,248,0,60,15,208,0,63,64,3,244,0,40,15,208,0,127,0,3,240,0,0,15,208,0,255,0,11,244,0,0,15,208,1,255,208,15,253,0,0,15,208,3,255,244,47,255,128,0,15,208,15,242,252,191,191,224,0,15,208,63,208,250,254,15,252,0,15,208,255,128,43,252,2,254,0,15,208,189,0,3,224,0,188,0,15,192,36,0,0,64,0,32,0,0,0,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,34,34,50,38,2,254,0,0,0,0,106,0,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,21,0,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,255,255,255,0,0,63,128,0,127,170,170,170,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,0,63,128,0,127,64,0,0,0,170,191,234,170,191,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x6b63 正 + 99,107,34,32,32,38,2,253,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,21,85,85,85,255,85,85,85,64,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,255,255,252,0,0,63,128,0,255,85,85,84,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,0,63,128,0,255,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,85,85,85,85,85,85,85,85,80, + // 0x6b65 步 + 101,107,34,36,68,38,2,252,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,5,64,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,0,31,192,2,255,255,255,240,0,0,31,192,2,255,255,255,240,0,0,31,192,2,255,255,255,240,0,0,31,192,2,253,85,85,80,0,0,31,192,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,0,31,192,2,252,0,0,0,0,85,111,213,87,253,85,85,85,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,2,252,0,0,0,0,0,2,144,2,252,0,0,0,0,0,7,252,2,252,0,6,0,0,0,15,244,2,252,0,15,240,0,0,63,224,2,252,0,31,224,0,0,255,192,2,252,0,63,208,0,7,255,0,2,252,0,127,192,0,47,252,0,2,252,0,255,64,0,191,240,0,3,252,2,254,0,0,47,192,7,255,248,11,252,0,0,10,0,3,255,244,47,244,0,0,0,0,2,255,144,191,224,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,47,254,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,127,255,192,0,0,0,0,0,111,255,253,0,0,0,0,2,191,255,255,208,0,0,0,0,2,255,255,249,0,0,0,0,0,0,255,254,64,0,0,0,0,0,0,185,64,0,0,0,0,0,0, + // 0x6b78 歸 + 120,107,36,36,68,38,1,252,0,10,144,0,0,0,0,0,0,0,15,224,0,6,170,170,170,0,0,15,192,0,15,255,255,255,64,6,175,234,164,15,255,255,255,64,11,255,255,248,0,0,0,63,64,11,255,255,248,0,0,0,63,64,11,208,1,249,255,255,255,255,253,11,208,1,249,255,255,255,255,253,11,229,86,248,170,170,170,191,168,11,255,255,248,0,0,0,63,64,11,255,255,248,5,85,85,127,64,11,208,0,0,15,255,255,255,64,11,234,170,164,15,255,255,255,64,11,255,255,252,0,0,0,0,0,11,255,255,252,170,170,170,170,164,11,208,0,252,255,255,255,255,248,11,208,0,252,255,255,255,255,248,11,234,170,252,252,1,252,1,248,11,255,255,252,252,1,252,1,248,11,255,255,252,188,1,252,1,248,0,3,240,0,0,1,252,0,0,0,3,240,0,47,255,255,255,208,11,195,240,0,47,255,255,255,208,15,195,255,252,47,255,255,255,208,15,195,255,252,47,65,252,11,208,15,195,255,252,47,65,252,11,208,15,195,240,0,47,65,252,11,208,15,195,240,0,47,65,252,11,208,15,195,240,0,47,65,252,11,208,15,195,245,174,47,65,252,11,208,15,219,255,254,47,65,252,255,208,127,255,255,254,47,65,252,255,192,127,255,255,148,31,65,252,105,0,63,249,64,0,0,1,252,0,0,36,0,0,0,0,1,252,0,0,0,0,0,0,0,0,168,0,0, + // 0x6bbc 殼 + 188,107,35,36,68,38,2,252,0,3,240,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,3,240,0,1,255,255,244,0,255,255,255,255,193,255,255,244,0,255,255,255,255,193,255,255,244,0,170,171,250,170,65,248,3,244,0,0,3,240,0,1,248,3,244,0,0,3,240,0,1,248,3,244,0,47,255,255,254,1,248,3,244,0,47,255,255,254,2,248,3,244,180,26,170,170,169,3,244,3,244,188,0,0,0,0,7,240,3,244,188,106,170,170,170,79,240,3,255,248,255,255,255,255,255,208,2,255,244,255,255,255,255,255,192,0,191,224,252,0,0,15,239,0,0,0,0,252,0,0,15,136,0,0,0,0,254,255,255,239,143,255,255,255,64,22,255,255,229,15,255,255,255,128,1,170,170,144,15,255,255,255,64,0,0,0,0,1,180,0,127,0,0,0,0,0,3,248,0,255,0,3,255,255,240,1,252,1,253,0,3,255,255,240,0,253,2,252,0,3,250,175,240,0,191,7,244,0,3,240,7,240,0,63,143,240,0,3,240,7,240,0,31,255,208,0,3,240,7,240,0,15,255,128,0,7,240,7,241,128,7,255,0,0,7,240,7,255,208,31,255,64,0,15,224,47,255,208,191,255,224,0,47,192,63,254,11,255,175,254,0,127,128,47,145,255,253,7,255,224,255,0,4,3,255,224,0,255,244,60,0,0,1,254,0,0,31,208,4,0,0,0,208,0,0,1,128, + // 0x6bd4 比 + 212,107,36,35,59,38,1,253,0,26,128,0,0,168,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,7,128,0,47,192,0,1,253,0,47,208,0,47,192,0,1,253,1,255,244,0,47,255,255,193,253,31,255,208,0,47,255,255,193,254,255,254,0,0,47,255,255,193,255,255,224,0,0,47,229,85,65,255,253,0,0,0,47,192,0,1,255,144,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,0,0,47,192,0,1,253,0,0,160,0,47,192,0,1,253,0,0,190,0,47,192,0,17,253,0,0,190,0,47,192,91,241,253,0,0,254,0,47,239,255,245,253,0,0,253,1,191,255,255,244,253,0,0,253,127,255,255,254,64,255,85,87,252,63,255,254,64,0,255,255,255,248,63,254,64,0,0,127,255,255,240,25,0,0,0,0,11,255,255,128, + // 0x6c92 沒 + 146,108,35,36,68,38,2,252,1,0,0,0,169,0,0,0,0,3,224,0,0,255,0,0,0,0,15,253,0,0,254,0,0,0,0,11,255,192,0,254,0,0,0,0,1,255,240,1,255,255,255,255,0,0,31,240,2,255,255,255,255,0,0,3,192,3,255,255,255,255,0,0,0,64,7,248,0,0,191,0,0,0,0,11,240,0,0,191,0,0,0,0,15,240,0,0,254,0,16,0,0,47,208,0,0,254,0,125,0,0,127,192,0,0,253,0,255,224,0,255,64,0,2,252,0,191,253,3,254,0,15,255,252,0,11,255,15,252,0,11,255,244,0,0,254,7,244,0,7,255,208,0,0,44,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,0,0,0,0,255,255,255,255,255,0,0,0,0,255,255,255,255,254,0,0,3,128,6,244,0,3,252,0,0,11,224,7,248,0,7,248,0,0,15,240,2,253,0,15,240,0,0,47,208,0,255,0,63,224,0,0,63,192,0,127,192,255,192,0,0,191,64,0,47,247,255,0,0,0,255,0,0,11,255,252,0,0,2,253,0,0,3,255,240,0,0,3,252,0,0,11,255,244,0,0,15,244,0,0,191,255,255,128,0,31,240,0,111,255,247,255,249,0,63,208,31,255,255,64,127,255,244,47,192,15,255,244,0,11,255,240,7,0,11,254,0,0,0,127,192,0,0,2,64,0,0,0,2,128, + // 0x6d88 消 + 136,109,34,37,77,38,2,251,1,0,0,0,0,127,0,0,0,7,192,0,20,0,127,0,9,0,31,248,1,252,0,127,0,31,208,15,255,64,254,0,127,0,63,192,1,255,208,191,64,127,0,63,128,0,63,224,63,192,127,0,191,0,0,11,128,47,208,127,1,254,0,0,1,0,15,240,127,3,252,0,0,0,0,11,224,127,3,244,0,0,0,0,2,0,127,0,96,0,0,0,0,0,0,127,0,0,0,56,0,0,191,255,255,255,255,0,255,128,0,191,255,255,255,255,0,255,244,0,191,255,255,255,255,0,31,254,0,191,85,85,85,191,0,2,255,0,191,0,0,0,127,0,0,125,0,191,0,0,0,127,0,0,24,0,191,0,0,0,127,0,0,0,0,191,255,255,255,255,0,0,0,0,191,255,255,255,255,0,0,0,0,191,255,255,255,255,0,0,7,0,191,0,0,0,127,0,0,15,192,191,0,0,0,127,0,0,15,208,191,0,0,0,127,0,0,47,192,191,0,0,0,127,0,0,63,128,191,255,255,255,255,0,0,191,0,191,255,255,255,255,0,0,254,0,191,255,255,255,255,0,2,253,0,191,0,0,0,127,0,3,252,0,191,0,0,0,127,0,11,244,0,191,0,0,0,127,0,15,240,0,191,0,0,0,127,0,63,208,0,191,0,0,80,191,0,63,192,0,191,0,1,255,255,0,15,64,0,191,0,0,255,254,0,2,0,0,191,0,0,191,228,0,0,0,0,0,0,0,0,0,0, + // 0x6de1 淡 + 225,109,36,35,59,38,1,253,0,0,0,0,0,47,128,0,0,0,224,0,0,0,47,128,0,0,3,254,0,1,0,63,128,4,0,7,255,208,11,240,63,128,31,208,0,191,248,15,208,63,128,63,192,0,15,252,31,192,63,64,127,128,0,1,240,47,128,63,64,255,0,0,0,64,127,64,127,2,252,0,0,0,0,255,0,191,3,244,0,0,0,0,124,0,255,209,224,0,0,0,0,0,2,255,252,0,0,14,0,0,0,7,255,255,128,0,63,208,0,0,31,244,255,248,0,127,253,0,0,191,224,31,255,0,11,255,128,31,255,128,2,255,224,0,255,194,255,253,0,0,63,240,0,31,0,255,208,63,128,11,208,0,0,0,121,0,63,128,1,128,0,0,0,0,0,63,128,0,0,0,0,0,11,144,63,64,15,144,0,2,0,15,208,63,64,31,240,0,3,208,31,192,63,64,63,192,0,11,240,63,128,127,192,127,128,0,15,240,127,64,191,192,255,0,0,47,208,255,0,255,226,253,0,0,63,194,253,1,255,247,248,0,0,191,64,184,3,255,252,160,0,0,255,0,0,11,250,254,0,0,2,254,0,0,31,240,255,64,0,7,252,0,0,191,208,127,224,0,15,244,0,11,255,128,31,253,0,31,240,6,255,253,0,7,255,228,15,208,15,255,240,0,0,255,253,2,192,7,255,64,0,0,31,244,0,0,2,144,0,0,0,0,160, + // 0x6e05 清 + 5,110,36,37,77,38,1,251,0,128,0,0,0,47,128,0,0,2,253,0,0,0,63,128,0,0,7,255,192,106,170,191,234,170,160,0,255,244,255,255,255,255,255,240,0,31,252,255,255,255,255,255,240,0,3,240,0,0,63,128,0,0,0,0,160,0,0,63,128,0,0,0,0,0,63,255,255,255,255,208,0,0,0,63,255,255,255,255,208,0,0,0,21,85,127,213,85,64,0,0,0,0,0,63,128,0,0,14,0,0,0,0,63,128,0,0,63,224,3,255,255,255,255,255,253,127,254,3,255,255,255,255,255,253,11,255,194,170,170,170,170,170,169,0,191,192,0,0,0,0,0,0,0,31,0,6,170,170,170,170,64,0,1,0,11,255,255,255,255,128,0,0,0,11,255,255,255,255,128,0,0,0,11,224,0,0,47,128,0,0,0,11,224,0,0,47,128,0,0,208,11,229,85,85,127,128,0,2,244,11,255,255,255,255,128,0,3,248,11,255,255,255,255,128,0,11,244,11,224,0,0,47,128,0,15,240,11,224,0,0,47,128,0,47,208,11,229,85,85,127,128,0,63,192,11,255,255,255,255,128,0,191,64,11,255,255,255,255,128,0,255,0,11,224,0,0,47,128,2,253,0,11,224,0,0,47,128,7,252,0,11,224,0,0,47,128,15,244,0,11,224,0,0,63,128,15,240,0,11,224,0,127,255,128,3,208,0,11,224,0,63,255,0,0,64,0,11,224,0,47,249,0,0,0,0,0,0,0,0,0,0, + // 0x6e2c 測 + 44,110,34,37,77,38,1,251,0,0,0,0,0,0,0,3,240,2,224,0,0,0,0,0,3,240,7,253,3,255,255,240,0,3,240,11,255,131,255,255,240,0,3,240,0,255,243,255,255,240,125,3,240,0,31,211,240,3,240,190,3,240,0,3,131,240,3,240,190,3,240,0,0,3,240,3,240,190,3,240,0,0,3,240,3,240,190,3,240,0,0,3,255,255,240,190,3,240,0,0,3,255,255,240,190,3,240,14,0,3,255,255,240,190,3,240,47,224,3,240,3,240,190,3,240,127,253,3,240,3,240,190,3,240,11,255,67,240,3,240,190,3,240,0,255,3,240,3,240,190,3,240,0,44,3,255,255,240,190,3,240,0,0,3,255,255,240,190,3,240,0,0,3,255,255,240,190,3,240,0,0,3,240,3,240,190,3,240,0,0,3,240,3,240,190,3,240,0,4,3,240,3,240,190,3,240,0,15,67,240,3,240,190,3,240,0,47,195,255,255,240,190,3,240,0,63,131,255,255,240,190,3,240,0,127,67,255,255,240,189,3,240,0,191,0,0,1,0,0,3,240,0,254,0,248,7,128,0,3,240,2,252,2,252,31,208,0,3,240,3,252,3,248,15,240,0,3,240,7,244,11,240,3,252,0,3,240,15,240,31,224,1,253,0,3,240,31,224,63,192,0,255,5,91,240,47,192,255,64,0,125,31,255,240,7,128,254,0,0,16,15,255,208,0,0,40,0,0,0,11,254,64,0,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,35,37,77,38,2,251,1,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,31,253,3,255,255,255,255,255,240,11,255,131,255,255,255,255,255,240,1,255,211,255,255,255,255,255,240,0,47,131,244,0,11,244,0,0,0,7,3,240,0,11,240,0,0,0,0,3,240,0,15,240,0,0,0,0,3,240,0,15,208,0,0,0,0,3,240,255,255,255,255,192,0,0,3,240,255,255,255,255,192,61,0,3,240,254,170,170,191,192,255,192,3,240,252,0,0,47,192,255,248,7,240,252,0,0,47,192,31,254,7,240,254,85,85,127,192,2,252,7,240,255,255,255,255,192,0,116,7,240,255,255,255,255,192,0,0,7,240,252,0,0,47,192,0,0,7,240,252,0,0,47,192,0,0,11,240,252,0,0,47,192,0,0,11,240,255,255,255,255,192,0,40,15,224,255,255,255,255,192,0,63,15,224,170,175,250,170,64,0,127,15,208,0,11,240,0,0,0,255,15,208,16,11,240,24,0,1,253,31,192,127,11,240,254,0,2,252,47,192,254,11,240,191,0,3,248,63,129,252,11,240,63,192,11,244,63,67,252,11,240,47,208,15,240,191,7,244,11,240,15,240,31,208,255,15,224,11,240,11,244,63,193,253,63,192,11,240,3,248,127,131,252,31,64,11,240,2,224,191,11,244,2,11,255,224,0,0,14,7,240,0,3,255,208,0,0,0,0,80,0,3,254,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e96 準 + 150,110,34,36,68,38,2,252,0,128,0,7,144,7,144,0,0,3,253,0,15,240,11,244,0,0,7,255,208,47,208,15,224,0,0,1,191,240,63,192,47,192,0,0,0,15,192,255,255,255,255,255,64,0,1,66,255,255,255,255,255,64,16,0,11,255,255,255,255,255,64,126,64,31,253,0,63,0,0,0,255,244,127,253,0,63,0,0,0,127,254,255,255,170,191,170,168,0,7,244,254,255,255,255,255,252,0,0,96,40,255,255,255,255,252,0,0,0,0,253,0,63,0,0,0,0,2,128,253,0,63,0,0,0,0,11,208,255,170,191,170,168,0,0,31,224,255,255,255,255,253,0,0,127,192,255,255,255,255,253,0,1,255,0,253,0,63,0,0,0,7,252,0,253,0,63,0,0,0,31,244,0,255,255,255,255,255,208,63,208,0,255,255,255,255,255,208,47,128,0,255,255,255,255,255,208,11,0,0,0,0,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x6eab 溫 + 171,110,35,36,68,38,2,252,1,0,0,0,0,0,0,0,0,7,208,0,0,0,0,0,0,0,15,253,0,191,255,255,255,248,0,15,255,128,191,255,255,255,248,0,1,255,224,191,170,170,171,248,0,0,47,192,190,0,104,2,248,0,0,7,64,190,0,248,2,248,0,0,0,0,190,0,244,2,248,0,0,0,0,190,2,248,2,248,0,0,0,0,190,3,254,2,248,0,0,0,0,190,15,223,194,248,0,61,0,0,190,127,7,242,248,0,255,208,0,190,189,1,242,248,0,255,252,0,190,16,0,66,248,0,31,254,0,191,170,170,171,248,0,1,252,0,191,255,255,255,248,0,0,52,0,191,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,0,0,8,3,255,255,255,255,255,0,0,31,67,255,255,255,255,255,0,0,63,195,240,63,3,224,127,0,0,63,131,240,63,3,224,127,0,0,191,3,240,63,3,224,127,0,0,254,3,240,63,3,224,127,0,2,253,3,240,63,3,224,127,0,3,252,3,240,63,3,224,127,0,11,244,3,240,63,3,224,127,0,15,240,3,240,63,3,224,127,0,47,208,3,244,63,3,224,127,0,63,192,255,255,255,255,255,255,248,191,64,255,255,255,255,255,255,248,31,0,255,255,255,255,255,255,248,1,0,0,0,0,0,0,0,0, + // 0x6fc0 激 + 192,111,35,37,77,38,2,251,0,0,0,14,128,0,248,0,0,11,128,0,31,208,0,253,0,0,31,244,0,47,192,0,252,0,0,31,254,0,63,128,1,252,0,0,2,255,175,255,255,194,252,0,0,0,127,47,255,255,194,248,0,0,0,13,47,170,175,195,244,0,0,0,0,47,0,15,195,255,255,248,0,0,47,0,15,199,255,255,248,0,0,47,255,255,203,255,255,248,0,0,47,255,255,207,224,47,192,61,0,47,149,95,223,224,47,128,255,192,47,0,15,255,224,47,64,255,244,47,0,15,255,240,63,64,31,252,47,255,255,255,240,63,0,2,248,47,255,255,255,240,63,0,0,112,26,191,234,254,244,63,0,0,0,0,31,192,56,248,126,0,0,0,0,31,192,0,252,190,0,0,0,255,255,255,244,188,253,0,0,0,255,255,255,244,125,252,0,0,52,255,255,255,244,63,252,0,0,126,0,252,0,0,63,248,0,0,191,0,252,0,0,47,240,0,0,253,1,255,255,192,15,240,0,2,252,1,255,255,192,15,208,0,3,252,2,255,255,192,31,240,0,7,244,3,244,15,192,63,244,0,11,240,3,240,31,192,191,252,0,15,224,11,240,31,129,254,254,0,47,208,15,208,31,135,252,191,64,63,192,63,192,47,159,244,63,208,127,128,191,64,63,191,224,31,240,191,2,254,31,255,255,192,11,248,14,3,252,15,255,191,0,2,240,0,0,224,10,164,28,0,0,128,0,0,0,0,0,0,0,0,0, + // 0x7121 無 + 33,113,34,36,68,38,2,252,0,3,144,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,127,255,255,255,255,255,255,64,1,255,255,255,255,255,255,255,64,3,255,255,255,255,255,255,255,64,15,255,128,252,7,224,47,192,0,63,255,128,252,7,224,47,192,0,255,255,128,252,7,224,47,192,0,191,47,128,252,7,224,47,192,0,29,47,128,252,7,224,47,192,0,0,47,128,252,7,224,47,192,0,0,47,128,252,7,240,47,192,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,47,128,252,7,224,47,192,0,0,47,128,252,7,224,47,192,0,0,47,128,252,7,224,47,192,0,0,47,128,252,7,224,47,192,0,0,47,128,252,7,224,47,192,0,0,47,128,252,7,240,47,192,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,160,0,0,254,2,244,2,240,11,244,0,2,252,3,244,3,244,3,252,0,3,248,2,248,2,252,1,255,0,11,240,2,252,1,252,0,191,128,31,224,1,252,0,254,0,63,192,63,192,1,252,0,255,0,31,240,255,64,1,252,0,191,0,15,240,26,0,0,80,0,16,0,7,64, + // 0x71b1 熱 + 177,113,35,37,77,38,2,251,0,2,240,0,0,47,128,0,0,0,3,240,0,0,47,128,0,0,5,87,249,85,0,47,128,0,0,15,255,255,254,0,47,128,0,0,15,255,255,254,0,47,128,0,0,0,3,240,0,31,255,255,248,0,0,3,240,0,31,255,255,248,0,106,171,250,170,95,255,255,248,0,191,255,255,255,223,255,66,248,0,191,255,255,255,192,63,66,248,0,0,188,15,64,0,63,2,248,0,0,252,15,66,0,63,2,248,0,3,248,15,71,206,63,2,248,0,31,240,15,255,239,255,2,248,0,255,192,11,255,111,255,2,248,0,125,3,240,84,3,255,130,248,0,0,3,240,0,0,255,242,248,0,26,171,250,169,0,255,254,248,16,47,255,255,255,1,254,254,248,120,47,255,255,255,3,248,182,248,124,0,3,240,0,3,244,18,248,124,0,3,240,0,11,240,2,248,124,0,3,245,171,159,208,2,248,184,106,255,255,255,255,128,2,255,248,255,255,255,255,255,0,1,255,244,255,255,233,64,189,0,0,127,224,85,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,80,2,240,0,2,253,3,244,7,240,11,252,0,3,252,3,244,3,248,3,253,0,11,244,3,248,2,252,0,255,0,31,240,2,252,1,252,0,127,192,63,192,2,252,0,254,0,63,208,191,64,2,252,0,255,0,15,240,9,0,1,148,0,80,0,11,64,0,0,0,0,0,0,0,0,0, + // 0x71c8 燈 + 200,113,36,36,68,38,1,252,0,0,0,0,0,0,96,0,0,0,15,192,0,0,2,244,24,0,0,15,192,15,255,249,248,127,0,0,15,192,15,255,252,253,254,0,0,15,192,10,171,248,191,244,0,0,15,192,0,3,240,63,192,80,0,15,194,135,71,240,47,129,248,0,15,195,255,239,208,15,215,244,10,79,203,231,255,192,11,255,208,15,143,207,193,255,64,3,255,0,15,143,223,64,255,0,1,255,0,15,79,255,3,255,255,255,255,192,15,79,253,15,251,255,255,239,244,31,15,196,127,199,255,255,203,255,47,15,195,255,0,0,0,2,253,63,15,194,252,0,0,0,0,56,125,15,192,210,255,255,255,255,0,124,15,192,2,255,255,255,255,0,0,15,192,2,254,170,170,255,0,0,31,192,2,248,0,0,127,0,0,31,192,2,248,0,0,127,0,0,47,128,2,248,0,0,127,0,0,47,192,2,254,170,170,255,0,0,63,224,2,255,255,255,255,0,0,63,244,2,255,255,255,255,0,0,127,252,0,1,0,2,64,0,0,191,255,0,63,0,3,244,0,0,253,63,128,47,128,7,240,0,1,252,31,208,31,192,11,224,0,3,248,15,224,15,208,15,208,0,11,240,3,128,11,224,31,192,0,15,224,1,0,7,128,27,64,0,63,192,0,255,255,255,255,255,252,127,128,0,255,255,255,255,255,252,30,0,0,255,255,255,255,255,252,4,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,32,37,40,38,2,251,0,0,0,0,7,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,64,0,11,240,0,0,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,234,170,170,170,170,170,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,64,0,0,0,0,0,0,127,0,0,0,0,0,0,0,191,170,170,170,170,168,0,0,191,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,255,255,255,255,255,252,0,0,254,0,0,0,3,252,0,1,254,0,0,0,3,252,0,2,253,0,0,0,3,252,0,3,252,0,0,0,3,252,0,7,252,0,0,0,3,252,0,11,244,0,0,0,3,252,0,15,240,0,0,0,3,252,0,47,224,0,0,0,3,252,0,127,192,0,0,0,3,252,0,255,128,0,0,0,3,252,0,255,0,0,0,0,3,252,0,61,0,0,0,0,3,252,0,24,0,0,0,0,3,252,0,0,0,0,0,0,0,0,0, + // 0x7269 物 + 105,114,35,36,68,38,1,252,0,2,244,0,2,144,0,0,0,0,2,248,0,7,240,0,0,0,5,66,248,0,11,240,0,0,0,11,210,248,0,15,224,0,0,0,11,210,248,0,15,192,0,0,0,15,194,248,0,31,192,0,0,0,15,194,248,0,63,213,85,85,84,15,194,248,0,63,255,255,255,252,15,255,255,240,191,255,255,255,252,31,255,255,240,255,255,255,255,252,47,255,255,242,252,15,194,249,252,63,87,249,83,248,31,131,245,252,63,2,248,11,240,63,3,241,252,126,2,248,31,224,63,7,241,252,189,2,248,63,192,190,11,226,252,124,2,248,47,64,252,15,210,248,4,2,248,6,2,252,15,194,248,0,2,248,4,3,244,47,130,248,0,2,254,248,7,240,63,67,248,0,7,255,252,15,208,127,3,244,1,191,255,248,63,192,190,3,244,127,255,254,64,127,64,252,3,244,127,255,248,0,254,2,252,3,240,63,230,248,3,252,3,244,3,240,40,2,248,15,244,11,240,7,240,0,2,248,15,224,15,224,7,240,0,2,248,2,128,47,192,11,240,0,2,248,0,0,127,128,11,224,0,2,248,0,0,255,0,15,224,0,2,248,0,3,253,0,15,208,0,2,248,0,15,248,0,31,192,0,2,248,0,47,240,0,63,192,0,2,248,0,255,192,191,255,128,0,2,248,0,127,0,127,255,0,0,2,248,0,12,0,63,253,0,0,2,248,0,0,0,21,64,0, + // 0x7387 率 + 135,115,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,192,0,0,0,31,208,0,0,0,0,1,0,0,47,192,0,0,52,0,11,208,0,127,0,64,0,255,0,47,248,5,253,2,244,3,254,0,7,255,31,248,7,240,31,244,0,0,191,239,240,31,208,191,192,0,0,31,67,253,63,128,62,0,0,0,5,0,191,254,0,0,0,0,0,0,0,31,248,96,0,0,0,0,0,144,15,243,244,56,0,0,0,31,224,63,192,253,255,64,0,2,255,240,191,0,191,255,244,0,127,255,191,255,255,255,159,254,0,191,244,63,255,255,255,194,255,192,63,64,63,255,250,159,224,63,208,20,0,0,3,248,3,208,11,64,0,0,0,3,248,1,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,21,85,85,87,253,85,85,85,80,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x7528 用 + 40,117,33,34,50,38,1,252,0,21,85,85,85,85,85,85,64,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,63,85,85,191,85,85,127,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,63,64,0,127,0,0,63,192,0,63,64,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,0,0,127,0,0,63,192,0,127,255,255,255,255,255,255,192,0,191,255,255,255,255,255,255,192,0,191,255,255,255,255,255,255,192,0,255,85,85,191,85,85,127,192,0,254,0,0,127,0,0,63,192,1,253,0,0,127,0,0,63,192,2,252,0,0,127,0,0,63,192,3,252,0,0,127,0,0,63,192,7,248,0,0,127,0,0,63,192,11,240,0,0,127,0,0,63,192,31,224,0,0,127,0,0,63,128,63,192,0,0,127,3,255,255,128,127,128,0,0,127,2,255,255,64,31,0,0,0,127,1,255,253,0,5,0,0,0,0,0,85,0,0, + // 0x754c 界 + 76,117,34,36,68,38,2,251,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,170,171,254,170,175,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,11,248,1,255,0,0,0,0,0,63,240,0,191,192,0,0,0,1,255,192,0,63,244,0,0,0,11,254,0,0,15,254,0,0,0,191,248,0,0,2,255,224,0,27,255,239,192,0,26,255,254,0,255,254,31,192,0,47,223,255,240,127,244,31,192,0,47,193,255,224,47,64,31,192,0,47,192,31,192,0,0,47,192,0,47,192,1,0,0,0,63,192,0,47,192,0,0,0,0,127,128,0,47,192,0,0,0,0,255,64,0,47,192,0,0,0,3,255,0,0,47,192,0,0,0,31,252,0,0,47,192,0,0,1,255,244,0,0,47,192,0,0,3,255,208,0,0,47,192,0,0,1,255,0,0,0,47,192,0,0,0,180,0,0,0,47,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,28,36,252,38,5,252,0,0,2,233,0,0,0,0,0,3,254,0,0,0,0,0,3,252,0,0,0,0,0,11,248,0,0,0,0,0,15,244,0,0,0,0,0,15,240,0,0,0,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,170,170,170,170,170,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,191,170,170,170,170,170,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,255,191,0,0,0,0,0,255,190,0,0,0,0,0,170, + // 0x7684 的 + 132,118,33,36,68,38,3,252,0,31,144,0,2,228,0,0,0,0,31,208,0,3,248,0,0,0,0,47,192,0,3,244,0,0,0,0,63,128,0,7,240,0,0,0,0,63,64,0,15,240,0,0,0,0,127,0,0,15,208,0,0,0,191,255,255,240,47,255,255,255,64,191,255,255,240,63,255,255,255,64,191,255,255,240,127,255,255,255,64,190,0,7,240,255,0,0,127,0,189,0,7,241,253,0,0,63,0,189,0,7,243,252,0,0,63,0,189,0,7,251,248,0,0,63,0,189,0,7,255,240,0,0,63,0,189,0,7,247,208,0,0,63,0,189,0,7,240,129,128,0,127,0,190,0,7,240,15,208,0,127,0,191,255,255,240,15,240,0,127,0,191,255,255,240,3,252,0,127,0,191,255,255,240,1,254,0,127,0,189,0,7,240,0,191,64,191,0,189,0,7,240,0,63,192,190,0,189,0,7,240,0,31,224,190,0,189,0,7,240,0,15,240,190,0,189,0,7,240,0,7,192,254,0,189,0,7,240,0,1,0,253,0,189,0,7,240,0,0,0,253,0,189,0,7,240,0,0,0,253,0,190,0,7,240,0,0,1,252,0,191,255,255,240,0,0,1,252,0,191,255,255,240,0,0,3,252,0,191,255,255,240,0,0,7,248,0,189,0,0,0,0,255,255,244,0,189,0,0,0,0,191,255,224,0,189,0,0,0,0,127,255,128,0,0,0,0,0,0,5,80,0,0, + // 0x76e3 監 + 227,118,34,35,59,38,2,253,0,0,0,0,0,26,64,0,0,42,170,170,170,128,63,64,0,0,63,255,255,255,192,63,0,0,0,63,255,255,255,192,127,0,0,0,63,0,252,0,0,190,0,0,0,63,0,252,0,0,253,0,0,0,63,85,253,85,1,255,255,255,224,63,255,255,255,67,255,255,255,224,63,255,255,255,71,255,255,255,224,63,0,0,47,79,224,0,0,0,63,0,0,47,111,192,0,0,0,63,0,0,47,191,128,0,0,0,63,255,255,255,95,0,0,0,0,63,255,255,255,64,0,0,0,0,63,85,253,85,0,0,0,0,0,63,0,252,0,0,255,255,255,128,63,0,252,0,0,255,255,255,128,63,255,255,255,208,255,255,255,128,63,255,255,255,208,0,0,0,0,63,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,1,252,3,244,7,240,0,0,253,1,252,3,244,7,240,0,0,253,1,252,3,244,7,240,0,0,253,1,252,3,244,7,240,0,0,253,1,252,3,244,7,240,0,0,253,1,252,3,244,7,240,0,0,253,2,252,3,244,7,244,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x76f4 直 + 244,118,34,36,68,38,2,252,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,21,85,85,86,254,85,85,85,64,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,26,171,254,170,170,144,0,5,80,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,213,85,85,95,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,31,213,85,85,95,224,0,11,240,31,192,0,0,15,224,0,11,240,31,192,0,0,15,224,0,11,240,31,255,255,255,255,224,0,11,240,31,255,255,255,255,224,0,11,240,26,170,170,170,170,144,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,245,85,85,85,85,85,85,80,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,240,0,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0, + // 0x7720 眠 + 32,119,34,34,50,38,3,252,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,252,2,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,252,1,252,15,208,0,0,63,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,255,255,252,15,255,255,255,255,0,252,1,252,15,208,11,224,0,0,252,1,252,15,208,11,224,0,0,252,1,252,15,208,11,240,0,0,252,1,252,15,208,7,240,0,0,252,1,252,15,208,7,240,0,0,255,255,252,15,255,255,255,255,208,255,255,252,15,255,255,255,255,208,255,255,252,15,255,255,255,255,208,252,1,252,15,229,87,249,85,64,252,1,252,15,208,3,248,0,0,252,1,252,15,208,2,248,0,0,252,1,252,15,208,2,252,0,0,252,1,252,15,208,1,252,0,0,255,255,252,15,208,0,252,0,0,255,255,252,15,208,0,253,1,64,255,255,252,15,208,0,191,2,224,253,0,0,15,208,0,127,2,240,252,0,0,15,209,191,63,67,240,252,0,0,31,255,255,47,195,240,84,0,7,255,255,255,15,251,224,0,0,7,255,255,228,11,255,208,0,0,3,255,144,0,2,255,192,0,0,1,64,0,0,0,190,0, + // 0x780d 砍 + 13,120,36,36,68,38,1,252,0,0,0,0,6,80,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,63,255,255,254,15,240,0,0,0,63,255,255,254,15,224,0,0,0,63,255,255,254,15,208,0,0,0,0,63,128,0,31,192,0,0,0,0,63,64,0,47,255,255,255,248,0,63,0,0,63,255,255,255,253,0,127,0,0,63,255,255,255,252,0,190,0,0,191,91,245,87,252,0,254,0,0,255,7,240,3,248,0,253,0,0,254,7,240,3,244,0,252,0,2,252,7,240,7,240,2,255,255,247,252,7,240,11,240,3,255,255,255,244,7,240,15,224,7,255,255,255,240,7,240,15,192,11,248,3,246,208,11,240,31,192,15,248,3,240,64,11,240,1,64,47,248,3,240,0,15,244,0,0,63,248,3,240,0,15,248,0,0,191,248,3,240,0,31,252,0,0,191,248,3,240,0,47,252,0,0,61,248,3,240,0,63,190,0,0,5,248,3,240,0,126,63,0,0,1,248,3,240,0,253,63,128,0,1,248,3,240,2,252,31,192,0,1,255,255,240,7,248,15,240,0,1,255,255,240,15,240,7,248,0,1,255,255,240,63,208,3,254,0,1,252,0,0,255,128,0,255,128,1,248,0,7,255,0,0,127,240,1,248,0,63,252,0,0,47,254,0,164,0,63,240,0,0,7,252,0,0,0,15,128,0,0,1,248,0,0,0,5,0,0,0,0,32, + // 0x78ba 確 + 186,120,36,36,68,38,1,252,0,0,0,0,0,2,144,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,7,240,0,0,63,255,255,244,0,11,240,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,63,64,11,255,255,255,255,252,0,63,0,11,208,127,64,0,252,0,127,0,11,208,254,3,160,252,0,127,0,11,209,252,3,240,252,0,190,0,6,147,248,11,224,168,0,253,0,0,11,240,15,192,0,0,252,0,0,31,255,255,255,244,1,252,0,0,127,255,255,255,244,2,255,255,225,255,255,255,255,244,3,255,255,231,255,64,63,0,0,7,255,255,255,255,64,63,0,0,11,248,7,255,255,64,63,0,0,15,248,7,231,191,64,63,0,0,31,248,7,224,63,255,255,255,224,63,248,7,224,63,255,255,255,224,191,248,7,224,63,234,191,170,144,255,248,7,224,63,64,63,0,0,126,248,7,224,63,64,63,0,0,61,248,7,224,63,64,63,0,0,17,248,7,224,63,255,255,255,224,1,248,7,224,63,255,255,255,224,1,248,7,224,63,234,191,170,144,1,255,255,224,63,64,63,0,0,1,255,255,224,63,64,63,0,0,1,255,255,224,63,64,63,0,0,1,248,0,0,63,255,255,255,253,1,248,0,0,63,255,255,255,253,1,248,0,0,63,255,255,255,253,0,0,0,0,63,64,0,0,0,0,0,0,0,47,64,0,0,0, + // 0x79fb 移 + 251,121,35,36,68,38,1,252,0,0,0,64,0,7,224,0,0,0,0,111,208,0,15,240,0,0,0,111,255,244,0,63,192,0,0,63,255,255,208,0,255,255,255,128,63,255,244,0,2,255,255,255,208,47,151,240,0,15,255,255,255,192,0,3,240,0,127,224,0,127,128,0,3,240,2,255,208,0,255,0,0,3,240,15,255,248,2,253,0,0,3,240,11,247,254,7,252,0,0,3,240,3,192,191,223,240,0,63,255,255,248,0,47,255,192,0,63,255,255,248,0,11,255,64,0,63,255,255,248,0,47,253,0,0,21,95,245,80,2,255,240,0,0,0,15,240,0,127,255,255,0,0,0,47,248,7,255,245,254,0,0,0,63,254,2,255,67,252,0,0,0,191,255,128,224,15,255,255,248,0,255,255,224,0,63,255,255,252,2,251,247,248,0,255,255,255,252,3,247,241,252,7,254,0,7,244,11,211,240,240,47,248,0,15,240,31,195,240,18,255,253,0,47,208,63,131,240,7,255,255,192,127,192,191,3,240,1,244,127,240,255,64,125,3,240,0,128,11,255,253,0,60,3,240,0,0,2,255,248,0,16,3,240,0,0,0,255,224,0,0,3,240,0,0,7,255,128,0,0,3,240,0,0,127,253,0,0,0,3,240,0,27,255,240,0,0,0,3,240,11,255,255,64,0,0,0,3,240,15,255,244,0,0,0,0,3,240,7,254,64,0,0,0,0,3,240,2,144,0,0,0,0, + // 0x7a4d 積 + 77,122,36,36,68,38,1,252,0,0,0,0,0,7,240,0,0,0,0,111,192,0,7,240,0,0,0,111,255,243,255,255,255,255,244,63,255,255,231,255,255,255,255,244,63,255,249,1,85,91,245,85,80,47,239,240,0,0,7,240,0,0,0,11,240,1,255,255,255,255,224,0,11,240,1,255,255,255,255,224,0,11,240,0,0,7,244,0,0,0,11,240,0,0,7,240,0,0,0,11,240,31,255,255,255,255,253,63,255,255,255,255,255,255,255,253,63,255,255,245,85,85,85,85,84,63,255,255,240,0,0,0,0,0,0,15,240,0,255,255,255,255,208,0,31,240,0,255,255,255,255,208,0,47,244,0,254,85,85,95,208,0,63,253,0,253,0,0,15,208,0,191,255,64,253,0,0,15,208,0,255,255,192,255,255,255,255,208,1,255,251,240,255,255,255,255,208,3,251,243,248,253,0,0,15,208,11,235,241,240,253,0,0,15,208,15,203,240,128,255,255,255,255,208,63,139,240,0,255,255,255,255,208,191,11,240,0,253,0,0,15,208,190,11,240,0,253,0,0,15,208,60,11,240,0,255,255,255,255,208,36,11,240,0,255,255,255,255,208,0,11,240,0,21,213,85,213,64,0,11,240,0,7,244,3,244,0,0,11,240,0,127,248,7,255,0,0,11,240,7,255,208,0,191,224,0,11,240,191,254,0,0,31,252,0,11,240,63,224,0,0,3,252,0,7,240,14,0,0,0,0,144, + // 0x7aef 端 + 239,122,36,36,68,38,1,252,0,5,0,0,0,7,240,0,0,0,31,128,0,0,7,240,0,0,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,31,128,3,240,7,240,7,240,0,47,128,3,240,7,240,7,240,63,255,255,195,255,255,255,255,240,63,255,255,195,255,255,255,255,240,63,255,255,195,255,255,255,255,240,0,0,0,0,0,0,0,0,0,6,64,58,0,0,0,0,0,0,15,128,63,0,0,0,0,0,0,15,128,63,47,255,255,255,255,253,15,192,127,47,255,255,255,255,253,11,192,126,47,255,255,255,255,253,11,192,189,0,0,15,240,0,0,7,208,189,0,0,15,224,0,0,7,224,252,0,0,31,192,0,0,3,224,252,11,255,255,255,255,248,3,224,248,11,255,255,255,255,248,3,241,244,11,255,255,255,255,248,3,226,244,11,224,188,15,130,248,1,2,240,91,224,188,15,130,248,0,2,255,235,224,188,15,130,248,1,191,255,251,224,188,15,130,248,127,255,255,235,224,188,15,130,248,127,255,248,11,224,188,15,130,248,127,249,0,11,224,188,15,130,248,57,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,130,248,0,0,0,11,224,188,15,191,248,0,0,0,11,224,188,15,159,240,0,0,0,6,144,20,0,14,128, + // 0x7b49 等 + 73,123,35,36,68,38,1,252,0,14,64,0,0,126,0,0,0,0,47,192,0,0,255,0,0,0,0,63,128,0,0,254,0,0,0,0,255,255,255,227,255,255,255,252,1,255,255,255,231,255,255,255,252,3,255,255,255,255,255,255,255,252,15,244,253,0,63,208,255,0,0,63,224,191,0,255,128,63,128,0,127,192,63,64,191,0,47,192,0,31,0,57,0,255,0,15,64,0,0,0,0,0,255,0,0,0,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,61,0,0,1,253,0,0,0,0,255,64,0,1,253,0,0,0,0,255,208,0,1,253,0,0,0,0,47,244,0,1,253,0,0,0,0,11,252,0,1,253,0,0,0,0,2,255,0,1,253,0,0,0,0,0,254,5,6,253,0,0,0,0,0,52,15,255,252,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,3,255,144,0,0, + // 0x7ba1 管 + 161,123,35,36,68,38,2,252,0,121,0,0,1,228,0,0,0,0,255,0,0,3,252,0,0,0,1,253,0,0,7,248,0,0,0,3,255,255,255,79,255,255,255,244,11,255,255,255,127,255,255,255,244,31,255,255,255,255,255,255,255,244,63,195,248,2,255,2,253,0,0,255,66,252,7,252,0,255,0,0,190,0,253,3,248,0,127,64,0,24,0,160,3,248,0,41,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,64,0,0,0,0,0,15,192,63,64,0,0,0,0,0,15,192,63,71,255,255,255,255,254,15,192,63,71,255,255,255,255,254,15,192,26,7,250,170,170,170,254,10,128,0,7,240,0,0,0,254,0,0,0,7,240,0,0,0,254,0,0,0,7,250,170,170,170,254,0,0,0,7,255,255,255,255,254,0,0,0,7,255,255,255,255,254,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,250,170,170,170,170,160,0,0,7,255,255,255,255,255,240,0,0,7,255,255,255,255,255,240,0,0,7,240,0,0,0,7,240,0,0,7,240,0,0,0,7,240,0,0,7,240,0,0,0,7,240,0,0,7,255,255,255,255,255,240,0,0,7,255,255,255,255,255,240,0,0,7,250,170,170,170,175,240,0,0,3,240,0,0,0,7,240,0, + // 0x7bb1 箱 + 177,123,35,36,68,38,1,252,0,14,64,0,0,57,0,0,0,0,31,192,0,0,191,0,0,0,0,63,192,0,0,255,0,0,0,0,127,128,0,1,254,0,0,0,0,191,255,255,227,255,255,255,252,0,255,255,255,231,255,255,255,252,3,255,255,255,239,255,255,255,252,7,248,254,0,47,224,254,0,0,15,240,127,0,127,192,127,64,0,63,208,63,129,255,64,47,192,0,47,64,47,64,190,0,15,208,0,6,0,252,0,24,0,10,64,0,0,0,252,0,0,0,0,0,0,0,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,47,255,255,255,207,255,255,255,224,47,255,255,255,207,192,0,15,224,47,255,255,255,207,192,0,15,224,0,7,253,0,15,192,0,15,224,0,7,253,0,15,255,255,255,224,0,15,255,64,15,255,255,255,224,0,31,255,208,15,250,170,175,224,0,63,255,244,15,192,0,15,224,0,191,255,253,15,192,0,15,224,1,254,252,255,143,192,0,15,224,3,252,252,63,207,255,255,255,224,11,240,252,31,15,255,255,255,224,47,224,252,9,15,250,170,175,224,127,192,252,0,15,192,0,15,224,63,64,252,0,15,192,0,15,224,30,0,252,0,15,192,0,15,224,4,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,0,0,252,0,15,255,255,255,224,0,0,252,0,15,192,0,15,224,0,0,252,0,10,128,0,5,80, + // 0x7cfb 系 + 251,124,34,36,68,38,2,252,0,0,0,0,0,0,0,64,0,0,0,0,0,0,22,191,224,0,0,5,86,170,255,255,255,248,0,47,255,255,255,255,255,255,252,0,15,255,255,255,255,255,165,0,0,15,255,255,255,212,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,252,0,15,128,0,0,0,0,31,244,0,63,240,0,0,0,16,63,208,0,191,208,0,0,0,189,255,64,2,255,64,0,0,2,255,253,0,11,253,0,0,0,0,191,248,0,47,244,0,0,0,0,31,253,0,191,208,0,0,0,0,2,255,131,255,64,0,0,0,0,0,127,255,252,0,180,0,0,0,0,15,255,240,3,253,0,0,0,0,3,255,192,2,255,64,0,0,0,15,254,0,0,191,224,0,0,0,127,244,0,0,31,248,0,255,255,255,251,255,255,255,254,0,191,255,255,255,255,255,255,255,64,191,255,255,255,255,255,255,255,208,106,149,85,83,253,85,80,47,240,0,0,0,3,252,0,0,15,224,0,0,64,3,252,0,80,3,64,0,3,248,3,252,3,244,0,0,0,15,252,3,252,11,254,0,0,0,63,240,3,252,2,255,192,0,0,255,208,3,252,0,127,244,0,7,255,64,3,252,0,15,254,0,47,253,0,3,252,0,3,255,128,255,240,0,3,252,0,0,191,224,191,192,0,3,252,0,0,47,208,30,0,0,3,252,0,0,10,0,0,0,0,3,248,0,0,0,0, + // 0x7d05 紅 + 5,125,36,36,68,38,1,252,0,3,64,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,128,64,127,255,255,255,252,0,191,1,244,127,255,255,255,252,13,253,3,252,127,255,255,255,252,63,248,11,244,21,86,254,85,84,63,240,31,224,0,1,253,0,0,15,244,63,192,0,1,253,0,0,3,253,191,0,0,1,253,0,0,0,255,253,0,0,1,253,0,0,0,63,248,20,0,1,253,0,0,0,31,240,188,0,1,253,0,0,0,47,208,254,0,1,253,0,0,0,127,128,127,64,1,253,0,0,1,255,0,63,192,1,253,0,0,191,255,255,255,208,1,253,0,0,127,255,255,255,240,1,253,0,0,127,255,255,251,244,1,253,0,0,0,1,252,2,248,1,253,0,0,0,1,252,0,128,1,253,0,0,1,1,252,4,0,1,253,0,0,7,241,252,126,0,1,253,0,0,11,241,252,127,0,1,253,0,0,15,225,252,63,128,1,253,0,0,15,209,252,31,192,1,253,0,0,15,193,252,15,208,1,253,0,0,47,193,252,11,224,1,253,0,0,63,129,252,7,240,1,253,0,0,127,1,252,3,64,1,253,0,0,127,1,252,3,255,255,255,255,253,5,1,252,3,255,255,255,255,253,0,1,252,3,255,255,255,255,253,0,1,252,1,85,85,85,85,84,0,1,248,0,0,0,0,0,0, + // 0x7d22 索 + 34,125,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,63,0,0,127,128,0,0,15,208,63,0,1,255,0,4,0,15,208,63,0,11,252,0,127,64,15,208,63,10,47,224,2,255,128,15,208,0,47,255,64,15,253,0,0,0,0,47,254,0,127,240,0,0,0,0,7,255,210,255,129,192,0,0,0,0,191,255,252,11,248,0,0,0,0,31,255,208,3,255,0,0,0,0,3,254,0,0,191,224,0,0,0,31,254,170,170,255,252,0,127,255,255,255,255,255,255,255,0,127,255,255,255,255,255,255,255,192,63,255,255,255,248,0,0,31,128,0,0,0,3,248,1,208,5,0,0,1,249,3,248,11,248,0,0,0,11,253,3,248,7,255,64,0,0,127,244,3,248,0,191,240,0,2,255,192,3,248,0,31,253,0,47,254,0,3,248,0,2,255,128,191,244,0,3,248,0,0,127,208,47,64,0,3,248,0,0,15,0,4,0,0,3,248,0,0,0,0, + // 0x7d2b 紫 + 43,125,35,36,68,38,1,252,0,0,47,64,2,252,0,0,0,0,0,63,64,2,252,0,0,0,0,0,63,64,2,252,0,6,0,3,240,63,64,2,252,0,191,128,3,240,63,255,242,252,31,255,224,3,240,63,255,242,255,255,255,64,3,240,63,255,242,255,255,208,0,3,240,63,64,2,255,228,0,0,3,240,63,64,2,252,0,0,0,3,240,63,64,2,252,0,0,228,3,240,63,65,162,252,0,0,252,3,240,127,255,241,253,0,2,252,27,255,255,255,241,255,255,255,248,127,255,255,255,144,255,255,255,240,63,255,165,15,208,47,255,255,208,41,64,0,63,224,0,0,0,0,0,0,0,255,128,11,128,0,0,0,3,135,253,0,63,240,0,0,0,31,255,240,1,255,192,0,0,0,31,255,192,11,254,0,0,0,0,1,255,244,63,244,30,0,0,0,0,31,255,255,128,191,192,0,0,0,2,255,253,0,47,240,0,0,0,0,255,224,0,11,253,0,63,255,255,255,255,255,255,255,64,63,255,255,255,255,255,255,255,224,63,255,255,255,255,255,255,175,248,4,0,0,0,254,0,0,7,252,0,0,32,0,254,0,36,1,208,0,0,255,64,254,1,255,0,0,0,11,254,0,254,1,255,224,0,0,127,248,0,254,0,47,253,0,7,255,208,0,254,0,3,255,192,47,254,0,0,254,0,0,127,244,11,244,0,0,254,0,0,15,224,1,64,0,0,254,0,0,2,0, + // 0x7d30 細 + 48,125,35,36,68,38,1,252,0,10,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,64,0,255,255,255,255,244,0,191,0,0,255,255,255,255,244,0,253,11,128,255,255,255,255,244,5,248,15,224,254,86,249,87,244,63,240,47,192,253,1,248,3,244,127,224,63,64,253,1,248,3,244,47,224,254,0,253,1,248,3,244,15,245,252,0,253,1,248,3,244,3,255,244,0,253,1,248,3,244,0,255,224,64,253,1,248,3,244,0,127,203,208,253,1,248,3,244,0,63,7,240,253,1,248,3,244,0,189,3,244,253,1,248,3,244,1,254,175,252,254,2,248,3,244,191,255,255,253,255,255,255,255,244,191,255,255,254,255,255,255,255,244,127,255,240,63,255,255,255,255,244,16,7,240,62,253,1,248,3,244,0,7,240,16,253,1,248,3,244,0,7,240,64,253,1,248,3,244,15,199,243,224,253,1,248,3,244,15,199,243,240,253,1,248,3,244,15,199,242,244,253,1,248,3,244,31,135,240,252,253,1,248,3,244,47,71,240,252,253,1,248,3,244,63,71,240,189,253,1,248,3,244,63,7,240,126,253,1,248,3,244,126,7,240,32,255,255,255,255,244,189,7,240,0,255,255,255,255,244,8,7,240,0,255,255,255,255,244,0,7,240,0,254,85,85,87,244,0,7,240,0,253,0,0,3,244,0,7,224,0,84,0,0,0,0, + // 0x7d42 終 + 66,125,36,37,77,38,1,251,0,9,0,0,0,57,0,0,0,0,31,192,0,0,191,0,0,0,0,47,192,0,0,254,0,0,0,0,63,64,0,2,252,0,0,0,0,191,0,0,7,255,255,255,64,0,252,15,64,15,255,255,255,192,6,248,31,192,47,255,255,255,128,47,240,63,128,127,192,0,191,0,127,208,127,1,255,224,0,254,0,47,208,253,7,255,244,3,252,0,15,246,248,31,246,252,11,248,0,3,255,240,63,208,255,31,224,0,0,255,208,15,64,63,191,192,0,0,127,139,1,0,31,255,0,0,0,63,31,128,0,15,253,0,0,0,253,15,192,0,47,255,0,0,2,248,7,224,0,255,255,208,0,127,255,255,240,7,255,127,248,0,191,255,255,244,127,252,11,255,64,127,255,255,255,255,224,1,255,248,16,11,224,255,255,64,0,63,254,0,11,224,83,244,31,64,7,252,4,11,225,128,64,127,244,0,112,15,203,235,208,0,47,254,0,0,15,203,227,224,0,2,255,208,0,15,203,227,240,0,0,47,224,0,31,139,226,244,0,0,7,192,0,47,75,224,248,4,0,0,0,0,63,11,224,252,47,208,0,0,0,63,11,224,180,127,254,64,0,0,190,11,224,0,31,255,248,0,0,189,11,224,0,0,127,255,144,0,24,11,224,0,0,6,255,253,0,0,11,224,0,0,0,47,255,64,0,11,224,0,0,0,1,255,0,0,11,208,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0, + // 0x7d71 統 + 113,125,36,37,77,38,1,251,0,9,0,0,0,7,240,0,0,0,31,192,0,0,11,240,0,0,0,47,192,0,0,11,240,0,0,0,63,64,0,0,11,240,0,0,0,127,0,0,0,11,240,0,0,0,252,15,75,255,255,255,255,252,5,248,31,203,255,255,255,255,252,47,240,63,139,255,255,255,255,252,127,208,127,0,1,255,0,0,0,47,208,253,0,1,253,0,32,0,15,246,248,0,3,252,2,248,0,3,255,240,0,3,248,2,253,0,0,255,208,0,7,240,0,255,0,0,127,139,0,15,224,0,63,128,0,63,31,128,31,234,175,255,208,0,253,15,203,255,255,255,255,240,2,248,7,231,255,255,255,255,248,127,255,255,247,255,250,165,66,252,191,255,255,249,0,0,0,0,252,127,255,255,252,1,80,5,64,144,16,11,224,252,3,240,15,192,0,0,11,224,160,3,240,15,192,0,4,11,225,128,3,240,15,192,0,15,203,235,192,7,240,15,192,0,15,203,231,224,7,240,15,192,0,15,203,227,240,11,240,15,192,0,31,139,226,244,15,224,15,192,0,47,75,225,248,15,208,15,192,0,63,11,224,252,31,192,15,192,32,63,11,224,188,63,192,15,192,62,190,11,224,0,191,64,15,192,63,189,11,224,1,255,0,15,192,126,24,11,224,11,252,0,15,208,190,0,11,224,127,244,0,15,255,253,0,11,224,127,192,0,11,255,252,0,11,208,30,0,0,2,255,240,0,0,0,0,0,0,0,0,0, + // 0x7d72 絲 + 114,125,36,36,68,38,1,252,0,3,64,0,0,0,208,0,0,0,11,240,0,0,2,252,0,0,0,15,224,0,0,3,248,0,0,0,31,192,0,0,11,240,0,0,0,63,64,0,0,15,208,16,0,0,191,3,244,0,47,192,125,0,8,252,7,248,5,127,0,255,0,63,248,15,240,15,254,2,253,0,127,240,47,208,47,252,7,248,0,47,240,63,128,11,248,15,240,0,11,248,255,0,2,254,47,208,0,2,255,252,0,0,191,255,128,0,0,191,244,0,0,47,255,8,0,0,47,225,240,0,11,252,127,0,0,47,194,248,0,11,240,63,64,0,191,0,252,0,47,208,47,192,1,253,0,191,0,127,128,31,240,191,255,255,255,111,255,255,255,244,127,255,255,255,159,255,255,255,252,127,255,255,255,223,255,255,255,252,20,2,248,15,213,64,254,0,253,0,1,248,6,0,0,254,0,112,2,65,248,4,0,0,254,0,0,7,241,248,252,2,248,254,47,0,11,225,248,254,3,248,254,63,64,11,225,248,127,3,244,254,47,192,15,209,248,63,71,240,254,15,208,15,193,248,47,139,224,254,11,240,47,193,248,15,207,208,254,3,244,63,129,248,14,47,192,254,2,252,127,1,248,0,127,128,254,1,253,191,1,248,0,191,0,254,0,254,9,1,248,0,29,0,254,0,160,0,1,248,0,0,0,254,0,0,0,1,248,0,0,0,254,0,0,0,1,248,0,0,0,189,0,0, + // 0x7da0 綠 + 160,125,36,36,68,38,1,252,0,9,0,0,3,160,0,0,0,0,15,192,0,7,240,0,0,0,0,47,192,0,11,240,0,0,0,0,63,64,0,11,255,255,255,0,0,127,0,0,15,255,255,255,0,0,253,15,64,15,250,170,255,0,5,248,31,192,31,192,0,191,0,47,240,63,128,47,128,0,190,0,127,224,127,0,63,64,0,253,0,63,208,253,0,63,255,255,253,0,15,242,248,0,127,255,255,252,0,3,255,240,0,255,170,171,252,0,1,255,208,0,105,0,2,248,0,0,191,155,0,0,0,3,244,0,0,127,47,139,255,255,255,255,252,0,252,15,203,255,255,255,255,252,3,248,11,235,255,255,255,255,252,191,255,255,240,0,3,244,0,0,191,255,255,244,0,3,248,0,64,191,255,255,252,116,3,252,2,224,0,15,208,254,253,3,253,7,248,0,15,208,160,255,67,254,31,240,5,15,208,64,63,195,255,191,128,15,207,219,192,15,227,255,254,0,15,207,215,208,7,131,255,244,0,31,143,211,224,1,3,255,224,0,31,79,211,240,0,179,247,244,0,47,79,210,244,7,247,246,253,0,63,15,209,248,63,247,244,255,0,63,15,208,230,255,195,244,127,192,190,15,208,31,254,3,244,47,248,252,15,208,47,244,3,244,11,254,24,15,208,15,192,3,244,2,252,0,15,208,6,2,255,240,0,112,0,15,208,0,1,255,240,0,0,0,11,192,0,0,254,128,0,0, + // 0x7db2 網 + 178,125,35,37,77,38,1,251,0,9,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,192,7,255,255,255,255,244,0,63,0,7,255,255,255,255,244,0,190,0,7,255,255,255,255,244,0,252,15,135,240,0,0,2,244,9,248,47,199,240,80,3,146,244,63,240,63,71,242,240,7,226,244,127,208,191,7,240,244,11,194,244,47,208,252,7,240,248,15,130,244,15,243,244,7,240,188,31,2,244,3,255,240,7,240,120,31,2,244,0,255,193,7,243,255,255,242,244,0,127,175,7,243,255,255,242,244,0,127,31,199,242,171,250,162,244,0,252,15,215,240,3,240,2,244,3,248,11,231,240,3,240,2,244,191,255,255,251,240,3,240,2,244,191,255,255,255,242,175,250,162,244,191,255,255,255,243,255,255,242,244,0,15,208,255,243,255,255,242,244,0,15,208,171,240,252,0,2,244,10,79,209,135,240,252,0,2,244,15,207,219,199,240,252,0,2,244,15,207,215,231,240,252,0,2,244,31,143,211,247,240,252,0,2,244,47,79,210,247,240,189,0,2,244,47,15,209,251,240,191,255,226,244,63,15,209,255,240,127,255,226,244,63,15,208,235,240,31,255,226,244,190,15,208,7,240,0,0,2,244,252,15,208,7,240,0,0,2,244,24,15,208,7,240,0,0,3,244,0,15,208,7,240,0,3,255,244,0,15,208,7,240,0,2,255,240,0,15,208,7,240,0,1,255,128,0,0,0,0,0,0,0,0,0, + // 0x7dd2 緒 + 210,125,36,36,68,38,1,252,0,9,0,0,0,63,0,0,0,0,15,192,0,0,63,0,2,228,0,47,192,0,0,63,0,3,248,0,63,64,0,0,63,0,7,240,0,127,0,3,255,255,255,207,224,0,253,15,67,255,255,255,239,192,5,248,31,195,255,255,255,255,128,47,240,63,128,0,63,0,191,0,127,224,127,0,0,63,1,254,0,63,192,253,0,0,63,3,252,0,15,242,248,0,0,63,7,248,0,7,251,240,0,0,63,15,240,0,2,255,208,31,255,255,255,255,253,0,255,139,31,255,255,255,255,253,0,127,47,95,255,255,255,255,253,0,253,15,192,0,15,248,0,0,2,248,11,224,0,127,208,0,0,191,255,255,240,1,255,64,0,0,191,255,255,244,11,255,255,255,192,191,255,255,252,127,255,255,255,192,0,15,208,255,255,255,255,255,192,0,15,208,191,255,192,0,31,192,4,15,208,95,255,192,0,31,192,15,207,219,202,31,192,0,31,192,15,207,215,208,31,192,0,31,192,31,143,211,224,31,255,255,255,192,31,143,211,240,31,255,255,255,192,47,79,210,244,31,255,255,255,192,63,15,209,248,31,192,0,31,192,63,15,208,228,31,192,0,31,192,189,15,208,0,31,192,0,31,192,188,15,208,0,31,255,255,255,192,4,15,208,0,31,255,255,255,192,0,15,208,0,31,255,255,255,192,0,15,208,0,31,192,0,31,192,0,11,192,0,10,128,0,10,128, + // 0x7dda 線 + 218,125,36,36,68,38,1,252,0,9,0,0,0,3,164,0,0,0,15,192,0,0,7,252,0,0,0,47,192,0,0,11,240,0,0,0,63,64,0,0,15,224,0,0,0,127,0,1,255,255,255,255,240,0,253,15,65,255,255,255,255,240,5,248,31,193,255,255,255,255,240,47,240,63,129,252,0,0,11,240,127,224,127,1,252,0,0,11,240,63,208,253,1,254,170,170,175,240,15,242,248,1,255,255,255,255,240,3,255,240,1,255,255,255,255,240,1,255,208,1,252,0,0,11,240,0,191,155,1,252,0,0,11,240,0,127,47,129,252,0,0,11,240,0,252,15,193,255,255,255,255,240,3,248,11,225,255,255,255,255,240,191,255,255,241,255,255,255,255,240,191,255,255,244,0,3,244,0,0,191,255,255,252,0,3,248,0,64,0,15,208,252,0,3,252,2,240,0,15,208,171,255,231,253,7,252,5,15,209,71,255,251,255,31,244,15,207,219,199,255,243,255,191,192,15,207,215,208,3,243,255,255,0,31,143,211,240,11,227,255,248,0,31,79,210,240,15,195,251,240,0,47,79,210,244,63,131,247,252,0,63,15,209,248,191,3,245,255,0,63,15,208,145,254,3,244,191,128,190,15,208,7,252,3,244,63,244,252,15,208,63,240,3,244,15,254,24,15,208,47,192,3,244,3,253,0,15,208,15,2,255,240,0,184,0,15,208,0,1,255,240,0,0,0,11,192,0,0,255,128,0,0, + // 0x7de8 編 + 232,125,35,36,68,38,1,252,0,9,0,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0,47,128,15,255,255,255,255,252,0,63,0,15,255,255,255,255,252,0,126,0,15,255,255,255,255,252,0,252,14,0,0,0,0,0,0,5,248,47,192,0,0,0,0,0,47,240,63,64,0,0,0,0,0,127,224,190,2,255,255,255,255,240,63,208,252,2,255,255,255,255,240,15,242,244,2,255,255,255,255,240,3,255,240,2,244,0,0,11,240,0,255,208,2,244,0,0,11,240,0,127,159,2,244,0,0,11,240,0,127,47,2,255,255,255,255,240,0,253,15,130,255,255,255,255,240,2,248,15,195,255,255,255,255,240,191,255,255,227,244,0,0,0,0,191,255,255,243,244,0,0,0,0,191,255,255,243,254,170,170,170,164,0,15,193,247,255,255,255,255,248,0,15,192,211,255,255,255,255,248,5,15,194,3,255,11,131,208,248,15,207,207,131,255,11,131,208,248,15,143,207,199,255,11,131,208,248,31,79,203,203,255,11,131,208,248,47,79,195,219,255,255,255,255,248,47,15,195,239,239,255,255,255,248,63,15,195,255,223,175,235,234,248,62,15,194,255,159,11,131,208,248,189,15,192,63,95,11,131,208,248,188,15,192,127,31,11,131,208,248,4,15,192,254,31,11,131,209,248,0,15,193,252,31,11,131,223,248,0,15,192,56,31,11,131,223,244,0,15,192,0,31,5,65,70,144, + // 0x7e2e 縮 + 46,126,35,36,68,38,1,252,0,9,0,0,0,7,240,0,0,0,15,192,0,0,11,240,0,0,0,47,128,0,0,11,240,0,0,0,63,0,0,0,11,240,0,0,0,126,0,15,255,255,255,255,252,0,252,14,79,255,255,255,255,252,5,248,47,207,255,255,255,255,252,63,240,63,15,192,0,0,1,252,127,208,190,15,192,0,0,1,252,47,209,252,15,206,64,0,1,168,11,247,244,5,95,192,0,0,0,3,255,240,0,47,191,255,255,252,0,255,193,0,63,127,255,255,252,0,127,111,0,63,63,255,255,252,0,127,31,128,190,0,15,208,0,0,252,15,192,253,0,15,192,0,2,248,11,209,252,0,31,192,0,191,255,255,227,252,31,255,255,240,191,255,255,247,252,31,255,255,244,191,255,255,255,252,31,255,255,244,0,15,193,255,252,31,128,3,244,0,15,192,63,252,31,128,3,244,9,15,193,46,252,31,128,3,244,15,207,207,72,252,31,128,3,244,15,143,207,192,252,31,255,255,244,31,79,203,192,252,31,255,255,244,47,79,199,208,252,31,255,255,244,47,15,195,224,252,31,128,3,244,63,15,195,240,252,31,128,3,244,62,15,194,224,252,31,128,3,244,189,15,192,0,252,31,128,3,244,188,15,192,0,252,31,255,255,244,4,15,192,0,252,31,255,255,244,0,15,192,0,252,31,255,255,244,0,15,192,0,252,31,128,3,244,0,15,192,0,252,26,64,1,80, + // 0x7e3d 總 + 61,126,36,36,68,38,1,252,0,9,0,0,0,3,164,0,0,0,15,192,0,0,3,252,0,0,0,47,128,0,0,7,244,0,0,0,63,0,0,0,15,240,0,0,0,126,0,3,255,255,255,255,240,0,252,14,3,255,255,255,255,240,5,248,47,195,250,171,234,171,240,47,240,63,67,240,3,224,3,240,127,224,190,3,240,7,255,227,240,63,208,252,3,242,223,255,243,240,15,242,244,3,247,255,3,227,240,3,255,240,3,240,255,139,195,240,0,255,208,3,242,255,255,67,240,0,127,159,3,247,209,255,3,240,0,127,47,3,241,65,255,195,240,0,253,15,131,240,11,251,243,240,2,248,15,195,240,127,193,195,240,191,255,255,227,240,190,0,3,240,191,255,255,243,250,190,170,171,240,191,255,255,243,255,255,255,255,240,0,15,193,247,255,255,255,255,240,0,15,192,208,0,63,0,0,0,0,15,193,0,0,191,208,0,0,15,207,207,64,0,31,248,0,0,15,143,207,192,0,3,254,0,0,31,143,203,192,65,248,191,11,0,31,79,199,209,245,248,40,47,128,47,15,195,226,245,248,0,15,208,63,15,195,243,241,248,0,11,240,62,15,194,227,241,248,0,3,244,189,15,192,7,225,248,0,209,252,252,15,192,15,209,248,1,244,253,24,15,192,47,193,248,2,244,190,0,15,192,63,65,255,255,240,126,0,15,192,10,0,255,255,224,32,0,15,192,0,0,47,255,128,0, + // 0x7e7c 繼 + 124,126,35,37,77,38,1,251,0,36,0,63,0,0,0,0,0,0,63,0,63,0,240,0,124,0,0,126,0,63,2,224,0,248,0,0,253,0,63,3,194,1,240,128,0,252,0,63,47,139,207,210,240,2,244,57,63,63,15,47,135,192,27,240,190,63,31,126,11,223,64,63,208,252,63,7,252,2,254,0,127,194,244,63,2,246,0,253,128,47,195,240,63,3,219,65,243,208,11,251,208,63,11,131,195,208,240,3,255,192,63,127,255,255,255,248,1,255,0,63,127,255,255,255,252,0,190,184,63,0,0,128,0,20,0,252,252,63,234,170,170,170,168,2,244,126,63,255,255,255,255,252,3,240,63,63,255,255,255,255,252,255,255,255,127,0,208,0,52,0,191,255,255,191,1,240,0,188,0,191,255,239,255,3,208,0,244,0,0,47,75,255,7,195,133,240,224,0,47,69,63,63,75,159,195,224,9,47,68,63,63,31,31,135,192,31,111,126,63,15,189,7,223,64,31,111,127,63,3,252,1,254,0,47,47,95,127,1,247,0,254,192,47,47,79,191,3,219,128,243,224,63,47,79,255,11,131,195,208,240,62,47,75,255,127,255,255,255,248,125,47,75,255,127,255,255,255,252,188,47,64,63,20,0,149,0,40,188,47,64,63,0,0,0,0,0,4,47,64,63,255,255,255,255,252,0,47,64,63,255,255,255,255,252,0,47,64,63,234,170,170,170,168,0,47,64,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x7e8c 續 + 140,126,35,36,68,38,1,252,0,9,0,0,0,11,240,0,0,0,31,192,0,0,11,240,0,0,0,47,128,31,255,255,255,255,252,0,63,0,31,255,255,255,255,252,0,190,0,5,85,91,245,85,84,0,252,31,64,0,11,240,0,0,6,244,63,130,255,255,255,255,224,47,240,127,2,255,255,255,255,224,127,208,253,0,0,0,0,0,0,63,209,252,0,0,0,0,0,0,15,243,244,7,255,255,255,255,244,3,255,224,7,255,255,255,255,244,1,255,192,7,208,124,47,2,244,0,191,126,7,219,244,31,255,244,0,127,47,7,223,128,5,87,244,0,252,31,135,255,255,255,255,244,2,244,15,199,255,255,255,255,244,111,255,255,208,0,0,0,0,0,127,255,255,240,0,0,0,0,0,127,255,251,240,255,255,255,255,192,16,15,194,240,255,255,255,255,192,0,15,192,0,252,0,0,15,192,14,79,193,0,254,170,170,175,192,15,207,207,64,255,255,255,255,192,31,143,207,192,252,0,0,15,192,31,79,203,192,254,170,170,175,192,47,79,195,208,255,255,255,255,192,47,15,195,224,252,0,0,15,192,63,15,195,224,252,0,0,15,192,126,15,193,0,255,255,255,255,192,189,15,192,0,255,255,255,255,192,188,15,192,0,11,224,7,244,0,4,15,192,1,191,244,11,255,64,0,15,192,111,255,64,0,191,244,0,15,192,127,228,0,0,11,252,0,15,192,29,0,0,0,1,208, + // 0x7ea2 红 + 162,126,35,34,50,38,1,254,0,1,144,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,244,1,170,170,170,170,160,0,15,240,3,255,255,255,255,244,0,47,208,3,255,255,255,255,244,0,63,192,3,255,255,255,255,244,0,191,0,0,0,3,248,0,0,1,254,1,192,0,3,248,0,0,3,252,3,248,0,3,248,0,0,11,244,11,248,0,3,248,0,0,31,224,31,240,0,3,248,0,0,127,255,255,208,0,3,248,0,0,127,255,255,128,0,3,248,0,0,63,255,255,0,0,3,248,0,0,62,87,252,0,0,3,248,0,0,0,15,244,0,0,3,248,0,0,0,47,224,0,0,3,248,0,0,0,127,192,0,0,3,248,0,0,1,255,0,0,0,3,248,0,0,7,253,26,240,0,3,248,0,0,31,255,255,240,0,3,248,0,0,127,255,255,244,0,3,248,0,0,63,255,254,80,0,3,248,0,0,47,229,0,0,0,3,248,0,0,20,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,16,0,3,248,0,0,0,0,107,240,0,3,248,0,0,0,111,255,240,0,3,248,0,0,127,255,255,251,255,255,255,255,252,127,255,254,71,255,255,255,255,252,63,254,64,7,255,255,255,255,252,57,0,0,6,170,170,170,170,168, + // 0x7f6e 置 + 110,127,35,35,59,38,2,252,5,85,85,85,85,85,85,85,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,11,224,3,240,1,252,0,191,0,11,224,3,240,1,252,0,191,0,11,224,3,240,1,252,0,191,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,0,5,85,85,86,254,85,85,85,0,0,0,0,1,252,0,0,0,0,42,170,170,171,254,170,170,170,128,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,3,244,0,0,0,0,0,0,0,3,244,0,0,0,0,1,80,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,31,192,0,0,3,244,0,7,240,31,192,0,0,3,244,0,7,240,31,255,255,255,255,244,0,7,240,31,255,255,255,255,244,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,240,7,255,255,255,255,255,255,255,244,7,255,255,255,255,255,255,255,244,7,240,0,0,0,0,0,0,0,2,160,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,35,35,59,38,1,252,1,85,85,85,85,85,85,85,64,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,248,0,252,0,127,0,47,192,2,248,0,252,0,127,0,47,192,2,248,0,252,0,127,0,47,192,2,253,86,254,85,191,85,127,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,13,0,0,47,255,255,255,255,248,127,128,0,63,255,255,255,255,249,255,128,0,63,255,255,255,255,255,253,0,0,0,0,3,248,0,127,244,0,0,0,0,3,248,3,255,128,0,47,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,7,255,244,0,0,0,0,0,1,191,255,64,0,0,0,0,0,47,255,254,170,170,169,0,0,27,255,255,255,255,255,253,0,27,255,255,255,255,255,255,253,0,127,255,255,64,0,0,0,253,0,47,254,63,64,0,0,0,253,0,14,64,63,149,85,85,85,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,64,0,0,0,253,0,0,0,63,64,0,0,0,253,0,0,0,63,255,255,255,255,253,0,0,0,63,255,255,255,255,253,0,0,0,63,170,170,170,170,253,0,0,0,63,0,0,0,0,169,0, + // 0x8070 聰 + 112,128,36,37,77,38,1,251,0,0,0,0,0,1,148,0,0,0,0,0,0,0,3,252,0,0,63,255,255,255,0,3,248,0,0,63,255,255,255,0,7,240,0,0,63,255,255,255,255,255,255,255,240,3,240,7,224,255,255,255,255,240,3,240,7,224,254,171,250,171,240,3,240,7,224,252,1,224,3,240,3,240,7,224,252,3,250,163,240,3,240,7,224,252,175,255,227,240,3,255,255,224,252,255,3,211,240,3,255,255,224,252,191,199,195,240,3,255,255,224,253,247,255,3,240,3,240,7,224,252,128,191,3,240,3,240,7,224,252,0,255,195,240,3,240,7,224,252,7,231,211,240,3,240,7,224,252,63,129,131,240,3,240,7,224,252,61,0,3,240,3,255,255,224,255,255,255,255,240,3,255,255,224,255,255,255,255,240,3,255,255,224,170,175,234,170,160,3,240,7,224,0,31,224,0,0,3,240,7,224,0,31,253,0,0,3,240,7,224,0,2,255,64,0,3,240,7,224,0,189,127,129,0,3,240,31,224,125,189,15,31,64,3,255,255,224,189,189,0,31,192,191,255,255,224,252,189,0,15,208,127,255,255,224,252,189,0,7,240,63,250,75,225,248,189,0,67,244,41,0,7,226,244,189,0,249,252,0,0,7,227,240,189,0,252,252,0,0,7,239,224,189,0,248,253,0,0,7,235,192,191,255,244,126,0,0,7,225,64,63,255,240,32,0,0,7,224,0,10,255,128,0,0,0,0,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,27,37,3,38,6,251,0,0,3,164,0,0,0,0,0,7,252,0,0,0,0,0,11,244,0,0,0,0,0,15,240,0,0,0,0,0,15,224,0,0,0,85,85,111,229,85,85,80,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,85,85,85,85,87,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,85,85,85,85,87,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,0,0,0,0,3,248,254,85,85,85,85,87,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,255,255,255,255,255,255,248,254,0,0,0,0,3,248,254,0,0,0,0,3,244,0,0,0,0,0,0,0, + // 0x85cd 藍 + 205,133,34,35,59,38,2,253,0,0,63,64,0,47,192,0,0,0,0,63,64,0,47,192,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,63,64,0,47,192,0,0,0,0,63,64,0,47,192,0,0,0,0,0,0,0,20,0,0,0,15,255,255,255,224,63,64,0,0,15,255,255,255,224,127,0,0,0,15,192,190,0,0,191,0,0,0,15,192,126,0,1,255,255,255,208,15,255,255,255,131,255,255,255,208,15,255,255,255,139,255,255,255,208,15,192,0,15,159,224,0,0,0,15,192,0,15,191,192,0,0,0,15,255,255,255,143,0,0,0,0,15,255,255,255,128,0,0,0,0,15,192,126,0,0,191,255,255,64,15,192,126,0,0,255,255,255,64,15,255,255,255,240,255,255,255,64,15,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,244,0,0,255,255,255,255,255,255,244,0,0,255,170,254,171,254,171,244,0,0,253,0,252,2,244,3,244,0,0,253,0,252,2,244,3,244,0,0,253,0,252,2,244,3,244,0,0,253,0,252,2,244,3,244,0,0,253,0,252,2,244,3,244,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x884c 行 + 76,136,35,36,68,38,1,252,0,0,32,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,2,254,0,85,85,85,85,80,0,11,252,1,255,255,255,255,240,0,47,240,1,255,255,255,255,240,0,191,192,1,255,255,255,255,240,3,255,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,127,240,4,0,0,0,0,0,0,63,192,15,144,0,0,0,0,0,14,0,63,208,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,15,255,255,255,255,252,0,15,248,15,255,255,255,255,252,0,63,240,15,255,255,255,255,252,0,255,224,5,85,85,95,245,84,3,255,224,0,0,0,15,224,0,31,255,224,0,0,0,15,224,0,127,255,224,0,0,0,15,224,0,191,207,224,0,0,0,15,224,0,47,15,224,0,0,0,15,224,0,12,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,0,0,15,224,0,0,15,224,0,1,255,255,224,0,0,15,224,0,0,255,255,208,0,0,15,224,0,0,191,255,128,0,0,10,160,0,0,21,84,0,0, + // 0x8868 表 + 104,136,36,36,68,38,1,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,254,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,244,47,255,255,255,255,255,255,255,244,47,255,255,255,255,255,255,255,244,0,0,0,47,255,240,0,0,0,0,0,1,255,199,240,0,10,0,0,0,11,255,3,248,0,47,192,0,0,191,244,2,252,0,255,208,0,11,255,192,0,254,7,255,0,1,255,255,192,0,191,47,248,0,111,255,255,192,0,127,255,208,0,127,254,47,192,0,47,254,0,0,31,224,47,192,0,15,244,0,0,9,0,47,192,0,7,252,0,0,0,0,47,192,0,18,255,64,0,0,0,47,192,27,240,255,208,0,0,0,47,239,255,240,63,252,0,0,0,127,255,255,240,15,255,128,0,111,255,255,249,0,2,255,253,0,191,255,249,0,0,0,127,252,0,63,249,0,0,0,0,11,244,0,41,0,0,0,0,0,0,96, + // 0x88ab 被 + 171,136,36,36,68,38,1,252,0,15,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,1,255,255,255,255,252,63,255,255,193,255,255,255,255,252,63,255,255,241,255,255,255,255,252,63,255,255,209,252,2,252,3,248,0,0,47,193,252,1,252,3,244,0,0,63,129,252,1,252,3,240,0,0,127,1,252,1,252,11,240,0,0,253,1,252,1,252,6,208,0,3,252,33,252,1,252,0,0,0,11,244,189,255,255,255,255,208,0,31,241,249,255,255,255,255,240,0,127,251,225,255,255,255,255,208,0,255,255,193,255,244,0,31,192,3,255,255,66,255,248,0,63,192,31,255,239,194,249,252,0,63,128,191,255,207,226,248,253,0,191,0,191,143,195,243,244,191,0,255,0,62,15,193,211,244,63,130,253,0,40,15,192,67,240,47,199,252,0,0,15,192,7,240,15,255,244,0,0,15,192,11,240,7,255,224,0,0,15,192,15,224,3,255,192,0,0,15,192,15,208,2,255,128,0,0,15,192,31,192,15,255,240,0,0,15,192,63,128,127,255,253,0,0,15,192,127,66,255,215,255,208,0,15,192,255,47,255,1,255,253,0,15,194,253,63,248,0,63,253,0,15,192,188,31,208,0,7,244,0,15,192,20,9,0,0,0,96, + // 0x88c5 装 + 197,136,36,37,77,38,1,251,0,0,63,0,0,7,240,0,0,0,0,63,0,0,7,240,0,0,3,64,63,0,0,7,240,0,0,15,224,63,0,0,7,240,0,0,15,252,63,0,0,7,240,0,0,2,255,63,15,255,255,255,255,252,0,190,63,15,255,255,255,255,252,0,40,63,15,255,255,255,255,252,0,0,63,0,0,7,240,0,0,0,0,63,0,0,7,240,0,0,0,1,63,0,0,7,240,0,0,0,31,127,0,0,7,240,0,0,2,255,191,0,0,7,240,0,0,47,255,191,0,0,7,240,0,0,127,248,63,3,255,255,255,255,240,63,64,63,3,255,255,255,255,240,20,0,63,3,255,255,255,255,240,0,0,63,0,0,0,0,0,0,0,0,42,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,47,255,255,255,255,255,255,255,252,0,0,1,255,143,224,0,29,0,0,0,31,253,3,244,0,191,128,0,6,255,224,2,252,7,255,64,6,255,255,128,0,255,127,244,0,127,255,255,128,0,63,255,128,0,31,249,47,128,0,15,252,0,0,9,0,47,128,1,67,255,64,0,0,0,47,218,255,192,255,244,0,0,26,255,255,255,192,47,255,144,0,63,255,255,254,128,3,255,253,0,63,255,165,0,0,0,111,248,0,25,64,0,0,0,0,1,176,0,0,0,0,0,0,0,0,0, + // 0x88dd 裝 + 221,136,35,37,77,38,2,251,5,64,31,128,0,15,208,0,0,15,192,31,192,0,15,224,0,0,15,192,31,192,0,15,224,0,0,15,192,31,192,0,15,224,0,0,15,192,31,192,0,15,224,0,0,15,255,255,207,255,255,255,255,224,15,255,255,207,255,255,255,255,224,15,255,255,207,255,255,255,255,224,10,128,31,192,0,15,224,0,0,0,0,31,192,0,15,224,0,0,170,170,191,192,0,15,224,0,0,255,255,255,192,0,15,224,0,0,255,255,255,192,0,15,224,0,0,7,240,31,192,0,15,224,0,0,11,224,31,195,255,255,255,255,128,15,208,31,195,255,255,255,255,128,63,192,31,195,255,255,255,255,128,255,64,31,192,0,0,0,0,0,254,0,31,194,252,0,0,0,0,116,0,5,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,11,254,63,128,0,52,0,0,1,191,244,15,208,2,254,0,0,111,255,64,11,240,31,253,0,111,255,254,0,3,253,255,224,0,255,254,254,0,0,255,254,0,0,127,144,190,0,0,63,240,0,0,16,0,190,0,22,15,253,0,0,0,0,255,191,255,3,255,208,0,0,175,255,255,255,0,191,254,64,1,255,255,255,229,0,15,255,244,0,255,233,64,0,0,1,191,224,0,80,0,0,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x8907 複 + 7,137,36,36,68,38,1,252,0,26,64,0,10,64,0,0,0,0,47,128,0,15,208,0,0,0,0,47,128,0,47,192,0,0,0,0,47,128,0,63,128,0,0,0,0,47,128,0,191,255,255,255,252,0,47,128,0,255,255,255,255,252,0,47,128,3,255,255,255,255,252,0,47,128,7,244,0,0,0,0,63,255,255,79,224,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,95,191,255,255,255,192,0,0,63,5,127,85,85,111,192,0,0,190,0,126,0,0,31,192,0,0,252,0,127,0,0,47,192,0,2,248,0,127,255,255,255,192,0,7,240,224,127,255,255,255,192,0,15,225,244,126,0,0,31,192,0,47,227,224,126,0,0,31,192,0,127,255,192,127,255,255,255,192,0,255,255,64,127,255,255,255,192,3,255,255,0,21,255,85,85,64,15,255,175,128,1,254,0,0,0,63,255,143,208,7,254,170,169,0,191,159,135,192,31,255,255,255,192,62,31,130,0,191,255,255,255,64,40,31,128,7,255,192,0,254,0,0,31,128,47,255,240,3,252,0,0,31,128,63,211,252,31,244,0,0,31,128,14,0,255,191,208,0,0,31,128,0,0,127,255,64,0,0,31,128,0,0,127,255,64,0,0,31,128,0,31,255,255,249,0,0,31,128,27,255,254,127,255,249,0,31,128,127,255,224,7,255,253,0,31,128,63,249,0,0,111,248,0,31,128,30,64,0,0,0,176, + // 0x89d2 角 + 210,137,32,37,40,38,1,251,0,0,3,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,255,255,255,64,0,0,0,63,255,255,255,208,0,0,0,191,255,255,255,192,0,0,0,255,0,0,191,128,0,0,3,253,0,0,255,0,0,0,15,248,0,2,253,0,0,0,63,240,0,3,248,0,0,0,255,255,255,255,255,255,255,3,255,255,255,255,255,255,255,31,255,255,255,255,255,255,255,15,255,224,0,63,128,0,127,3,139,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,224,0,63,128,0,127,0,11,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,15,255,255,255,255,255,255,0,15,224,0,63,128,0,127,0,15,224,0,63,128,0,127,0,15,208,0,63,128,0,127,0,15,208,0,63,128,0,127,0,31,255,255,255,255,255,255,0,47,255,255,255,255,255,255,0,63,255,255,255,255,255,255,0,63,64,0,0,0,0,127,0,191,0,0,0,0,0,127,0,254,0,0,0,0,0,127,3,253,0,0,0,0,0,127,11,248,0,0,0,0,0,127,31,240,0,0,0,21,85,191,127,208,0,0,0,47,255,255,47,128,0,0,0,15,255,253,10,0,0,0,0,15,255,224,0,0,0,0,0,0,0,0, + // 0x8a08 計 + 8,138,36,36,68,38,1,252,0,0,0,0,0,0,253,0,0,7,255,255,240,0,0,254,0,0,7,255,255,244,0,0,254,0,0,7,255,255,244,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,127,255,255,254,0,0,254,0,0,127,255,255,254,0,0,254,0,0,127,255,255,254,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,11,255,255,240,0,0,254,0,0,11,255,255,241,255,255,255,255,255,10,170,170,161,255,255,255,255,255,0,0,0,1,255,255,255,255,255,0,0,0,0,85,85,255,85,85,11,255,255,240,0,0,254,0,0,11,255,255,240,0,0,254,0,0,11,255,255,240,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,11,255,255,240,0,0,254,0,0,15,255,255,240,0,0,254,0,0,15,255,255,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,208,3,240,0,0,254,0,0,15,255,255,240,0,0,254,0,0,15,255,255,240,0,0,254,0,0,15,255,255,240,0,0,254,0,0,15,208,0,0,0,0,254,0,0,5,64,0,0,0,0,254,0,0, + // 0x8a0a 訊 + 10,138,37,36,104,38,1,251,7,255,255,192,0,0,0,0,0,0,11,255,255,211,255,255,255,254,0,0,11,255,255,211,255,255,255,254,0,0,0,0,0,3,255,255,255,254,0,0,0,0,0,1,87,253,85,254,0,0,127,255,255,248,2,248,0,254,0,0,127,255,255,248,2,248,0,254,0,0,127,255,255,248,2,248,0,254,0,0,0,0,0,0,2,248,0,254,0,0,0,0,0,0,2,248,0,254,0,0,0,0,0,0,2,248,0,254,0,0,11,255,255,208,2,248,0,254,0,0,11,255,255,208,2,248,0,254,0,0,10,170,170,144,2,248,0,254,0,0,0,0,0,7,255,255,252,254,0,0,0,0,0,7,255,255,252,254,0,0,11,255,255,215,255,255,252,254,0,0,11,255,255,209,87,249,84,254,0,0,11,255,255,208,3,244,0,254,0,0,0,0,0,0,3,244,0,254,0,0,0,0,0,0,3,240,0,254,0,0,11,255,255,208,7,240,0,190,0,0,15,255,255,208,11,240,0,191,0,0,15,255,255,208,15,224,0,191,0,0,15,208,11,208,15,208,0,127,0,0,15,208,11,208,47,192,0,127,0,0,15,208,11,208,63,192,0,63,8,0,15,208,11,208,127,128,0,63,79,0,15,208,11,208,255,0,0,63,79,64,15,208,11,210,254,0,0,47,143,0,15,255,255,215,252,0,0,31,223,0,15,255,255,239,244,0,0,15,255,0,15,255,255,255,240,0,0,15,254,0,15,208,0,11,192,0,0,3,252,0,5,64,0,2,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x8a18 記 + 24,138,36,35,59,38,1,252,7,255,255,244,0,0,0,0,0,7,255,255,244,47,255,255,255,224,7,255,255,244,47,255,255,255,224,0,0,0,0,47,255,255,255,224,0,0,0,0,21,85,85,95,224,127,255,255,254,0,0,0,15,224,127,255,255,254,0,0,0,15,224,127,255,255,254,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,11,255,255,240,0,0,0,15,224,11,255,255,240,0,0,0,15,224,10,170,170,160,5,85,85,95,224,0,0,0,0,31,255,255,255,224,0,0,0,0,31,255,255,255,224,11,255,255,240,31,255,255,255,224,11,255,255,240,31,192,0,15,224,11,255,255,240,31,192,0,15,224,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,11,255,255,240,31,192,0,0,0,15,255,255,240,31,192,0,0,0,15,255,255,240,31,192,0,0,0,15,208,3,240,31,192,0,0,0,15,208,3,240,31,192,0,0,144,15,208,3,240,31,192,0,0,253,15,208,3,240,31,192,0,0,253,15,208,3,240,31,192,0,0,253,15,208,3,240,31,192,0,0,252,15,255,255,240,31,224,0,3,252,15,255,255,240,15,255,255,255,248,15,255,255,240,11,255,255,255,240,15,208,0,0,2,255,255,255,208,5,64,0,0,0,21,85,84,0, + // 0x8a2d 設 + 45,138,36,35,59,38,1,252,7,255,255,208,31,255,255,240,0,11,255,255,224,31,255,255,240,0,11,255,255,224,31,255,255,240,0,0,0,0,0,31,192,11,240,0,0,0,0,0,31,192,7,240,0,127,255,255,252,31,192,7,240,0,127,255,255,252,31,192,7,240,0,127,255,255,252,47,192,7,240,120,0,0,0,0,63,128,7,240,126,0,0,0,0,127,64,7,240,126,0,0,0,0,255,0,7,240,189,11,255,255,225,253,0,7,255,252,11,255,255,231,252,0,3,255,252,10,170,170,171,244,0,1,255,240,0,0,0,2,208,0,0,0,0,0,0,0,0,64,0,0,0,0,11,255,255,226,255,255,255,255,208,11,255,255,226,255,255,255,255,192,11,255,255,226,255,255,255,255,192,0,0,0,0,6,128,0,63,128,0,0,0,0,47,192,0,191,0,11,255,255,224,15,224,1,254,0,15,255,255,224,7,244,3,252,0,15,255,255,224,3,252,11,248,0,15,208,7,224,1,255,31,240,0,15,208,7,224,0,191,255,208,0,15,208,7,224,0,63,255,128,0,15,208,7,224,0,15,255,0,0,15,208,7,224,0,63,255,64,0,15,208,7,224,2,255,255,240,0,15,255,255,224,47,255,191,254,64,15,255,255,231,255,252,11,255,248,15,255,255,239,255,208,0,255,252,15,208,0,3,253,0,0,27,244,5,64,0,2,128,0,0,0,160, + // 0x8a66 試 + 102,138,36,37,77,38,1,251,0,0,0,0,0,0,15,209,0,11,255,255,128,0,0,15,223,192,11,255,255,192,0,0,15,219,240,11,255,255,192,0,0,15,211,248,0,0,0,0,0,0,15,208,252,0,0,0,0,0,0,15,208,188,127,255,255,240,0,0,15,208,16,127,255,255,240,0,0,15,208,0,127,255,255,247,255,255,255,255,252,106,170,170,167,255,255,255,255,252,0,0,0,7,255,255,255,255,252,0,0,0,0,0,0,15,208,0,15,255,255,192,0,0,15,208,0,15,255,255,192,0,0,15,208,0,10,170,170,128,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,7,255,255,203,224,0,15,255,255,199,255,255,203,224,0,15,255,255,199,255,255,203,224,0,11,255,255,192,11,224,11,224,0,0,0,0,0,11,224,7,224,0,0,0,0,0,11,224,7,240,0,11,255,255,192,11,224,7,240,0,15,255,255,192,11,224,3,240,0,15,255,255,192,11,224,3,240,0,15,192,15,192,11,224,3,240,0,15,192,15,192,11,224,3,244,0,15,192,15,192,11,224,2,248,36,15,192,15,192,11,230,242,252,46,15,192,15,192,31,255,241,252,47,15,192,15,207,255,255,240,253,63,15,255,255,203,255,254,64,255,190,15,255,255,199,249,0,0,127,253,15,255,255,193,0,0,0,63,252,15,192,0,0,0,0,0,31,244,5,64,0,0,0,0,0,7,224,0,0,0,0,0,0,0,0,0, + // 0x8a8d 認 + 141,138,36,35,59,38,1,252,11,255,255,128,0,0,0,0,0,11,255,255,192,255,255,255,255,240,11,255,255,192,255,255,255,255,240,0,0,0,0,255,255,255,255,240,0,0,0,0,0,15,192,3,240,127,255,255,240,16,31,128,7,240,127,255,255,240,189,47,64,7,240,127,255,255,241,255,255,64,7,240,0,0,0,0,127,255,64,7,240,0,0,0,0,6,255,240,11,240,0,0,0,0,1,255,254,11,224,15,255,255,192,3,254,254,15,224,15,255,255,192,15,240,124,15,208,10,170,170,128,63,208,4,31,208,0,0,0,1,255,128,63,255,192,0,0,0,11,254,0,31,255,128,15,255,255,195,244,13,31,253,0,15,255,255,192,128,63,128,0,0,11,255,255,192,0,63,244,0,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,1,255,128,0,11,255,255,192,0,84,63,128,0,15,255,255,192,65,252,14,2,0,15,255,255,192,249,252,0,47,64,15,192,15,193,249,252,0,47,192,15,192,15,194,245,252,0,15,224,15,192,15,195,241,252,0,11,240,15,192,15,195,241,252,0,3,248,15,192,15,199,241,252,0,226,252,15,192,15,207,209,252,0,252,253,15,255,255,223,193,252,1,248,254,15,255,255,223,129,252,2,248,191,15,255,255,194,0,255,255,244,116,15,192,0,0,0,255,255,240,0,5,64,0,0,0,47,255,192,0, + // 0x8aa4 誤 + 164,138,36,35,59,38,1,252,7,255,255,64,0,63,255,255,224,11,255,255,64,0,63,255,255,224,11,255,255,64,0,63,255,255,224,0,0,0,2,248,63,64,11,224,0,0,0,2,248,63,64,11,224,127,255,255,210,248,63,64,11,224,127,255,255,226,248,63,64,11,224,127,255,255,226,248,63,64,11,224,0,0,0,2,248,63,64,11,224,0,0,0,2,248,63,255,255,224,0,0,0,2,248,63,255,255,224,15,255,255,66,248,63,255,255,224,15,255,255,66,248,0,0,0,0,10,170,170,66,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,255,255,255,255,128,15,255,255,66,255,255,255,255,128,15,255,255,66,255,255,255,255,128,11,255,255,66,248,0,0,63,128,0,0,0,0,80,0,0,63,128,0,0,0,0,0,0,0,63,128,15,255,255,64,0,0,0,63,128,15,255,255,79,255,255,255,255,254,15,255,255,79,255,255,255,255,254,15,192,31,79,255,255,255,255,254,15,192,31,64,0,64,0,16,0,15,192,31,64,3,240,1,244,0,15,192,31,64,11,252,3,253,0,15,192,31,64,31,240,1,255,0,15,192,31,64,127,208,0,127,192,15,255,255,65,255,128,0,47,240,15,255,255,75,254,0,0,15,248,15,255,255,111,248,0,0,3,253,15,192,0,15,208,0,0,1,253,5,64,0,2,0,0,0,0,144, + // 0x8abf 調 + 191,138,35,36,68,38,1,251,11,255,254,0,0,0,0,0,0,11,255,255,7,255,255,255,255,244,11,255,255,7,255,255,255,255,244,0,0,0,7,255,255,255,255,244,0,0,0,7,224,2,144,3,244,127,255,255,135,224,3,224,3,244,127,255,255,199,224,3,224,3,244,127,255,255,199,225,171,250,131,244,0,0,0,7,226,255,255,211,244,0,0,0,7,226,255,255,211,244,0,0,0,7,224,3,224,3,244,15,255,255,7,224,3,224,3,244,15,255,255,7,224,3,224,3,244,10,170,170,7,226,171,250,147,244,0,0,0,7,227,255,255,227,244,0,0,0,7,227,255,255,227,244,15,255,255,11,224,0,0,3,244,15,255,255,11,224,0,0,3,244,11,255,254,11,225,170,170,131,244,0,0,0,11,225,255,255,195,244,0,0,0,11,225,255,255,195,244,15,255,254,11,209,240,11,195,244,15,255,255,15,209,240,11,195,244,15,255,255,15,209,240,11,195,244,15,192,63,15,193,240,11,195,244,15,192,63,15,193,240,11,195,244,15,192,63,31,193,255,255,195,244,15,192,63,47,129,255,255,195,244,15,192,63,63,65,250,170,131,244,15,192,63,63,65,240,0,3,244,15,255,255,127,0,0,0,3,244,15,255,255,254,0,0,5,91,244,15,255,255,253,0,0,11,255,240,15,192,0,252,0,0,7,255,224,5,64,0,40,0,0,3,255,64,0,0,0,0,0,0,0,0,0, + // 0x8acb 請 + 203,138,36,36,68,38,1,252,0,0,0,0,0,2,248,0,0,7,255,255,192,0,3,248,0,0,11,255,255,209,170,171,254,170,164,11,255,255,209,255,255,255,255,248,0,0,0,1,255,255,255,255,248,0,0,0,0,0,3,248,0,0,127,255,255,248,0,3,248,0,0,127,255,255,248,127,255,255,255,240,127,255,255,248,127,255,255,255,240,0,0,0,0,21,87,253,85,80,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,11,255,255,215,255,255,255,255,253,11,255,255,215,255,255,255,255,253,10,170,170,146,170,170,170,170,168,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,128,11,255,255,208,47,255,255,255,192,11,255,255,208,47,255,255,255,192,11,255,255,208,47,128,0,15,192,0,0,0,0,47,128,0,15,192,0,0,0,0,47,213,85,95,192,11,255,255,208,47,255,255,255,192,15,255,255,208,47,255,255,255,192,15,255,255,208,47,128,0,15,192,15,208,11,208,47,128,0,15,192,15,208,11,208,47,255,255,255,192,15,208,11,208,47,255,255,255,192,15,208,11,208,47,213,85,111,192,15,208,11,208,47,128,0,15,192,15,208,11,208,47,128,0,15,192,15,255,255,208,47,128,0,15,192,15,255,255,208,47,128,0,31,192,15,255,255,208,47,128,15,255,192,15,208,0,0,47,128,15,255,128,5,64,0,0,47,128,7,249,0, + // 0x8b70 議 + 112,139,36,36,68,38,1,252,0,0,0,0,9,0,0,100,0,11,255,254,0,63,0,0,254,0,11,255,255,0,31,192,1,252,0,11,255,255,0,15,208,3,240,0,0,0,0,15,255,255,255,255,244,0,0,0,15,255,255,255,255,244,127,255,255,134,170,175,250,170,160,127,255,255,192,0,11,224,0,0,127,255,255,192,85,95,229,85,64,0,0,0,3,255,255,255,255,192,0,0,0,3,255,255,255,255,192,0,0,0,0,0,11,224,0,0,15,255,255,0,0,11,224,0,0,15,255,255,63,255,255,255,255,252,10,170,170,63,255,255,255,255,252,0,0,0,42,170,170,170,170,168,0,0,0,0,0,24,42,4,0,15,255,255,1,111,255,127,47,0,15,255,255,47,255,249,63,47,208,11,255,254,31,255,192,63,7,244,0,0,0,0,15,192,63,1,244,0,0,0,0,15,192,63,0,64,15,255,254,127,255,255,255,255,252,15,255,255,127,255,255,255,255,252,15,255,255,42,175,234,191,170,168,15,192,63,0,15,192,47,66,0,15,192,63,0,15,214,95,139,208,15,192,63,22,191,255,143,223,192,15,192,63,127,255,255,143,255,64,15,192,63,127,255,212,11,253,0,15,192,63,37,31,192,11,244,20,15,255,255,0,15,192,47,240,46,15,255,255,0,15,194,255,252,61,15,255,254,10,175,207,248,255,252,15,192,0,15,255,135,128,127,248,5,64,0,7,254,0,0,11,224, + // 0x8b80 讀 + 128,139,36,36,68,38,1,252,0,0,0,0,0,11,224,0,0,11,255,254,0,0,11,240,0,0,11,255,255,15,255,255,255,255,252,11,255,255,15,255,255,255,255,252,0,0,0,5,85,95,245,85,84,0,0,0,0,0,11,240,0,0,106,170,170,131,255,255,255,255,240,127,255,255,195,255,255,255,255,240,127,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,248,0,0,0,15,255,255,255,255,248,15,255,255,15,193,188,62,1,248,15,255,255,15,255,240,47,255,248,10,170,170,15,222,64,5,86,248,0,0,0,15,192,0,0,1,248,0,0,0,15,255,255,255,255,248,15,255,255,15,255,255,255,255,248,15,255,255,0,0,0,0,0,0,11,255,254,2,255,255,255,255,224,0,0,0,2,255,255,255,255,224,0,0,0,2,244,0,0,11,224,15,255,254,2,255,255,255,255,224,15,255,255,2,250,170,170,175,224,15,255,255,2,244,0,0,11,224,15,192,63,2,255,255,255,255,224,15,192,63,2,249,85,85,95,224,15,192,63,2,244,0,0,11,224,15,192,63,2,255,255,255,255,224,15,192,63,2,255,255,255,255,224,15,192,63,0,7,192,3,224,0,15,255,255,0,47,240,15,253,0,15,255,255,7,255,208,2,255,208,15,255,254,191,254,0,0,47,253,15,192,0,63,224,0,0,7,248,5,64,0,9,0,0,0,0,144, + // 0x8b8a 變 + 138,139,35,37,77,38,2,251,0,100,0,0,0,0,14,64,0,0,252,0,127,255,192,31,64,0,1,244,0,127,255,192,62,0,0,3,240,64,0,0,1,252,46,0,63,195,243,255,255,255,240,127,0,127,71,227,255,255,255,241,252,0,31,223,192,0,0,7,255,240,0,7,255,0,0,0,0,255,208,0,1,252,96,127,255,192,63,110,0,3,241,244,127,255,192,126,31,64,95,229,252,0,0,22,253,95,192,255,255,254,127,255,239,255,255,240,255,255,255,191,255,223,255,255,244,0,125,9,0,0,0,15,192,224,0,125,0,0,0,0,15,193,0,46,125,244,191,255,195,207,207,64,63,125,188,191,255,199,207,207,192,62,125,61,188,7,203,207,199,208,188,125,62,188,7,223,143,195,240,252,125,4,191,255,255,15,193,240,180,125,15,255,255,218,15,192,208,16,125,47,208,0,0,15,192,0,0,0,191,128,0,0,0,0,0,0,2,255,255,255,255,255,255,192,0,15,255,255,255,255,255,255,192,0,191,255,255,255,255,255,255,192,7,255,253,0,0,31,244,0,0,127,253,255,128,0,191,208,0,0,47,208,47,248,7,255,64,0,0,10,0,7,255,255,252,0,0,0,0,0,0,191,255,224,0,0,0,0,0,91,255,255,255,144,0,0,5,175,255,255,175,255,255,233,64,255,255,255,228,1,191,255,255,240,191,255,228,0,0,1,191,255,224,62,144,0,0,0,0,0,91,192,0,0,0,0,0,0,0,0,0, + // 0x8cc7 資 + 199,140,34,36,68,38,2,252,0,0,0,0,164,0,0,0,0,7,144,0,1,252,0,0,0,0,15,254,0,3,248,0,0,0,0,15,255,244,11,255,255,255,255,192,0,191,248,31,255,255,255,255,192,0,6,240,127,170,255,170,191,64,0,0,18,255,1,255,0,190,0,0,0,1,252,3,255,129,252,0,0,0,100,32,11,255,209,180,0,0,111,248,0,47,235,248,0,0,111,255,248,2,255,130,255,128,0,255,255,145,191,254,0,191,254,64,191,228,1,255,224,0,31,255,240,57,0,0,249,0,0,1,255,192,0,63,255,255,255,255,255,230,128,0,63,255,255,255,255,255,224,0,0,63,64,0,0,0,15,224,0,0,63,64,0,0,0,15,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,64,0,0,0,15,224,0,0,63,64,0,0,0,15,224,0,0,63,64,0,0,0,15,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,64,0,0,0,15,224,0,0,63,64,0,0,0,15,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,0,26,64,0,25,64,0,0,0,0,127,208,0,63,208,0,0,0,27,255,208,0,191,254,64,0,11,255,253,0,0,7,255,244,0,191,255,208,0,0,0,111,255,128,47,249,0,0,0,0,2,255,208,10,64,0,0,0,0,0,40,0, + // 0x8ddd 距 + 221,141,36,35,59,38,1,252,0,0,0,0,5,85,85,85,84,11,255,255,252,31,255,255,255,252,11,255,255,252,31,255,255,255,252,11,255,255,252,31,255,255,255,252,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,208,0,252,31,192,0,0,0,11,224,0,252,31,213,85,85,64,11,255,255,252,31,255,255,255,208,11,255,255,252,31,255,255,255,208,11,255,255,252,31,255,255,255,208,0,1,248,0,31,192,0,15,208,0,1,248,0,31,192,0,15,208,0,1,248,0,31,192,0,15,208,11,193,248,0,31,192,0,15,208,11,193,248,0,31,192,0,15,208,11,193,255,255,31,192,0,15,208,11,193,255,255,31,192,0,15,208,11,193,255,255,31,213,85,95,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,255,255,255,208,11,193,248,0,31,192,0,0,0,11,193,248,0,31,192,0,0,0,11,193,248,6,31,192,0,0,0,11,193,254,255,31,192,0,0,0,11,219,255,255,95,192,0,0,0,47,255,255,254,31,213,85,85,84,191,255,254,64,31,255,255,255,253,127,254,64,0,31,255,255,255,253,58,64,0,0,31,255,255,255,253,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0, + // 0x8eca 車 + 202,142,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,252,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,170,171,254,170,175,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,252,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0, + // 0x8edf 軟 + 223,142,36,36,68,38,1,252,0,1,252,0,0,122,0,0,0,0,1,252,0,0,127,0,0,0,0,1,252,0,0,191,0,0,0,0,1,252,0,0,254,0,0,0,63,255,255,255,208,253,0,0,0,63,255,255,255,208,253,0,0,0,63,255,255,255,209,252,0,0,0,0,1,252,0,2,255,255,255,248,0,1,252,0,3,255,255,255,252,0,1,252,0,3,255,255,255,248,15,255,255,255,203,240,254,3,248,15,255,255,255,207,224,253,3,244,15,234,254,175,223,208,253,3,240,15,128,248,15,239,192,253,7,240,15,128,248,15,255,128,253,7,224,15,149,249,95,255,0,253,11,208,15,255,255,255,254,0,253,15,192,15,255,255,255,204,0,253,15,192,15,128,248,15,192,0,254,0,64,15,128,248,15,192,0,254,0,0,15,128,248,15,192,1,255,0,0,15,255,255,255,192,2,255,0,0,15,255,255,255,192,3,255,64,0,10,171,254,170,64,7,255,192,0,0,1,252,0,0,15,223,192,0,0,1,252,0,0,31,203,224,0,127,255,255,255,240,63,131,240,0,127,255,255,255,240,191,3,252,0,127,255,255,255,241,254,1,253,0,0,1,252,0,3,252,0,255,64,0,1,252,0,15,244,0,63,208,0,1,252,0,127,224,0,47,244,0,1,252,2,255,192,0,15,254,0,1,252,3,254,0,0,3,253,0,1,252,0,248,0,0,0,248,0,1,248,0,80,0,0,0,32, + // 0x8ef8 軸 + 248,142,35,37,77,38,1,251,0,2,244,0,0,0,189,0,0,0,3,244,0,0,0,253,0,0,0,3,244,0,0,0,253,0,0,0,3,244,0,0,0,253,0,0,63,255,255,255,128,0,253,0,0,63,255,255,255,128,0,253,0,0,63,255,255,255,128,0,253,0,0,0,3,244,0,0,0,253,0,0,0,3,244,0,0,0,254,0,0,0,3,244,0,31,255,255,255,244,15,255,255,255,31,255,255,255,244,15,255,255,255,31,255,255,255,244,15,235,250,191,31,192,189,3,244,15,65,240,63,31,192,189,3,244,15,65,240,63,31,192,189,3,244,15,150,245,127,31,192,189,3,244,15,255,255,255,31,192,189,3,244,15,255,255,255,31,192,189,3,244,15,65,240,63,31,192,189,3,244,15,65,240,63,31,255,255,255,244,15,65,240,63,31,255,255,255,244,15,255,255,255,31,255,255,255,244,15,255,255,255,31,192,189,3,244,10,171,250,170,31,192,189,3,244,0,3,244,0,31,192,189,3,244,0,3,244,0,31,192,189,3,244,127,255,255,255,223,192,189,3,244,127,255,255,255,223,192,189,3,244,127,255,255,255,223,192,189,3,244,0,3,244,0,31,192,189,3,244,0,3,244,0,31,192,189,3,244,0,3,244,0,31,255,255,255,244,0,3,244,0,31,255,255,255,244,0,3,244,0,31,255,255,255,244,0,3,244,0,31,192,0,3,244,0,2,244,0,31,192,0,2,244,0,0,0,0,0,0,0,0,0, + // 0x8f09 載 + 9,143,35,36,68,38,2,252,0,0,190,0,0,190,0,0,0,0,0,190,0,0,254,7,208,0,0,0,190,0,0,254,15,244,0,15,255,255,255,240,254,3,253,0,15,255,255,255,240,254,0,255,64,15,255,255,255,240,254,0,127,192,0,0,190,0,0,254,0,47,64,0,0,190,0,0,190,0,13,0,0,0,190,0,0,190,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,190,0,0,127,0,0,0,0,0,190,0,0,127,0,0,0,63,255,255,255,252,127,0,62,64,63,255,255,255,252,63,0,127,0,26,170,255,170,164,63,64,191,0,0,0,190,0,0,63,64,253,0,15,255,255,255,240,63,129,252,0,15,255,255,255,240,63,131,248,0,15,128,125,2,240,47,199,244,0,15,128,125,2,240,47,207,240,0,15,255,255,255,240,31,239,208,0,15,255,255,255,240,15,255,192,0,15,128,125,2,240,15,255,0,0,15,128,125,2,240,11,254,0,0,15,255,255,255,240,11,252,1,64,15,255,255,255,240,15,248,1,224,0,0,190,0,0,63,248,1,244,106,170,255,170,168,255,252,2,244,127,255,255,255,255,255,254,2,244,127,255,255,255,255,252,191,67,240,0,0,190,0,191,240,63,235,240,0,0,190,0,255,192,31,255,224,0,0,190,0,62,0,11,255,192,0,0,189,0,20,0,1,190,0, + // 0x8f2f 輯 + 47,143,36,36,68,38,1,252,0,2,244,0,0,0,0,0,0,0,3,244,0,2,170,170,170,144,0,3,244,0,3,255,255,255,224,0,3,244,0,3,255,255,255,224,63,255,255,255,131,240,0,15,224,63,255,255,255,131,240,0,15,224,63,255,255,255,131,240,0,15,224,0,3,244,0,3,255,255,255,224,0,3,244,0,3,255,255,255,224,0,3,244,0,2,170,170,170,144,15,255,255,255,0,0,0,0,0,15,255,255,255,0,0,0,0,0,15,235,250,191,127,255,255,255,253,15,65,240,63,127,255,255,255,253,15,65,240,63,63,255,255,255,253,15,150,245,127,3,244,0,15,208,15,255,255,255,3,244,0,15,208,15,255,255,255,3,250,170,175,208,15,65,240,63,3,255,255,255,208,15,65,240,63,3,255,255,255,208,15,65,240,63,3,244,0,15,208,15,255,255,255,3,244,0,15,208,15,255,255,255,3,244,0,15,208,10,171,250,170,3,255,255,255,208,0,3,244,0,3,255,255,255,208,0,3,244,0,3,250,170,175,208,127,255,255,255,195,244,0,15,208,127,255,255,255,195,244,0,15,208,127,255,255,255,195,249,171,255,253,0,3,244,1,255,255,255,255,253,0,3,244,0,255,255,255,255,253,0,3,244,0,255,250,148,15,208,0,3,244,0,0,0,0,15,208,0,3,244,0,0,0,0,15,208,0,3,244,0,0,0,0,15,208,0,2,244,0,0,0,0,15,208, + // 0x8f38 輸 + 56,143,36,36,68,38,1,252,0,11,224,0,0,1,168,0,0,0,11,224,0,0,3,254,0,0,0,11,224,0,0,11,255,0,0,0,11,224,0,0,31,255,192,0,63,255,255,253,0,63,143,240,0,63,255,255,253,0,255,7,248,0,63,255,255,253,3,253,2,254,0,0,11,224,0,15,248,0,255,128,0,11,224,0,63,240,0,63,240,0,11,224,0,255,192,0,15,253,31,255,255,255,255,255,255,251,255,31,255,255,251,252,255,255,244,253,31,171,234,248,224,255,255,244,40,31,3,192,248,0,0,0,0,0,31,3,192,248,0,0,0,0,80,31,87,229,248,106,170,64,1,244,31,255,255,248,191,255,194,129,244,31,255,255,248,191,255,199,193,244,31,3,192,248,188,11,199,193,244,31,3,192,248,188,11,199,193,244,31,3,192,248,189,95,199,193,244,31,255,255,248,191,255,199,193,244,31,255,255,248,191,255,199,193,244,26,175,250,164,188,11,199,193,244,0,11,224,0,188,11,199,193,244,0,11,224,0,188,11,199,193,244,127,255,255,253,191,255,199,193,244,127,255,255,253,191,255,199,193,244,127,255,255,253,190,175,199,193,244,0,11,224,0,188,11,199,193,244,0,11,224,0,188,11,192,1,244,0,11,224,0,188,11,192,1,244,0,11,224,0,188,11,192,1,244,0,11,224,0,188,31,192,255,244,0,11,224,0,188,127,128,191,240,0,7,208,0,188,62,0,105,64, + // 0x8f49 轉 + 73,143,36,36,68,38,1,252,0,3,240,0,0,0,252,0,0,0,3,240,0,0,0,252,0,0,0,3,240,0,0,0,252,0,0,0,3,240,0,191,255,255,255,252,63,255,255,254,191,255,255,255,252,63,255,255,254,106,170,254,170,168,63,255,255,254,0,0,252,0,0,0,3,240,0,63,255,255,255,240,0,3,240,0,63,255,255,255,240,0,3,240,0,63,0,252,3,240,15,255,255,253,63,0,252,3,240,15,255,255,253,63,255,255,255,240,15,171,250,189,63,255,255,255,240,15,66,224,125,63,0,252,3,240,15,66,224,125,63,0,252,3,240,15,151,245,189,63,0,252,3,240,15,255,255,253,63,255,255,255,240,15,255,255,253,63,255,255,255,240,15,66,224,125,0,0,252,31,64,15,66,224,125,0,0,253,95,208,15,66,224,125,255,255,255,255,244,15,255,255,253,255,255,255,255,252,15,255,255,253,170,170,86,253,189,10,171,250,168,0,0,1,252,32,0,3,240,0,170,170,171,254,169,0,3,240,0,255,255,255,255,253,191,255,255,255,255,255,255,255,253,191,255,255,255,1,192,1,252,0,191,255,255,255,11,240,1,252,0,0,3,240,0,3,252,1,252,0,0,3,240,0,1,253,1,252,0,0,3,240,0,0,191,1,252,0,0,3,240,0,0,60,1,252,0,0,3,240,0,0,2,255,252,0,0,3,240,0,0,1,255,248,0,0,3,240,0,0,0,255,144,0, + // 0x8fd1 近 + 209,143,36,36,68,38,1,252,0,0,0,0,0,0,0,40,0,2,64,0,0,0,0,27,254,0,15,224,0,0,0,111,255,255,192,31,252,0,7,255,255,255,249,0,3,255,0,7,255,255,249,0,0,0,255,192,7,255,164,0,0,0,0,63,240,7,240,0,0,0,0,0,15,224,7,240,0,0,0,0,0,3,64,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,252,0,0,0,7,255,255,255,255,252,0,0,0,7,255,255,255,255,252,0,0,0,11,245,85,127,149,84,63,255,208,11,240,0,63,64,0,63,255,208,15,224,0,63,64,0,63,255,208,15,224,0,63,64,0,21,95,208,15,208,0,63,64,0,0,15,208,31,192,0,63,64,0,0,15,208,47,192,0,63,64,0,0,15,208,63,128,0,63,64,0,0,15,208,127,64,0,63,64,0,0,15,208,255,0,0,63,64,0,0,15,209,254,0,0,63,64,0,0,15,211,252,0,0,63,64,0,0,15,219,244,0,0,63,64,0,0,31,210,240,0,0,63,64,0,0,127,240,128,0,0,63,64,0,2,255,253,0,0,0,63,64,0,15,255,255,144,0,0,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,36,35,59,38,1,252,2,64,0,0,0,0,0,0,0,15,208,0,31,255,255,255,255,240,31,248,0,31,255,255,255,255,240,7,254,0,31,255,255,255,255,240,1,255,128,31,213,85,85,85,80,0,127,208,31,192,0,0,0,0,0,31,224,31,192,0,0,0,0,0,11,64,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,47,255,255,255,255,128,0,0,0,47,255,255,255,255,128,0,0,0,47,255,255,255,255,64,0,0,0,47,239,192,0,191,0,0,0,0,47,207,208,0,254,0,63,255,192,47,139,240,1,253,0,63,255,192,63,135,244,3,252,0,63,255,192,63,131,252,11,244,0,21,111,192,63,65,254,31,240,0,0,47,192,127,0,191,127,208,0,0,47,192,191,0,63,255,128,0,0,47,192,255,0,31,255,0,0,0,47,192,253,0,15,253,0,0,0,47,193,252,0,63,255,64,0,0,47,195,252,1,255,255,240,0,0,47,199,244,27,255,127,254,0,0,47,207,241,255,252,11,255,228,0,47,203,210,255,224,1,255,252,0,127,241,192,255,0,0,47,244,2,255,252,0,52,0,0,1,224,15,255,255,128,0,0,0,0,0,127,244,191,254,149,85,85,85,105,127,208,47,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,27,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,36,34,50,38,1,252,3,208,0,15,255,255,255,254,0,15,248,0,15,255,255,255,254,0,7,255,0,15,255,255,255,254,0,0,255,192,15,224,0,0,190,0,0,47,240,15,224,0,0,190,0,0,11,240,15,250,170,170,254,0,0,3,128,15,255,255,255,254,0,0,0,0,15,255,255,255,254,0,0,0,0,15,224,0,0,190,0,0,0,0,15,224,0,0,190,0,0,0,0,15,224,0,0,190,0,0,0,0,15,255,255,255,254,0,0,0,0,15,255,255,255,254,0,63,255,208,15,255,255,255,255,0,63,255,208,15,224,31,192,3,192,63,255,208,15,224,15,208,31,244,21,95,208,15,224,11,240,191,224,0,15,208,15,224,3,247,255,64,0,15,208,15,224,3,255,248,0,0,15,208,15,224,0,255,208,0,0,15,208,15,224,0,191,128,0,0,15,208,15,224,6,127,224,0,0,15,208,15,230,255,95,252,0,0,15,208,31,255,255,135,255,128,0,15,209,255,255,254,65,255,248,0,31,208,255,255,144,0,127,248,0,127,240,255,144,0,0,11,240,2,255,253,80,0,0,0,0,128,15,255,255,144,0,0,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,36,36,68,38,1,252,0,0,0,0,0,63,64,0,0,2,64,0,0,0,63,64,0,0,15,224,0,0,0,63,64,0,0,31,248,0,0,0,63,64,0,0,7,255,3,255,255,255,255,255,248,1,255,195,255,255,255,255,255,248,0,63,243,255,255,255,255,255,248,0,15,240,0,0,63,64,0,0,0,7,128,0,0,63,64,0,0,0,1,0,0,0,63,64,0,0,0,0,0,127,255,255,255,255,192,0,0,0,127,255,255,255,255,192,0,0,0,127,170,255,234,191,192,0,0,0,127,0,63,64,15,192,0,0,0,127,0,63,64,15,192,63,255,208,127,0,63,64,15,192,63,255,208,127,0,63,64,15,192,63,255,208,127,255,255,255,255,192,21,95,208,127,255,255,255,255,192,0,15,208,127,255,255,255,255,192,0,15,208,0,7,255,244,0,0,0,15,208,0,31,255,253,0,0,0,15,208,0,127,191,255,128,0,0,15,208,1,255,63,95,240,0,0,15,208,11,252,63,71,253,0,0,15,208,127,240,63,65,255,192,0,15,211,255,192,63,64,127,248,0,31,211,254,0,63,64,31,240,0,127,240,244,0,63,64,2,208,2,255,253,0,0,63,64,0,0,15,255,255,144,0,21,0,0,0,127,248,127,254,149,85,85,85,169,127,224,31,255,255,255,255,255,252,63,64,2,255,255,255,255,255,252,28,0,0,26,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x9023 連 + 35,144,35,36,68,38,1,252,0,0,0,0,0,127,0,0,0,3,64,0,0,0,127,0,0,0,31,224,0,0,0,127,0,0,0,31,248,7,255,255,255,255,255,244,3,254,7,255,255,255,255,255,244,0,255,135,255,255,255,255,255,244,0,127,208,0,0,127,0,0,0,0,31,208,0,0,127,0,0,0,0,15,64,85,85,191,85,85,0,0,0,0,191,255,255,255,255,64,0,0,0,191,255,255,255,255,64,0,0,0,190,0,127,0,63,64,0,0,0,190,0,127,0,63,64,0,0,0,191,85,191,85,127,64,0,0,0,191,255,255,255,255,64,63,255,128,191,255,255,255,255,64,63,255,128,190,0,127,0,63,64,63,255,128,190,0,127,0,63,64,21,111,128,191,170,191,170,191,64,0,47,128,191,255,255,255,255,64,0,47,128,191,255,255,255,255,64,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,128,0,0,127,0,0,0,0,47,143,255,255,255,255,255,252,0,47,143,255,255,255,255,255,252,0,47,143,255,255,255,255,255,252,0,47,192,0,0,127,0,0,0,0,127,224,0,0,127,0,0,0,2,255,248,0,0,127,0,0,0,11,255,255,64,0,127,0,0,0,63,244,255,250,84,0,1,85,84,127,208,47,255,255,255,255,255,252,63,0,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x9032 進 + 50,144,35,36,68,38,1,252,0,0,0,0,80,0,16,0,0,2,64,0,0,255,0,127,64,0,15,208,0,2,253,0,191,0,0,47,244,0,3,252,0,254,0,0,11,253,0,11,248,1,253,0,0,1,255,64,15,240,3,252,0,0,0,127,192,63,255,255,255,255,240,0,47,208,191,255,255,255,255,240,0,15,65,255,255,255,255,255,240,0,0,7,255,192,7,240,0,0,0,0,31,255,192,7,240,0,0,0,0,127,255,192,7,240,0,0,0,0,191,255,255,255,255,255,192,0,0,47,47,255,255,255,255,192,0,0,8,47,255,255,255,255,192,63,255,128,47,192,7,240,0,0,63,255,128,47,192,7,240,0,0,63,255,128,47,192,7,240,0,0,21,111,128,47,192,7,240,0,0,0,47,128,47,255,255,255,255,192,0,47,128,47,255,255,255,255,192,0,47,128,47,255,255,255,255,192,0,47,128,47,192,7,240,0,0,0,47,128,47,192,7,240,0,0,0,47,128,47,192,7,240,0,0,0,47,128,47,255,255,255,255,248,0,47,128,47,255,255,255,255,248,0,47,192,47,255,255,255,255,248,0,127,224,0,0,0,0,0,0,2,255,248,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,63,244,255,250,84,0,1,85,84,127,208,47,255,255,255,255,255,252,63,0,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x904b 運 + 75,144,35,35,59,38,1,252,2,64,2,170,170,170,170,170,160,15,208,3,255,255,255,255,255,244,47,244,3,255,255,255,255,255,244,11,253,3,240,0,0,0,3,244,2,255,67,240,0,63,0,3,244,0,191,193,80,0,63,0,1,80,0,47,224,170,170,191,170,170,128,0,15,64,255,255,255,255,255,208,0,1,0,255,255,255,255,255,208,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,63,255,255,255,255,64,0,0,0,63,255,255,255,255,64,0,0,0,63,85,127,85,127,64,63,255,128,63,0,63,0,47,64,63,255,128,63,255,255,255,255,64,63,255,128,63,255,255,255,255,64,21,111,128,63,0,127,64,63,64,0,47,128,63,0,63,0,47,64,0,47,128,63,85,127,85,127,64,0,47,128,63,255,255,255,255,64,0,47,128,63,255,255,255,255,64,0,47,128,0,0,63,0,0,0,0,47,128,0,0,63,0,0,0,0,47,139,255,255,255,255,255,252,0,47,139,255,255,255,255,255,252,0,47,198,170,170,191,170,170,168,0,127,224,0,0,63,0,0,0,2,255,248,0,0,63,0,0,0,11,255,255,64,0,63,0,0,0,63,244,255,250,84,0,1,85,84,127,208,47,255,255,255,255,255,252,63,0,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x9054 達 + 84,144,35,36,68,38,1,252,0,0,0,0,0,63,0,0,0,2,0,0,0,0,63,0,0,0,15,192,0,0,0,63,0,0,0,47,244,0,63,255,255,255,255,64,11,253,0,63,255,255,255,255,64,2,255,64,42,170,191,170,170,0,0,191,192,0,0,63,0,0,0,0,47,224,0,0,63,0,0,0,0,15,75,255,255,255,255,255,252,0,1,11,255,255,255,255,255,252,0,0,6,171,250,170,175,250,168,0,0,0,3,248,0,15,240,0,0,0,0,1,252,0,15,208,0,0,0,0,0,254,0,47,192,0,0,0,2,170,254,170,191,170,164,63,255,131,255,255,255,255,255,244,63,255,131,255,255,255,255,255,244,63,255,128,0,0,63,0,0,0,21,111,128,0,0,63,0,0,0,0,47,128,106,170,191,170,170,128,0,47,128,127,255,255,255,255,192,0,47,128,127,255,255,255,255,192,0,47,128,0,0,63,0,0,0,0,47,128,0,0,63,0,0,0,0,47,130,170,170,191,170,170,164,0,47,131,255,255,255,255,255,248,0,47,131,255,255,255,255,255,248,0,47,192,0,0,63,0,0,0,0,127,208,0,0,63,0,0,0,1,255,244,0,0,63,0,0,0,11,255,255,64,0,0,0,0,0,63,244,255,250,84,0,1,85,84,127,208,47,255,255,255,255,255,252,63,0,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x9078 選 + 120,144,36,35,59,38,1,252,7,0,1,85,85,65,85,85,64,47,192,11,255,255,199,255,255,208,47,240,11,255,255,199,255,255,208,11,252,0,0,15,192,0,11,208,2,255,0,0,15,192,0,11,208,0,255,131,255,255,194,255,255,208,0,63,195,255,255,194,255,255,208,0,30,3,245,85,66,249,85,64,0,0,3,240,0,130,244,0,96,0,0,3,240,1,246,248,0,188,0,0,3,255,255,241,255,255,252,0,0,1,255,255,224,255,255,244,0,0,0,21,170,64,26,149,64,0,0,0,0,190,0,63,64,0,63,255,64,0,190,0,63,64,0,63,255,66,170,255,170,191,234,160,63,255,67,255,255,255,255,255,240,21,127,67,255,255,255,255,255,240,0,63,64,0,190,0,63,64,0,0,63,64,0,190,0,63,64,0,0,63,64,0,190,0,63,64,0,0,63,79,255,255,255,255,255,252,0,63,79,255,255,255,255,255,252,0,63,74,170,186,170,170,170,168,0,63,64,0,126,0,15,64,0,0,63,64,2,255,0,63,240,0,0,63,64,47,252,0,11,254,0,0,191,194,255,208,0,1,255,208,2,255,241,254,0,0,0,47,244,11,255,254,96,0,0,0,7,64,63,240,255,229,0,0,0,0,20,127,192,63,255,255,255,255,255,253,63,0,7,255,255,255,255,255,252,28,0,0,47,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x9084 還 + 132,144,35,35,59,38,1,252,3,64,1,255,255,255,255,255,192,31,224,1,255,255,255,255,255,192,31,248,1,252,31,129,248,15,192,7,254,1,248,15,128,248,15,192,1,255,65,248,15,128,248,15,192,0,191,193,248,15,128,248,15,192,0,47,225,255,255,255,255,255,192,0,15,129,255,255,255,255,255,192,0,5,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,84,0,0,15,255,255,255,255,255,252,0,0,15,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,128,63,255,255,255,255,0,63,255,128,63,255,255,255,255,0,63,255,128,63,0,0,0,191,0,21,111,128,63,0,0,0,191,0,0,47,128,63,255,255,255,255,0,0,47,128,63,255,255,255,255,64,0,47,128,0,7,255,0,31,224,0,47,128,0,31,255,192,127,192,0,47,128,0,255,255,245,254,0,0,47,128,11,254,255,255,244,0,0,47,129,255,244,254,191,224,0,0,47,139,255,192,254,31,255,64,0,47,195,253,0,254,2,255,248,0,127,224,208,0,254,0,111,240,2,255,248,0,0,254,0,1,192,11,255,255,64,0,169,0,0,0,63,244,255,250,84,0,1,85,84,127,208,47,255,255,255,255,255,252,63,0,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,244,0,0,0,0,0,0,0,0,0, + // 0x908a 邊 + 138,144,35,36,68,38,1,252,0,64,0,0,0,62,0,0,0,1,240,0,0,0,191,0,0,0,7,254,0,47,255,255,255,255,0,2,255,128,47,234,170,170,255,0,0,127,240,47,128,0,0,191,0,0,15,240,47,255,255,255,255,0,0,3,192,47,234,170,170,255,0,0,0,0,47,128,0,0,191,0,1,0,0,47,255,255,255,255,0,15,208,0,47,234,170,170,255,0,63,248,0,47,128,0,0,191,0,11,255,0,47,255,255,255,255,0,0,255,192,26,170,191,170,169,0,0,47,64,0,0,127,0,0,0,0,10,7,255,255,255,255,255,248,0,0,7,255,255,255,255,255,248,0,0,7,224,31,3,240,2,248,0,0,7,224,127,3,240,47,248,127,255,128,6,252,2,255,253,0,127,255,128,255,224,127,255,248,0,127,255,128,126,0,127,0,0,0,21,127,135,255,255,255,255,255,252,0,63,135,255,255,255,255,255,252,0,63,128,0,31,192,0,0,0,0,63,128,0,47,128,0,0,0,0,63,128,0,127,255,255,252,0,0,63,128,1,255,255,255,252,0,0,63,128,31,252,0,2,248,0,0,63,211,255,244,0,3,240,0,1,255,245,255,128,15,255,240,0,11,255,255,228,0,11,255,128,0,63,244,255,249,80,0,84,1,84,127,208,63,255,255,255,255,255,252,63,64,7,255,255,255,255,255,252,28,0,0,27,255,255,255,255,248,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,36,36,68,38,1,252,0,0,42,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,5,85,85,64,0,0,63,0,0,47,255,255,244,31,255,255,255,254,47,255,255,253,31,255,255,255,254,47,255,255,252,31,255,255,255,254,47,192,3,248,0,4,0,5,0,47,192,11,240,0,252,0,15,208,47,192,15,224,0,253,0,15,192,47,192,31,208,0,190,0,31,192,47,192,47,192,0,127,0,63,64,47,192,63,64,0,63,0,63,0,47,192,127,0,0,63,64,126,0,47,192,254,0,0,37,0,25,0,47,193,252,0,127,255,255,255,255,47,194,252,0,127,255,255,255,255,47,194,253,0,127,255,255,255,255,47,192,191,0,0,0,0,0,0,47,192,47,192,0,0,0,0,0,47,192,15,224,0,0,0,0,0,47,192,7,240,3,255,255,255,240,47,192,3,244,3,255,255,255,240,47,192,2,248,3,255,255,255,240,47,192,2,252,3,244,0,7,240,47,192,2,252,3,244,0,7,240,47,192,2,252,3,244,0,7,240,47,192,3,252,3,244,0,7,240,47,193,111,248,3,244,0,7,240,47,195,255,240,3,244,0,7,240,47,195,255,224,3,244,0,7,240,47,194,254,64,3,255,255,255,240,47,192,0,0,3,255,255,255,240,47,192,0,0,3,255,255,255,240,47,192,0,0,3,244,0,7,240,47,192,0,0,3,244,0,3,240,31,192,0,0, + // 0x91cb 釋 + 203,145,36,36,68,38,1,252,0,0,0,64,0,0,0,0,0,0,0,27,240,85,85,85,85,80,1,111,255,248,255,255,255,255,240,63,255,255,224,255,255,255,255,240,63,255,240,0,252,46,11,130,240,21,7,224,0,252,46,11,130,240,6,7,224,188,252,46,11,130,240,31,71,224,252,252,46,11,130,240,15,135,224,252,255,255,255,255,240,15,199,225,244,255,255,255,255,240,11,199,226,240,85,87,253,85,80,7,215,227,224,0,2,248,0,0,3,215,231,208,21,87,253,85,64,1,7,224,128,63,255,255,255,192,127,255,255,253,63,255,255,255,192,127,255,255,253,0,2,248,0,0,127,255,255,253,0,2,248,0,0,0,31,224,3,255,255,255,255,253,0,47,240,3,255,255,255,255,253,0,63,248,1,91,229,85,190,84,0,127,255,0,3,224,0,189,0,0,255,255,192,3,240,0,252,0,1,255,255,240,1,248,2,244,0,3,247,227,252,0,248,2,240,0,7,231,224,249,255,255,255,255,248,15,199,224,113,255,255,255,255,248,31,199,224,0,170,171,254,170,164,63,71,224,0,0,2,248,0,0,191,7,224,0,106,171,254,170,144,61,7,224,0,127,255,255,255,240,40,7,224,0,127,255,255,255,240,0,7,224,0,0,2,248,0,0,0,7,224,0,0,2,248,0,0,0,7,224,0,0,2,248,0,0,0,7,224,0,0,2,248,0,0,0,7,224,0,0,2,248,0,0, + // 0x91cd 重 + 205,145,34,35,59,38,2,253,0,0,0,0,0,0,22,128,0,0,0,0,5,106,255,255,192,0,2,255,255,255,255,255,255,240,0,1,255,255,255,255,255,233,64,0,1,255,170,151,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,85,87,253,85,91,240,0,0,254,0,3,248,0,7,240,0,0,254,0,3,248,0,11,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,254,0,3,248,0,7,240,0,0,254,0,3,248,0,7,240,0,0,255,85,87,253,85,91,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,3,255,255,255,255,255,255,253,0,3,255,255,255,255,255,255,254,0,3,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x91cf 量 + 207,145,34,34,50,38,2,253,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,63,0,0,0,0,31,192,0,0,63,0,0,0,0,31,192,0,0,63,255,255,255,255,255,192,0,0,63,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,253,0,3,248,0,7,240,0,0,253,0,3,248,0,7,240,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,252,0,1,85,85,87,253,85,85,84,0,0,0,0,3,248,0,0,0,0,170,170,170,171,254,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x91dd 針 + 221,145,36,36,68,38,1,252,0,2,253,0,0,0,106,0,0,0,3,255,64,0,0,127,0,0,0,11,255,208,0,0,127,0,0,0,15,255,248,0,0,127,0,0,0,63,199,254,0,0,127,0,0,0,191,65,255,64,0,127,0,0,1,255,0,127,208,0,127,0,0,3,252,0,31,240,0,127,0,0,15,244,0,11,224,0,127,0,0,63,208,0,3,128,0,127,0,0,255,255,255,254,0,0,127,0,0,63,255,255,253,0,0,127,0,0,5,255,255,253,21,85,191,149,85,0,0,252,0,63,255,255,255,254,0,0,252,0,63,255,255,255,254,0,0,252,0,63,255,255,255,254,0,1,252,0,0,0,127,0,0,47,255,255,255,192,0,127,0,0,47,255,255,255,192,0,127,0,0,47,255,255,255,192,0,127,0,0,0,0,252,0,0,0,127,0,0,0,0,252,4,0,0,127,0,0,11,192,252,31,128,0,127,0,0,11,192,252,47,64,0,127,0,0,7,208,252,63,0,0,127,0,0,3,224,252,62,0,0,127,0,0,3,240,252,125,0,0,127,0,0,2,240,252,188,0,0,127,0,0,1,240,252,20,0,0,127,0,0,0,0,252,22,208,0,127,0,0,0,1,255,255,208,0,127,0,0,26,255,255,255,208,0,127,0,0,63,255,255,254,64,0,127,0,0,47,255,233,0,0,0,127,0,0,30,144,0,0,0,0,127,0,0,0,0,0,0,0,0,127,0,0, + // 0x9215 鈕 + 21,146,36,36,68,38,1,252,0,7,240,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,255,0,21,85,85,85,0,0,63,255,208,63,255,255,255,128,0,127,111,240,63,255,255,255,128,0,254,11,252,63,255,255,255,128,3,252,3,255,0,63,128,63,128,11,244,0,255,0,63,64,63,128,31,224,0,61,0,63,64,63,128,127,192,0,40,0,63,64,63,64,191,255,255,240,0,63,0,63,64,47,255,255,240,0,127,0,63,64,3,255,255,240,0,127,0,63,64,0,3,240,0,0,127,0,63,64,0,3,240,0,0,127,0,63,64,0,3,240,0,0,191,0,63,64,63,255,255,252,255,255,255,255,254,63,255,255,252,255,255,255,255,254,63,255,255,252,255,255,255,255,254,0,3,240,0,85,254,85,191,84,0,3,240,0,0,253,0,127,0,11,3,240,252,0,252,0,127,0,15,131,240,252,0,252,0,127,0,15,195,240,248,1,252,0,127,0,11,195,241,240,1,252,0,191,0,7,211,242,240,2,252,0,191,0,3,211,243,224,2,248,0,191,0,3,227,243,208,2,248,0,191,0,2,67,240,0,3,248,0,190,0,0,3,240,26,3,244,0,254,0,0,7,255,255,3,244,0,254,0,6,191,255,255,87,249,85,255,84,63,255,255,255,255,255,255,255,254,63,255,228,11,255,255,255,255,254,46,144,0,11,255,255,255,255,254,0,0,0,0,0,0,0,0,0, + // 0x932f 錯 + 47,147,36,36,68,38,1,252,0,7,240,0,0,252,1,248,0,0,15,252,0,0,252,2,248,0,0,31,255,0,0,252,2,248,0,0,63,255,192,0,252,2,248,0,0,127,111,240,0,252,2,248,0,0,254,11,252,191,255,255,255,248,3,252,2,254,191,255,255,255,248,11,244,0,255,255,255,255,255,248,31,224,0,62,0,252,2,248,0,127,192,0,24,0,252,2,248,0,191,255,255,240,0,252,2,248,0,47,255,255,240,0,252,2,248,0,3,255,255,240,0,252,2,248,0,0,3,240,3,255,255,255,255,253,0,3,240,3,255,255,255,255,253,0,3,240,3,255,255,255,255,253,63,255,255,253,0,0,0,0,0,63,255,255,252,0,0,0,0,0,63,255,255,252,0,0,0,0,0,0,3,240,0,15,255,255,255,208,0,3,240,0,15,255,255,255,208,6,3,240,184,15,255,255,255,208,15,67,240,252,15,192,0,15,208,15,195,240,248,15,192,0,15,208,11,195,241,244,15,192,0,15,208,7,211,242,240,15,234,170,175,208,3,211,243,224,15,255,255,255,208,3,227,243,208,15,255,255,255,208,2,131,240,64,15,192,0,15,208,0,3,241,190,15,192,0,15,208,0,27,255,255,15,192,0,15,208,47,255,255,255,15,255,255,255,208,63,255,255,144,15,255,255,255,208,63,254,80,0,15,255,255,255,208,25,64,0,0,15,192,0,15,208,0,0,0,0,10,128,0,10,128, + // 0x9375 鍵 + 117,147,36,36,68,38,1,252,0,15,208,0,0,0,10,128,0,0,31,240,0,0,0,15,128,0,0,63,252,0,0,0,15,128,0,0,127,255,31,255,138,175,234,160,0,254,127,175,255,79,255,255,240,1,252,47,255,255,15,255,255,240,3,248,15,240,63,0,15,130,240,15,240,3,240,125,0,15,130,240,47,192,2,192,252,106,191,235,254,191,64,0,64,252,191,255,255,254,255,255,255,129,248,191,255,255,254,63,255,255,130,240,0,15,130,240,7,255,255,131,240,0,15,130,240,0,15,192,7,224,10,175,235,240,0,15,192,11,255,223,255,255,240,0,15,192,15,255,223,255,255,240,63,255,255,239,255,192,15,128,0,63,255,255,219,75,192,15,128,0,63,255,255,192,11,192,15,128,0,0,15,192,1,15,223,255,255,240,0,15,192,15,15,159,255,255,240,10,15,199,207,79,159,255,255,240,31,15,203,143,159,64,15,128,0,15,79,203,139,239,0,15,128,0,15,79,207,71,255,63,255,255,252,11,143,207,3,254,63,255,255,252,11,207,223,3,252,63,255,255,252,7,207,201,1,252,0,15,128,0,6,79,192,2,253,0,15,128,0,0,15,198,147,255,0,15,128,0,0,31,255,239,255,224,15,128,0,47,255,255,255,207,254,64,0,0,63,255,254,255,3,255,255,255,254,63,249,3,253,0,191,255,255,253,20,0,1,244,0,6,255,255,252,0,0,0,80,0,0,0,0,0, + // 0x9577 長 + 119,149,34,35,59,38,2,251,0,7,255,255,255,255,255,240,0,0,7,255,255,255,255,255,240,0,0,7,255,255,255,255,255,240,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,192,0,0,7,255,255,255,255,255,192,0,0,7,255,255,255,255,255,192,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,255,255,255,255,255,192,0,0,7,255,255,255,255,255,192,0,0,7,255,255,255,255,255,192,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,7,240,2,252,0,0,52,0,0,7,240,0,254,0,1,254,0,0,7,240,0,191,64,15,254,0,0,7,240,0,63,192,191,244,0,0,7,240,0,31,247,255,128,0,0,7,240,0,11,255,248,0,0,0,7,240,0,3,255,208,0,0,0,7,240,0,0,255,224,0,0,0,7,240,26,253,63,254,0,0,0,11,255,255,253,11,255,228,0,11,255,255,255,253,1,255,255,208,15,255,255,250,64,0,31,255,240,11,255,164,0,0,0,1,255,208,6,64,0,0,0,0,0,7,128,0,0,0,0,0,0,0,0,0, + // 0x9589 閉 + 137,149,32,34,16,38,3,252,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,170,171,244,47,234,170,255,191,0,3,244,47,192,0,255,191,0,3,244,47,192,0,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,170,171,244,47,234,170,255,191,0,3,244,47,192,0,255,191,0,3,244,47,192,0,255,191,170,171,244,47,234,170,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,0,0,0,0,0,0,255,191,0,0,0,63,0,0,255,191,0,0,0,63,0,0,255,191,0,0,0,63,0,0,255,191,7,255,255,255,255,208,255,191,7,255,255,255,255,208,255,191,7,255,255,255,255,208,255,191,0,0,3,255,0,0,255,191,0,0,15,255,0,0,255,191,0,0,63,255,0,0,255,191,0,0,255,127,0,0,255,191,0,3,253,63,0,0,255,191,0,31,244,63,0,0,255,191,0,255,208,63,0,0,255,191,11,255,0,63,0,0,255,191,15,252,0,63,0,0,255,191,3,208,0,63,0,0,255,191,1,0,63,255,10,170,254,191,0,0,47,254,15,255,254,191,0,0,15,228,7,255,252,191,0,0,0,0,3,255,224, + // 0x958b 開 + 139,149,32,35,24,38,3,251,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,170,171,244,47,234,170,255,191,0,3,244,47,192,0,191,191,0,3,244,47,192,0,191,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,85,87,244,47,213,85,255,191,0,3,244,47,192,0,191,191,0,3,244,47,192,0,191,191,170,171,244,47,234,170,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,0,0,0,0,0,0,191,191,0,0,0,0,0,0,191,191,3,255,255,255,255,192,191,191,3,255,255,255,255,192,191,191,3,255,255,255,255,192,191,191,0,7,224,15,192,0,191,191,0,7,224,15,192,0,191,191,0,7,224,15,192,0,191,191,0,7,224,15,192,0,191,191,15,255,255,255,255,240,191,191,15,255,255,255,255,240,191,191,15,255,255,255,255,240,191,191,0,11,208,15,192,0,191,191,0,15,192,15,192,0,191,191,0,31,192,15,192,0,191,191,0,63,128,15,192,0,191,191,0,127,0,15,192,0,191,191,1,254,0,15,193,85,254,191,7,252,0,15,194,255,254,191,2,240,0,15,192,255,252,191,0,128,0,0,0,255,224,0,0,0,0,0,0,0,0, + // 0x9593 間 + 147,149,32,34,16,38,3,252,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,170,171,244,47,234,170,255,191,0,3,244,47,192,0,255,191,0,3,244,47,192,0,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,170,171,244,47,234,170,255,191,0,3,244,47,192,0,255,191,0,3,244,47,192,0,255,191,170,171,244,47,234,170,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,0,0,0,0,0,255,191,0,63,255,255,252,0,255,191,0,63,255,255,252,0,255,191,0,63,170,171,252,0,255,191,0,63,0,0,252,0,255,191,0,63,0,0,252,0,255,191,0,63,0,0,252,0,255,191,0,63,255,255,252,0,255,191,0,63,255,255,252,0,255,191,0,63,170,170,252,0,255,191,0,63,0,0,252,0,255,191,0,63,0,0,252,0,255,191,0,63,170,170,252,0,255,191,0,63,255,255,252,0,255,191,0,63,255,255,252,0,255,191,0,63,0,0,10,170,254,191,0,63,0,0,7,255,254,191,0,0,0,0,3,255,252,191,0,0,0,0,2,255,224, + // 0x95dc 關 + 220,149,32,35,24,38,3,252,85,85,85,80,21,85,85,85,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,190,0,3,244,47,192,0,191,190,0,3,244,47,192,0,191,191,0,3,244,47,192,0,191,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,190,0,3,244,47,192,0,191,190,0,3,244,47,192,0,191,191,85,87,244,47,213,85,255,191,255,255,244,47,255,255,255,191,255,255,244,47,255,255,255,190,0,15,64,3,224,0,191,190,0,62,0,11,192,0,191,190,3,188,32,239,4,0,191,190,11,240,249,253,47,0,191,190,1,246,224,125,124,0,191,190,0,127,192,31,244,0,191,190,0,63,116,11,215,64,191,190,0,188,60,31,67,192,191,190,15,255,254,255,255,224,191,190,15,255,255,255,255,240,191,190,0,0,9,0,0,160,191,190,2,128,188,61,7,128,191,190,3,208,188,61,7,192,191,190,3,208,188,61,7,192,191,190,3,208,188,61,11,192,191,190,3,255,248,63,255,192,191,190,3,255,248,63,255,192,191,190,0,2,240,61,0,0,191,190,0,11,240,61,0,191,255,190,0,191,192,61,0,63,254,190,0,126,0,61,0,63,248,190,0,16,0,0,0,21,64, + // 0x964d 降 + 77,150,34,36,68,38,3,252,0,0,0,0,3,160,0,0,0,0,0,0,0,11,240,0,0,0,255,255,244,0,31,208,0,0,0,255,255,252,0,63,255,255,224,0,255,255,252,0,255,255,255,248,0,252,3,244,2,255,255,255,240,0,252,3,240,11,252,0,15,224,0,252,7,240,47,255,0,47,192,0,252,11,224,255,255,128,127,128,0,252,15,195,254,31,209,255,0,0,252,31,192,248,11,251,252,0,0,252,47,64,16,3,255,240,0,0,252,63,0,0,0,255,224,0,0,252,63,0,0,7,255,248,0,0,252,63,64,0,127,255,255,144,0,252,31,192,11,255,225,255,254,64,252,11,225,255,255,0,47,255,208,252,3,241,255,244,7,242,255,128,252,3,244,254,64,7,240,11,0,252,2,248,80,0,7,240,0,0,252,1,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,1,252,63,255,255,255,255,0,252,3,248,2,244,7,240,0,0,252,255,244,2,244,7,240,0,0,252,191,240,2,244,7,240,0,0,252,127,128,2,244,7,240,0,0,252,0,3,255,255,255,255,255,192,252,0,3,255,255,255,255,255,192,252,0,3,255,255,255,255,255,192,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0,252,0,0,0,0,7,240,0,0, + // 0x9664 除 + 100,150,34,36,68,38,3,252,0,0,0,0,1,252,0,0,0,0,0,0,0,3,255,0,0,0,255,255,244,0,11,255,128,0,0,255,255,252,0,31,255,224,0,0,255,255,252,0,63,203,244,0,0,252,3,244,0,255,3,253,0,0,252,3,240,3,253,0,255,128,0,252,7,240,15,244,0,63,224,0,252,11,208,127,208,0,15,252,0,252,15,194,255,64,0,3,255,128,252,31,143,253,0,0,0,191,224,252,47,79,251,255,255,255,239,192,252,63,3,139,255,255,255,199,64,252,63,0,11,255,255,255,192,0,252,47,128,0,0,253,0,0,0,252,15,192,0,0,253,0,0,0,252,11,224,0,0,253,0,0,0,252,3,240,0,0,253,0,0,0,252,3,244,0,0,253,0,0,0,252,2,248,255,255,255,255,255,0,252,1,252,255,255,255,255,255,0,252,1,252,255,255,255,255,255,0,252,1,252,0,0,253,0,0,0,252,3,248,0,0,253,0,0,0,252,255,244,31,128,253,11,192,0,252,191,240,47,128,253,15,208,0,252,127,128,63,64,253,11,240,0,252,0,0,191,0,253,3,252,0,252,0,1,253,0,253,1,253,0,252,0,3,252,0,253,0,191,0,252,0,15,240,0,253,0,63,64,252,0,47,224,0,253,0,47,192,252,0,11,128,85,253,0,15,64,252,0,2,0,255,252,0,4,0,252,0,0,0,191,252,0,0,0,252,0,0,0,63,160,0,0,0, + // 0x968e 階 + 142,150,34,36,68,38,3,252,0,0,0,20,0,1,80,0,0,0,0,0,190,0,11,224,0,0,255,255,244,190,0,11,224,0,0,255,255,252,190,0,11,224,29,0,255,255,248,190,0,11,225,255,64,253,3,244,191,255,203,255,255,64,253,7,240,191,255,203,255,244,0,253,11,224,191,255,203,254,64,0,253,15,208,190,0,11,240,0,0,253,15,192,190,0,11,224,0,0,253,31,128,190,0,11,224,3,64,253,47,64,190,0,11,224,7,224,253,63,0,190,27,219,224,11,208,253,127,1,255,255,215,255,255,192,253,63,79,255,255,131,255,255,192,253,15,199,255,145,165,255,254,0,253,11,211,144,2,252,0,0,0,253,3,240,0,3,248,0,0,0,253,3,240,0,3,240,0,0,0,253,2,244,63,255,255,255,254,0,253,2,248,63,255,255,255,254,0,253,2,248,63,255,255,255,254,0,253,2,248,63,64,0,0,254,0,253,3,244,63,64,0,0,254,0,253,255,240,63,64,0,0,254,0,253,191,224,63,234,170,170,254,0,253,127,64,63,255,255,255,254,0,253,0,0,63,255,255,255,254,0,253,0,0,63,64,0,0,254,0,253,0,0,63,64,0,0,254,0,253,0,0,63,64,0,0,254,0,253,0,0,63,255,255,255,254,0,253,0,0,63,255,255,255,254,0,253,0,0,63,255,255,255,254,0,253,0,0,63,64,0,0,254,0,253,0,0,21,0,0,0,84,0, + // 0x96d9 雙 + 217,150,35,36,68,38,1,252,0,25,0,0,0,13,0,0,0,0,47,67,244,0,47,131,240,0,0,63,3,240,0,63,7,224,0,0,190,11,192,0,190,11,192,0,0,255,255,255,224,255,255,255,244,2,255,255,255,226,255,255,255,244,7,253,95,213,71,253,95,213,80,15,252,15,128,15,252,15,192,0,63,252,31,192,47,252,15,192,0,127,255,255,255,255,255,255,255,208,63,255,255,255,255,255,255,255,208,8,252,15,128,28,252,15,192,0,0,252,31,192,0,252,15,192,0,0,255,255,255,192,255,255,255,208,0,255,255,255,192,255,255,255,208,0,252,15,128,0,252,15,192,0,0,252,15,128,0,252,15,192,0,0,255,255,255,240,255,255,255,252,0,255,255,255,240,255,255,255,252,0,85,85,85,80,85,85,85,84,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,244,0,0,0,127,0,0,0,127,224,0,0,0,255,192,0,2,255,128,0,0,0,63,244,0,15,254,0,0,0,0,15,255,64,191,244,0,0,0,0,2,255,251,255,208,0,0,0,0,0,127,255,254,0,0,0,0,0,1,191,255,254,64,0,0,0,1,191,255,255,255,254,144,0,43,255,255,255,235,255,255,255,248,47,255,255,248,0,31,255,255,244,15,255,233,0,0,0,111,255,224,10,144,0,0,0,0,0,26,192, + // 0x96e2 離 + 226,150,36,36,68,38,1,252,0,0,253,0,0,2,64,0,0,0,0,253,0,0,7,240,47,128,0,0,253,0,0,11,240,63,128,127,255,255,255,252,15,208,63,64,127,255,255,255,252,15,192,127,0,127,255,255,255,252,47,192,190,0,0,0,0,0,0,63,128,252,0,1,64,3,208,0,127,65,252,0,11,199,15,199,208,191,255,255,252,11,207,239,71,208,255,255,255,252,11,194,255,7,210,255,255,255,252,11,192,255,135,211,255,1,248,0,11,195,255,231,223,255,1,248,0,11,207,226,231,255,255,1,248,0,11,223,128,135,255,255,1,248,0,11,193,0,7,239,191,255,255,248,11,255,255,255,210,127,255,255,248,11,255,255,255,208,127,255,255,248,5,85,254,85,64,127,1,248,0,0,0,252,0,0,127,1,248,0,0,0,252,0,0,127,1,248,0,47,255,255,255,244,127,1,248,0,47,255,255,255,244,127,1,248,0,47,235,250,171,244,127,255,255,248,47,66,240,2,244,127,255,255,248,47,67,242,194,244,127,255,255,248,47,67,226,226,244,127,1,248,0,47,67,209,242,244,127,1,248,0,47,127,255,246,244,127,1,248,0,47,127,255,250,244,127,1,248,0,47,85,80,126,244,127,1,248,0,47,64,0,18,244,127,255,255,253,47,64,0,2,244,127,255,255,253,47,64,1,255,240,127,255,255,253,47,64,0,255,224,127,0,0,0,47,64,0,170,64,127,0,0,0, + // 0x96fb 電 + 251,150,34,34,50,38,3,252,15,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,10,170,170,175,250,170,170,160,0,0,0,0,15,224,0,0,0,0,85,85,85,95,245,85,85,85,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,0,252,0,0,15,224,0,0,63,0,252,0,0,15,224,0,0,63,0,252,63,255,79,226,255,252,63,0,252,63,255,79,226,255,252,63,0,252,0,0,15,224,0,0,63,0,0,0,0,15,224,0,0,0,0,0,255,255,79,226,255,255,0,0,0,255,255,79,226,255,255,0,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,85,85,64,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,3,248,0,15,208,0,47,192,0,3,248,0,15,208,0,47,192,0,3,248,0,15,208,0,47,192,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,192,0,3,248,0,15,208,0,47,192,0,3,248,0,15,208,0,47,192,0,3,255,255,255,255,255,255,192,0,3,255,255,255,255,255,255,199,128,3,254,170,175,234,170,170,75,208,3,248,0,15,208,0,0,15,208,1,164,0,15,224,0,0,31,192,0,0,0,11,255,255,255,255,192,0,0,0,3,255,255,255,255,0,0,0,0,0,106,170,170,164,0, + // 0x9752 青 + 82,151,34,36,68,38,2,252,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,2,170,170,171,254,170,170,169,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,170,170,171,254,170,170,160,0,0,255,255,255,255,255,255,240,0,0,255,255,255,255,255,255,240,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,106,170,170,171,254,170,170,170,144,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,128,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,213,85,85,85,127,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,255,255,255,255,255,192,0,0,47,255,255,255,255,255,192,0,0,47,213,85,85,85,127,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,0,0,63,192,0,0,47,192,0,1,255,255,128,0,0,47,192,0,0,255,255,0,0,0,31,192,0,0,191,164,0,0, + // 0x975e 非 + 94,151,36,37,77,38,1,251,0,0,1,168,0,106,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,5,85,86,252,0,127,85,85,80,15,255,255,252,0,127,255,255,248,15,255,255,252,0,127,255,255,248,15,255,255,252,0,127,255,255,248,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,0,0,1,252,0,127,0,0,0,1,85,86,252,0,127,85,85,64,11,255,255,252,0,127,255,255,240,11,255,255,252,0,127,255,255,240,11,255,255,252,0,127,255,255,240,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,3,255,240,127,0,0,0,0,90,255,255,240,127,85,85,84,127,255,255,255,240,127,255,255,253,127,255,255,249,0,127,255,255,253,63,254,175,224,0,127,255,255,253,41,0,63,192,0,127,0,0,0,0,0,191,128,0,127,0,0,0,0,1,255,0,0,127,0,0,0,0,7,253,0,0,127,0,0,0,0,47,248,0,0,127,0,0,0,0,255,224,0,0,127,0,0,0,11,255,128,0,0,127,0,0,0,7,253,0,0,0,127,0,0,0,1,224,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,34,34,50,38,2,252,21,85,85,85,85,85,85,85,80,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,0,11,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,31,208,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,15,208,0,254,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,255,255,253,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,208,15,192,0,189,0,191,0,15,229,95,213,85,254,85,191,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,208,0,0,0,0,0,191,0,15,208,0,0,0,0,0,191,0, + // 0x9805 項 + 5,152,36,34,50,38,1,252,0,0,0,15,255,255,255,255,253,0,0,0,15,255,255,255,255,253,21,85,85,95,255,255,255,255,253,63,255,255,240,0,7,248,0,0,63,255,255,240,0,11,240,0,0,63,255,255,240,0,15,240,0,0,0,31,192,0,170,175,250,170,160,0,31,192,0,255,255,255,255,240,0,31,192,0,255,255,255,255,240,0,31,192,0,252,0,0,7,240,0,31,192,0,252,0,0,7,240,0,31,192,0,252,0,0,7,240,0,31,192,0,255,255,255,255,240,0,31,192,0,255,255,255,255,240,0,31,192,0,254,85,85,91,240,0,31,192,0,252,0,0,7,240,0,31,192,0,252,0,0,7,240,0,31,192,0,252,0,0,7,240,0,31,192,0,255,255,255,255,240,0,31,193,184,255,255,255,255,240,0,31,255,248,254,85,85,91,240,0,31,255,252,252,0,0,7,240,6,255,255,208,252,0,0,7,240,191,255,248,0,252,0,0,7,240,127,254,64,0,255,255,255,255,240,63,208,0,0,255,255,255,255,240,20,0,0,0,170,170,170,170,160,0,0,0,0,3,192,0,208,0,0,0,0,0,31,244,7,253,0,0,0,0,1,255,240,7,255,128,0,0,0,31,255,128,0,191,244,0,0,2,255,248,0,0,15,254,0,0,0,255,128,0,0,2,253,0,0,0,52,0,0,0,0,96, + // 0x9810 預 + 16,152,36,35,59,38,1,251,47,255,255,253,255,255,255,255,252,47,255,255,254,255,255,255,255,252,47,255,255,252,255,255,255,255,252,0,0,11,240,0,2,253,0,0,0,0,31,224,0,2,252,0,0,2,208,63,128,0,3,248,0,0,7,253,255,0,47,255,255,255,240,7,255,252,0,47,255,255,255,240,0,191,244,0,47,234,170,175,240,0,15,253,0,47,128,0,7,240,0,2,255,128,47,128,0,7,240,0,0,127,64,47,128,0,7,240,191,255,255,255,175,255,255,255,240,191,255,255,255,175,255,255,255,240,191,255,255,255,111,213,85,91,240,0,11,240,63,47,128,0,7,240,0,11,240,126,47,128,0,7,240,0,11,240,189,47,128,0,7,240,0,11,240,252,47,255,255,255,240,0,11,241,248,47,255,255,255,240,0,11,241,244,47,213,85,91,240,0,11,240,16,47,128,0,7,240,0,11,240,0,47,128,0,7,240,0,11,240,0,47,128,0,7,240,0,11,240,0,47,255,255,255,240,0,11,240,0,47,255,255,255,240,0,11,240,0,26,170,170,170,160,0,11,240,0,0,160,0,32,0,0,11,240,0,2,253,1,253,0,0,11,240,0,31,253,2,255,128,5,95,240,0,191,244,0,127,240,15,255,224,27,255,128,0,15,252,11,255,208,31,253,0,0,2,253,7,254,0,3,208,0,0,0,176,0,0,0,0,0,0,0,0,0, + // 0x984d 額 + 77,152,36,37,77,38,1,251,0,2,248,0,0,0,0,0,0,0,2,248,0,0,0,0,0,0,0,2,248,0,47,255,255,255,252,47,255,255,255,239,255,255,255,252,63,255,255,255,239,255,255,255,252,63,255,255,255,192,0,254,0,0,63,0,0,15,192,0,253,0,0,63,2,64,15,192,1,252,0,0,63,11,224,15,198,171,254,170,160,0,15,192,0,7,255,255,255,240,0,63,255,253,7,255,255,255,240,0,191,255,253,7,240,0,7,240,1,254,86,252,7,240,0,7,240,7,248,3,248,7,240,0,7,240,47,254,7,240,7,255,255,255,240,191,255,223,208,7,255,255,255,240,46,47,255,192,7,250,170,171,240,4,7,255,0,7,240,0,7,240,0,3,255,192,7,240,0,7,240,0,31,255,244,7,240,0,7,240,0,127,215,254,7,255,255,255,240,7,255,65,255,135,255,255,255,240,127,252,0,63,199,250,170,171,240,127,254,170,191,71,240,0,7,240,63,255,255,253,7,240,0,7,240,3,255,255,252,7,240,0,7,240,3,240,0,252,7,255,255,255,240,3,240,0,252,7,255,255,255,240,3,240,0,252,6,170,170,170,160,3,240,0,252,0,36,0,16,0,3,240,0,252,0,190,0,253,0,3,255,255,252,7,255,1,255,128,3,255,255,252,47,252,0,63,240,3,254,170,174,255,224,0,11,252,3,240,0,2,254,0,0,1,254,1,80,0,0,160,0,0,0,116,0,0,0,0,0,0,0,0,0, + // 0x985e 類 + 94,152,36,36,68,38,1,252,0,0,80,0,0,0,0,0,0,6,2,248,30,0,0,0,0,0,15,194,248,47,111,255,255,255,252,11,210,248,63,47,255,255,255,252,3,226,248,189,47,255,255,255,252,3,226,248,252,0,0,254,0,0,0,2,248,0,0,1,253,0,0,63,255,255,255,192,2,252,0,0,63,255,255,255,203,255,255,255,240,47,255,255,255,203,255,255,255,240,0,15,253,0,11,250,170,175,240,0,63,255,128,11,224,0,7,240,0,255,255,244,11,224,0,7,240,3,254,250,255,11,224,0,7,240,15,242,248,127,203,255,255,255,240,127,194,248,31,75,255,255,255,240,47,2,248,2,11,250,170,171,240,8,1,244,0,11,224,0,7,240,0,0,0,0,11,224,0,7,240,0,2,248,0,11,224,0,7,240,0,2,248,0,11,255,255,255,240,0,2,248,0,11,255,255,255,240,63,255,255,255,203,250,170,171,240,63,255,255,255,203,224,0,7,240,63,255,255,255,203,224,0,7,240,0,3,244,0,11,250,170,175,240,0,3,248,0,11,255,255,255,240,0,11,255,64,11,255,255,255,240,0,15,255,224,0,0,0,0,0,0,63,223,252,0,40,0,36,0,0,255,131,255,64,255,65,254,0,7,254,0,191,71,255,0,255,192,127,248,0,30,127,248,0,47,244,63,208,0,7,255,208,0,7,253,30,0,0,1,254,0,0,1,253,0,0,0,0,96,0,0,0,32, + // 0x98a8 風 + 168,152,36,34,50,38,1,252,0,127,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,127,255,255,255,255,255,252,0,0,127,85,85,85,85,86,252,0,0,127,0,0,0,6,1,252,0,0,127,0,0,91,255,193,252,0,0,127,47,255,255,255,241,252,0,0,127,47,255,255,250,65,252,0,0,127,31,255,253,0,1,252,0,0,127,0,0,252,0,1,252,0,0,127,0,0,252,0,1,252,0,0,127,0,0,252,0,1,252,0,0,127,15,255,255,255,225,252,0,0,127,15,255,255,255,225,252,0,0,127,15,255,255,255,224,252,0,0,127,15,128,252,7,224,252,0,0,127,15,128,252,7,224,252,0,0,127,15,128,252,7,224,252,0,0,191,15,128,252,7,224,252,0,0,190,15,128,252,7,224,253,0,0,254,15,255,255,255,224,253,0,0,253,15,255,255,255,224,253,0,0,253,10,170,255,170,144,253,0,0,252,0,0,252,2,64,253,0,2,252,0,0,252,31,192,190,0,3,248,0,0,252,11,224,190,8,3,244,0,0,252,3,240,127,29,7,240,21,106,255,255,248,63,31,15,240,255,255,255,255,252,63,30,15,224,255,255,255,255,254,63,174,63,192,255,169,80,0,127,31,253,127,128,0,0,0,0,63,15,252,47,0,0,0,0,0,16,11,248,5,0,0,0,0,0,0,1,224, + // 0x98fd 飽 + 253,152,36,36,68,38,1,252,0,3,252,0,0,168,0,0,0,0,7,255,0,0,253,0,0,0,0,15,255,192,1,252,0,0,0,0,47,223,244,3,252,0,0,0,0,63,135,252,3,244,0,0,0,0,255,1,255,7,255,255,255,244,2,253,0,127,207,255,255,255,244,7,248,252,47,95,255,255,255,244,31,240,252,9,63,192,0,3,244,127,192,252,0,127,64,0,3,244,255,170,254,169,255,0,0,3,244,63,255,255,255,254,0,0,3,244,7,255,255,255,255,255,254,3,244,3,240,0,254,187,255,254,3,244,3,240,0,253,7,255,254,3,240,3,245,85,253,0,0,126,3,240,3,255,255,253,0,0,126,3,240,3,255,255,253,0,0,126,3,240,3,240,0,253,0,0,126,3,240,3,240,0,253,15,255,254,7,240,3,250,170,253,15,255,254,7,240,3,255,255,253,15,255,254,11,240,3,255,255,253,15,208,0,15,224,3,240,0,0,15,208,7,255,224,3,240,2,128,15,208,3,255,192,3,240,15,208,15,208,3,254,0,3,240,15,240,15,208,0,0,0,3,240,3,244,15,208,0,0,0,3,240,3,252,15,208,0,0,116,3,240,127,253,15,208,0,0,126,3,255,255,255,15,208,0,0,190,47,255,255,255,79,208,0,0,189,63,255,228,63,143,224,0,1,253,63,249,0,31,203,255,255,255,252,41,0,0,9,3,255,255,255,244,0,0,0,0,0,191,255,255,208, + // 0x9918 餘 + 24,153,36,36,68,38,1,252,0,7,244,0,0,2,252,0,0,0,15,253,0,0,7,253,0,0,0,31,255,64,0,15,255,0,0,0,63,175,208,0,31,255,128,0,0,191,11,244,0,63,223,208,0,1,253,3,252,0,255,79,240,0,7,248,0,255,2,254,3,252,0,31,255,255,254,11,252,2,255,0,127,239,255,172,31,244,0,191,192,255,5,85,64,191,224,0,63,240,60,0,0,2,255,128,0,15,252,5,85,85,87,255,0,0,7,254,3,255,255,249,247,255,255,255,252,3,255,255,248,147,255,255,255,120,3,240,1,248,3,255,255,255,0,3,240,1,248,0,1,252,0,0,3,255,255,248,0,1,252,0,0,3,255,255,248,0,1,252,0,0,3,245,85,248,255,255,255,255,248,3,240,1,248,255,255,255,255,248,3,245,86,248,255,255,255,255,248,3,255,255,248,0,1,252,0,0,3,255,255,248,0,1,252,1,0,3,240,0,0,10,129,252,47,0,3,240,0,0,15,193,252,47,128,3,250,170,168,31,129,252,15,192,3,255,255,252,47,65,252,15,224,3,255,255,252,63,1,252,7,240,3,240,0,0,190,1,252,3,244,3,240,0,0,252,1,252,2,252,3,255,255,255,248,1,252,1,252,3,255,255,254,240,1,252,0,253,3,255,255,253,16,1,252,0,160,3,240,0,0,0,255,252,0,0,3,240,0,0,0,191,244,0,0,3,224,0,0,0,127,144,0,0, + // 0x99ac 馬 + 172,153,35,35,59,38,1,251,0,47,255,255,255,255,255,255,0,0,47,255,255,255,255,255,255,0,0,47,255,255,255,255,255,255,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,255,255,255,255,255,248,0,0,47,255,255,255,255,255,248,0,0,47,255,255,255,255,255,248,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,255,255,255,255,255,248,0,0,47,255,255,255,255,255,248,0,0,47,255,255,255,255,255,248,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,128,0,127,0,0,0,0,0,47,255,255,255,255,255,255,244,0,47,255,255,255,255,255,255,244,0,47,255,255,255,255,255,255,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,64,7,240,0,189,0,0,24,7,224,7,240,0,253,15,192,126,3,244,7,240,0,252,15,208,63,1,252,11,240,1,252,11,208,63,64,253,11,240,3,248,7,224,31,128,127,15,240,7,244,7,240,15,192,61,15,224,15,240,3,240,15,192,0,15,208,31,224,3,240,11,208,0,63,208,127,192,3,240,5,0,191,255,192,47,64,1,64,0,0,127,255,64,5,0,0,0,0,0,63,253,0,0,0,0,0,0,0,0,0,0, + // 0x9a45 驅 + 69,154,36,36,68,38,1,251,10,170,170,168,106,170,170,170,168,15,255,255,252,127,255,255,255,248,15,255,255,252,127,255,255,255,248,15,255,255,252,125,0,0,0,0,15,192,248,0,125,0,0,0,0,15,192,248,0,125,0,0,0,0,15,234,254,160,125,3,255,255,64,15,255,255,244,125,3,255,255,64,15,255,255,244,125,3,208,15,64,15,192,248,0,125,3,208,15,64,15,192,248,0,125,3,208,15,64,15,192,248,0,125,3,208,15,64,15,234,254,164,125,3,224,31,64,15,255,255,244,125,3,255,255,64,15,255,255,244,125,3,255,255,64,15,192,248,0,125,0,0,0,0,15,192,248,0,125,0,0,0,0,15,192,248,0,125,63,252,191,248,15,255,255,252,125,63,252,191,248,15,255,255,253,125,60,60,180,184,15,255,255,253,125,56,60,176,120,0,0,0,188,125,56,60,176,120,0,0,0,188,125,56,60,176,120,14,2,108,188,125,56,60,176,120,15,115,157,188,125,56,60,176,120,30,118,207,188,125,60,124,180,184,30,117,199,252,125,63,252,191,248,46,56,211,252,125,63,252,191,248,45,56,224,252,125,0,0,0,0,60,56,144,252,125,0,0,0,0,124,52,0,248,127,170,170,170,169,184,0,1,248,127,255,255,255,253,16,0,171,244,127,255,255,255,253,0,0,191,240,125,0,0,0,0,0,0,191,128,125,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9ad4 體 + 212,154,35,36,68,38,2,252,0,0,0,0,0,46,15,128,0,6,170,170,144,0,47,15,128,0,11,255,255,224,0,47,15,128,0,11,255,255,224,21,127,95,149,64,11,192,3,224,63,255,255,255,192,11,192,3,224,63,255,255,255,192,11,199,255,224,62,31,15,11,192,11,199,255,224,62,31,15,11,192,11,199,195,224,63,255,255,255,192,11,199,195,224,63,255,255,255,192,11,199,195,224,62,31,15,75,192,11,199,195,224,62,31,15,11,192,91,219,215,245,62,111,95,95,192,191,255,255,255,63,255,255,255,192,191,255,255,255,63,255,255,255,192,188,0,0,63,0,0,0,0,0,188,0,0,63,0,0,0,0,0,191,255,255,255,255,255,255,255,240,7,255,255,208,255,255,255,255,240,7,250,175,208,170,170,170,170,160,7,208,11,208,0,0,0,0,0,7,208,11,208,31,255,255,255,128,7,255,255,208,31,255,255,255,128,7,255,255,208,31,128,0,47,128,7,229,91,208,31,64,0,47,128,7,208,11,208,31,64,0,47,128,7,229,95,208,31,255,255,255,128,7,255,255,208,31,255,255,255,128,7,255,255,208,1,176,1,228,0,7,208,11,208,2,244,1,248,0,7,208,11,208,0,248,3,240,0,7,208,11,208,0,252,7,208,0,7,208,11,209,170,254,175,234,164,7,209,255,211,255,255,255,255,244,7,208,255,195,255,255,255,255,244,6,144,105,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,34,36,68,38,2,252,0,0,0,3,244,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,127,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,84,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,240,0,0,1,252,0,0,0,3,240,0,0,1,252,0,0,0,3,240,0,0,1,252,0,0,0,3,249,85,85,86,252,0,0,0,3,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,224,0,0,0,0,0,127,0,15,224,0,0,0,0,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,234,170,191,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,192,0,63,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,255,255,255,0,127,0,15,224,15,213,85,87,65,191,0,15,224,15,192,0,2,255,255,0,15,224,5,64,0,1,255,254,0,15,224,0,0,0,0,255,228,0, + // 0x9ec3 黃 + 195,158,34,36,68,38,2,252,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,15,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,64,10,170,255,234,170,175,250,170,0,0,0,127,0,0,15,208,0,0,0,0,127,0,0,15,208,0,0,0,0,127,255,255,255,208,0,0,0,0,127,255,255,255,208,0,0,0,0,21,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,191,170,171,254,170,175,240,0,0,190,0,3,248,0,11,240,0,0,190,0,3,248,0,11,240,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,191,85,87,253,85,91,240,0,0,190,0,3,248,0,11,240,0,0,190,0,3,248,0,11,240,0,0,191,255,255,255,255,255,240,0,0,191,255,255,255,255,255,240,0,0,106,175,170,170,175,234,160,0,0,1,191,128,0,47,248,0,0,0,31,255,192,0,127,255,224,0,7,255,253,0,0,2,255,254,64,255,255,144,0,0,0,27,255,240,127,244,0,0,0,0,0,191,192,29,0,0,0,0,0,0,6,0, + // 0x9ede 點 + 222,158,36,36,68,38,1,252,0,0,0,0,0,0,190,0,0,5,85,85,85,64,0,190,0,0,15,255,255,255,192,0,190,0,0,15,255,255,255,192,0,190,0,0,15,128,184,11,192,0,190,0,0,15,148,184,91,192,0,190,0,0,15,188,184,251,192,0,190,0,0,15,172,184,251,192,0,190,0,0,15,157,185,219,192,0,191,85,84,15,142,186,203,192,0,191,255,253,15,142,187,203,192,0,191,255,253,15,132,185,75,192,0,191,255,253,15,128,184,11,192,0,190,0,0,15,255,255,255,192,0,190,0,0,15,255,255,255,192,0,190,0,0,5,86,254,85,64,0,190,0,0,0,0,252,0,0,0,190,0,0,0,0,252,0,0,0,190,0,0,15,255,255,255,208,0,255,0,0,15,255,255,255,211,255,255,255,240,10,171,255,170,147,255,255,255,240,0,0,252,0,3,255,255,255,240,0,0,254,170,163,240,0,7,240,47,255,255,255,243,240,0,7,240,63,255,255,255,243,240,0,7,240,63,254,169,80,3,240,0,7,240,0,0,0,0,3,240,0,7,240,0,0,5,31,3,240,0,7,240,7,207,79,15,131,240,0,7,240,11,203,143,135,211,240,0,7,240,15,203,199,195,243,240,0,7,240,15,135,195,193,243,255,255,255,240,47,71,195,208,247,255,255,255,240,63,7,194,208,3,255,255,255,240,125,2,64,0,3,244,0,7,240,24,0,0,0,3,240,0,2,160, + // 0x9f4a 齊 + 74,159,36,37,77,38,1,251,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,244,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,0,5,0,180,0,0,0,0,0,0,63,0,252,0,10,0,5,85,85,111,130,248,6,255,192,15,255,255,219,195,243,255,255,64,15,255,255,211,130,211,255,248,0,0,126,7,208,253,3,240,252,0,0,189,7,208,253,3,224,125,0,0,252,11,192,253,3,224,63,0,1,248,11,192,253,3,224,47,128,3,244,15,192,253,3,245,175,224,31,227,255,128,253,63,255,247,248,127,131,255,0,253,63,255,226,253,46,1,84,0,253,42,80,0,116,0,7,240,0,0,0,7,240,0,0,7,240,0,0,0,7,240,0,0,7,250,170,170,170,175,240,0,0,7,255,255,255,255,255,240,0,0,11,255,255,255,255,255,240,0,0,11,240,0,0,0,7,240,0,0,11,240,0,0,0,7,240,0,0,15,240,0,0,0,7,240,0,0,15,255,255,255,255,255,240,0,0,31,255,255,255,255,255,240,0,0,63,250,170,170,170,175,240,0,0,127,192,0,0,0,7,240,0,1,255,64,0,0,0,7,240,0,7,255,0,0,0,0,7,240,0,31,252,0,0,0,0,7,240,0,11,240,0,0,0,0,7,240,0,3,192,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,6,25,50,38,16,1,63,192,255,240,255,240,255,240,191,224,47,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,255,240,255,240,255,240,191,224,47,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Vietnamese_28.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Vietnamese_28.cpp new file mode 100644 index 000000000000..8ebd4d7e83f0 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_28px/NotoSans_Medium_Vietnamese_28.cpp @@ -0,0 +1,246 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Vietnamese 38pt, capital 'A' height: 28px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +extern const uint8_t NotoSans_Medium_Vietnamese_28[15066] = { + 162,28,2,1,249,30,37,246, // unifont_t + // 0x0102 Ă + 2,1,25,36,252,25,0,0,0,5,0,0,84,0,0,0,15,128,0,248,0,0,0,11,228,7,240,0,0,0,3,255,255,224,0,0,0,1,255,255,128,0,0,0,0,47,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x0103 ă + 3,1,18,30,150,22,1,255,0,80,0,5,0,1,240,0,47,0,0,253,1,190,0,0,127,255,252,0,0,47,255,244,0,0,6,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x0110 Đ + 16,1,25,27,189,28,1,0,3,255,255,254,64,0,0,3,255,255,255,244,0,0,3,255,255,255,255,0,0,3,253,85,111,255,192,0,3,252,0,1,255,240,0,3,252,0,0,47,248,0,3,252,0,0,11,252,0,3,252,0,0,3,254,0,3,252,0,0,2,255,0,3,252,0,0,0,255,0,3,252,0,0,0,255,64,7,252,0,0,0,255,64,255,255,255,192,0,255,128,255,255,255,192,0,191,128,255,255,255,192,0,255,64,87,253,85,64,0,255,64,3,252,0,0,0,255,64,3,252,0,0,1,255,0,3,252,0,0,2,255,0,3,252,0,0,3,253,0,3,252,0,0,15,252,0,3,252,0,0,63,244,0,3,252,0,2,255,224,0,3,253,86,191,255,128,0,3,255,255,255,253,0,0,3,255,255,255,224,0,0,3,255,255,233,0,0,0, + // 0x0111 đ + 17,1,22,30,180,24,2,255,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,2,170,175,254,128,0,3,255,255,255,208,0,3,255,255,255,208,0,0,0,11,248,0,0,0,0,11,244,0,0,5,80,11,244,0,0,191,255,75,244,0,3,255,255,215,244,0,15,255,255,255,244,0,47,248,1,255,244,0,63,224,0,63,244,0,127,192,0,15,244,0,191,128,0,15,244,0,255,64,0,11,244,0,255,0,0,11,244,0,255,0,0,7,244,0,255,0,0,7,244,0,255,0,0,11,244,0,255,64,0,11,244,0,191,128,0,15,244,0,127,192,0,15,244,0,63,224,0,47,244,0,47,248,1,255,244,0,15,255,255,251,244,0,3,255,255,211,244,0,0,191,254,3,244,0,0,1,64,0,0,0, + // 0x0128 Ĩ + 40,1,15,35,140,13,255,0,7,253,0,124,15,255,209,248,63,255,255,240,61,7,255,224,124,0,127,64,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,192,11,255,255,192,2,255,254,64,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,0,31,240,0,2,255,255,64,11,255,255,192,11,255,255,192, + // 0x0129 ĩ + 41,1,15,28,112,10,254,0,11,248,0,244,63,255,130,240,127,255,255,224,188,11,255,192,244,0,190,0,0,0,0,0,0,0,0,0,0,21,64,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0, + // 0x0168 Ũ + 104,1,22,36,216,28,3,255,0,11,248,0,240,0,0,63,255,67,240,0,0,191,255,255,224,0,0,248,11,255,192,0,0,240,1,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x0169 ũ + 105,1,18,29,145,24,3,255,0,191,64,31,0,3,255,244,63,0,11,255,255,253,0,15,129,255,252,0,15,0,27,224,0,0,0,0,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x01a0 Ơ + 160,1,29,30,240,30,2,255,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0, + // 0x01a1 ơ + 161,1,23,25,150,24,2,255,0,0,0,0,2,168,0,0,0,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x01af Ư + 175,1,29,30,240,31,3,255,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0, + // 0x01b0 ư + 176,1,25,25,175,27,3,255,0,0,0,0,0,106,128,0,0,0,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0, + // 0x0303 ̃ + 3,3,15,5,20,0,237,23,11,248,0,244,47,255,130,240,127,255,255,224,188,11,255,192,244,0,190,0, + // 0x0309 ̉ + 9,3,8,10,20,0,241,22,5,0,127,244,127,253,0,191,0,127,0,190,11,252,15,208,15,192,6,64, + // 0x0323 ̣ + 35,3,5,6,12,0,242,248,25,0,191,64,255,128,191,128,63,0,0,0, + // 0x0340 ̀ + 64,3,9,6,18,0,249,23,127,208,0,47,240,0,11,248,0,2,253,0,0,191,0,0,31,128, + // 0x0341 ́ + 65,3,9,6,18,0,254,23,1,255,64,3,254,0,11,248,0,31,224,0,63,128,0,189,0,0, + // 0x1ea0 Ạ + 160,30,25,36,252,25,0,248,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,7,244,0,0,0,0,0,15,248,0,0,0,0,0,11,248,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0, + // 0x1ea1 ạ + 161,30,18,29,145,22,1,248,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0,0,0,0,0,0,0,0,36,0,0,0,0,255,0,0,0,1,255,0,0,0,1,255,0,0,0,0,189,0,0,0,0,0,0,0, + // 0x1ea2 Ả + 162,30,25,39,17,25,0,0,0,0,5,64,0,0,0,0,0,63,248,0,0,0,0,0,63,255,0,0,0,0,0,0,127,64,0,0,0,0,0,63,64,0,0,0,0,0,127,0,0,0,0,0,7,254,0,0,0,0,0,7,228,0,0,0,0,0,7,208,0,0,0,0,0,2,128,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1ea3 ả + 163,30,18,33,165,22,1,255,0,0,80,0,0,0,7,255,64,0,0,7,255,208,0,0,0,11,240,0,0,0,3,240,0,0,0,11,224,0,0,0,191,192,0,0,0,254,0,0,0,0,252,0,0,0,0,100,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1ea4 Ấ + 164,30,25,37,3,25,0,0,0,0,0,0,3,252,0,0,0,0,0,11,240,0,0,0,10,168,15,192,0,0,0,47,253,63,0,0,0,0,127,255,0,0,0,0,1,253,47,192,0,0,0,3,240,7,240,0,0,0,6,128,0,164,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1ea5 ấ + 165,30,21,32,192,22,1,255,0,0,0,0,127,64,0,0,0,0,254,0,0,0,85,2,248,0,0,3,255,135,224,0,0,15,255,209,64,0,0,47,199,240,0,0,0,127,1,252,0,0,0,248,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,1,255,255,253,0,0,3,255,255,255,64,0,1,254,86,255,192,0,0,144,0,63,208,0,0,0,0,31,224,0,0,0,0,31,224,0,0,0,0,15,240,0,0,0,21,111,240,0,0,111,255,255,240,0,3,255,255,255,240,0,15,255,148,31,240,0,47,240,0,15,240,0,63,208,0,31,240,0,63,192,0,31,240,0,127,192,0,47,240,0,63,192,0,127,240,0,63,240,2,255,240,0,47,255,255,239,240,0,15,255,255,139,240,0,1,255,253,3,240,0,0,5,64,0,0,0, + // 0x1ea6 Ầ + 166,30,25,37,3,25,0,0,15,224,0,0,0,0,0,3,240,0,0,0,0,0,1,252,10,168,0,0,0,0,62,47,253,0,0,0,0,0,127,255,0,0,0,0,1,253,47,192,0,0,0,3,240,7,240,0,0,0,10,128,0,164,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1ea7 ầ + 167,30,19,32,160,22,0,255,191,0,0,0,0,63,128,0,0,0,15,208,21,64,0,3,240,255,224,0,0,82,255,244,0,0,7,241,253,0,0,31,192,127,0,0,62,0,11,192,0,0,0,0,0,0,0,0,0,0,0,1,191,228,0,0,127,255,255,64,0,255,255,255,208,0,127,149,191,240,0,36,0,15,244,0,0,0,7,248,0,0,0,7,248,0,0,0,3,252,0,0,5,91,252,0,27,255,255,252,0,255,255,255,252,3,255,229,7,252,11,252,0,3,252,15,244,0,7,252,15,240,0,7,252,31,240,0,11,252,15,240,0,31,252,15,252,0,191,252,11,255,255,251,252,3,255,255,226,252,0,127,255,64,252,0,1,80,0,0, + // 0x1ea8 Ẩ + 168,30,25,40,24,25,0,0,0,0,0,0,20,0,0,0,0,0,0,191,192,0,0,0,0,0,91,224,0,0,0,0,0,2,224,0,0,0,0,0,7,208,0,0,0,10,164,47,64,0,0,0,63,253,45,0,0,0,0,191,255,0,0,0,0,1,253,47,192,0,0,0,3,240,7,224,0,0,0,10,128,0,160,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1ea9 ẩ + 169,30,20,34,170,22,1,255,0,0,0,15,244,0,0,0,10,252,0,0,0,0,61,0,0,0,0,124,0,0,85,3,244,0,3,255,131,192,0,11,255,225,64,0,31,215,244,0,0,127,0,252,0,0,248,0,47,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eaa Ẫ + 170,30,25,40,24,25,0,0,0,0,190,0,120,0,0,0,2,255,229,244,0,0,0,3,235,255,240,0,0,0,11,64,191,192,0,0,0,1,0,0,0,0,0,0,0,6,164,0,0,0,0,0,31,252,0,0,0,0,0,63,255,0,0,0,0,0,253,47,192,0,0,0,3,244,7,240,0,0,0,6,128,0,164,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1eab ẫ + 171,30,18,35,175,22,1,255,0,6,64,10,0,0,63,248,31,0,0,191,255,253,0,0,240,47,252,0,0,144,1,144,0,0,0,85,0,0,0,2,255,64,0,0,11,255,208,0,0,31,219,240,0,0,127,1,252,0,0,248,0,47,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eac Ậ + 172,30,25,44,52,25,0,248,0,0,15,252,0,0,0,0,0,63,254,0,0,0,0,0,191,255,128,0,0,0,2,253,47,208,0,0,0,7,244,7,244,0,0,0,31,192,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,7,244,0,0,0,0,0,11,252,0,0,0,0,0,11,248,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0, + // 0x1ead ậ + 173,30,18,37,185,22,1,248,0,2,255,128,0,0,7,255,208,0,0,15,255,240,0,0,63,195,252,0,0,254,0,255,0,3,244,0,47,128,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0,0,0,0,0,0,0,0,100,0,0,0,1,254,0,0,0,2,255,0,0,0,2,254,0,0,0,0,252,0,0,0,0,0,0,0, + // 0x1eae Ắ + 174,30,25,39,17,25,0,0,0,0,0,21,64,0,0,0,0,0,63,64,0,0,0,0,0,190,0,0,0,0,0,1,248,0,0,0,0,6,131,208,160,0,0,0,7,192,1,240,0,0,0,3,244,7,240,0,0,0,1,255,255,208,0,0,0,0,191,255,64,0,0,0,0,6,164,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1eaf ắ + 175,30,18,33,165,22,1,255,0,0,11,240,0,0,0,15,192,0,0,0,63,64,0,0,80,124,5,0,0,244,0,46,0,0,188,0,189,0,0,127,255,252,0,0,31,255,240,0,0,2,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eb0 Ằ + 176,30,25,39,17,25,0,0,0,0,84,0,0,0,0,0,0,191,0,0,0,0,0,0,63,64,0,0,0,0,0,15,192,0,0,0,0,6,130,224,160,0,0,0,7,192,1,240,0,0,0,3,244,7,240,0,0,0,2,255,255,208,0,0,0,0,191,255,64,0,0,0,0,6,164,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1eb1 ằ + 177,30,18,33,165,22,1,255,0,47,192,0,0,0,11,224,0,0,0,2,244,0,0,0,80,188,5,0,0,244,0,62,0,0,188,0,189,0,0,127,255,252,0,0,47,255,240,0,0,6,255,64,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eb2 Ẳ + 178,30,25,40,24,25,0,0,0,0,10,144,0,0,0,0,0,15,248,0,0,0,0,0,0,124,0,0,0,0,0,0,60,0,0,0,0,0,3,248,0,0,0,0,6,131,192,160,0,0,0,7,192,1,240,0,0,0,3,244,7,240,0,0,0,2,255,255,208,0,0,0,0,191,255,64,0,0,0,0,6,164,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1eb3 ẳ + 179,30,18,35,175,22,1,255,0,0,80,0,0,0,1,255,0,0,0,0,95,128,0,0,0,11,128,0,0,0,47,64,0,0,80,124,5,0,0,248,16,46,0,0,189,0,125,0,0,63,255,252,0,0,31,255,240,0,0,2,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eb4 Ẵ + 180,30,25,40,24,25,0,0,0,0,126,0,120,0,0,0,2,255,224,244,0,0,0,3,235,255,240,0,0,0,11,128,191,208,0,0,0,1,0,0,0,0,0,0,1,64,0,80,0,0,0,7,192,1,240,0,0,0,3,224,7,240,0,0,0,2,255,255,208,0,0,0,0,191,255,64,0,0,0,0,10,164,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128, + // 0x1eb5 ẵ + 181,30,18,35,175,22,1,255,0,6,64,6,0,0,63,248,15,0,0,191,255,254,0,0,240,47,252,0,0,144,1,144,0,0,0,0,0,0,0,244,0,46,0,0,252,0,125,0,0,127,239,252,0,0,47,255,244,0,0,6,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0, + // 0x1eb6 Ặ + 182,30,25,44,52,25,0,248,0,5,64,0,84,0,0,0,11,192,0,248,0,0,0,7,228,7,244,0,0,0,3,255,255,240,0,0,0,0,255,255,192,0,0,0,0,31,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,80,0,0,0,0,0,15,252,0,0,0,0,0,31,252,0,0,0,0,0,47,254,0,0,0,0,0,63,255,0,0,0,0,0,191,127,64,0,0,0,0,255,63,128,0,0,0,1,254,47,192,0,0,0,2,252,31,208,0,0,0,3,252,15,240,0,0,0,7,248,11,240,0,0,0,15,240,7,248,0,0,0,15,240,3,252,0,0,0,47,208,2,253,0,0,0,63,192,1,254,0,0,0,127,192,0,255,0,0,0,191,149,85,255,64,0,0,255,255,255,255,192,0,1,255,255,255,255,192,0,3,255,255,255,255,224,0,3,252,0,0,31,240,0,11,248,0,0,15,244,0,15,244,0,0,11,248,0,31,240,0,0,3,252,0,47,224,0,0,3,253,0,63,192,0,0,1,255,0,127,192,0,0,0,255,0,255,64,0,0,0,191,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,7,244,0,0,0,0,0,11,252,0,0,0,0,0,11,248,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0, + // 0x1eb7 ặ + 183,30,18,37,185,22,1,248,0,80,0,5,0,0,244,0,31,0,0,253,1,191,0,0,127,255,253,0,0,31,255,244,0,0,2,255,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,1,255,255,253,0,3,255,255,255,64,1,254,86,255,192,0,144,0,63,208,0,0,0,31,224,0,0,0,31,224,0,0,0,15,240,0,0,21,111,240,0,111,255,255,240,3,255,255,255,240,15,255,148,31,240,47,240,0,15,240,63,208,0,31,240,63,192,0,31,240,127,192,0,47,240,63,192,0,127,240,63,240,2,255,240,47,255,255,239,240,15,255,255,139,240,1,255,253,3,240,0,5,64,0,0,0,0,0,0,0,0,0,96,0,0,0,2,252,0,0,0,3,253,0,0,0,3,253,0,0,0,1,248,0,0,0,0,0,0,0, + // 0x1eb8 Ẹ + 184,30,16,35,140,21,3,248,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255,0,0,0,0,0,0,0,0,0,1,144,0,0,11,244,0,0,15,248,0,0,15,248,0,0,3,240,0,0,0,0,0, + // 0x1eb9 ẹ + 185,30,18,29,145,22,2,248,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0,0,0,0,0,0,0,0,100,0,0,0,2,253,0,0,0,3,254,0,0,0,3,254,0,0,0,1,252,0,0,0,0,0,0,0, + // 0x1eba Ẻ + 186,30,16,39,156,21,3,0,0,1,64,0,0,47,253,0,0,47,255,0,0,0,127,128,0,0,47,128,0,0,63,64,0,3,254,0,0,3,244,0,0,3,208,0,0,2,128,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x1ebb ẻ + 187,30,18,33,165,22,2,255,0,0,80,0,0,0,11,255,64,0,0,11,255,208,0,0,0,15,224,0,0,0,7,224,0,0,0,15,224,0,0,0,191,192,0,0,0,253,0,0,0,0,248,0,0,0,0,164,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x1ebc Ẽ + 188,30,16,35,140,21,3,0,1,254,64,46,7,255,228,125,15,255,255,252,31,65,255,244,46,0,47,144,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x1ebd ẽ + 189,30,18,29,145,22,2,255,0,191,64,31,0,3,255,244,63,0,11,255,255,253,0,15,129,255,248,0,15,0,27,224,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x1ebe Ế + 190,30,19,37,185,21,3,0,0,0,0,3,248,0,0,0,11,240,0,10,164,31,192,0,47,253,62,0,0,191,255,0,0,1,253,47,192,0,3,240,7,224,0,10,128,0,164,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,0,127,255,255,255,0,127,255,255,255,0,127,213,85,85,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,255,255,252,0,127,255,255,252,0,127,255,255,252,0,127,234,170,168,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,169,0,127,255,255,255,0,127,255,255,255,0,127,255,255,255,0, + // 0x1ebf ế + 191,30,20,32,160,22,2,255,0,0,0,0,254,0,0,0,2,252,0,1,84,3,240,0,11,255,15,192,0,31,255,133,0,0,127,79,224,0,0,253,3,244,0,3,240,0,188,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x1ec0 Ề + 192,30,18,37,185,21,1,0,254,0,0,0,0,63,64,0,0,0,31,192,170,128,0,3,226,255,208,0,0,7,255,240,0,0,15,210,252,0,0,63,0,127,0,0,104,0,10,64,0,0,0,0,0,0,0,0,0,0,7,255,255,255,240,7,255,255,255,240,7,255,255,255,240,7,253,85,85,80,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,255,255,255,192,7,255,255,255,192,7,255,255,255,192,7,254,170,170,128,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,248,0,0,0,7,254,170,170,144,7,255,255,255,240,7,255,255,255,240,7,255,255,255,240, + // 0x1ec1 ề + 193,30,19,32,160,22,1,255,253,0,0,0,0,127,0,0,0,0,47,128,85,0,0,7,210,255,192,0,0,87,255,240,0,0,15,227,248,0,0,63,64,190,0,0,188,0,31,64,0,0,0,0,0,0,0,0,0,0,0,1,191,144,0,0,47,255,253,0,0,255,255,255,64,3,255,149,255,192,11,252,0,47,240,15,240,0,15,240,31,224,0,7,248,47,208,0,7,248,63,213,85,87,252,63,255,255,255,252,63,255,255,255,252,63,234,170,170,168,63,192,0,0,0,63,208,0,0,0,47,224,0,0,0,31,240,0,0,0,15,252,0,0,0,7,255,64,1,240,1,255,255,255,240,0,127,255,255,240,0,11,255,255,128,0,0,21,64,0, + // 0x1ec2 Ể + 194,30,18,40,200,21,3,0,0,0,0,20,0,0,0,0,191,192,0,0,0,91,224,0,0,0,2,224,0,0,0,7,208,0,10,164,47,64,0,63,253,45,0,0,191,255,0,0,1,253,47,192,0,7,240,7,224,0,10,128,0,160,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,0,127,255,255,255,0,127,255,255,255,0,127,213,85,85,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,255,255,252,0,127,255,255,252,0,127,255,255,252,0,127,234,170,168,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,128,0,0,0,127,234,170,169,0,127,255,255,255,0,127,255,255,255,0,127,255,255,255,0, + // 0x1ec3 ể + 195,30,19,34,170,22,2,255,0,0,0,63,208,0,0,0,43,240,0,0,0,0,244,0,0,0,1,244,0,1,84,15,208,0,15,255,15,0,0,47,255,133,0,0,127,95,208,0,0,252,3,244,0,3,224,0,188,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x1ec4 Ễ + 196,30,16,40,160,21,3,0,0,189,0,116,3,255,225,240,7,235,255,224,11,64,191,192,5,0,0,0,0,10,160,0,0,31,252,0,0,127,255,0,1,253,47,128,3,240,7,224,10,128,0,160,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255, + // 0x1ec5 ễ + 197,30,18,35,175,22,2,255,0,25,0,24,0,0,255,224,60,0,1,255,255,248,0,3,208,127,240,0,2,128,6,64,0,0,1,84,0,0,0,7,254,0,0,0,31,255,128,0,0,63,95,208,0,0,253,3,244,0,3,224,0,188,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0, + // 0x1ec6 Ệ + 198,30,16,44,176,21,3,248,0,15,252,0,0,47,255,0,0,191,255,128,1,254,31,224,7,244,7,248,15,192,0,253,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,127,255,255,255,127,255,255,255,127,213,85,85,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,255,255,252,127,255,255,252,127,255,255,252,127,234,170,168,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,234,170,169,127,255,255,255,127,255,255,255,127,255,255,255,0,0,0,0,0,0,0,0,0,1,144,0,0,11,244,0,0,15,248,0,0,15,248,0,0,3,240,0,0,0,0,0, + // 0x1ec7 ệ + 199,30,18,37,185,22,2,248,0,11,254,0,0,0,31,255,64,0,0,63,255,192,0,0,255,15,240,0,3,252,3,252,0,11,208,0,190,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,244,0,3,255,255,253,0,15,254,87,255,0,47,240,0,191,192,63,192,0,63,192,127,128,0,31,224,191,64,0,31,224,255,85,85,95,240,255,255,255,255,240,255,255,255,255,240,255,170,170,170,160,255,0,0,0,0,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,240,0,0,0,31,253,0,7,192,7,255,255,255,192,1,255,255,255,192,0,47,255,254,0,0,0,85,0,0,0,0,0,0,0,0,0,100,0,0,0,2,253,0,0,0,3,254,0,0,0,3,254,0,0,0,1,252,0,0,0,0,0,0,0, + // 0x1ec8 Ỉ + 200,30,11,38,114,13,1,0,1,165,0,3,255,192,3,255,240,0,7,240,0,3,240,0,11,240,0,191,192,0,189,0,0,188,0,0,16,0,0,0,0,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252, + // 0x1ec9 ỉ + 201,30,8,32,64,10,2,0,5,0,255,240,255,252,1,253,0,190,0,253,15,248,31,208,15,64,10,0,0,0,21,64,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192,63,192, + // 0x1eca Ị + 202,30,11,35,105,13,1,248,191,255,252,191,255,252,47,255,228,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,47,255,244,191,255,252,191,255,252,0,0,0,0,0,0,0,100,0,1,254,0,2,255,0,1,255,0,0,253,0,0,0,0, + // 0x1ecb ị + 203,30,5,36,72,10,3,248,191,0,255,64,255,64,191,0,4,0,0,0,0,0,85,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,255,0,0,0,0,0,24,0,255,0,255,64,255,64,126,0,0,0, + // 0x1ecc Ọ + 204,30,26,36,252,30,2,248,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,7,252,0,0,0,0,0,3,252,0,0,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0, + // 0x1ecd ọ + 205,30,19,29,145,23,2,248,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0,0,0,0,0,0,0,0,100,0,0,0,1,253,0,0,0,2,254,0,0,0,2,254,0,0,0,0,252,0,0,0,0,0,0,0, + // 0x1ece Ỏ + 206,30,26,39,17,30,2,255,0,0,6,164,0,0,0,0,0,15,255,64,0,0,0,0,15,255,192,0,0,0,0,0,15,208,0,0,0,0,0,15,208,0,0,0,0,0,47,192,0,0,0,0,2,255,64,0,0,0,0,1,248,0,0,0,0,0,1,240,0,0,0,0,0,0,80,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x1ecf ỏ + 207,30,19,33,165,23,2,255,0,0,80,0,0,0,7,255,64,0,0,7,255,208,0,0,0,11,240,0,0,0,3,240,0,0,0,11,224,0,0,0,191,192,0,0,0,254,0,0,0,0,252,0,0,0,0,100,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x1ed0 Ố + 208,30,26,38,10,30,2,255,0,0,0,0,1,253,0,0,0,0,0,3,244,0,0,0,6,168,11,208,0,0,0,15,255,31,64,0,0,0,63,255,128,0,0,0,0,190,15,208,0,0,0,2,248,3,244,0,0,0,2,144,0,104,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x1ed1 ố + 209,30,20,32,160,23,2,255,0,0,0,0,191,0,0,0,0,253,0,1,85,3,244,0,7,255,75,208,0,15,255,197,0,0,63,139,240,0,0,190,2,248,0,1,244,0,125,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x1ed2 Ồ + 210,30,26,38,10,30,2,255,7,244,0,0,0,0,0,2,252,0,0,0,0,0,0,190,6,168,0,0,0,0,31,15,255,0,0,0,0,0,63,255,128,0,0,0,0,191,15,224,0,0,0,2,248,2,244,0,0,0,2,144,0,104,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x1ed3 ồ + 211,30,20,32,160,23,1,255,254,0,0,0,0,127,64,0,0,0,31,192,85,64,0,3,225,255,208,0,0,83,255,240,0,0,15,242,252,0,0,47,128,127,0,0,125,0,31,128,0,0,0,0,0,0,0,0,0,0,0,1,191,144,0,0,47,255,254,0,0,255,255,255,192,3,255,234,255,240,11,253,0,31,248,15,244,0,3,252,31,240,0,2,254,47,224,0,1,255,63,208,0,0,255,63,192,0,0,255,63,192,0,0,255,63,192,0,0,255,63,192,0,0,255,63,208,0,0,255,47,224,0,1,254,15,240,0,3,253,15,248,0,11,252,3,255,64,47,244,1,255,255,255,224,0,127,255,255,128,0,11,255,248,0,0,0,21,0,0, + // 0x1ed4 Ổ + 212,30,26,41,31,30,2,255,0,0,0,0,21,0,0,0,0,0,0,63,208,0,0,0,0,0,22,240,0,0,0,0,0,0,240,0,0,0,0,0,6,240,0,0,0,6,168,15,128,0,0,0,15,255,15,0,0,0,0,63,255,128,0,0,0,0,254,15,208,0,0,0,2,248,3,244,0,0,0,2,144,0,168,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x1ed5 ổ + 213,30,19,34,170,23,2,255,0,0,0,31,224,0,0,0,10,248,0,0,0,0,124,0,0,0,0,184,0,1,85,7,224,0,7,255,71,128,0,15,255,193,0,0,63,139,240,0,0,190,2,248,0,1,244,0,125,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x1ed6 Ỗ + 214,30,26,41,31,30,2,255,0,0,110,64,60,0,0,0,0,255,244,188,0,0,0,3,251,255,244,0,0,0,3,192,127,224,0,0,0,1,0,1,0,0,0,0,0,2,168,0,0,0,0,0,15,254,0,0,0,0,0,47,255,128,0,0,0,0,191,15,208,0,0,0,2,248,2,244,0,0,0,2,144,0,104,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0, + // 0x1ed7 ỗ + 215,30,19,35,175,23,2,255,0,10,64,9,0,0,127,244,46,0,0,255,255,252,0,1,240,111,248,0,1,128,1,144,0,0,0,84,0,0,0,3,255,0,0,0,15,255,192,0,0,47,207,240,0,0,190,2,248,0,1,244,0,62,0,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0, + // 0x1ed8 Ộ + 216,30,26,44,52,30,2,248,0,0,11,254,0,0,0,0,0,31,255,64,0,0,0,0,63,255,192,0,0,0,0,255,15,240,0,0,0,3,252,3,252,0,0,0,11,208,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,165,0,0,0,0,2,255,255,248,0,0,0,47,255,255,255,64,0,0,191,255,255,255,224,0,2,255,228,1,191,248,0,7,255,0,0,15,253,0,15,252,0,0,3,255,0,47,240,0,0,1,255,64,63,224,0,0,0,255,128,63,208,0,0,0,127,192,127,192,0,0,0,63,192,191,192,0,0,0,63,208,191,128,0,0,0,63,208,191,128,0,0,0,63,224,191,128,0,0,0,63,224,191,128,0,0,0,63,208,191,128,0,0,0,63,208,127,192,0,0,0,63,208,127,192,0,0,0,63,192,63,208,0,0,0,191,192,63,240,0,0,0,255,128,31,244,0,0,1,255,0,15,252,0,0,3,254,0,7,255,0,0,31,252,0,2,255,228,1,255,244,0,0,191,255,255,255,208,0,0,31,255,255,255,0,0,0,1,255,255,228,0,0,0,0,1,84,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,7,252,0,0,0,0,0,3,252,0,0,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0, + // 0x1ed9 ộ + 217,30,19,37,185,23,2,248,0,3,255,0,0,0,11,255,192,0,0,47,255,224,0,0,127,135,248,0,1,253,1,254,0,3,240,0,63,64,0,0,0,0,0,0,0,0,0,0,0,6,254,64,0,0,191,255,248,0,3,255,255,255,0,15,255,171,255,192,47,244,0,127,224,63,208,0,15,240,127,192,0,11,248,191,128,0,7,252,255,64,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,3,252,191,128,0,7,248,63,192,0,15,244,63,224,0,47,240,15,253,0,191,208,7,255,255,255,128,1,255,255,254,0,0,47,255,224,0,0,0,84,0,0,0,0,0,0,0,0,0,100,0,0,0,1,253,0,0,0,2,254,0,0,0,2,254,0,0,0,0,252,0,0,0,0,0,0,0, + // 0x1eda Ớ + 218,30,29,37,40,30,2,255,0,0,0,15,248,0,0,0,0,0,0,63,224,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,0,0,0,0,0,0,3,248,0,0,0,0,0,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0, + // 0x1edb ớ + 219,30,23,30,180,24,2,255,0,0,11,253,0,0,0,0,15,244,0,0,0,0,63,208,0,0,0,0,191,64,0,0,0,1,253,0,0,0,0,3,244,0,2,168,0,0,0,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x1edc Ờ + 220,30,29,37,40,30,2,255,0,2,255,64,0,0,0,0,0,0,191,192,0,0,0,0,0,0,47,224,0,0,0,0,0,0,11,244,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0, + // 0x1edd ờ + 221,30,23,30,180,24,2,255,0,255,192,0,0,0,0,63,224,0,0,0,0,15,240,0,0,0,0,3,252,0,0,0,0,0,254,0,0,0,0,0,47,64,2,168,0,0,0,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x1ede Ở + 222,30,29,40,64,30,2,255,0,0,1,64,0,0,0,0,0,0,31,254,0,0,0,0,0,0,31,255,128,0,0,0,0,0,0,47,192,0,0,0,0,0,0,15,192,0,0,0,0,0,0,47,192,0,0,0,0,0,2,255,0,0,0,0,0,0,3,248,0,0,0,0,0,0,3,240,0,0,0,0,0,0,1,144,0,0,0,0,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0, + // 0x1edf ở + 223,30,23,33,198,24,2,255,0,0,80,0,0,0,0,11,255,64,0,0,0,11,255,192,0,0,0,0,31,224,0,0,0,0,11,224,0,0,0,0,15,208,0,0,0,0,255,128,0,0,0,0,253,0,0,0,0,0,244,0,2,168,0,0,160,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x1ee0 Ỡ + 224,30,29,36,32,30,2,255,0,0,255,64,31,0,0,0,0,3,255,244,63,0,0,0,0,11,255,255,253,0,0,0,0,15,129,255,248,0,0,0,0,15,0,27,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0, + // 0x1ee1 ỡ + 225,30,23,29,174,24,2,255,0,127,208,11,128,0,1,255,249,31,64,0,3,255,255,255,0,0,7,208,127,253,0,0,11,128,11,244,2,168,0,0,0,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0, + // 0x1ee2 Ợ + 226,30,29,37,40,30,2,248,0,0,0,0,0,0,127,192,0,0,5,165,0,0,127,192,0,2,255,255,244,0,191,128,0,47,255,255,255,64,255,0,0,255,255,255,255,225,254,0,2,255,228,1,191,255,252,0,7,255,0,0,15,255,240,0,15,252,0,0,3,255,128,0,47,240,0,0,1,255,64,0,63,224,0,0,0,255,128,0,63,208,0,0,0,127,192,0,127,192,0,0,0,63,192,0,191,192,0,0,0,63,208,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,224,0,191,128,0,0,0,63,208,0,191,128,0,0,0,63,208,0,127,192,0,0,0,63,208,0,127,192,0,0,0,63,192,0,63,208,0,0,0,191,192,0,63,224,0,0,0,255,128,0,31,244,0,0,1,255,0,0,15,252,0,0,3,254,0,0,7,255,0,0,31,252,0,0,2,255,228,1,255,244,0,0,0,191,255,255,255,208,0,0,0,31,255,255,255,0,0,0,0,1,255,255,228,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x1ee3 ợ + 227,30,23,32,192,24,2,248,0,0,0,0,2,168,0,0,0,0,3,252,0,0,0,0,3,252,0,6,254,64,7,248,0,191,255,248,15,240,3,255,255,255,127,224,15,255,171,255,255,128,47,244,0,63,253,0,63,208,0,15,240,0,127,192,0,11,248,0,191,64,0,7,252,0,255,64,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,0,0,3,252,0,255,64,0,3,252,0,191,128,0,7,248,0,63,192,0,15,244,0,63,224,0,31,240,0,15,249,0,191,208,0,7,255,255,255,128,0,1,255,255,254,0,0,0,47,255,224,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,1,253,0,0,0,0,2,255,0,0,0,0,2,254,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0, + // 0x1ee4 Ụ + 228,30,22,35,210,28,3,248,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,63,192,0,0,0,0,127,192,0,0,0,0,63,192,0,0,0,0,47,64,0,0,0,0,0,0,0,0, + // 0x1ee5 ụ + 229,30,18,29,145,24,3,248,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0,0,0,0,0,0,0,1,144,0,0,0,11,244,0,0,0,15,248,0,0,0,15,248,0,0,0,3,240,0,0,0,0,0,0,0, + // 0x1ee6 Ủ + 230,30,22,39,234,28,3,255,0,0,106,64,0,0,0,0,255,240,0,0,0,0,255,252,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,2,252,0,0,0,0,47,240,0,0,0,0,47,64,0,0,0,0,31,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,64,0,0,31,224,191,128,0,0,31,224,191,128,0,0,47,224,127,192,0,0,47,208,63,192,0,0,63,192,63,224,0,0,191,192,31,248,0,1,255,64,15,255,64,31,255,0,3,255,255,255,252,0,0,255,255,255,224,0,0,27,255,254,64,0,0,0,21,64,0,0, + // 0x1ee7 ủ + 231,30,18,33,165,24,3,255,0,1,64,0,0,0,15,254,0,0,0,15,255,128,0,0,0,47,192,0,0,0,15,192,0,0,0,47,192,0,0,2,255,64,0,0,3,248,0,0,0,2,240,0,0,0,1,144,0,0,0,0,0,0,0,85,0,0,5,80,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,15,240,255,0,0,31,240,255,0,0,31,240,255,0,0,31,240,255,0,0,47,240,255,64,0,63,240,191,192,0,191,240,127,224,7,255,240,63,255,255,239,240,15,255,255,143,240,2,255,253,11,240,0,5,64,0,0, + // 0x1ee8 Ứ + 232,30,29,37,40,31,3,255,0,0,0,255,192,0,0,0,0,0,2,255,0,0,0,0,0,0,7,252,0,0,0,0,0,0,15,240,0,0,0,0,0,0,63,192,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0, + // 0x1ee9 ứ + 233,30,25,30,210,27,3,255,0,0,15,248,0,0,0,0,0,63,240,0,0,0,0,0,127,192,0,0,0,0,0,255,0,0,0,0,0,3,248,0,0,0,0,0,11,224,0,0,106,128,0,0,0,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0, + // 0x1eea Ừ + 234,30,29,37,40,31,3,255,0,31,244,0,0,0,0,0,0,11,252,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,47,192,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0, + // 0x1eeb ừ + 235,30,25,30,210,27,3,255,1,255,64,0,0,0,0,0,191,192,0,0,0,0,0,47,224,0,0,0,0,0,11,244,0,0,0,0,0,2,252,0,0,0,0,0,0,126,0,0,106,128,0,0,0,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0, + // 0x1eec Ử + 236,30,29,39,56,31,3,255,0,0,106,64,0,0,0,0,0,0,255,244,0,0,0,0,0,0,255,252,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,189,0,0,0,0,0,0,1,252,0,0,0,0,0,0,31,244,0,0,0,0,0,0,31,128,0,0,0,0,0,0,15,64,0,0,0,0,0,0,5,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0, + // 0x1eed ử + 237,30,25,33,231,27,3,255,0,1,64,0,0,0,0,0,15,254,0,0,0,0,0,15,255,128,0,0,0,0,0,31,192,0,0,0,0,0,15,192,0,0,0,0,0,31,192,0,0,0,0,1,255,64,0,0,0,0,2,248,0,0,0,0,0,2,240,0,0,106,128,0,1,160,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0, + // 0x1eee Ữ + 238,30,29,36,32,31,3,255,0,11,248,0,240,0,0,0,0,63,255,67,240,0,0,0,0,191,255,255,208,0,0,0,0,248,11,255,192,0,0,0,0,240,1,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0, + // 0x1eef ữ + 239,30,25,29,203,27,3,255,0,191,64,31,0,0,0,3,255,244,63,0,0,0,11,255,255,253,0,0,0,15,129,255,248,0,0,0,15,0,27,224,0,106,128,0,0,0,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0, + // 0x1ef0 Ự + 240,30,29,37,40,31,3,248,0,0,0,0,0,0,127,192,0,0,0,0,0,0,191,128,191,64,0,0,31,224,191,64,191,64,0,0,31,224,255,0,191,64,0,0,31,226,254,0,191,64,0,0,31,255,252,0,191,64,0,0,31,255,240,0,191,64,0,0,31,254,64,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,64,0,0,31,224,0,0,191,128,0,0,31,224,0,0,127,128,0,0,47,208,0,0,63,192,0,0,63,208,0,0,63,224,0,0,127,192,0,0,31,248,0,1,255,128,0,0,15,255,64,27,255,0,0,0,3,255,255,255,252,0,0,0,0,191,255,255,240,0,0,0,0,11,255,254,64,0,0,0,0,0,21,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x1ef1 ự + 241,30,25,32,224,27,3,248,0,0,0,0,0,106,128,0,0,0,0,0,127,192,0,0,0,0,0,191,128,85,0,0,5,80,255,0,255,0,0,15,241,255,0,255,0,0,15,247,252,0,255,0,0,15,255,244,0,255,0,0,15,255,128,0,255,0,0,15,244,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,15,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,31,240,0,0,255,0,0,47,240,0,0,255,64,0,63,240,0,0,191,192,0,191,240,0,0,127,224,7,255,240,0,0,63,255,255,239,240,0,0,15,255,255,143,240,0,0,2,255,253,11,240,0,0,0,5,64,0,0,0,0,0,0,0,0,0,0,0,0,1,144,0,0,0,0,0,11,244,0,0,0,0,0,15,248,0,0,0,0,0,15,248,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0, + // 0x1ef2 Ỳ + 242,30,22,36,216,22,0,0,0,15,248,0,0,0,0,7,252,0,0,0,0,1,255,0,0,0,0,0,127,128,0,0,0,0,31,208,0,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef3 ỳ + 243,30,20,39,195,20,0,246,0,127,224,0,0,0,31,240,0,0,0,7,252,0,0,0,1,254,0,0,0,0,127,64,0,0,0,31,192,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x1ef4 Ỵ + 244,30,22,35,210,22,0,248,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,47,128,0,0,0,0,0,0,0,0, + // 0x1ef5 ỵ + 245,30,20,31,155,20,0,246,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,6,64,0,3,252,47,208,0,15,244,63,224,16,127,240,63,224,127,255,192,15,192,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x1ef6 Ỷ + 246,30,22,38,228,22,0,0,0,0,106,64,0,0,0,0,255,244,0,0,0,0,255,252,0,0,0,0,0,253,0,0,0,0,0,253,0,0,0,0,2,252,0,0,0,0,31,244,0,0,0,0,31,128,0,0,0,0,31,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef7 ỷ + 247,30,20,42,210,20,0,246,0,0,80,0,0,0,3,255,128,0,0,3,255,240,0,0,0,7,240,0,0,0,3,240,0,0,0,7,240,0,0,0,127,208,0,0,0,190,0,0,0,0,124,0,0,0,0,40,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, + // 0x1ef8 Ỹ + 248,30,22,35,210,22,0,0,0,11,248,0,240,0,0,63,255,67,240,0,0,191,255,255,224,0,0,248,11,255,192,0,0,240,1,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,192,0,0,47,240,63,208,0,0,63,208,47,240,0,0,191,128,15,244,0,0,255,0,11,252,0,2,254,0,3,253,0,3,252,0,1,255,0,11,248,0,0,255,64,31,240,0,0,127,192,63,208,0,0,63,208,127,192,0,0,31,240,255,64,0,0,11,249,255,0,0,0,3,255,253,0,0,0,2,255,248,0,0,0,0,255,240,0,0,0,0,191,224,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0, + // 0x1ef9 ỹ + 249,30,20,38,190,20,0,246,0,47,224,3,192,0,255,253,15,192,2,255,255,255,64,3,224,63,255,0,3,192,6,248,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,85,191,128,0,2,254,63,192,0,3,253,63,208,0,7,252,31,240,0,11,248,15,240,0,15,240,11,248,0,31,240,3,252,0,47,208,3,253,0,63,192,1,254,0,127,128,0,255,0,255,64,0,191,64,255,0,0,63,129,254,0,0,63,195,252,0,0,31,211,252,0,0,15,231,244,0,0,11,251,240,0,0,3,255,224,0,0,3,255,192,0,0,1,255,192,0,0,0,255,64,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,3,252,0,0,0,15,244,0,0,16,127,240,0,0,127,255,192,0,0,127,255,64,0,0,127,248,0,0,0,0,0,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_29.cpp new file mode 100644 index 000000000000..ff7b51c9ee25 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_29.cpp @@ -0,0 +1,416 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium 40pt, capital 'A' height: 29px, width: 100%, range: 0x0020-0x00ff +extern const uint8_t NotoSans_Medium_29[25485] = { + 130,29,32,0,255,0,38,246, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 5,30,60,11,3,255,170,128,255,192,255,192,255,192,255,192,255,128,191,128,191,128,191,128,191,128,191,64,127,64,127,64,127,64,127,64,127,0,63,0,63,0,63,0,63,0,42,0,0,0,0,0,0,0,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x0022 " + 13,11,44,17,2,18,42,64,106,64,127,192,191,64,63,128,191,64,63,128,191,0,63,128,127,0,63,64,127,0,63,64,127,0,63,64,127,0,63,64,63,0,47,0,63,0,31,0,62,0, + // 0x0023 # + 24,29,174,26,1,0,0,0,42,0,26,0,0,0,127,0,63,64,0,0,190,0,63,0,0,0,253,0,127,0,0,0,253,0,126,0,0,0,252,0,190,0,0,1,252,0,253,0,0,2,248,0,252,0,0,3,248,1,252,0,47,255,255,255,255,255,47,255,255,255,255,255,31,255,255,255,255,254,0,7,224,3,240,0,0,11,224,7,240,0,0,15,208,7,240,0,0,15,192,11,224,0,0,31,192,15,208,0,85,111,213,95,213,80,255,255,255,255,255,244,255,255,255,255,255,244,255,255,255,255,255,244,0,127,0,63,64,0,0,127,0,63,0,0,0,190,0,127,0,0,0,253,0,127,0,0,0,252,0,190,0,0,0,252,0,253,0,0,1,252,0,252,0,0,2,248,0,252,0,0, + // 0x0024 $ + 19,34,170,23,2,253,0,0,84,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,47,255,233,0,2,255,255,255,224,15,255,255,255,224,63,254,254,255,208,127,208,248,6,192,191,128,248,0,0,191,64,248,0,0,191,128,248,0,0,191,192,248,0,0,63,248,248,0,0,47,255,248,0,0,7,255,255,64,0,0,191,255,248,0,0,11,255,255,128,0,0,255,255,224,0,0,249,191,240,0,0,248,15,248,0,0,248,11,252,0,0,248,7,252,0,0,248,11,248,164,0,248,31,244,191,233,254,255,240,191,255,255,255,192,191,255,255,254,0,6,255,255,144,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,80,0,0, + // 0x0025 % + 31,30,240,34,2,255,2,254,64,0,0,42,64,0,15,255,224,0,0,127,0,0,63,255,248,0,0,254,0,0,127,131,252,0,2,252,0,0,191,0,253,0,3,244,0,0,254,0,254,0,11,240,0,0,253,0,191,0,15,208,0,0,253,0,127,0,63,192,0,0,252,0,127,0,127,0,0,0,252,0,127,0,254,0,0,0,253,0,127,1,252,0,0,0,253,0,191,3,248,5,80,0,254,0,254,11,240,127,253,0,191,0,253,15,209,255,255,64,63,131,252,47,195,254,191,192,47,255,248,63,71,244,15,224,15,255,224,255,11,240,11,240,1,254,65,253,15,224,7,240,0,0,3,248,15,224,7,240,0,0,7,240,15,224,3,244,0,0,15,224,15,208,3,244,0,0,47,192,15,224,3,244,0,0,63,64,15,224,7,240,0,0,191,0,15,224,7,240,0,0,253,0,11,240,11,240,0,2,252,0,3,244,31,224,0,7,244,0,2,254,191,192,0,15,224,0,0,255,255,64,0,31,192,0,0,63,253,0,0,0,0,0,0,1,64,0, + // 0x0026 & + 27,30,210,29,2,255,0,6,255,144,0,0,0,0,63,255,253,0,0,0,0,255,255,255,64,0,0,3,255,150,255,192,0,0,3,253,0,127,208,0,0,7,252,0,63,208,0,0,7,248,0,47,208,0,0,7,252,0,63,208,0,0,3,252,0,127,192,0,0,2,254,0,255,128,0,0,0,255,71,255,0,0,0,0,127,255,252,0,0,0,0,47,255,224,0,0,0,0,47,255,64,0,0,0,1,255,255,64,0,26,144,7,255,255,224,0,63,224,31,253,63,248,0,63,192,63,240,15,254,0,127,192,191,192,3,255,128,255,64,255,128,0,255,225,255,0,255,64,0,47,251,253,0,255,64,0,11,255,252,0,255,128,0,2,255,240,0,255,192,0,0,255,240,0,191,240,0,11,255,252,0,63,254,85,191,255,255,0,31,255,255,255,242,255,192,7,255,255,255,128,191,240,0,127,255,248,0,47,252,0,1,84,0,0,0,0, + // 0x0027 ' + 5,11,22,9,2,18,42,64,127,192,63,128,63,128,63,128,63,64,63,64,63,64,63,64,47,0,31,0, + // 0x0028 ( + 10,36,108,12,1,249,0,6,160,0,31,224,0,63,192,0,191,64,0,255,0,2,253,0,3,252,0,11,248,0,15,240,0,15,240,0,31,224,0,47,208,0,63,192,0,63,192,0,63,192,0,127,128,0,127,128,0,127,128,0,127,128,0,127,128,0,127,192,0,63,192,0,63,192,0,63,192,0,47,208,0,31,224,0,15,240,0,15,240,0,11,248,0,3,252,0,2,253,0,0,255,0,0,191,64,0,63,192,0,15,224,0,1,80, + // 0x0029 ) + 10,36,108,12,1,249,106,0,0,63,192,0,31,224,0,15,240,0,7,248,0,3,252,0,1,254,0,0,255,0,0,191,64,0,127,128,0,63,192,0,63,192,0,47,208,0,47,224,0,31,224,0,31,240,0,31,240,0,15,240,0,15,240,0,31,240,0,31,240,0,31,224,0,47,224,0,47,208,0,63,192,0,63,192,0,127,128,0,191,64,0,255,0,1,254,0,3,252,0,7,248,0,15,240,0,47,208,0,63,128,0,21,0,0, + // 0x002a * + 20,19,95,22,1,12,0,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,254,0,0,0,0,254,0,0,0,0,190,0,0,57,0,189,0,108,63,244,125,47,252,63,255,255,255,252,127,255,255,255,253,1,91,255,165,64,0,3,255,192,0,0,15,239,224,0,0,47,199,244,0,0,127,195,252,0,0,255,65,255,0,2,255,0,255,128,0,189,0,126,0,0,8,0,32,0, + // 0x002b + + 19,20,100,23,2,4,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,170,171,254,170,168,255,255,255,255,252,255,255,255,255,252,170,170,254,170,164,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,168,0,0, + // 0x002c , + 7,11,22,11,1,250,6,168,11,252,15,248,15,240,15,240,31,224,47,192,63,128,63,64,127,0,0,0, + // 0x002d - + 11,5,15,13,1,8,106,170,160,191,255,244,191,255,244,191,255,244,0,0,0, + // 0x002e . + 5,6,12,11,3,255,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x002f / + 15,29,116,15,0,0,0,0,2,168,0,0,7,248,0,0,15,244,0,0,15,240,0,0,47,224,0,0,63,192,0,0,127,192,0,0,191,64,0,0,255,0,0,1,254,0,0,3,253,0,0,3,252,0,0,7,248,0,0,15,240,0,0,15,240,0,0,47,208,0,0,63,192,0,0,127,128,0,0,191,64,0,0,255,0,0,1,254,0,0,3,252,0,0,3,252,0,0,11,244,0,0,15,240,0,0,31,224,0,0,47,208,0,0,63,192,0,0,127,128,0,0, + // 0x0030 0 + 19,30,150,23,2,255,0,11,255,64,0,0,191,255,244,0,3,255,255,254,0,11,255,171,255,64,31,248,0,255,192,63,224,0,63,208,63,192,0,31,240,127,192,0,15,240,191,128,0,15,244,255,64,0,11,248,255,64,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,64,0,11,248,191,128,0,11,248,127,128,0,15,244,63,192,0,31,240,63,208,0,47,240,31,240,0,127,208,15,254,70,255,192,3,255,255,255,0,0,255,255,252,0,0,47,255,224,0,0,0,84,0,0, + // 0x0031 1 + 12,29,87,23,3,0,0,0,169,0,3,255,0,31,255,0,191,255,2,255,255,15,253,255,127,240,255,127,193,255,30,1,255,4,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255, + // 0x0032 2 + 19,29,145,23,2,0,0,27,254,128,0,2,255,255,248,0,31,255,255,255,0,191,255,175,255,192,127,208,0,255,208,30,0,0,63,224,0,0,0,47,240,0,0,0,31,240,0,0,0,31,240,0,0,0,31,240,0,0,0,63,224,0,0,0,63,192,0,0,0,255,128,0,0,1,255,0,0,0,7,253,0,0,0,15,248,0,0,0,63,224,0,0,0,255,192,0,0,3,255,0,0,0,15,252,0,0,0,63,240,0,0,0,255,192,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252, + // 0x0033 3 + 20,30,150,23,1,255,0,27,255,160,0,2,255,255,254,0,31,255,255,255,192,63,255,171,255,240,15,208,0,47,244,6,0,0,15,248,0,0,0,11,252,0,0,0,7,252,0,0,0,7,252,0,0,0,15,248,0,0,0,31,240,0,0,0,191,208,0,21,175,255,64,0,63,255,244,0,0,63,255,249,0,0,63,255,255,192,0,0,1,191,244,0,0,0,15,252,0,0,0,3,253,0,0,0,3,254,0,0,0,2,255,0,0,0,2,255,0,0,0,3,254,0,0,0,7,253,96,0,0,31,252,127,148,5,255,244,127,255,255,255,224,127,255,255,255,64,11,255,255,244,0,0,5,84,0,0, + // 0x0034 4 + 21,29,174,23,1,0,0,0,0,42,128,0,0,0,0,255,192,0,0,0,2,255,192,0,0,0,7,255,192,0,0,0,15,255,192,0,0,0,47,255,192,0,0,0,127,127,192,0,0,0,255,63,192,0,0,2,252,63,192,0,0,7,244,63,192,0,0,15,224,63,192,0,0,63,192,63,192,0,0,127,64,63,192,0,0,254,0,63,192,0,3,252,0,63,192,0,11,244,0,63,192,0,31,224,0,63,192,0,63,192,0,63,192,0,191,0,0,63,192,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,170,170,170,191,234,128,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0, + // 0x0035 5 + 19,30,150,23,2,255,10,170,170,170,64,15,255,255,255,192,15,255,255,255,192,15,255,255,255,192,15,240,0,0,0,31,224,0,0,0,31,224,0,0,0,31,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,192,0,0,0,63,218,170,64,0,63,255,255,248,0,63,255,255,255,0,47,255,255,255,192,1,0,1,255,224,0,0,0,63,240,0,0,0,15,244,0,0,0,15,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,15,244,0,0,0,47,240,144,0,0,191,224,191,144,27,255,192,191,255,255,255,0,191,255,255,252,0,27,255,255,144,0,0,21,80,0,0, + // 0x0036 6 + 19,30,150,23,2,255,0,0,27,255,128,0,7,255,255,192,0,47,255,255,192,0,255,254,170,192,3,255,128,0,0,11,253,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,191,65,255,228,0,255,79,255,255,0,255,127,255,255,192,255,255,85,255,240,255,244,0,47,244,255,192,0,15,248,255,128,0,7,252,255,64,0,3,252,255,64,0,3,252,191,64,0,3,252,191,128,0,3,252,127,192,0,7,252,63,224,0,15,248,31,244,0,47,240,15,254,65,255,224,3,255,255,255,192,0,255,255,255,0,0,31,255,244,0,0,0,85,0,0, + // 0x0037 7 + 20,29,145,23,1,0,42,170,170,170,170,127,255,255,255,255,127,255,255,255,255,127,255,255,255,255,0,0,0,2,254,0,0,0,3,252,0,0,0,7,252,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,128,0,0,1,255,0,0,0,2,254,0,0,0,3,252,0,0,0,11,252,0,0,0,15,244,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,128,0,0,1,255,0,0,0,3,254,0,0,0,7,252,0,0,0,15,252,0,0,0,15,244,0,0,0,47,240,0,0,0,63,208,0,0,0,191,192,0,0, + // 0x0038 8 + 19,30,150,23,2,255,0,27,255,144,0,1,255,255,253,0,7,255,255,255,64,31,254,90,255,192,63,240,0,127,224,63,192,0,31,240,127,192,0,15,240,63,192,0,15,240,63,192,0,15,240,63,224,0,47,224,31,248,0,191,192,11,255,71,255,0,2,255,255,252,0,0,127,255,208,0,0,127,255,224,0,2,255,255,253,0,15,254,11,255,128,63,240,0,191,224,127,192,0,31,244,255,64,0,11,248,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,7,252,191,192,0,15,248,127,244,0,127,240,47,255,255,255,192,7,255,255,255,0,0,191,255,244,0,0,1,84,0,0, + // 0x0039 9 + 19,30,150,23,2,255,0,27,254,64,0,1,255,255,244,0,7,255,255,253,0,31,255,175,255,64,63,240,0,255,192,127,192,0,63,224,255,128,0,31,240,255,0,0,15,244,255,0,0,11,248,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,64,0,15,252,191,192,0,47,252,63,244,1,255,252,47,255,255,251,252,11,255,255,215,252,1,255,255,71,248,0,6,148,11,244,0,0,0,15,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,255,128,0,0,3,255,0,4,0,111,253,0,15,255,255,244,0,15,255,255,192,0,15,255,249,0,0,1,85,0,0,0, + // 0x003a : + 5,23,46,11,3,255,127,64,255,192,255,192,255,192,255,128,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x003b ; + 7,28,56,11,1,250,7,240,15,252,31,252,31,252,15,248,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,164,15,248,15,244,31,240,31,224,47,208,63,192,63,64,127,0,190,0,0,0, + // 0x003c < + 19,21,105,23,2,4,0,0,0,0,4,0,0,0,0,124,0,0,0,7,252,0,0,0,127,252,0,0,7,255,224,0,0,127,254,0,0,7,255,224,0,0,127,254,0,0,7,255,208,0,0,127,253,0,0,0,255,208,0,0,0,255,224,0,0,0,127,255,64,0,0,7,255,248,0,0,0,47,255,144,0,0,2,255,253,0,0,0,31,255,224,0,0,1,191,252,0,0,0,11,252,0,0,0,0,124,0,0,0,0,4, + // 0x003d = + 19,12,60,23,2,8,170,170,170,170,164,255,255,255,255,248,255,255,255,255,248,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,248,255,255,255,255,248,255,255,255,255,248,85,85,85,85,84, + // 0x003e > + 19,20,100,23,2,4,224,0,0,0,0,254,0,0,0,0,255,224,0,0,0,127,254,0,0,0,6,255,224,0,0,0,47,254,0,0,0,2,255,224,0,0,0,47,255,64,0,0,2,255,244,0,0,0,31,252,0,0,0,47,252,0,0,7,255,244,0,0,191,254,64,0,27,255,224,0,1,255,253,0,0,47,255,208,0,0,255,248,0,0,0,255,128,0,0,0,244,0,0,0,0,64,0,0,0,0, + // 0x003f ? + 17,30,150,18,0,255,0,111,254,64,0,31,255,255,240,0,127,255,255,252,0,63,254,175,255,0,46,64,1,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,64,0,0,2,255,0,0,0,11,253,0,0,0,47,244,0,0,0,255,208,0,0,3,255,64,0,0,11,252,0,0,0,15,240,0,0,0,31,208,0,0,0,31,192,0,0,0,31,192,0,0,0,10,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,208,0,0,0,63,240,0,0,0,63,240,0,0,0,63,240,0,0,0,47,224,0,0,0,6,64,0,0, + // 0x0040 @ + 32,33,8,36,2,252,0,0,0,5,165,0,0,0,0,0,6,255,255,249,0,0,0,0,127,255,255,255,208,0,0,3,255,250,86,255,248,0,0,31,253,0,0,11,255,0,0,127,208,0,0,0,191,128,0,255,0,0,0,0,47,208,3,252,0,0,0,0,11,240,7,240,0,27,254,144,3,248,15,224,0,255,255,252,2,252,31,192,7,255,255,252,0,252,63,128,15,244,2,252,0,253,63,0,63,192,1,252,0,190,127,0,127,64,1,252,0,190,191,0,191,0,2,252,0,190,190,0,254,0,2,252,0,190,190,0,254,0,2,252,0,190,254,0,254,0,3,252,0,253,190,0,254,0,3,252,0,252,190,0,191,0,7,252,1,252,191,0,127,64,15,252,3,244,127,0,63,224,127,190,31,240,63,0,31,255,253,63,255,208,63,128,7,255,244,31,255,64,47,192,0,106,64,2,164,0,15,240,0,0,0,0,0,0,7,248,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,255,224,0,0,27,0,0,0,47,255,169,107,255,0,0,0,7,255,255,255,255,0,0,0,0,111,255,255,228,0,0,0,0,0,86,84,0,0,0, + // 0x0041 A + 26,29,203,26,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0042 B + 20,29,145,26,4,0,170,170,165,0,0,255,255,255,249,0,255,255,255,255,192,255,255,255,255,240,255,0,1,191,248,255,0,0,31,252,255,0,0,11,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,15,248,255,0,0,47,240,255,170,171,255,192,255,255,255,249,0,255,255,255,254,0,255,255,255,255,224,255,0,0,111,248,255,0,0,11,253,255,0,0,3,255,255,0,0,2,255,255,0,0,1,255,255,0,0,2,255,255,0,0,3,255,255,0,0,7,254,255,0,0,31,253,255,170,171,255,248,255,255,255,255,224,255,255,255,255,64,255,255,255,228,0, + // 0x0043 C + 22,30,180,25,2,255,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x0044 D + 23,29,174,29,4,0,170,170,165,0,0,0,255,255,255,248,0,0,255,255,255,255,192,0,255,255,255,255,244,0,255,0,1,191,253,0,255,0,0,11,255,64,255,0,0,1,255,192,255,0,0,0,191,224,255,0,0,0,63,240,255,0,0,0,31,244,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,31,244,255,0,0,0,63,240,255,0,0,0,127,224,255,0,0,0,255,192,255,0,0,7,255,64,255,0,0,127,254,0,255,170,191,255,248,0,255,255,255,255,208,0,255,255,255,253,0,0,255,255,254,64,0,0, + // 0x0045 E + 16,29,116,22,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0046 F + 16,29,116,21,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,170,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0047 G + 24,30,180,29,2,255,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0, + // 0x0048 H + 22,29,174,30,4,0,170,0,0,0,10,160,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,234,170,170,191,240,255,255,255,255,255,240,255,255,255,255,255,240,255,255,255,255,255,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240, + // 0x0049 I + 12,29,87,14,1,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x004a J + 11,37,111,12,253,248,0,2,168,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,11,252,0,15,248,0,63,240,255,255,224,255,255,192,255,254,0,111,160,0, + // 0x004b K + 21,29,174,25,4,0,170,0,0,0,170,64,255,0,0,3,255,0,255,0,0,15,252,0,255,0,0,47,244,0,255,0,0,127,208,0,255,0,1,255,128,0,255,0,3,254,0,0,255,0,15,252,0,0,255,0,63,240,0,0,255,0,255,192,0,0,255,2,255,0,0,0,255,11,253,0,0,0,255,31,244,0,0,0,255,127,244,0,0,0,255,255,252,0,0,0,255,255,255,0,0,0,255,242,255,128,0,0,255,192,255,208,0,0,255,0,63,240,0,0,255,0,31,248,0,0,255,0,15,253,0,0,255,0,3,255,0,0,255,0,1,255,128,0,255,0,0,191,208,0,255,0,0,63,240,0,255,0,0,15,252,0,255,0,0,11,254,0,255,0,0,3,255,0,255,0,0,0,255,192, + // 0x004c L + 17,29,145,21,4,0,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64, + // 0x004d M + 29,29,232,37,4,0,170,160,0,0,0,2,170,128,255,244,0,0,0,11,255,192,255,248,0,0,0,15,255,192,255,252,0,0,0,31,255,192,255,253,0,0,0,47,255,192,254,255,0,0,0,63,191,192,254,255,0,0,0,127,127,192,254,127,64,0,0,255,63,192,254,63,192,0,0,253,63,192,254,47,192,0,2,252,63,192,254,31,224,0,3,248,63,192,254,15,240,0,7,244,127,192,254,11,244,0,11,240,127,192,254,7,248,0,15,224,127,192,254,3,252,0,31,208,127,192,254,2,253,0,63,192,127,192,254,0,254,0,63,128,127,192,254,0,255,0,191,0,127,192,254,0,191,64,255,0,127,192,254,0,63,193,253,0,127,192,254,0,63,194,252,0,127,192,254,0,31,211,248,0,127,192,254,0,15,247,244,0,127,192,254,0,11,255,240,0,127,192,254,0,7,255,224,0,127,192,254,0,3,255,192,0,127,192,254,0,2,255,192,0,127,192,254,0,1,255,128,0,127,192,254,0,0,255,0,0,127,192, + // 0x004e N + 23,29,174,31,4,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x004f O + 27,30,210,31,2,255,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x0050 P + 19,29,145,24,4,0,170,170,148,0,0,255,255,255,224,0,255,255,255,254,0,255,255,255,255,128,255,0,7,255,208,255,0,0,127,240,255,0,0,47,240,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,31,240,255,0,0,63,240,255,0,1,255,208,255,150,175,255,192,255,255,255,255,0,255,255,255,248,0,255,255,254,64,0,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0051 Q + 27,36,252,31,2,249,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,248,0,0,11,255,255,255,208,0,0,0,191,255,253,0,0,0,0,1,87,255,0,0,0,0,0,1,255,192,0,0,0,0,0,191,240,0,0,0,0,0,63,252,0,0,0,0,0,15,254,0,0,0,0,0,3,255,128,0,0,0,0,1,255,208, + // 0x0052 R + 21,29,174,25,4,0,170,170,148,0,0,0,255,255,255,228,0,0,255,255,255,254,0,0,255,255,255,255,192,0,255,0,22,255,224,0,255,0,0,127,240,0,255,0,0,31,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,47,240,0,255,0,0,127,224,0,255,64,23,255,192,0,255,255,255,255,0,0,255,255,255,248,0,0,255,255,255,192,0,0,255,149,127,224,0,0,255,0,31,244,0,0,255,0,11,252,0,0,255,0,3,254,0,0,255,0,2,255,0,0,255,0,0,255,192,0,255,0,0,127,208,0,255,0,0,47,240,0,255,0,0,15,248,0,255,0,0,11,253,0,255,0,0,3,255,0,255,0,0,1,255,128, + // 0x0053 S + 18,30,150,22,2,255,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,21,80,0,0, + // 0x0054 T + 22,29,174,23,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x0055 U + 23,30,180,30,3,255,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x0056 V + 25,29,203,25,0,0,170,64,0,0,0,170,64,191,192,0,0,0,255,0,127,192,0,0,2,255,0,63,208,0,0,3,254,0,47,240,0,0,7,252,0,15,240,0,0,11,252,0,15,248,0,0,15,244,0,11,252,0,0,31,240,0,3,252,0,0,47,224,0,3,254,0,0,63,208,0,1,255,0,0,127,192,0,0,255,0,0,191,128,0,0,255,128,0,255,64,0,0,127,192,1,255,0,0,0,63,192,2,254,0,0,0,47,224,3,253,0,0,0,31,240,7,252,0,0,0,15,244,11,248,0,0,0,11,248,15,240,0,0,0,7,252,31,240,0,0,0,3,253,47,224,0,0,0,2,254,63,192,0,0,0,0,255,127,192,0,0,0,0,255,191,64,0,0,0,0,191,255,0,0,0,0,0,63,254,0,0,0,0,0,63,253,0,0,0,0,0,31,252,0,0,0,0,0,15,248,0,0,0, + // 0x0057 W + 37,29,34,38,0,0,106,64,0,0,106,128,0,0,42,128,127,192,0,0,191,192,0,0,127,192,63,208,0,0,255,208,0,0,191,128,63,224,0,1,255,240,0,0,255,64,47,240,0,2,255,240,0,0,255,0,31,240,0,3,255,244,0,1,255,0,15,244,0,3,251,248,0,2,254,0,15,248,0,7,247,252,0,3,253,0,11,252,0,11,242,252,0,3,252,0,7,252,0,15,241,254,0,7,252,0,3,253,0,31,224,255,0,11,248,0,3,254,0,47,208,255,0,15,244,0,2,255,0,63,192,191,64,15,240,0,1,255,0,63,192,127,128,31,240,0,0,255,64,127,128,63,192,47,224,0,0,191,128,191,0,47,192,63,208,0,0,127,192,255,0,31,224,63,192,0,0,63,193,254,0,15,240,127,192,0,0,63,194,253,0,15,240,191,128,0,0,47,211,252,0,11,244,255,64,0,0,31,227,252,0,7,248,255,0,0,0,15,243,248,0,3,252,254,0,0,0,15,247,240,0,2,253,253,0,0,0,11,255,240,0,1,254,252,0,0,0,7,255,224,0,0,255,252,0,0,0,3,255,208,0,0,255,248,0,0,0,3,255,192,0,0,191,244,0,0,0,2,255,192,0,0,127,240,0,0,0,1,255,128,0,0,63,240,0,0, + // 0x0058 X + 24,29,174,24,0,0,42,144,0,0,2,168,47,240,0,0,11,252,15,252,0,0,31,244,7,253,0,0,63,224,2,255,0,0,191,192,0,255,128,0,255,64,0,127,192,3,254,0,0,47,240,7,252,0,0,15,244,15,244,0,0,7,252,47,224,0,0,3,254,63,192,0,0,0,255,255,64,0,0,0,127,255,0,0,0,0,63,252,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,0,255,255,0,0,0,2,255,191,192,0,0,3,252,63,208,0,0,15,248,31,240,0,0,31,240,15,252,0,0,63,208,3,253,0,0,191,128,2,255,0,1,255,0,0,255,128,3,253,0,0,127,208,11,252,0,0,63,240,31,244,0,0,15,248,63,224,0,0,11,253,191,192,0,0,3,255, + // 0x0059 Y + 23,29,174,23,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x005a Z + 21,29,174,23,1,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x005b [ + 9,36,108,13,3,249,170,170,128,255,255,192,255,255,192,255,170,128,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,192,255,255,192,255,255,192,85,85,64, + // 0x005c "\" + 15,29,116,15,0,0,106,64,0,0,63,192,0,0,63,192,0,0,47,224,0,0,15,240,0,0,15,244,0,0,7,248,0,0,3,252,0,0,2,253,0,0,1,254,0,0,0,255,0,0,0,191,64,0,0,63,192,0,0,63,192,0,0,31,224,0,0,15,240,0,0,11,244,0,0,7,248,0,0,3,252,0,0,2,253,0,0,0,255,0,0,0,255,0,0,0,127,128,0,0,63,192,0,0,47,208,0,0,31,224,0,0,15,240,0,0,11,244,0,0,3,252, + // 0x005d ] + 9,36,108,13,1,249,170,170,128,255,255,192,255,255,192,170,191,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,255,255,192,255,255,192,255,255,192,85,85,64, + // 0x005e ^ + 20,19,95,23,1,10,0,0,124,0,0,0,0,190,0,0,0,0,255,0,0,0,2,255,192,0,0,3,255,208,0,0,11,235,240,0,0,15,195,244,0,0,47,194,252,0,0,63,64,253,0,0,127,0,191,0,0,253,0,63,64,1,252,0,47,192,3,248,0,15,208,7,240,0,11,240,15,224,0,3,244,31,192,0,2,252,47,192,0,0,253,63,64,0,0,191,85,0,0,0,21, + // 0x005f _ + 18,4,20,17,0,249,85,85,85,85,64,255,255,255,255,208,255,255,255,255,208,0,0,0,0,0, + // 0x0060 ` + 9,7,21,12,2,24,170,64,0,255,192,0,63,240,0,15,248,0,3,252,0,0,191,0,0,47,64, + // 0x0061 a + 18,23,115,23,2,255,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0062 b + 20,32,160,25,3,255,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,191,224,0,191,75,255,254,0,191,127,255,255,192,191,255,170,255,224,191,248,0,63,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,15,252,191,240,0,31,248,191,254,65,191,240,191,191,255,255,208,191,31,255,255,64,190,2,255,248,0,0,0,21,64,0, + // 0x0063 c + 16,23,92,20,2,255,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,85,0, + // 0x0064 d + 20,32,160,25,2,255,0,0,0,1,84,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,27,254,2,253,0,255,255,226,253,3,255,255,250,253,15,255,170,255,253,47,248,0,47,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,224,0,7,253,63,244,0,15,253,31,254,1,191,253,11,255,255,254,253,2,255,255,240,253,0,127,255,128,253,0,1,80,0,0, + // 0x0065 e + 19,23,115,23,2,255,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0066 f + 16,31,124,14,0,0,0,0,26,84,0,2,255,255,0,15,255,254,0,63,255,252,0,63,224,4,0,127,192,0,0,191,128,0,0,191,128,0,0,191,128,0,1,255,234,144,47,255,255,240,127,255,255,240,42,255,234,160,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x0067 g + 20,32,160,25,2,246,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x0068 h + 19,31,155,25,3,0,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,111,228,0,191,75,255,255,64,191,111,255,255,208,191,255,170,255,240,191,248,0,47,244,191,240,0,15,248,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x0069 i + 5,30,60,11,3,0,42,0,191,128,255,192,255,128,127,0,0,0,0,0,0,0,106,64,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x006a j + 11,40,120,11,253,246,0,2,160,0,11,248,0,15,252,0,15,248,0,7,240,0,0,0,0,0,0,0,0,0,0,6,164,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,15,244,0,47,240,127,255,240,127,255,192,127,255,64,22,148,0, + // 0x006b k + 19,31,155,22,3,0,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,26,160,191,128,0,127,224,191,128,1,255,128,191,128,3,254,0,191,128,15,248,0,191,128,63,240,0,191,128,255,192,0,191,67,255,0,0,191,79,252,0,0,191,111,240,0,0,191,191,244,0,0,191,255,252,0,0,191,255,255,0,0,191,224,255,128,0,191,128,127,208,0,191,128,47,244,0,191,128,15,252,0,191,128,3,254,0,191,128,1,255,64,191,128,0,191,208,191,128,0,63,240,191,128,0,31,248, + // 0x006c l + 5,31,62,11,3,0,85,0,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x006d m + 32,22,176,38,3,0,105,0,191,228,0,27,254,0,191,11,255,254,1,255,255,208,191,63,255,255,135,255,255,244,191,255,171,255,239,250,191,252,191,248,0,127,255,64,11,253,191,224,0,47,253,0,3,254,191,208,0,31,252,0,2,254,191,192,0,15,244,0,2,255,191,192,0,15,244,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255, + // 0x006e n + 19,22,110,25,3,0,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x006f o + 21,23,138,24,2,255,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x0070 p + 20,32,160,25,3,246,105,0,191,228,0,191,11,255,254,0,191,47,255,255,192,191,255,170,255,240,191,248,0,63,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,15,252,191,244,0,47,248,191,254,65,191,240,191,191,255,255,208,191,95,255,255,64,191,130,255,248,0,191,128,21,64,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x0071 q + 20,32,160,25,2,246,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,170,255,253,47,248,0,47,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,11,253,63,240,0,15,253,31,254,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,1,169, + // 0x0072 r + 13,22,88,17,3,0,105,0,127,192,191,3,255,192,191,15,255,192,191,63,255,192,191,255,64,0,191,248,0,0,191,240,0,0,191,192,0,0,191,192,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0, + // 0x0073 s + 16,23,92,19,2,255,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,85,64,0, + // 0x0074 t + 15,28,112,15,0,255,0,21,0,0,0,63,0,0,0,127,0,0,0,191,0,0,0,255,0,0,2,255,170,160,47,255,255,240,127,255,255,240,43,255,170,160,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,0,255,0,0,0,255,64,0,0,255,208,16,0,191,255,244,0,63,255,244,0,11,255,240,0,0,21,0, + // 0x0075 u + 19,23,115,25,3,255,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x0076 v + 21,22,132,21,0,0,170,64,0,0,106,128,191,192,0,0,255,128,63,192,0,0,255,64,63,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,248,0,11,248,0,7,252,0,15,244,0,3,253,0,31,240,0,2,254,0,47,224,0,0,255,0,63,192,0,0,255,64,127,192,0,0,127,192,191,64,0,0,63,192,255,0,0,0,47,209,254,0,0,0,31,226,253,0,0,0,15,243,252,0,0,0,11,251,248,0,0,0,3,255,240,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,192,0,0, + // 0x0077 w + 32,22,176,32,0,0,106,64,0,10,164,0,1,169,127,192,0,31,252,0,2,254,63,208,0,63,252,0,3,253,47,224,0,63,253,0,7,252,31,240,0,127,254,0,11,248,15,240,0,191,191,0,15,244,15,244,0,254,127,0,15,240,11,248,1,253,63,128,31,240,7,252,2,252,63,192,47,224,3,252,3,252,47,192,63,208,3,253,3,248,31,208,63,192,1,254,7,240,15,224,127,128,0,255,11,240,15,240,191,64,0,255,15,224,7,240,255,0,0,191,79,208,3,244,255,0,0,127,95,192,3,249,254,0,0,63,175,128,2,253,253,0,0,63,255,64,1,254,252,0,0,47,255,0,0,255,252,0,0,31,255,0,0,255,244,0,0,15,254,0,0,127,240,0,0,11,253,0,0,63,240,0, + // 0x0078 x + 20,22,110,22,1,0,106,128,0,2,169,127,208,0,11,252,47,240,0,31,244,15,252,0,63,224,7,253,0,191,192,2,255,1,255,64,0,255,131,254,0,0,63,219,252,0,0,31,255,240,0,0,15,255,224,0,0,3,255,192,0,0,3,255,192,0,0,15,255,224,0,0,47,255,240,0,0,63,219,252,0,0,255,131,254,0,2,255,1,255,64,7,253,0,191,192,15,248,0,63,224,47,240,0,31,244,127,208,0,11,252,255,128,0,3,255, + // 0x0079 y + 21,32,192,21,0,246,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x007a z + 17,22,110,19,1,0,42,170,170,170,0,63,255,255,255,0,63,255,255,255,0,42,170,171,255,0,0,0,3,253,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,229,85,85,0,191,255,255,255,128,191,255,255,255,128,191,255,255,255,128, + // 0x007b { + 13,36,144,15,1,249,0,0,5,128,0,1,255,192,0,11,255,192,0,31,255,192,0,63,244,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,191,128,0,2,255,0,0,255,253,0,0,255,208,0,0,255,244,0,0,175,254,0,0,1,255,64,0,0,191,128,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,208,0,0,63,248,0,0,31,255,192,0,7,255,192,0,0,191,192,0,0,0,64, + // 0x007c | + 4,41,41,22,9,246,20,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,85, + // 0x007d } + 14,36,144,15,1,249,84,0,0,0,191,224,0,0,191,252,0,0,191,255,0,0,2,255,0,0,0,255,64,0,0,191,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,128,0,0,127,192,0,0,63,244,0,0,15,255,208,0,1,191,208,0,2,255,208,0,31,255,128,0,63,224,0,0,127,192,0,0,127,128,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,191,64,0,0,255,64,0,7,255,0,0,191,254,0,0,191,248,0,0,191,144,0,0,16,0,0,0, + // 0x007e ~ + 19,6,30,23,2,11,11,250,64,0,4,127,255,244,0,60,255,255,255,235,252,254,107,255,255,252,208,0,111,255,224,0,0,1,170,0, + // 0x007f - 0x009a Control Characters + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00a0 "�" + 0,0,0,10,0,0, + // 0x00a1 ¡ + 5,30,60,11,3,248,46,0,255,192,255,192,255,192,255,192,46,0,0,0,0,0,0,0,63,0,63,0,63,0,63,0,127,0,127,0,127,64,127,64,127,64,191,64,191,64,191,128,191,128,191,128,255,128,255,128,255,192,255,192,255,192,255,192,0,0, + // 0x00a2 ¢ + 17,30,150,23,3,255,0,0,188,0,0,0,0,188,0,0,0,0,188,0,0,0,1,255,164,0,0,63,255,255,64,1,255,255,255,64,7,255,255,255,0,15,254,0,25,0,47,244,0,0,0,63,224,0,0,0,63,208,0,0,0,127,192,0,0,0,191,192,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,127,192,0,0,0,63,208,0,0,0,63,224,0,0,0,47,248,0,0,0,15,255,64,27,0,7,255,255,255,0,1,255,255,255,0,0,47,255,254,0,0,1,254,80,0,0,0,188,0,0,0,0,188,0,0,0,0,188,0,0,0,0,84,0,0, + // 0x00a3 £ + 21,29,174,23,1,0,0,0,43,254,64,0,0,2,255,255,253,0,0,15,255,255,253,0,0,47,254,175,252,0,0,63,224,0,100,0,0,191,192,0,0,0,0,191,128,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,127,255,255,255,64,0,191,255,255,255,64,0,191,255,255,255,64,0,0,255,128,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,0,0,0,0,2,254,0,0,0,0,11,248,0,0,0,0,127,255,255,255,255,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x00a4 ¤ + 18,18,90,23,2,5,13,0,0,1,192,63,70,254,7,240,63,255,255,255,240,15,255,255,255,192,7,254,2,255,0,11,240,0,127,64,15,208,0,31,192,15,192,0,15,192,31,192,0,15,192,31,192,0,15,192,15,192,0,15,192,15,224,0,47,192,7,244,0,191,64,7,255,155,255,64,31,255,255,255,192,127,239,255,239,240,63,1,169,3,224,8,0,0,0,128, + // 0x00a5 ¥ + 21,29,174,23,1,0,170,0,0,0,42,128,255,64,0,0,191,192,127,192,0,0,255,64,63,208,0,2,254,0,31,240,0,3,252,0,15,244,0,11,248,0,7,252,0,15,240,0,3,253,0,47,224,0,1,255,0,63,192,0,0,255,64,191,128,0,0,127,192,255,0,0,0,63,209,254,0,0,0,31,243,252,0,0,0,11,251,244,0,0,0,3,255,240,0,0,2,171,255,250,160,0,7,255,255,255,240,0,7,255,255,255,240,0,0,0,191,128,0,0,0,0,191,64,0,0,0,0,191,64,0,0,3,255,255,255,240,0,7,255,255,255,240,0,7,255,255,255,240,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0,0,0,191,64,0,0, + // 0x00a6 ¦ + 4,41,41,22,9,246,20,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,0,0,0,0,0,0,0,0,0,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,85, + // 0x00a7 § + 16,32,128,20,2,255,0,22,165,0,2,255,255,244,15,255,255,252,63,249,91,252,63,192,0,36,127,64,0,0,63,128,0,0,63,224,0,0,31,253,0,0,7,255,228,0,3,255,255,0,15,251,255,224,47,192,127,248,63,64,7,253,127,0,1,254,127,0,0,254,127,128,0,190,63,224,0,254,31,253,2,252,7,255,235,244,0,191,255,224,0,11,255,224,0,0,127,248,0,0,7,253,0,0,1,254,0,0,0,254,0,0,1,254,185,0,7,253,191,254,255,248,191,255,255,224,27,255,254,0,0,0,0,0, + // 0x00a8 ¨ + 12,5,15,24,6,25,20,0,16,254,0,253,255,2,254,255,1,254,124,0,184, + // 0x00a9 © + 30,30,240,33,2,255,0,0,6,255,228,0,0,0,0,0,191,255,255,208,0,0,0,11,254,85,111,248,0,0,0,63,208,0,1,255,0,0,0,253,0,0,0,31,208,0,3,240,0,1,0,3,240,0,11,192,1,255,253,0,252,0,15,64,11,255,255,0,125,0,47,0,47,249,190,0,47,0,61,0,127,64,0,0,15,64,124,0,254,0,0,0,15,128,184,0,252,0,0,0,11,192,248,1,248,0,0,0,7,192,244,2,248,0,0,0,3,208,244,2,248,0,0,0,3,208,244,2,248,0,0,0,3,208,244,2,248,0,0,0,7,192,248,1,252,0,0,0,7,192,188,0,252,0,0,0,11,192,124,0,254,0,0,0,15,128,62,0,127,128,5,0,31,64,47,0,31,255,254,0,63,0,15,192,7,255,254,0,188,0,7,224,0,106,144,2,248,0,2,252,0,0,0,11,240,0,0,191,64,0,0,127,192,0,0,31,248,0,11,254,0,0,0,2,255,255,255,244,0,0,0,0,47,255,254,64,0,0,0,0,0,85,64,0,0,0, + // 0x00aa ª + 12,14,42,15,1,15,1,191,128,47,255,244,47,171,252,4,0,190,0,0,126,0,22,190,11,255,254,63,233,190,190,0,126,252,0,126,253,0,254,191,155,254,63,255,110,6,248,25, + // 0x00ab « + 19,17,85,22,1,2,0,3,128,2,208,0,15,240,7,248,0,47,224,31,240,0,191,192,63,208,1,255,0,255,128,7,253,2,255,0,15,244,11,252,0,63,224,31,240,0,127,192,63,224,0,47,240,15,244,0,15,248,7,253,0,3,254,1,255,0,0,255,64,191,192,0,127,192,63,224,0,31,240,15,248,0,11,224,3,244,0,2,64,1,128, + // 0x00ac ¬ + 19,11,55,23,2,5,170,170,170,170,168,255,255,255,255,252,255,255,255,255,252,170,170,170,170,252,0,0,0,1,252,0,0,0,1,252,0,0,0,1,252,0,0,0,1,252,0,0,0,1,252,0,0,0,1,252,0,0,0,1,252, + // 0x00ad ­ + 11,5,15,13,1,8,106,170,160,191,255,244,191,255,244,191,255,244,0,0,0, + // 0x00ae ® + 30,30,240,33,2,255,0,0,6,255,228,0,0,0,0,0,191,255,255,208,0,0,0,11,254,85,111,248,0,0,0,63,208,0,1,255,0,0,0,253,0,0,0,31,208,0,3,240,0,0,0,3,240,0,11,192,63,255,224,0,252,0,15,64,63,255,253,0,125,0,47,0,63,170,255,0,47,0,61,0,63,0,63,64,15,64,124,0,63,0,47,128,15,128,184,0,63,0,47,128,11,192,248,0,63,0,63,64,7,192,244,0,63,0,191,0,3,208,244,0,63,255,253,0,3,208,244,0,63,255,240,0,3,208,244,0,63,171,240,0,7,192,248,0,63,3,248,0,7,192,188,0,63,0,252,0,11,192,124,0,63,0,190,0,15,128,62,0,63,0,63,64,31,64,47,0,63,0,47,192,63,0,15,192,63,0,15,224,188,0,7,224,21,0,1,82,248,0,2,252,0,0,0,11,240,0,0,191,64,0,0,127,192,0,0,31,248,0,11,254,0,0,0,2,255,255,255,244,0,0,0,0,47,255,254,64,0,0,0,0,0,85,64,0,0,0, + // 0x00af ¯ + 20,4,20,20,0,30,85,85,85,85,85,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170, + // 0x00b0 ° + 13,13,52,17,2,16,1,191,144,0,11,255,252,0,63,255,255,0,127,64,127,64,189,0,31,192,252,0,15,192,252,0,15,192,252,0,15,192,190,0,47,128,63,144,191,64,47,255,254,0,7,255,248,0,0,106,64,0, + // 0x00b1 ± + 19,24,120,23,2,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,1,252,0,0,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,0,1,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,0,0,0,85,85,85,85,84,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252, + // 0x00b2 ² + 12,18,54,14,1,16,6,255,128,63,255,244,191,235,252,60,1,253,0,0,254,0,0,253,0,0,252,0,2,252,0,11,240,0,47,208,0,191,64,2,253,0,11,244,0,47,192,0,191,170,169,255,255,254,255,255,254,85,85,84, + // 0x00b3 ³ + 12,18,54,14,1,16,11,255,128,191,255,244,191,171,252,52,0,253,0,0,253,0,0,253,0,2,252,6,175,240,11,255,192,7,255,248,0,1,253,0,0,127,0,0,127,0,0,191,228,1,254,255,255,252,255,255,240,6,169,0, + // 0x00b4 ´ + 10,7,21,12,1,24,0,106,144,0,255,192,2,255,0,7,252,0,15,240,0,63,192,0,126,0,0, + // 0x00b5 µ + 19,32,160,25,3,246,106,64,0,2,168,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,7,252,191,128,0,7,252,191,128,0,11,252,191,128,0,15,252,191,192,0,15,252,191,224,0,63,252,191,249,1,255,252,191,255,255,251,252,191,255,255,226,252,191,95,255,65,252,191,65,80,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x00b6 ¶ + 20,37,185,26,2,250,0,1,85,85,85,0,127,255,255,255,3,255,255,255,255,15,255,255,245,111,47,255,255,240,31,63,255,255,240,31,127,255,255,240,31,191,255,255,240,31,191,255,255,240,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,31,191,255,255,240,31,191,255,255,240,31,127,255,255,240,31,63,255,255,240,31,47,255,255,240,31,15,255,255,240,31,7,255,255,240,31,0,191,255,240,31,0,1,83,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,3,240,31,0,0,0,0,0, + // 0x00b7 · + 5,6,12,11,3,11,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x00b8 ¸ + 9,10,30,9,0,246,3,224,0,11,192,0,15,248,0,11,255,0,0,127,64,0,63,64,0,127,0,255,255,0,255,248,0,106,64,0, + // 0x00b9 ¹ + 8,18,36,14,2,16,0,127,2,255,15,255,127,255,254,63,116,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,63,0,21, + // 0x00ba º + 13,14,56,15,1,15,0,191,144,0,11,255,248,0,47,234,254,0,63,0,63,64,126,0,31,128,189,0,15,192,188,0,15,192,188,0,15,192,189,0,15,192,126,0,31,128,63,0,63,0,31,234,254,0,7,255,248,0,0,191,144,0, + // 0x00bb » + 18,17,85,22,2,2,44,0,30,0,0,255,0,191,128,0,191,192,63,208,0,63,224,31,240,0,15,248,7,252,0,3,253,2,255,0,1,255,0,255,128,0,191,192,63,224,0,63,208,47,240,0,255,128,127,208,2,255,0,255,64,7,252,3,254,0,31,244,11,248,0,63,208,47,240,0,255,128,127,192,0,190,0,127,0,0,24,0,9,0,0, + // 0x00bc ¼ + 30,29,232,31,1,0,0,26,64,0,0,26,64,0,0,191,192,0,0,127,0,0,7,255,192,0,0,254,0,0,47,255,192,0,1,252,0,0,191,111,192,0,3,244,0,0,61,47,192,0,11,240,0,0,0,47,192,0,15,192,0,0,0,47,192,0,63,128,0,0,0,47,192,0,127,0,0,0,0,47,192,0,253,0,0,0,0,47,192,2,252,0,0,0,0,47,192,3,244,0,0,0,0,47,192,15,224,3,252,0,0,47,192,31,192,11,252,0,0,47,192,63,64,31,252,0,0,47,192,191,0,63,252,0,0,47,192,253,0,189,252,0,0,26,67,248,1,245,252,0,0,0,7,240,3,225,252,0,0,0,15,224,11,193,252,0,0,0,47,192,31,65,252,0,0,0,63,64,62,1,252,0,0,0,190,0,253,2,252,0,0,1,252,0,255,255,255,208,0,3,248,0,255,255,255,208,0,11,240,0,85,86,253,64,0,15,208,0,0,1,252,0,0,47,192,0,0,1,252,0,0,127,0,0,0,1,252,0, + // 0x00bd ½ + 30,29,232,32,1,0,0,42,0,0,0,105,0,0,1,255,64,0,0,253,0,0,11,255,64,0,2,252,0,0,63,255,64,0,7,240,0,0,255,63,64,0,15,224,0,0,124,63,64,0,31,192,0,0,16,63,64,0,63,64,0,0,0,63,64,0,191,0,0,0,0,63,64,1,252,0,0,0,0,63,64,3,248,0,0,0,0,63,64,7,240,0,0,0,0,63,64,15,208,5,80,0,0,63,64,47,193,255,253,0,0,63,64,63,11,255,255,64,0,63,64,254,11,229,127,192,0,63,65,252,2,64,31,192,0,63,67,244,0,0,15,208,0,42,11,240,0,0,31,192,0,0,15,208,0,0,47,192,0,0,63,128,0,0,127,64,0,0,127,0,0,0,254,0,0,0,253,0,0,3,248,0,0,2,252,0,0,15,224,0,0,3,244,0,0,127,128,0,0,15,224,0,1,254,0,0,0,31,192,0,7,248,0,0,0,63,128,0,15,255,255,208,0,191,0,0,31,255,255,208,0,253,0,0,31,255,255,208, + // 0x00be ¾ + 31,29,232,32,1,0,6,255,128,0,0,2,160,0,63,255,244,0,0,11,240,0,191,239,252,0,0,15,208,0,56,0,253,0,0,63,128,0,0,0,190,0,0,127,0,0,0,0,253,0,0,254,0,0,0,1,252,0,2,252,0,0,1,107,244,0,3,244,0,0,7,255,192,0,15,224,0,0,7,255,244,0,31,192,0,0,0,1,253,0,63,128,0,0,0,0,127,0,191,0,0,0,0,0,63,0,253,0,191,0,0,0,127,3,252,1,255,0,208,0,255,7,240,3,255,0,255,239,253,15,224,15,255,0,255,255,244,47,192,31,127,0,27,254,64,63,64,62,127,0,0,0,0,191,0,252,127,0,0,0,1,252,2,244,127,0,0,0,3,248,3,224,127,0,0,0,11,240,15,192,127,0,0,0,15,208,47,64,127,64,0,0,47,192,63,255,255,248,0,0,127,0,63,255,255,248,0,0,254,0,21,85,191,148,0,1,252,0,0,0,127,0,0,3,244,0,0,0,127,0,0,11,240,0,0,0,127,0, + // 0x00bf ¿ + 17,30,150,18,1,248,0,0,184,0,0,0,3,255,0,0,0,7,255,0,0,0,7,255,0,0,0,3,255,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,253,0,0,0,1,252,0,0,0,3,252,0,0,0,11,248,0,0,0,47,240,0,0,0,191,208,0,0,3,255,64,0,0,15,253,0,0,0,47,240,0,0,0,127,192,0,0,0,191,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,128,0,4,0,127,224,1,189,0,63,255,255,255,0,15,255,255,255,64,2,255,255,244,0,0,26,169,0,0, + // 0x00c0 À + 26,38,10,26,0,0,0,1,170,0,0,0,0,0,0,255,192,0,0,0,0,0,127,208,0,0,0,0,0,31,240,0,0,0,0,0,7,252,0,0,0,0,0,0,254,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c1 Á + 26,38,10,26,0,0,0,0,0,6,169,0,0,0,0,0,15,252,0,0,0,0,0,47,240,0,0,0,0,0,63,192,0,0,0,0,0,255,0,0,0,0,0,2,252,0,0,0,0,0,3,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c2  + 26,38,10,26,0,0,0,0,6,169,0,0,0,0,0,15,255,0,0,0,0,0,63,255,192,0,0,0,0,191,175,224,0,0,0,2,254,11,248,0,0,0,7,244,1,254,0,0,0,15,128,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c3 à + 26,37,3,26,0,0,0,0,105,0,10,64,0,0,2,255,208,15,64,0,0,11,255,254,127,0,0,0,15,235,255,254,0,0,0,31,64,127,252,0,0,0,30,0,6,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c4 Ä + 26,37,3,26,0,0,0,0,80,0,80,0,0,0,2,252,3,248,0,0,0,3,253,3,252,0,0,0,2,252,3,252,0,0,0,0,180,1,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c5 Å + 26,35,245,26,0,0,0,0,6,249,0,0,0,0,0,31,255,64,0,0,0,0,63,95,192,0,0,0,0,124,3,208,0,0,0,0,188,3,224,0,0,0,0,124,3,208,0,0,0,0,63,255,192,0,0,0,0,31,255,64,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x00c6 Æ + 34,29,5,36,0,0,0,0,0,26,170,170,170,170,144,0,0,0,63,255,255,255,255,224,0,0,0,191,255,255,255,255,224,0,0,0,255,255,255,255,255,224,0,0,2,254,15,248,0,0,0,0,0,3,252,15,244,0,0,0,0,0,11,248,15,244,0,0,0,0,0,15,244,15,244,0,0,0,0,0,31,240,15,244,0,0,0,0,0,63,208,15,244,0,0,0,0,0,127,192,15,244,0,0,0,0,0,255,64,15,244,0,0,0,0,1,255,0,15,254,170,170,128,0,3,254,0,15,255,255,255,192,0,7,252,0,15,255,255,255,192,0,11,248,0,15,255,255,255,192,0,15,240,0,15,244,0,0,0,0,47,255,255,255,244,0,0,0,0,63,255,255,255,244,0,0,0,0,191,255,255,255,244,0,0,0,0,255,255,255,255,244,0,0,0,2,255,0,0,15,244,0,0,0,3,253,0,0,15,244,0,0,0,7,252,0,0,15,244,0,0,0,15,248,0,0,15,244,0,0,0,31,240,0,0,15,254,170,170,144,63,224,0,0,15,255,255,255,224,127,192,0,0,15,255,255,255,224,255,128,0,0,15,255,255,255,224, + // 0x00c7 Ç + 22,39,234,25,2,246,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,2,249,0,0,0,0,3,240,0,0,0,0,7,253,0,0,0,0,6,255,64,0,0,0,0,47,192,0,0,0,0,31,192,0,0,0,0,47,192,0,0,0,63,255,64,0,0,0,63,254,0,0,0,0,26,144,0,0, + // 0x00c8 È + 16,38,152,22,4,0,6,169,0,0,3,255,0,0,0,255,128,0,0,63,208,0,0,15,240,0,0,3,248,0,0,0,188,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00c9 É + 16,38,152,22,4,0,0,0,10,168,0,0,63,240,0,0,127,208,0,0,255,64,0,3,253,0,0,11,240,0,0,15,128,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00ca Ê + 16,38,152,22,4,0,0,10,164,0,0,63,252,0,0,191,255,0,2,254,191,192,7,248,31,224,31,224,7,248,62,0,0,189,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00cb Ë + 16,37,148,22,4,0,1,64,1,64,7,240,15,224,15,244,15,240,11,244,15,240,2,224,7,208,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00cc Ì + 12,38,114,14,1,0,106,144,0,63,240,0,15,248,0,3,252,0,0,255,0,0,63,128,0,11,192,0,0,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x00cd Í + 13,38,152,14,1,0,0,1,170,64,0,3,255,0,0,11,252,0,0,15,240,0,0,63,192,0,0,191,0,0,0,248,0,0,0,0,0,0,0,0,0,0,106,170,169,0,127,255,254,0,127,255,254,0,11,255,228,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,1,255,128,0,127,255,253,0,127,255,254,0,127,255,254,0, + // 0x00ce Î + 14,38,152,14,0,0,0,106,144,0,0,255,240,0,3,255,252,0,11,250,255,0,31,224,191,128,127,64,31,224,248,0,2,240,0,0,0,0,0,0,0,0,26,170,170,64,31,255,255,128,31,255,255,128,2,255,249,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,127,224,0,31,255,255,64,31,255,255,128,31,255,255,128, + // 0x00cf Ï + 12,37,111,14,1,0,20,0,20,191,0,254,255,64,255,191,64,255,45,0,124,0,0,0,0,0,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x00d0 Ð + 26,29,203,29,1,0,2,170,170,148,0,0,0,3,255,255,255,224,0,0,3,255,255,255,255,0,0,3,255,255,255,255,208,0,3,253,0,6,255,244,0,3,253,0,0,47,253,0,3,253,0,0,7,255,0,3,253,0,0,2,255,128,3,253,0,0,0,255,192,3,253,0,0,0,127,208,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,171,255,170,160,0,47,240,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,127,192,3,253,0,0,0,255,192,3,253,0,0,1,255,128,3,253,0,0,3,255,0,3,253,0,0,31,253,0,3,253,0,1,255,248,0,3,255,170,255,255,224,0,3,255,255,255,255,64,0,3,255,255,255,244,0,0,3,255,255,249,0,0,0, + // 0x00d1 Ñ + 23,37,222,31,4,0,0,1,144,0,40,0,0,31,254,0,188,0,0,63,255,230,248,0,0,191,191,255,240,0,0,252,3,255,208,0,0,244,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x00d2 Ò + 27,39,17,31,2,255,0,0,170,128,0,0,0,0,0,127,224,0,0,0,0,0,47,240,0,0,0,0,0,11,252,0,0,0,0,0,2,254,0,0,0,0,0,0,127,64,0,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x00d3 Ó + 27,39,17,31,2,255,0,0,0,1,170,0,0,0,0,0,7,254,0,0,0,0,0,15,252,0,0,0,0,0,47,240,0,0,0,0,0,127,192,0,0,0,0,0,254,0,0,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x00d4 Ô + 27,39,17,31,2,255,0,0,2,170,0,0,0,0,0,7,255,128,0,0,0,0,15,255,224,0,0,0,0,63,223,244,0,0,0,0,255,67,253,0,0,0,3,252,0,191,0,0,0,7,224,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x00d5 Õ + 27,38,10,31,2,255,0,0,26,0,2,128,0,0,0,255,240,7,192,0,0,3,255,254,111,192,0,0,7,250,255,255,64,0,0,11,192,47,254,0,0,0,11,64,2,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x00d6 Ö + 27,38,10,31,2,255,0,0,20,0,16,0,0,0,0,254,0,253,0,0,0,0,255,2,254,0,0,0,0,255,1,254,0,0,0,0,124,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x00d7 × + 17,18,90,23,3,5,36,0,0,5,0,189,0,0,47,64,255,64,0,191,192,127,208,2,255,0,31,244,11,252,0,7,253,47,240,0,1,255,191,192,0,0,127,255,0,0,0,31,252,0,0,0,47,253,0,0,0,191,255,64,0,2,255,191,208,0,11,252,31,244,0,47,240,7,253,0,191,192,1,255,64,255,0,0,127,192,124,0,0,31,0,16,0,0,4,0, + // 0x00d8 Ø + 27,32,224,31,2,254,0,0,0,0,0,9,0,0,0,27,255,228,31,128,0,7,255,255,255,127,128,0,47,255,255,255,255,0,0,191,255,239,255,253,0,2,255,224,0,31,255,0,7,255,64,0,15,255,128,15,252,0,0,47,255,192,31,248,0,0,127,191,224,47,240,0,0,255,47,240,63,224,0,2,252,31,244,63,208,0,7,244,15,248,127,192,0,15,240,15,252,127,192,0,47,192,11,252,191,192,0,127,64,11,252,191,192,0,254,0,11,252,191,192,3,252,0,11,252,127,192,11,244,0,11,252,127,192,15,224,0,15,252,127,208,63,192,0,15,248,63,224,191,64,0,15,244,63,241,254,0,0,47,240,31,247,252,0,0,63,240,15,255,240,0,0,191,208,11,255,208,0,1,255,192,3,255,208,0,11,255,64,0,255,254,85,191,254,0,1,255,255,255,255,244,0,3,255,255,255,255,208,0,11,240,191,255,249,0,0,2,208,1,85,0,0,0,0,0,0,0,0,0,0, + // 0x00d9 Ù + 23,39,234,30,3,255,0,10,168,0,0,0,0,7,254,0,0,0,0,2,255,0,0,0,0,0,191,192,0,0,0,0,31,224,0,0,0,0,7,244,0,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x00da Ú + 23,39,234,30,3,255,0,0,0,26,164,0,0,0,0,63,240,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,3,252,0,0,0,0,15,224,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x00db Û + 23,39,234,30,3,255,0,0,26,160,0,0,0,0,127,252,0,0,0,0,255,254,0,0,0,3,253,255,64,0,0,15,244,63,208,0,0,47,192,11,244,0,0,126,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x00dc Ü + 23,38,228,30,3,255,0,1,64,1,0,0,0,15,240,15,208,0,0,15,240,31,224,0,0,15,240,31,224,0,0,7,208,11,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x00dd Ý + 23,38,228,23,0,0,0,0,0,42,160,0,0,0,0,127,224,0,0,0,0,255,128,0,0,0,2,254,0,0,0,0,7,248,0,0,0,0,15,224,0,0,0,0,31,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x00de Þ + 19,29,145,24,4,0,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,255,169,0,0,255,255,255,244,0,255,255,255,255,0,255,255,255,255,192,255,0,2,255,208,255,0,0,63,240,255,0,0,31,240,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,31,240,255,0,0,63,240,255,0,1,255,208,255,170,191,255,128,255,255,255,254,0,255,255,255,244,0,255,255,250,64,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x00df ß + 22,32,192,26,3,255,0,1,169,64,0,0,0,191,255,253,0,0,7,255,255,255,192,0,31,255,255,255,240,0,63,248,0,127,248,0,127,208,0,15,252,0,191,192,0,7,252,0,191,128,0,7,252,0,191,128,0,15,248,0,191,128,0,47,240,0,191,128,0,255,192,0,191,128,3,255,0,0,191,128,15,248,0,0,191,128,47,240,0,0,191,128,63,208,0,0,191,128,63,224,0,0,191,128,47,248,0,0,191,128,15,255,0,0,191,128,3,255,224,0,191,128,0,255,252,0,191,128,0,31,255,0,191,128,0,3,255,128,191,128,0,0,191,192,191,128,0,0,63,208,191,128,0,0,63,208,191,128,0,0,63,208,191,128,0,0,63,208,191,128,228,0,255,192,191,128,255,255,255,128,191,128,255,255,254,0,191,128,127,255,244,0,0,0,1,85,0,0, + // 0x00e0 à + 18,32,160,23,2,255,0,170,128,0,0,0,191,208,0,0,0,63,240,0,0,0,15,248,0,0,0,2,253,0,0,0,0,191,0,0,0,0,31,64,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e1 á + 18,32,160,23,2,255,0,0,2,170,0,0,0,7,254,0,0,0,15,248,0,0,0,63,224,0,0,0,191,128,0,0,1,254,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e2 â + 18,32,160,23,2,255,0,2,170,0,0,0,11,255,128,0,0,31,255,208,0,0,127,223,240,0,0,255,3,252,0,3,252,0,255,0,11,208,0,47,128,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e3 ã + 18,31,155,23,2,255,0,25,0,2,128,1,255,224,11,192,3,255,254,111,128,11,251,255,255,0,15,192,63,253,0,15,64,6,160,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e4 ä + 18,31,155,23,2,255,0,20,0,80,0,0,253,1,252,0,1,255,3,253,0,1,254,2,253,0,0,184,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e5 å + 18,34,170,23,2,255,0,2,253,0,0,0,15,255,192,0,0,47,155,224,0,0,61,2,240,0,0,61,1,240,0,0,62,3,240,0,0,47,155,224,0,0,15,255,128,0,0,1,169,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x00e6 æ + 31,23,184,35,2,255,0,27,254,64,1,191,208,0,7,255,255,244,31,255,253,0,15,255,255,253,127,255,255,128,11,249,91,255,255,149,255,208,3,64,0,255,253,0,47,240,0,0,0,63,244,0,15,248,0,0,0,63,240,0,7,252,0,0,0,63,224,0,3,252,0,0,0,63,224,0,3,252,0,43,255,255,255,255,255,252,7,255,255,255,255,255,255,252,31,255,250,191,255,255,255,252,127,244,0,63,224,0,0,0,255,192,0,63,224,0,0,0,255,64,0,63,224,0,0,0,255,0,0,63,240,0,0,0,255,0,0,191,244,0,0,0,255,128,1,255,253,0,0,16,191,208,11,250,255,144,6,240,127,255,255,224,255,255,255,240,47,255,255,128,63,255,255,240,7,255,253,0,7,255,255,128,0,21,64,0,0,21,80,0, + // 0x00e7 ç + 16,32,128,20,2,246,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,253,0,0,1,244,0,0,3,254,0,0,1,191,192,0,0,31,208,0,0,15,224,0,0,31,208,0,47,255,192,0,47,255,0,0,10,144,0, + // 0x00e8 è + 19,32,160,23,2,255,0,170,128,0,0,0,191,208,0,0,0,47,240,0,0,0,11,248,0,0,0,2,253,0,0,0,0,191,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x00e9 é + 19,32,160,23,2,255,0,0,2,170,0,0,0,7,254,0,0,0,15,248,0,0,0,63,224,0,0,0,127,128,0,0,0,254,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x00ea ê + 19,32,160,23,2,255,0,2,170,0,0,0,11,255,128,0,0,31,255,208,0,0,63,223,244,0,0,255,3,252,0,3,252,0,255,0,11,224,0,47,128,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x00eb ë + 19,31,155,23,2,255,0,20,0,16,0,0,254,1,252,0,1,255,2,253,0,0,254,2,253,0,0,120,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x00ec ì + 9,31,93,11,0,0,170,64,0,191,208,0,63,240,0,15,248,0,3,253,0,0,191,0,0,47,64,0,0,0,0,0,0,1,169,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0,2,254,0, + // 0x00ed í + 9,31,93,11,3,0,0,170,128,2,255,64,3,254,0,15,248,0,47,224,0,127,64,0,189,0,0,0,0,0,0,0,0,106,64,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0, + // 0x00ee î + 15,31,124,11,254,0,0,42,160,0,0,191,244,0,1,255,253,0,7,253,255,0,15,240,127,192,63,128,15,240,189,0,2,244,0,0,0,0,0,0,0,0,0,26,144,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0, + // 0x00ef ï + 13,30,120,11,255,0,4,0,20,0,63,64,191,0,127,128,255,64,127,128,191,0,46,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x00f0 ð + 21,31,186,24,2,255,0,15,128,7,192,0,0,31,248,63,224,0,0,31,255,255,192,0,0,2,255,253,0,0,0,1,255,248,0,0,0,11,255,253,0,0,0,127,246,255,64,0,0,63,128,191,192,0,0,24,0,63,224,0,0,0,0,15,240,0,0,0,0,7,248,0,0,27,255,147,252,0,0,255,255,250,253,0,7,255,255,255,254,0,15,254,85,191,255,0,63,244,0,15,255,0,63,208,0,3,255,0,191,192,0,1,255,0,191,128,0,0,255,64,255,64,0,0,255,64,255,64,0,0,255,0,255,64,0,0,255,0,255,128,0,1,255,0,191,192,0,2,254,0,127,208,0,3,253,0,63,240,0,11,252,0,15,253,0,127,244,0,7,255,255,255,224,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f1 ñ + 19,30,150,25,3,0,0,25,0,2,128,0,255,224,11,192,3,255,254,111,128,7,250,255,255,0,15,192,47,253,0,11,64,2,160,0,0,0,0,0,0,0,0,0,0,0,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x00f2 ò + 21,32,192,24,2,255,0,106,144,0,0,0,0,63,240,0,0,0,0,15,248,0,0,0,0,3,253,0,0,0,0,0,255,0,0,0,0,0,63,128,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f3 ó + 21,32,192,24,2,255,0,0,0,170,128,0,0,0,3,255,64,0,0,0,7,253,0,0,0,0,15,244,0,0,0,0,63,208,0,0,0,0,191,64,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f4 ô + 21,32,192,24,2,255,0,0,170,64,0,0,0,3,255,192,0,0,0,11,255,240,0,0,0,47,235,252,0,0,0,127,129,254,0,0,1,254,0,127,128,0,2,244,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f5 õ + 21,31,186,24,2,255,0,6,64,1,144,0,0,191,248,3,224,0,1,255,255,159,208,0,3,250,255,255,192,0,3,208,31,255,0,0,3,192,1,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f6 ö + 21,31,186,24,2,255,0,4,0,20,0,0,0,127,0,191,0,0,0,191,128,255,0,0,0,191,64,255,0,0,0,46,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x00f7 ÷ + 19,20,100,23,2,4,0,0,80,0,0,0,2,253,0,0,0,3,254,0,0,0,3,254,0,0,0,2,253,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,168,255,255,255,255,252,255,255,255,255,252,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,3,254,0,0,0,3,254,0,0,0,3,254,0,0,0,1,252,0,0,0,0,16,0,0, + // 0x00f8 ø + 21,25,150,24,2,254,0,0,0,0,64,0,0,6,255,144,248,0,0,127,255,255,252,0,2,255,255,255,244,0,11,255,234,255,240,0,31,252,0,63,248,0,63,240,0,191,252,0,63,208,1,255,254,0,127,192,3,254,255,0,191,128,11,241,255,0,255,128,31,208,255,0,255,64,63,128,255,64,255,64,255,0,255,64,255,129,253,0,255,0,191,131,248,0,255,0,191,207,240,1,255,0,127,239,192,2,254,0,63,255,64,3,253,0,31,254,0,15,252,0,15,254,64,127,244,0,7,255,255,255,208,0,15,255,255,255,64,0,47,223,255,248,0,0,11,0,85,0,0,0,0,0,0,0,0,0, + // 0x00f9 ù + 19,32,160,25,3,255,0,170,128,0,0,0,191,208,0,0,0,47,240,0,0,0,11,248,0,0,0,2,253,0,0,0,0,191,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x00fa ú + 19,32,160,25,3,255,0,0,2,170,0,0,0,7,254,0,0,0,15,248,0,0,0,47,224,0,0,0,127,128,0,0,0,254,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x00fb û + 19,32,160,25,3,255,0,2,170,0,0,0,11,255,128,0,0,31,255,208,0,0,63,223,244,0,0,255,3,252,0,3,252,0,255,0,7,224,0,31,128,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x00fc ü + 19,31,155,25,3,255,0,20,0,16,0,0,254,1,252,0,1,255,2,253,0,0,255,2,253,0,0,120,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x00fd ý + 21,41,246,21,0,246,0,0,0,170,128,0,0,0,1,255,128,0,0,0,3,254,0,0,0,0,11,248,0,0,0,0,31,224,0,0,0,0,63,128,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x00fe þ + 20,41,205,25,3,246,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,191,224,0,191,139,255,254,0,191,111,255,255,192,191,255,170,255,224,191,248,0,47,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,11,252,191,244,0,31,248,191,254,65,191,240,191,191,255,255,208,191,95,255,255,64,191,130,255,248,0,191,128,21,64,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x00ff ÿ + 21,40,240,21,0,246,0,5,0,4,0,0,0,63,128,127,0,0,0,127,192,191,64,0,0,63,128,191,64,0,0,30,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_ASCII_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_ASCII_29.cpp new file mode 100644 index 000000000000..fddcecf829b1 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_ASCII_29.cpp @@ -0,0 +1,222 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium ASCII 40pt, capital 'A' height: 29px, width: 100%, range: 0x0020-0x007e +extern const uint8_t NotoSans_Medium_ASCII_29[12481] = { + 130,29,32,0,126,0,38,246, // unifont_t + // 0x0020 " " + 0,0,0,10,0,0, + // 0x0021 ! + 5,30,60,11,3,255,170,128,255,192,255,192,255,192,255,192,255,128,191,128,191,128,191,128,191,128,191,64,127,64,127,64,127,64,127,64,127,0,63,0,63,0,63,0,63,0,42,0,0,0,0,0,0,0,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x0022 " + 13,11,44,17,2,18,42,64,106,64,127,192,191,64,63,128,191,64,63,128,191,0,63,128,127,0,63,64,127,0,63,64,127,0,63,64,127,0,63,64,63,0,47,0,63,0,31,0,62,0, + // 0x0023 # + 24,29,174,26,1,0,0,0,42,0,26,0,0,0,127,0,63,64,0,0,190,0,63,0,0,0,253,0,127,0,0,0,253,0,126,0,0,0,252,0,190,0,0,1,252,0,253,0,0,2,248,0,252,0,0,3,248,1,252,0,47,255,255,255,255,255,47,255,255,255,255,255,31,255,255,255,255,254,0,7,224,3,240,0,0,11,224,7,240,0,0,15,208,7,240,0,0,15,192,11,224,0,0,31,192,15,208,0,85,111,213,95,213,80,255,255,255,255,255,244,255,255,255,255,255,244,255,255,255,255,255,244,0,127,0,63,64,0,0,127,0,63,0,0,0,190,0,127,0,0,0,253,0,127,0,0,0,252,0,190,0,0,0,252,0,253,0,0,1,252,0,252,0,0,2,248,0,252,0,0, + // 0x0024 $ + 19,34,170,23,2,253,0,0,84,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,47,255,233,0,2,255,255,255,224,15,255,255,255,224,63,254,254,255,208,127,208,248,6,192,191,128,248,0,0,191,64,248,0,0,191,128,248,0,0,191,192,248,0,0,63,248,248,0,0,47,255,248,0,0,7,255,255,64,0,0,191,255,248,0,0,11,255,255,128,0,0,255,255,224,0,0,249,191,240,0,0,248,15,248,0,0,248,11,252,0,0,248,7,252,0,0,248,11,248,164,0,248,31,244,191,233,254,255,240,191,255,255,255,192,191,255,255,254,0,6,255,255,144,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,248,0,0,0,0,80,0,0, + // 0x0025 % + 31,30,240,34,2,255,2,254,64,0,0,42,64,0,15,255,224,0,0,127,0,0,63,255,248,0,0,254,0,0,127,131,252,0,2,252,0,0,191,0,253,0,3,244,0,0,254,0,254,0,11,240,0,0,253,0,191,0,15,208,0,0,253,0,127,0,63,192,0,0,252,0,127,0,127,0,0,0,252,0,127,0,254,0,0,0,253,0,127,1,252,0,0,0,253,0,191,3,248,5,80,0,254,0,254,11,240,127,253,0,191,0,253,15,209,255,255,64,63,131,252,47,195,254,191,192,47,255,248,63,71,244,15,224,15,255,224,255,11,240,11,240,1,254,65,253,15,224,7,240,0,0,3,248,15,224,7,240,0,0,7,240,15,224,3,244,0,0,15,224,15,208,3,244,0,0,47,192,15,224,3,244,0,0,63,64,15,224,7,240,0,0,191,0,15,224,7,240,0,0,253,0,11,240,11,240,0,2,252,0,3,244,31,224,0,7,244,0,2,254,191,192,0,15,224,0,0,255,255,64,0,31,192,0,0,63,253,0,0,0,0,0,0,1,64,0, + // 0x0026 & + 27,30,210,29,2,255,0,6,255,144,0,0,0,0,63,255,253,0,0,0,0,255,255,255,64,0,0,3,255,150,255,192,0,0,3,253,0,127,208,0,0,7,252,0,63,208,0,0,7,248,0,47,208,0,0,7,252,0,63,208,0,0,3,252,0,127,192,0,0,2,254,0,255,128,0,0,0,255,71,255,0,0,0,0,127,255,252,0,0,0,0,47,255,224,0,0,0,0,47,255,64,0,0,0,1,255,255,64,0,26,144,7,255,255,224,0,63,224,31,253,63,248,0,63,192,63,240,15,254,0,127,192,191,192,3,255,128,255,64,255,128,0,255,225,255,0,255,64,0,47,251,253,0,255,64,0,11,255,252,0,255,128,0,2,255,240,0,255,192,0,0,255,240,0,191,240,0,11,255,252,0,63,254,85,191,255,255,0,31,255,255,255,242,255,192,7,255,255,255,128,191,240,0,127,255,248,0,47,252,0,1,84,0,0,0,0, + // 0x0027 ' + 5,11,22,9,2,18,42,64,127,192,63,128,63,128,63,128,63,64,63,64,63,64,63,64,47,0,31,0, + // 0x0028 ( + 10,36,108,12,1,249,0,6,160,0,31,224,0,63,192,0,191,64,0,255,0,2,253,0,3,252,0,11,248,0,15,240,0,15,240,0,31,224,0,47,208,0,63,192,0,63,192,0,63,192,0,127,128,0,127,128,0,127,128,0,127,128,0,127,128,0,127,192,0,63,192,0,63,192,0,63,192,0,47,208,0,31,224,0,15,240,0,15,240,0,11,248,0,3,252,0,2,253,0,0,255,0,0,191,64,0,63,192,0,15,224,0,1,80, + // 0x0029 ) + 10,36,108,12,1,249,106,0,0,63,192,0,31,224,0,15,240,0,7,248,0,3,252,0,1,254,0,0,255,0,0,191,64,0,127,128,0,63,192,0,63,192,0,47,208,0,47,224,0,31,224,0,31,240,0,31,240,0,15,240,0,15,240,0,31,240,0,31,240,0,31,224,0,47,224,0,47,208,0,63,192,0,63,192,0,127,128,0,191,64,0,255,0,1,254,0,3,252,0,7,248,0,15,240,0,47,208,0,63,128,0,21,0,0, + // 0x002a * + 20,19,95,22,1,12,0,0,85,0,0,0,0,255,0,0,0,0,255,0,0,0,0,254,0,0,0,0,254,0,0,0,0,190,0,0,57,0,189,0,108,63,244,125,47,252,63,255,255,255,252,127,255,255,255,253,1,91,255,165,64,0,3,255,192,0,0,15,239,224,0,0,47,199,244,0,0,127,195,252,0,0,255,65,255,0,2,255,0,255,128,0,189,0,126,0,0,8,0,32,0, + // 0x002b + + 19,20,100,23,2,4,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,170,171,254,170,168,255,255,255,255,252,255,255,255,255,252,170,170,254,170,164,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,168,0,0, + // 0x002c , + 7,11,22,11,1,250,6,168,11,252,15,248,15,240,15,240,31,224,47,192,63,128,63,64,127,0,0,0, + // 0x002d - + 11,5,15,13,1,8,106,170,160,191,255,244,191,255,244,191,255,244,0,0,0, + // 0x002e . + 5,6,12,11,3,255,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x002f / + 15,29,116,15,0,0,0,0,2,168,0,0,7,248,0,0,15,244,0,0,15,240,0,0,47,224,0,0,63,192,0,0,127,192,0,0,191,64,0,0,255,0,0,1,254,0,0,3,253,0,0,3,252,0,0,7,248,0,0,15,240,0,0,15,240,0,0,47,208,0,0,63,192,0,0,127,128,0,0,191,64,0,0,255,0,0,1,254,0,0,3,252,0,0,3,252,0,0,11,244,0,0,15,240,0,0,31,224,0,0,47,208,0,0,63,192,0,0,127,128,0,0, + // 0x0030 0 + 19,30,150,23,2,255,0,11,255,64,0,0,191,255,244,0,3,255,255,254,0,11,255,171,255,64,31,248,0,255,192,63,224,0,63,208,63,192,0,31,240,127,192,0,15,240,191,128,0,15,244,255,64,0,11,248,255,64,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,64,0,11,248,191,128,0,11,248,127,128,0,15,244,63,192,0,31,240,63,208,0,47,240,31,240,0,127,208,15,254,70,255,192,3,255,255,255,0,0,255,255,252,0,0,47,255,224,0,0,0,84,0,0, + // 0x0031 1 + 12,29,87,23,3,0,0,0,169,0,3,255,0,31,255,0,191,255,2,255,255,15,253,255,127,240,255,127,193,255,30,1,255,4,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255,0,1,255, + // 0x0032 2 + 19,29,145,23,2,0,0,27,254,128,0,2,255,255,248,0,31,255,255,255,0,191,255,175,255,192,127,208,0,255,208,30,0,0,63,224,0,0,0,47,240,0,0,0,31,240,0,0,0,31,240,0,0,0,31,240,0,0,0,63,224,0,0,0,63,192,0,0,0,255,128,0,0,1,255,0,0,0,7,253,0,0,0,15,248,0,0,0,63,224,0,0,0,255,192,0,0,3,255,0,0,0,15,252,0,0,0,63,240,0,0,0,255,192,0,0,3,254,0,0,0,15,248,0,0,0,63,224,0,0,0,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252, + // 0x0033 3 + 20,30,150,23,1,255,0,27,255,160,0,2,255,255,254,0,31,255,255,255,192,63,255,171,255,240,15,208,0,47,244,6,0,0,15,248,0,0,0,11,252,0,0,0,7,252,0,0,0,7,252,0,0,0,15,248,0,0,0,31,240,0,0,0,191,208,0,21,175,255,64,0,63,255,244,0,0,63,255,249,0,0,63,255,255,192,0,0,1,191,244,0,0,0,15,252,0,0,0,3,253,0,0,0,3,254,0,0,0,2,255,0,0,0,2,255,0,0,0,3,254,0,0,0,7,253,96,0,0,31,252,127,148,5,255,244,127,255,255,255,224,127,255,255,255,64,11,255,255,244,0,0,5,84,0,0, + // 0x0034 4 + 21,29,174,23,1,0,0,0,0,42,128,0,0,0,0,255,192,0,0,0,2,255,192,0,0,0,7,255,192,0,0,0,15,255,192,0,0,0,47,255,192,0,0,0,127,127,192,0,0,0,255,63,192,0,0,2,252,63,192,0,0,7,244,63,192,0,0,15,224,63,192,0,0,63,192,63,192,0,0,127,64,63,192,0,0,254,0,63,192,0,3,252,0,63,192,0,11,244,0,63,192,0,31,224,0,63,192,0,63,192,0,63,192,0,191,0,0,63,192,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,170,170,170,191,234,128,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0, + // 0x0035 5 + 19,30,150,23,2,255,10,170,170,170,64,15,255,255,255,192,15,255,255,255,192,15,255,255,255,192,15,240,0,0,0,31,224,0,0,0,31,224,0,0,0,31,208,0,0,0,47,208,0,0,0,47,208,0,0,0,47,192,0,0,0,63,218,170,64,0,63,255,255,248,0,63,255,255,255,0,47,255,255,255,192,1,0,1,255,224,0,0,0,63,240,0,0,0,15,244,0,0,0,15,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,15,244,0,0,0,47,240,144,0,0,191,224,191,144,27,255,192,191,255,255,255,0,191,255,255,252,0,27,255,255,144,0,0,21,80,0,0, + // 0x0036 6 + 19,30,150,23,2,255,0,0,27,255,128,0,7,255,255,192,0,47,255,255,192,0,255,254,170,192,3,255,128,0,0,11,253,0,0,0,15,244,0,0,0,47,224,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,0,191,65,255,228,0,255,79,255,255,0,255,127,255,255,192,255,255,85,255,240,255,244,0,47,244,255,192,0,15,248,255,128,0,7,252,255,64,0,3,252,255,64,0,3,252,191,64,0,3,252,191,128,0,3,252,127,192,0,7,252,63,224,0,15,248,31,244,0,47,240,15,254,65,255,224,3,255,255,255,192,0,255,255,255,0,0,31,255,244,0,0,0,85,0,0, + // 0x0037 7 + 20,29,145,23,1,0,42,170,170,170,170,127,255,255,255,255,127,255,255,255,255,127,255,255,255,255,0,0,0,2,254,0,0,0,3,252,0,0,0,7,252,0,0,0,15,244,0,0,0,31,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,128,0,0,1,255,0,0,0,2,254,0,0,0,3,252,0,0,0,11,252,0,0,0,15,244,0,0,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,255,128,0,0,1,255,0,0,0,3,254,0,0,0,7,252,0,0,0,15,252,0,0,0,15,244,0,0,0,47,240,0,0,0,63,208,0,0,0,191,192,0,0, + // 0x0038 8 + 19,30,150,23,2,255,0,27,255,144,0,1,255,255,253,0,7,255,255,255,64,31,254,90,255,192,63,240,0,127,224,63,192,0,31,240,127,192,0,15,240,63,192,0,15,240,63,192,0,15,240,63,224,0,47,224,31,248,0,191,192,11,255,71,255,0,2,255,255,252,0,0,127,255,208,0,0,127,255,224,0,2,255,255,253,0,15,254,11,255,128,63,240,0,191,224,127,192,0,31,244,255,64,0,11,248,255,0,0,3,252,255,0,0,3,252,255,0,0,3,252,255,64,0,7,252,191,192,0,15,248,127,244,0,127,240,47,255,255,255,192,7,255,255,255,0,0,191,255,244,0,0,1,84,0,0, + // 0x0039 9 + 19,30,150,23,2,255,0,27,254,64,0,1,255,255,244,0,7,255,255,253,0,31,255,175,255,64,63,240,0,255,192,127,192,0,63,224,255,128,0,31,240,255,0,0,15,244,255,0,0,11,248,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,64,0,15,252,191,192,0,47,252,63,244,1,255,252,47,255,255,251,252,11,255,255,215,252,1,255,255,71,248,0,6,148,11,244,0,0,0,15,244,0,0,0,15,240,0,0,0,31,224,0,0,0,63,192,0,0,0,255,128,0,0,3,255,0,4,0,111,253,0,15,255,255,244,0,15,255,255,192,0,15,255,249,0,0,1,85,0,0,0, + // 0x003a : + 5,23,46,11,3,255,127,64,255,192,255,192,255,192,255,128,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,64,255,192,255,192,255,192,191,128,25,0, + // 0x003b ; + 7,28,56,11,1,250,7,240,15,252,31,252,31,252,15,248,2,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,164,15,248,15,244,31,240,31,224,47,208,63,192,63,64,127,0,190,0,0,0, + // 0x003c < + 19,21,105,23,2,4,0,0,0,0,4,0,0,0,0,124,0,0,0,7,252,0,0,0,127,252,0,0,7,255,224,0,0,127,254,0,0,7,255,224,0,0,127,254,0,0,7,255,208,0,0,127,253,0,0,0,255,208,0,0,0,255,224,0,0,0,127,255,64,0,0,7,255,248,0,0,0,47,255,144,0,0,2,255,253,0,0,0,31,255,224,0,0,1,191,252,0,0,0,11,252,0,0,0,0,124,0,0,0,0,4, + // 0x003d = + 19,12,60,23,2,8,170,170,170,170,164,255,255,255,255,248,255,255,255,255,248,170,170,170,170,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,248,255,255,255,255,248,255,255,255,255,248,85,85,85,85,84, + // 0x003e > + 19,20,100,23,2,4,224,0,0,0,0,254,0,0,0,0,255,224,0,0,0,127,254,0,0,0,6,255,224,0,0,0,47,254,0,0,0,2,255,224,0,0,0,47,255,64,0,0,2,255,244,0,0,0,31,252,0,0,0,47,252,0,0,7,255,244,0,0,191,254,64,0,27,255,224,0,1,255,253,0,0,47,255,208,0,0,255,248,0,0,0,255,128,0,0,0,244,0,0,0,0,64,0,0,0,0, + // 0x003f ? + 17,30,150,18,0,255,0,111,254,64,0,31,255,255,240,0,127,255,255,252,0,63,254,175,255,0,46,64,1,255,64,0,0,0,191,128,0,0,0,127,192,0,0,0,63,192,0,0,0,127,128,0,0,0,255,64,0,0,2,255,0,0,0,11,253,0,0,0,47,244,0,0,0,255,208,0,0,3,255,64,0,0,11,252,0,0,0,15,240,0,0,0,31,208,0,0,0,31,192,0,0,0,31,192,0,0,0,10,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,208,0,0,0,63,240,0,0,0,63,240,0,0,0,63,240,0,0,0,47,224,0,0,0,6,64,0,0, + // 0x0040 @ + 32,33,8,36,2,252,0,0,0,5,165,0,0,0,0,0,6,255,255,249,0,0,0,0,127,255,255,255,208,0,0,3,255,250,86,255,248,0,0,31,253,0,0,11,255,0,0,127,208,0,0,0,191,128,0,255,0,0,0,0,47,208,3,252,0,0,0,0,11,240,7,240,0,27,254,144,3,248,15,224,0,255,255,252,2,252,31,192,7,255,255,252,0,252,63,128,15,244,2,252,0,253,63,0,63,192,1,252,0,190,127,0,127,64,1,252,0,190,191,0,191,0,2,252,0,190,190,0,254,0,2,252,0,190,190,0,254,0,2,252,0,190,254,0,254,0,3,252,0,253,190,0,254,0,3,252,0,252,190,0,191,0,7,252,1,252,191,0,127,64,15,252,3,244,127,0,63,224,127,190,31,240,63,0,31,255,253,63,255,208,63,128,7,255,244,31,255,64,47,192,0,106,64,2,164,0,15,240,0,0,0,0,0,0,7,248,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,255,224,0,0,27,0,0,0,47,255,169,107,255,0,0,0,7,255,255,255,255,0,0,0,0,111,255,255,228,0,0,0,0,0,86,84,0,0,0, + // 0x0041 A + 26,29,203,26,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0042 B + 20,29,145,26,4,0,170,170,165,0,0,255,255,255,249,0,255,255,255,255,192,255,255,255,255,240,255,0,1,191,248,255,0,0,31,252,255,0,0,11,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,15,248,255,0,0,47,240,255,170,171,255,192,255,255,255,249,0,255,255,255,254,0,255,255,255,255,224,255,0,0,111,248,255,0,0,11,253,255,0,0,3,255,255,0,0,2,255,255,0,0,1,255,255,0,0,2,255,255,0,0,3,255,255,0,0,7,254,255,0,0,31,253,255,170,171,255,248,255,255,255,255,224,255,255,255,255,64,255,255,255,228,0, + // 0x0043 C + 22,30,180,25,2,255,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x0044 D + 23,29,174,29,4,0,170,170,165,0,0,0,255,255,255,248,0,0,255,255,255,255,192,0,255,255,255,255,244,0,255,0,1,191,253,0,255,0,0,11,255,64,255,0,0,1,255,192,255,0,0,0,191,224,255,0,0,0,63,240,255,0,0,0,31,244,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,31,244,255,0,0,0,63,240,255,0,0,0,127,224,255,0,0,0,255,192,255,0,0,7,255,64,255,0,0,127,254,0,255,170,191,255,248,0,255,255,255,255,208,0,255,255,255,253,0,0,255,255,254,64,0,0, + // 0x0045 E + 16,29,116,22,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0046 F + 16,29,116,21,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,170,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0047 G + 24,30,180,29,2,255,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0, + // 0x0048 H + 22,29,174,30,4,0,170,0,0,0,10,160,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,234,170,170,191,240,255,255,255,255,255,240,255,255,255,255,255,240,255,255,255,255,255,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240, + // 0x0049 I + 12,29,87,14,1,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x004a J + 11,37,111,12,253,248,0,2,168,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,7,252,0,11,252,0,15,248,0,63,240,255,255,224,255,255,192,255,254,0,111,160,0, + // 0x004b K + 21,29,174,25,4,0,170,0,0,0,170,64,255,0,0,3,255,0,255,0,0,15,252,0,255,0,0,47,244,0,255,0,0,127,208,0,255,0,1,255,128,0,255,0,3,254,0,0,255,0,15,252,0,0,255,0,63,240,0,0,255,0,255,192,0,0,255,2,255,0,0,0,255,11,253,0,0,0,255,31,244,0,0,0,255,127,244,0,0,0,255,255,252,0,0,0,255,255,255,0,0,0,255,242,255,128,0,0,255,192,255,208,0,0,255,0,63,240,0,0,255,0,31,248,0,0,255,0,15,253,0,0,255,0,3,255,0,0,255,0,1,255,128,0,255,0,0,191,208,0,255,0,0,63,240,0,255,0,0,15,252,0,255,0,0,11,254,0,255,0,0,3,255,0,255,0,0,0,255,192, + // 0x004c L + 17,29,145,21,4,0,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64, + // 0x004d M + 29,29,232,37,4,0,170,160,0,0,0,2,170,128,255,244,0,0,0,11,255,192,255,248,0,0,0,15,255,192,255,252,0,0,0,31,255,192,255,253,0,0,0,47,255,192,254,255,0,0,0,63,191,192,254,255,0,0,0,127,127,192,254,127,64,0,0,255,63,192,254,63,192,0,0,253,63,192,254,47,192,0,2,252,63,192,254,31,224,0,3,248,63,192,254,15,240,0,7,244,127,192,254,11,244,0,11,240,127,192,254,7,248,0,15,224,127,192,254,3,252,0,31,208,127,192,254,2,253,0,63,192,127,192,254,0,254,0,63,128,127,192,254,0,255,0,191,0,127,192,254,0,191,64,255,0,127,192,254,0,63,193,253,0,127,192,254,0,63,194,252,0,127,192,254,0,31,211,248,0,127,192,254,0,15,247,244,0,127,192,254,0,11,255,240,0,127,192,254,0,7,255,224,0,127,192,254,0,3,255,192,0,127,192,254,0,2,255,192,0,127,192,254,0,1,255,128,0,127,192,254,0,0,255,0,0,127,192, + // 0x004e N + 23,29,174,31,4,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x004f O + 27,30,210,31,2,255,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x0050 P + 19,29,145,24,4,0,170,170,148,0,0,255,255,255,224,0,255,255,255,254,0,255,255,255,255,128,255,0,7,255,208,255,0,0,127,240,255,0,0,47,240,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,31,240,255,0,0,63,240,255,0,1,255,208,255,150,175,255,192,255,255,255,255,0,255,255,255,248,0,255,255,254,64,0,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0051 Q + 27,36,252,31,2,249,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,248,0,0,11,255,255,255,208,0,0,0,191,255,253,0,0,0,0,1,87,255,0,0,0,0,0,1,255,192,0,0,0,0,0,191,240,0,0,0,0,0,63,252,0,0,0,0,0,15,254,0,0,0,0,0,3,255,128,0,0,0,0,1,255,208, + // 0x0052 R + 21,29,174,25,4,0,170,170,148,0,0,0,255,255,255,228,0,0,255,255,255,254,0,0,255,255,255,255,192,0,255,0,22,255,224,0,255,0,0,127,240,0,255,0,0,31,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,47,240,0,255,0,0,127,224,0,255,64,23,255,192,0,255,255,255,255,0,0,255,255,255,248,0,0,255,255,255,192,0,0,255,149,127,224,0,0,255,0,31,244,0,0,255,0,11,252,0,0,255,0,3,254,0,0,255,0,2,255,0,0,255,0,0,255,192,0,255,0,0,127,208,0,255,0,0,47,240,0,255,0,0,15,248,0,255,0,0,11,253,0,255,0,0,3,255,0,255,0,0,1,255,128, + // 0x0053 S + 18,30,150,22,2,255,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,21,80,0,0, + // 0x0054 T + 22,29,174,23,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x0055 U + 23,30,180,30,3,255,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x0056 V + 25,29,203,25,0,0,170,64,0,0,0,170,64,191,192,0,0,0,255,0,127,192,0,0,2,255,0,63,208,0,0,3,254,0,47,240,0,0,7,252,0,15,240,0,0,11,252,0,15,248,0,0,15,244,0,11,252,0,0,31,240,0,3,252,0,0,47,224,0,3,254,0,0,63,208,0,1,255,0,0,127,192,0,0,255,0,0,191,128,0,0,255,128,0,255,64,0,0,127,192,1,255,0,0,0,63,192,2,254,0,0,0,47,224,3,253,0,0,0,31,240,7,252,0,0,0,15,244,11,248,0,0,0,11,248,15,240,0,0,0,7,252,31,240,0,0,0,3,253,47,224,0,0,0,2,254,63,192,0,0,0,0,255,127,192,0,0,0,0,255,191,64,0,0,0,0,191,255,0,0,0,0,0,63,254,0,0,0,0,0,63,253,0,0,0,0,0,31,252,0,0,0,0,0,15,248,0,0,0, + // 0x0057 W + 37,29,34,38,0,0,106,64,0,0,106,128,0,0,42,128,127,192,0,0,191,192,0,0,127,192,63,208,0,0,255,208,0,0,191,128,63,224,0,1,255,240,0,0,255,64,47,240,0,2,255,240,0,0,255,0,31,240,0,3,255,244,0,1,255,0,15,244,0,3,251,248,0,2,254,0,15,248,0,7,247,252,0,3,253,0,11,252,0,11,242,252,0,3,252,0,7,252,0,15,241,254,0,7,252,0,3,253,0,31,224,255,0,11,248,0,3,254,0,47,208,255,0,15,244,0,2,255,0,63,192,191,64,15,240,0,1,255,0,63,192,127,128,31,240,0,0,255,64,127,128,63,192,47,224,0,0,191,128,191,0,47,192,63,208,0,0,127,192,255,0,31,224,63,192,0,0,63,193,254,0,15,240,127,192,0,0,63,194,253,0,15,240,191,128,0,0,47,211,252,0,11,244,255,64,0,0,31,227,252,0,7,248,255,0,0,0,15,243,248,0,3,252,254,0,0,0,15,247,240,0,2,253,253,0,0,0,11,255,240,0,1,254,252,0,0,0,7,255,224,0,0,255,252,0,0,0,3,255,208,0,0,255,248,0,0,0,3,255,192,0,0,191,244,0,0,0,2,255,192,0,0,127,240,0,0,0,1,255,128,0,0,63,240,0,0, + // 0x0058 X + 24,29,174,24,0,0,42,144,0,0,2,168,47,240,0,0,11,252,15,252,0,0,31,244,7,253,0,0,63,224,2,255,0,0,191,192,0,255,128,0,255,64,0,127,192,3,254,0,0,47,240,7,252,0,0,15,244,15,244,0,0,7,252,47,224,0,0,3,254,63,192,0,0,0,255,255,64,0,0,0,127,255,0,0,0,0,63,252,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,0,255,255,0,0,0,2,255,191,192,0,0,3,252,63,208,0,0,15,248,31,240,0,0,31,240,15,252,0,0,63,208,3,253,0,0,191,128,2,255,0,1,255,0,0,255,128,3,253,0,0,127,208,11,252,0,0,63,240,31,244,0,0,15,248,63,224,0,0,11,253,191,192,0,0,3,255, + // 0x0059 Y + 23,29,174,23,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x005a Z + 21,29,174,23,1,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x005b [ + 9,36,108,13,3,249,170,170,128,255,255,192,255,255,192,255,170,128,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,192,255,255,192,255,255,192,85,85,64, + // 0x005c "\" + 15,29,116,15,0,0,106,64,0,0,63,192,0,0,63,192,0,0,47,224,0,0,15,240,0,0,15,244,0,0,7,248,0,0,3,252,0,0,2,253,0,0,1,254,0,0,0,255,0,0,0,191,64,0,0,63,192,0,0,63,192,0,0,31,224,0,0,15,240,0,0,11,244,0,0,7,248,0,0,3,252,0,0,2,253,0,0,0,255,0,0,0,255,0,0,0,127,128,0,0,63,192,0,0,47,208,0,0,31,224,0,0,15,240,0,0,11,244,0,0,3,252, + // 0x005d ] + 9,36,108,13,1,249,170,170,128,255,255,192,255,255,192,170,191,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,0,63,192,255,255,192,255,255,192,255,255,192,85,85,64, + // 0x005e ^ + 20,19,95,23,1,10,0,0,124,0,0,0,0,190,0,0,0,0,255,0,0,0,2,255,192,0,0,3,255,208,0,0,11,235,240,0,0,15,195,244,0,0,47,194,252,0,0,63,64,253,0,0,127,0,191,0,0,253,0,63,64,1,252,0,47,192,3,248,0,15,208,7,240,0,11,240,15,224,0,3,244,31,192,0,2,252,47,192,0,0,253,63,64,0,0,191,85,0,0,0,21, + // 0x005f _ + 18,4,20,17,0,249,85,85,85,85,64,255,255,255,255,208,255,255,255,255,208,0,0,0,0,0, + // 0x0060 ` + 9,7,21,12,2,24,170,64,0,255,192,0,63,240,0,15,248,0,3,252,0,0,191,0,0,47,64, + // 0x0061 a + 18,23,115,23,2,255,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0062 b + 20,32,160,25,3,255,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,191,224,0,191,75,255,254,0,191,127,255,255,192,191,255,170,255,224,191,248,0,63,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,15,252,191,240,0,31,248,191,254,65,191,240,191,191,255,255,208,191,31,255,255,64,190,2,255,248,0,0,0,21,64,0, + // 0x0063 c + 16,23,92,20,2,255,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,85,0, + // 0x0064 d + 20,32,160,25,2,255,0,0,0,1,84,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,27,254,2,253,0,255,255,226,253,3,255,255,250,253,15,255,170,255,253,47,248,0,47,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,224,0,7,253,63,244,0,15,253,31,254,1,191,253,11,255,255,254,253,2,255,255,240,253,0,127,255,128,253,0,1,80,0,0, + // 0x0065 e + 19,23,115,23,2,255,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0066 f + 16,31,124,14,0,0,0,0,26,84,0,2,255,255,0,15,255,254,0,63,255,252,0,63,224,4,0,127,192,0,0,191,128,0,0,191,128,0,0,191,128,0,1,255,234,144,47,255,255,240,127,255,255,240,42,255,234,160,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x0067 g + 20,32,160,25,2,246,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x0068 h + 19,31,155,25,3,0,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,111,228,0,191,75,255,255,64,191,111,255,255,208,191,255,170,255,240,191,248,0,47,244,191,240,0,15,248,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x0069 i + 5,30,60,11,3,0,42,0,191,128,255,192,255,128,127,0,0,0,0,0,0,0,106,64,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x006a j + 11,40,120,11,253,246,0,2,160,0,11,248,0,15,252,0,15,248,0,7,240,0,0,0,0,0,0,0,0,0,0,6,164,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,11,248,0,15,244,0,47,240,127,255,240,127,255,192,127,255,64,22,148,0, + // 0x006b k + 19,31,155,22,3,0,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,26,160,191,128,0,127,224,191,128,1,255,128,191,128,3,254,0,191,128,15,248,0,191,128,63,240,0,191,128,255,192,0,191,67,255,0,0,191,79,252,0,0,191,111,240,0,0,191,191,244,0,0,191,255,252,0,0,191,255,255,0,0,191,224,255,128,0,191,128,127,208,0,191,128,47,244,0,191,128,15,252,0,191,128,3,254,0,191,128,1,255,64,191,128,0,191,208,191,128,0,63,240,191,128,0,31,248, + // 0x006c l + 5,31,62,11,3,0,85,0,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x006d m + 32,22,176,38,3,0,105,0,191,228,0,27,254,0,191,11,255,254,1,255,255,208,191,63,255,255,135,255,255,244,191,255,171,255,239,250,191,252,191,248,0,127,255,64,11,253,191,224,0,47,253,0,3,254,191,208,0,31,252,0,2,254,191,192,0,15,244,0,2,255,191,192,0,15,244,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255,191,128,0,15,240,0,1,255, + // 0x006e n + 19,22,110,25,3,0,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x006f o + 21,23,138,24,2,255,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x0070 p + 20,32,160,25,3,246,105,0,191,228,0,191,11,255,254,0,191,47,255,255,192,191,255,170,255,240,191,248,0,63,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,15,252,191,244,0,47,248,191,254,65,191,240,191,191,255,255,208,191,95,255,255,64,191,130,255,248,0,191,128,21,64,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x0071 q + 20,32,160,25,2,246,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,170,255,253,47,248,0,47,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,11,253,63,240,0,15,253,31,254,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,3,253,0,0,0,1,169, + // 0x0072 r + 13,22,88,17,3,0,105,0,127,192,191,3,255,192,191,15,255,192,191,63,255,192,191,255,64,0,191,248,0,0,191,240,0,0,191,192,0,0,191,192,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0, + // 0x0073 s + 16,23,92,19,2,255,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,85,64,0, + // 0x0074 t + 15,28,112,15,0,255,0,21,0,0,0,63,0,0,0,127,0,0,0,191,0,0,0,255,0,0,2,255,170,160,47,255,255,240,127,255,255,240,43,255,170,160,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,0,255,0,0,0,255,64,0,0,255,208,16,0,191,255,244,0,63,255,244,0,11,255,240,0,0,21,0, + // 0x0075 u + 19,23,115,25,3,255,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x0076 v + 21,22,132,21,0,0,170,64,0,0,106,128,191,192,0,0,255,128,63,192,0,0,255,64,63,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,248,0,11,248,0,7,252,0,15,244,0,3,253,0,31,240,0,2,254,0,47,224,0,0,255,0,63,192,0,0,255,64,127,192,0,0,127,192,191,64,0,0,63,192,255,0,0,0,47,209,254,0,0,0,31,226,253,0,0,0,15,243,252,0,0,0,11,251,248,0,0,0,3,255,240,0,0,0,3,255,240,0,0,0,1,255,208,0,0,0,0,255,192,0,0, + // 0x0077 w + 32,22,176,32,0,0,106,64,0,10,164,0,1,169,127,192,0,31,252,0,2,254,63,208,0,63,252,0,3,253,47,224,0,63,253,0,7,252,31,240,0,127,254,0,11,248,15,240,0,191,191,0,15,244,15,244,0,254,127,0,15,240,11,248,1,253,63,128,31,240,7,252,2,252,63,192,47,224,3,252,3,252,47,192,63,208,3,253,3,248,31,208,63,192,1,254,7,240,15,224,127,128,0,255,11,240,15,240,191,64,0,255,15,224,7,240,255,0,0,191,79,208,3,244,255,0,0,127,95,192,3,249,254,0,0,63,175,128,2,253,253,0,0,63,255,64,1,254,252,0,0,47,255,0,0,255,252,0,0,31,255,0,0,255,244,0,0,15,254,0,0,127,240,0,0,11,253,0,0,63,240,0, + // 0x0078 x + 20,22,110,22,1,0,106,128,0,2,169,127,208,0,11,252,47,240,0,31,244,15,252,0,63,224,7,253,0,191,192,2,255,1,255,64,0,255,131,254,0,0,63,219,252,0,0,31,255,240,0,0,15,255,224,0,0,3,255,192,0,0,3,255,192,0,0,15,255,224,0,0,47,255,240,0,0,63,219,252,0,0,255,131,254,0,2,255,1,255,64,7,253,0,191,192,15,248,0,63,224,47,240,0,31,244,127,208,0,11,252,255,128,0,3,255, + // 0x0079 y + 21,32,192,21,0,246,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x007a z + 17,22,110,19,1,0,42,170,170,170,0,63,255,255,255,0,63,255,255,255,0,42,170,171,255,0,0,0,3,253,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,229,85,85,0,191,255,255,255,128,191,255,255,255,128,191,255,255,255,128, + // 0x007b { + 13,36,144,15,1,249,0,0,5,128,0,1,255,192,0,11,255,192,0,31,255,192,0,63,244,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,191,128,0,2,255,0,0,255,253,0,0,255,208,0,0,255,244,0,0,175,254,0,0,1,255,64,0,0,191,128,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,208,0,0,63,248,0,0,31,255,192,0,7,255,192,0,0,191,192,0,0,0,64, + // 0x007c | + 4,41,41,22,9,246,20,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,85, + // 0x007d } + 14,36,144,15,1,249,84,0,0,0,191,224,0,0,191,252,0,0,191,255,0,0,2,255,0,0,0,255,64,0,0,191,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,128,0,0,127,192,0,0,63,244,0,0,15,255,208,0,1,191,208,0,2,255,208,0,31,255,128,0,63,224,0,0,127,192,0,0,127,128,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,127,64,0,0,191,64,0,0,255,64,0,7,255,0,0,191,254,0,0,191,248,0,0,191,144,0,0,16,0,0,0, + // 0x007e ~ + 19,6,30,23,2,11,11,250,64,0,4,127,255,244,0,60,255,255,255,235,252,254,107,255,255,252,208,0,111,255,224,0,0,1,170,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Cyrillic_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Cyrillic_29.cpp new file mode 100644 index 000000000000..68aa80e8b7f9 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Cyrillic_29.cpp @@ -0,0 +1,322 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Cyrillic 40pt, capital 'A' height: 29px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +extern const uint8_t NotoSans_Medium_Cyrillic_29[10751] = { + 130,29,1,4,145,4,38,246, // unifont_t + // 0x0401 Ё + 16,37,148,22,4,0,1,64,1,64,7,240,15,224,15,244,15,240,11,244,15,240,2,224,7,208,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0402 Ђ + 255, + // 0x0403 Ѓ + 255, + // 0x0404 Є + 23,30,180,26,2,255,0,0,26,255,249,0,0,1,255,255,255,228,0,31,255,255,255,248,0,127,255,255,255,240,1,255,244,0,7,224,3,255,128,0,0,0,11,253,0,0,0,0,15,248,0,0,0,0,47,240,0,0,0,0,63,224,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,234,170,170,164,0,191,255,255,255,244,0,191,255,255,255,244,0,191,255,255,255,244,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,16,0,255,254,85,111,240,0,127,255,255,255,240,0,11,255,255,255,240,0,0,191,255,255,128,0,0,1,85,64,0, + // 0x0405 Ѕ + 255, + // 0x0406 І + 12,29,87,14,1,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x0407 Ї + 12,37,111,14,1,0,20,0,20,191,0,254,255,64,255,191,64,255,45,0,124,0,0,0,0,0,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x0408 Ј + 255, + // 0x0409 Љ + 255, + // 0x040a Њ + 255, + // 0x040b Ћ + 255, + // 0x040c Ќ + 255, + // 0x040d Ѝ + 255, + // 0x040e Ў + 255, + // 0x040f Џ + 255, + // 0x0410 А + 26,29,203,26,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0411 Б + 19,29,145,25,4,0,170,170,170,170,128,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,255,234,64,0,255,255,255,248,0,255,255,255,255,64,255,255,255,255,208,255,0,1,191,240,255,0,0,47,244,255,0,0,15,248,255,0,0,11,252,255,0,0,11,252,255,0,0,11,252,255,0,0,15,248,255,0,0,31,244,255,0,0,191,240,255,170,175,255,208,255,255,255,255,128,255,255,255,253,0,255,255,254,144,0, + // 0x0412 В + 20,29,145,26,4,0,170,170,165,0,0,255,255,255,249,0,255,255,255,255,192,255,255,255,255,240,255,0,1,191,248,255,0,0,31,252,255,0,0,11,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,15,248,255,0,0,47,240,255,170,171,255,192,255,255,255,249,0,255,255,255,254,0,255,255,255,255,224,255,0,0,111,248,255,0,0,11,253,255,0,0,3,255,255,0,0,2,255,255,0,0,1,255,255,0,0,2,255,255,0,0,3,255,255,0,0,7,254,255,0,0,31,253,255,170,171,255,248,255,255,255,255,224,255,255,255,255,64,255,255,255,228,0, + // 0x0413 Г + 17,29,145,21,4,0,170,170,170,170,64,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0414 Д + 28,37,3,29,0,248,0,0,10,170,170,170,0,0,0,31,255,255,255,0,0,0,31,255,255,255,0,0,0,47,255,255,255,0,0,0,47,208,1,255,0,0,0,63,192,1,255,0,0,0,63,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,0,0,0,191,128,1,255,0,0,0,255,64,1,255,0,0,0,255,0,1,255,0,0,1,255,0,1,255,0,0,2,254,0,1,255,0,0,3,253,0,1,255,0,0,7,252,0,1,255,0,0,11,248,0,1,255,0,0,15,240,0,1,255,0,0,31,240,0,1,255,0,0,63,224,0,1,255,0,0,127,192,0,1,255,0,0,191,192,0,1,255,0,0,255,64,0,1,255,0,2,255,0,0,1,255,0,3,253,0,0,1,255,0,191,255,255,255,255,255,253,255,255,255,255,255,255,254,255,255,255,255,255,255,254,255,255,255,255,255,255,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,255,64,0,0,0,2,254,191,64,0,0,0,1,253, + // 0x0415 Е + 16,29,116,22,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0416 Ж + 35,29,5,35,0,0,42,128,0,0,169,0,0,10,164,47,240,0,1,254,0,0,47,240,15,248,0,1,254,0,0,127,192,3,253,0,1,254,0,0,255,64,1,255,0,1,254,0,3,254,0,0,191,192,1,254,0,11,252,0,0,63,224,1,254,0,31,240,0,0,15,244,1,254,0,127,208,0,0,7,252,1,254,0,255,64,0,0,2,255,1,254,2,254,0,0,0,0,255,129,254,11,252,0,0,0,0,63,209,254,31,240,0,0,0,0,31,241,254,63,208,0,0,0,0,7,254,254,255,128,0,0,0,0,3,255,255,255,64,0,0,0,0,15,253,254,191,192,0,0,0,0,47,241,254,63,240,0,0,0,0,127,209,254,15,248,0,0,0,0,255,129,254,7,253,0,0,0,3,255,1,254,2,255,0,0,0,11,252,1,254,0,255,192,0,0,31,244,1,254,0,63,224,0,0,63,224,1,254,0,31,244,0,0,255,192,1,254,0,11,252,0,2,255,0,1,254,0,3,255,0,7,253,0,1,254,0,1,255,128,15,248,0,1,254,0,0,191,208,63,240,0,1,254,0,0,63,240,191,192,0,1,254,0,0,15,252, + // 0x0417 З + 21,30,180,24,1,255,0,6,255,233,0,0,1,255,255,255,208,0,31,255,255,255,244,0,63,255,170,255,253,0,31,224,0,11,255,0,9,0,0,2,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,47,252,0,0,106,171,255,224,0,0,255,255,249,0,0,0,255,255,254,64,0,0,255,255,255,244,0,0,0,0,127,253,0,0,0,0,3,255,0,0,0,0,0,255,128,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,255,128,96,0,0,3,255,64,127,148,1,111,254,0,127,255,255,255,252,0,127,255,255,255,224,0,11,255,255,253,0,0,0,5,85,0,0,0, + // 0x0418 И + 24,29,174,31,4,0,169,0,0,0,6,169,255,0,0,0,15,254,255,0,0,0,47,254,255,0,0,0,127,254,255,0,0,0,255,254,255,0,0,2,255,254,255,0,0,7,253,254,255,0,0,15,248,254,255,0,0,47,240,254,255,0,0,63,208,254,255,0,0,255,193,254,255,0,2,255,1,254,255,0,3,253,1,254,255,0,15,252,1,254,255,0,31,240,1,254,255,0,63,224,1,254,255,0,255,192,1,254,255,1,255,0,1,254,254,3,254,0,1,254,254,11,252,0,1,254,254,31,244,0,1,254,254,63,224,0,1,254,254,191,192,0,1,254,255,255,64,0,1,254,255,254,0,0,1,254,255,252,0,0,1,254,255,244,0,0,1,254,255,240,0,0,1,254,255,192,0,0,1,254, + // 0x0419 Й + 24,38,228,31,4,0,0,106,0,0,106,0,0,191,64,0,255,0,0,127,128,1,255,0,0,63,224,7,253,0,0,31,255,255,248,0,0,7,255,255,224,0,0,0,106,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,6,169,255,0,0,0,15,254,255,0,0,0,47,254,255,0,0,0,127,254,255,0,0,0,255,254,255,0,0,2,255,254,255,0,0,7,253,254,255,0,0,15,248,254,255,0,0,47,240,254,255,0,0,63,208,254,255,0,0,255,193,254,255,0,2,255,1,254,255,0,3,253,1,254,255,0,15,252,1,254,255,0,31,240,1,254,255,0,63,224,1,254,255,0,255,192,1,254,255,1,255,0,1,254,254,3,254,0,1,254,254,11,252,0,1,254,254,31,244,0,1,254,254,63,224,0,1,254,254,191,192,0,1,254,255,255,64,0,1,254,255,254,0,0,1,254,255,252,0,0,1,254,255,244,0,0,1,254,255,240,0,0,1,254,255,192,0,0,1,254, + // 0x041a К + 21,29,174,25,4,0,170,0,0,0,170,64,255,0,0,3,255,0,255,0,0,11,252,0,255,0,0,47,240,0,255,0,0,127,208,0,255,0,1,255,64,0,255,0,3,254,0,0,255,0,15,252,0,0,255,0,63,240,0,0,255,0,191,192,0,0,255,2,255,0,0,0,255,7,253,0,0,0,255,31,248,0,0,0,255,127,224,0,0,0,255,255,192,0,0,0,255,127,240,0,0,0,255,15,252,0,0,0,255,7,254,0,0,0,255,2,255,128,0,0,255,0,191,208,0,0,255,0,63,240,0,0,255,0,15,252,0,0,255,0,3,255,0,0,255,0,1,255,128,0,255,0,0,127,224,0,255,0,0,47,244,0,255,0,0,15,253,0,255,0,0,3,255,0,255,0,0,0,255,192, + // 0x041b Л + 25,30,210,29,0,255,0,0,42,170,170,170,128,0,0,191,255,255,255,192,0,0,191,255,255,255,192,0,0,255,255,255,255,192,0,0,255,64,0,127,192,0,0,255,0,0,127,192,0,0,255,0,0,127,192,0,1,255,0,0,127,192,0,1,254,0,0,127,192,0,2,254,0,0,127,192,0,2,253,0,0,127,192,0,3,252,0,0,127,192,0,3,252,0,0,127,192,0,3,252,0,0,127,192,0,7,252,0,0,127,192,0,7,248,0,0,127,192,0,11,248,0,0,127,192,0,15,244,0,0,127,192,0,15,240,0,0,127,192,0,15,240,0,0,127,192,0,31,240,0,0,127,192,0,47,224,0,0,127,192,0,63,208,0,0,127,192,0,63,192,0,0,127,192,0,191,192,0,0,127,192,66,255,64,0,0,127,192,255,255,0,0,0,127,192,255,253,0,0,0,127,192,255,244,0,0,0,127,192,21,0,0,0,0,0,0, + // 0x041c М + 29,29,232,37,4,0,170,160,0,0,0,2,170,128,255,244,0,0,0,11,255,192,255,248,0,0,0,15,255,192,255,252,0,0,0,31,255,192,255,253,0,0,0,47,255,192,254,255,0,0,0,63,191,192,254,255,0,0,0,127,127,192,254,127,64,0,0,255,63,192,254,63,192,0,0,253,63,192,254,47,192,0,2,252,63,192,254,31,224,0,3,248,63,192,254,15,240,0,7,244,127,192,254,11,244,0,11,240,127,192,254,7,248,0,15,224,127,192,254,3,252,0,31,208,127,192,254,2,253,0,63,192,127,192,254,0,254,0,63,128,127,192,254,0,255,0,191,0,127,192,254,0,191,64,255,0,127,192,254,0,63,193,253,0,127,192,254,0,63,194,252,0,127,192,254,0,31,211,248,0,127,192,254,0,15,247,244,0,127,192,254,0,11,255,240,0,127,192,254,0,7,255,224,0,127,192,254,0,3,255,192,0,127,192,254,0,2,255,192,0,127,192,254,0,1,255,128,0,127,192,254,0,0,255,0,0,127,192, + // 0x041d Н + 22,29,174,30,4,0,170,0,0,0,10,160,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,234,170,170,191,240,255,255,255,255,255,240,255,255,255,255,255,240,255,255,255,255,255,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240, + // 0x041e О + 27,30,210,31,2,255,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x041f П + 22,29,174,29,4,0,170,170,170,170,170,144,255,255,255,255,255,224,255,255,255,255,255,224,255,255,255,255,255,224,255,64,0,0,63,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224, + // 0x0420 Р + 19,29,145,24,4,0,170,170,148,0,0,255,255,255,224,0,255,255,255,254,0,255,255,255,255,128,255,0,7,255,208,255,0,0,127,240,255,0,0,47,240,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,31,240,255,0,0,63,240,255,0,1,255,208,255,150,175,255,192,255,255,255,255,0,255,255,255,248,0,255,255,254,64,0,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0421 С + 22,30,180,25,2,255,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x0422 Т + 22,29,174,23,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x0423 У + 24,30,180,25,1,255,170,0,0,0,0,170,255,128,0,0,2,255,191,192,0,0,3,254,63,224,0,0,7,252,47,240,0,0,15,248,15,248,0,0,31,240,11,252,0,0,47,224,3,254,0,0,63,208,1,255,0,0,191,192,0,255,128,0,255,64,0,127,192,1,255,0,0,63,224,3,254,0,0,31,240,7,252,0,0,15,244,11,248,0,0,7,252,15,240,0,0,3,253,47,240,0,0,1,255,63,208,0,0,0,255,191,192,0,0,0,127,255,64,0,0,0,63,255,0,0,0,0,31,254,0,0,0,0,15,252,0,0,0,0,31,248,0,0,0,0,63,240,0,0,0,0,255,208,0,0,58,175,255,192,0,0,63,255,255,0,0,0,63,255,252,0,0,0,63,255,208,0,0,0,1,84,0,0,0,0, + // 0x0424 Ф + 29,30,240,33,2,255,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,5,255,148,0,0,0,0,11,255,255,255,244,0,0,0,191,255,255,255,255,64,0,3,255,255,255,255,255,224,0,15,255,148,191,69,255,248,0,47,252,0,191,64,15,253,0,63,240,0,191,64,3,255,0,127,192,0,191,64,0,255,64,191,128,0,191,64,0,255,128,255,64,0,191,64,0,191,128,255,64,0,191,64,0,127,192,255,0,0,191,64,0,127,192,255,64,0,191,64,0,191,128,255,128,0,191,64,0,191,128,191,192,0,191,64,0,255,64,63,208,0,191,64,2,255,0,63,244,0,191,64,7,254,0,15,254,0,191,64,47,252,0,7,255,250,255,171,255,240,0,1,255,255,255,255,255,192,0,0,47,255,255,255,253,0,0,0,1,191,255,254,144,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,191,64,0,0,0,0,0,0,85,0,0,0,0, + // 0x0425 Х + 24,29,174,24,0,0,42,144,0,0,2,168,47,240,0,0,11,252,15,252,0,0,31,244,7,253,0,0,63,224,2,255,0,0,191,192,0,255,128,0,255,64,0,127,192,3,254,0,0,47,240,7,252,0,0,15,244,15,244,0,0,7,252,47,224,0,0,3,254,63,192,0,0,0,255,255,64,0,0,0,127,255,0,0,0,0,63,252,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,0,255,255,0,0,0,2,255,191,192,0,0,3,252,63,208,0,0,15,248,31,240,0,0,31,240,15,252,0,0,63,208,3,253,0,0,191,128,2,255,0,1,255,0,0,255,128,3,253,0,0,127,208,11,252,0,0,63,240,31,244,0,0,15,248,63,224,0,0,11,253,191,192,0,0,3,255, + // 0x0426 Ц + 26,37,3,30,4,248,170,0,0,0,26,144,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,0,0,0,47,224,0,255,255,255,255,255,250,128,255,255,255,255,255,255,208,255,255,255,255,255,255,208,255,255,255,255,255,255,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,63,208,0,0,0,0,0,47,192, + // 0x0427 Ч + 22,29,174,28,3,0,170,0,0,0,26,144,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,0,0,0,63,208,255,64,0,0,63,208,255,128,0,0,63,208,191,208,0,2,255,208,127,254,90,255,255,208,47,255,255,255,255,208,11,255,255,255,191,208,1,191,255,228,63,208,0,0,64,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208, + // 0x0428 Ш + 34,29,5,42,4,0,170,0,0,2,168,0,0,10,160,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,0,0,3,252,0,0,15,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x0429 Щ + 38,37,114,43,4,248,170,0,0,2,168,0,0,26,144,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,0,0,7,252,0,0,47,240,0,255,255,255,255,255,255,255,255,250,144,255,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,47,208, + // 0x042a Ъ + 26,29,203,28,0,0,106,170,168,0,0,0,0,255,255,253,0,0,0,0,255,255,253,0,0,0,0,255,255,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,255,255,169,0,0,0,3,255,255,255,224,0,0,3,255,255,255,254,0,0,3,255,255,255,255,128,0,3,253,0,6,255,192,0,3,253,0,0,127,224,0,3,253,0,0,47,240,0,3,253,0,0,31,240,0,3,253,0,0,31,240,0,3,253,0,0,31,240,0,3,253,0,0,47,240,0,3,253,0,0,127,224,0,3,253,0,1,255,192,0,3,255,170,191,255,128,0,3,255,255,255,254,0,0,3,255,255,255,244,0,0,3,255,255,254,64,0, + // 0x042b Ы + 27,29,203,35,4,0,170,0,0,0,0,2,168,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,0,0,0,0,3,252,255,255,233,64,0,3,252,255,255,255,244,0,3,252,255,255,255,255,0,3,252,255,255,255,255,192,3,252,255,0,1,255,224,3,252,255,0,0,63,240,3,252,255,0,0,15,244,3,252,255,0,0,15,248,3,252,255,0,0,15,248,3,252,255,0,0,15,248,3,252,255,0,0,15,244,3,252,255,0,0,47,240,3,252,255,0,0,255,224,3,252,255,170,175,255,192,3,252,255,255,255,255,64,3,252,255,255,255,248,0,3,252,255,255,254,64,0,3,252, + // 0x042c Ь + 20,29,145,26,4,0,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,255,250,64,0,255,255,255,253,0,255,255,255,255,192,255,255,255,255,240,255,0,0,127,248,255,0,0,15,252,255,0,0,3,253,255,0,0,3,254,255,0,0,3,254,255,0,0,3,254,255,0,0,3,253,255,0,0,11,252,255,0,0,127,248,255,170,175,255,240,255,255,255,255,208,255,255,255,254,0,255,255,255,144,0, + // 0x042d Э + 22,30,180,26,1,255,1,175,254,144,0,0,111,255,255,254,0,0,127,255,255,255,192,0,63,255,255,255,244,0,46,64,0,127,252,0,0,0,0,11,255,0,0,0,0,2,255,64,0,0,0,0,255,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,47,240,0,0,0,0,31,240,0,106,170,170,191,240,0,255,255,255,255,240,0,255,255,255,255,240,0,255,255,255,255,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,47,240,0,0,0,0,63,224,0,0,0,0,63,208,0,0,0,0,191,192,0,0,0,1,255,128,0,0,0,7,255,0,16,0,0,47,253,0,127,149,91,255,248,0,127,255,255,255,224,0,127,255,255,255,64,0,27,255,255,228,0,0,0,21,84,0,0,0, + // 0x042e Ю + 36,30,14,42,4,255,170,0,0,0,6,255,249,0,0,255,0,0,0,127,255,255,224,0,255,0,0,2,255,255,255,252,0,255,0,0,15,255,255,255,255,0,255,0,0,47,253,0,7,255,192,255,0,0,127,240,0,0,191,224,255,0,0,255,192,0,0,47,240,255,0,1,255,64,0,0,15,248,255,0,2,255,0,0,0,11,252,255,0,3,254,0,0,0,7,252,255,0,3,253,0,0,0,3,253,255,0,7,252,0,0,0,3,254,255,234,175,252,0,0,0,3,254,255,255,255,252,0,0,0,2,255,255,255,255,252,0,0,0,2,255,255,255,255,252,0,0,0,2,255,255,0,7,252,0,0,0,2,255,255,0,7,252,0,0,0,3,254,255,0,3,253,0,0,0,3,254,255,0,3,254,0,0,0,3,253,255,0,3,255,0,0,0,11,252,255,0,1,255,64,0,0,15,252,255,0,0,255,192,0,0,31,244,255,0,0,191,224,0,0,127,240,255,0,0,63,248,0,1,255,208,255,0,0,15,255,149,111,255,128,255,0,0,7,255,255,255,254,0,255,0,0,0,255,255,255,244,0,255,0,0,0,27,255,255,64,0,0,0,0,0,0,21,64,0,0, + // 0x042f Я + 21,29,174,26,1,0,0,0,21,170,170,128,0,7,255,255,255,192,0,127,255,255,255,192,1,255,255,255,255,192,3,255,228,0,127,192,11,254,0,0,63,192,15,252,0,0,63,192,15,248,0,0,63,192,15,244,0,0,63,192,15,244,0,0,63,192,15,248,0,0,63,192,11,252,0,0,63,192,3,255,0,0,63,192,2,255,228,0,127,192,0,191,255,255,255,192,0,31,255,255,255,192,0,2,255,255,255,192,0,3,254,85,191,192,0,11,252,0,63,192,0,31,244,0,63,192,0,63,240,0,63,192,0,191,192,0,63,192,1,255,128,0,63,192,3,255,0,0,63,192,11,253,0,0,63,192,15,248,0,0,63,192,63,240,0,0,63,192,127,208,0,0,63,192,255,192,0,0,63,192, + // 0x0430 а + 18,23,115,23,2,255,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0431 б + 20,32,160,24,2,255,0,0,0,0,21,0,0,1,111,254,0,1,191,255,254,0,15,255,255,255,0,127,255,255,148,1,255,249,64,0,3,255,64,0,0,15,252,0,0,0,31,240,0,0,0,47,224,0,0,0,63,192,0,0,0,63,192,127,249,0,127,199,255,255,192,191,159,255,255,240,191,255,213,191,248,255,253,0,15,252,255,240,0,3,254,255,192,0,2,255,255,128,0,1,255,255,128,0,1,255,191,128,0,1,255,191,128,0,1,255,127,192,0,1,255,127,192,0,1,255,63,224,0,2,254,47,240,0,3,253,15,252,0,15,252,7,255,64,127,244,2,255,255,255,224,0,191,255,255,64,0,11,255,248,0,0,0,85,0,0, + // 0x0432 в + 19,22,110,24,3,0,106,170,169,64,0,191,255,255,253,0,191,255,255,255,192,191,234,175,255,224,191,128,0,63,240,191,128,0,31,240,191,128,0,15,240,191,128,0,31,240,191,128,0,127,208,191,255,255,255,64,191,255,255,244,0,191,255,255,255,64,191,149,86,255,224,191,128,0,31,244,191,128,0,11,248,191,128,0,11,252,191,128,0,11,252,191,128,0,15,248,191,128,5,191,240,191,255,255,255,208,191,255,255,255,64,191,255,255,228,0, + // 0x0433 г + 14,22,88,18,3,0,106,170,170,160,191,255,255,240,191,255,255,240,191,255,255,240,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0, + // 0x0434 д + 24,30,180,24,0,248,0,0,170,170,170,0,0,0,255,255,255,64,0,1,255,255,255,64,0,1,255,170,255,64,0,2,253,0,255,64,0,2,253,0,255,64,0,3,252,0,255,64,0,3,252,0,255,64,0,3,252,0,255,64,0,7,248,0,255,64,0,15,244,0,255,64,0,15,240,0,255,64,0,31,224,0,255,64,0,63,208,0,255,64,0,63,192,0,255,64,0,191,128,0,255,64,0,255,0,0,255,64,3,254,0,0,255,64,27,253,85,85,255,148,127,255,255,255,255,253,127,255,255,255,255,253,127,255,255,255,255,253,127,128,0,0,1,253,127,128,0,0,1,253,127,128,0,0,1,253,127,128,0,0,1,253,127,128,0,0,1,253,127,128,0,0,1,253,127,128,0,0,1,253,42,64,0,0,1,169, + // 0x0435 е + 19,23,115,23,2,255,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0436 ж + 31,22,176,31,0,0,42,144,0,10,144,0,10,160,31,240,0,31,224,0,47,224,11,252,0,31,224,0,191,192,2,254,0,31,224,1,255,0,0,255,128,31,224,3,253,0,0,63,208,31,224,15,244,0,0,15,240,31,224,47,224,0,0,7,252,31,224,191,192,0,0,2,255,31,225,255,0,0,0,0,191,159,227,252,0,0,0,0,63,239,255,244,0,0,0,0,63,239,255,248,0,0,0,0,255,159,227,253,0,0,0,3,254,31,225,255,0,0,0,11,252,31,224,127,192,0,0,31,240,31,224,47,240,0,0,127,208,31,224,15,248,0,0,255,64,31,224,3,254,0,3,254,0,31,224,0,255,64,15,252,0,31,224,0,127,208,47,240,0,31,224,0,47,240,191,192,0,31,224,0,11,252, + // 0x0437 з + 18,23,115,20,1,255,1,175,254,64,0,63,255,255,248,0,63,255,255,254,0,47,233,91,255,64,8,0,0,191,192,0,0,0,63,192,0,0,0,63,192,0,0,0,127,128,0,0,2,255,0,0,127,255,252,0,0,127,255,208,0,0,127,255,248,0,0,21,107,255,64,0,0,0,191,192,0,0,0,63,208,0,0,0,47,224,0,0,0,47,224,64,0,0,63,208,190,64,6,255,192,191,255,255,255,64,191,255,255,253,0,31,255,255,224,0,0,21,84,0,0, + // 0x0438 и + 21,22,132,27,3,0,106,0,0,2,170,0,191,64,0,11,255,64,191,64,0,15,255,64,191,64,0,63,255,64,191,64,0,127,255,64,191,64,0,255,191,64,191,64,3,253,191,64,191,64,7,252,191,64,191,64,15,240,191,64,191,64,47,224,191,64,191,64,127,192,191,64,191,64,255,64,191,64,191,66,254,0,191,64,191,71,252,0,191,64,191,79,244,0,191,64,191,47,224,0,191,64,191,127,192,0,191,64,191,255,64,0,191,64,191,255,0,0,191,64,191,252,0,0,191,64,191,244,0,0,191,64,191,240,0,0,191,64, + // 0x0439 й + 21,31,186,27,3,0,2,164,0,2,164,0,3,248,0,7,248,0,3,252,0,15,244,0,2,255,64,127,240,0,0,255,255,255,192,0,0,47,255,255,0,0,0,1,174,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,170,0,191,64,0,11,255,64,191,64,0,15,255,64,191,64,0,63,255,64,191,64,0,127,255,64,191,64,0,255,191,64,191,64,3,253,191,64,191,64,7,252,191,64,191,64,15,240,191,64,191,64,47,224,191,64,191,64,127,192,191,64,191,64,255,64,191,64,191,66,254,0,191,64,191,71,252,0,191,64,191,79,244,0,191,64,191,47,224,0,191,64,191,127,192,0,191,64,191,255,64,0,191,64,191,255,0,0,191,64,191,252,0,0,191,64,191,244,0,0,191,64,191,240,0,0,191,64, + // 0x043a к + 19,22,110,22,3,0,106,64,0,26,144,191,128,0,127,192,191,128,1,255,64,191,128,3,253,0,191,128,15,248,0,191,128,63,224,0,191,128,191,192,0,191,130,255,0,0,191,135,252,0,0,191,159,244,0,0,191,191,208,0,0,191,191,224,0,0,191,143,248,0,0,191,135,253,0,0,191,129,255,64,0,191,128,191,192,0,191,128,47,240,0,191,128,15,252,0,191,128,3,255,0,191,128,0,255,128,191,128,0,127,224,191,128,0,31,244, + // 0x043b л + 21,23,138,24,0,255,0,2,170,170,170,64,0,7,255,255,255,128,0,11,255,255,255,128,0,11,255,255,255,128,0,11,240,0,191,128,0,15,240,0,191,128,0,15,240,0,191,128,0,15,240,0,191,128,0,15,240,0,191,128,0,31,224,0,191,128,0,31,224,0,191,128,0,47,208,0,191,128,0,63,192,0,191,128,0,63,192,0,191,128,0,127,192,0,191,128,0,191,128,0,191,128,0,255,64,0,191,128,2,255,0,0,191,128,7,254,0,0,191,128,255,252,0,0,191,128,255,244,0,0,191,128,255,208,0,0,191,128,4,0,0,0,0,0, + // 0x043c м + 25,22,154,31,3,0,106,160,0,0,2,170,64,191,248,0,0,7,255,128,191,252,0,0,15,255,128,191,253,0,0,15,255,128,191,254,0,0,47,255,128,191,191,0,0,63,191,128,191,127,64,0,127,127,128,191,63,192,0,255,63,128,191,31,192,0,253,63,128,191,15,224,2,252,63,128,191,11,240,3,248,63,128,191,7,244,7,244,63,128,191,3,252,15,240,63,128,191,2,252,15,208,63,128,191,0,254,47,192,63,128,191,0,255,63,128,63,128,191,0,127,191,64,63,128,191,0,63,255,0,63,128,191,0,47,254,0,63,128,191,0,15,252,0,63,128,191,0,15,248,0,63,128,191,0,7,244,0,63,128, + // 0x043d н + 20,22,110,26,3,0,106,64,0,1,168,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,255,255,255,253,191,255,255,255,253,191,255,255,255,253,191,234,170,171,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253,191,128,0,3,253, + // 0x043e о + 21,23,138,24,2,255,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x043f п + 19,22,110,25,3,0,106,170,170,170,168,191,255,255,255,252,191,255,255,255,252,191,255,255,255,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252,191,128,0,7,252, + // 0x0440 р + 20,32,160,25,3,246,105,0,191,228,0,191,11,255,254,0,191,47,255,255,192,191,255,170,255,240,191,248,0,63,244,191,224,0,15,252,191,192,0,7,252,191,192,0,3,253,191,128,0,3,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,192,0,3,253,191,192,0,7,252,191,224,0,15,252,191,244,0,47,248,191,254,65,191,240,191,191,255,255,208,191,95,255,255,64,191,130,255,248,0,191,128,21,64,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x0441 с + 16,23,92,20,2,255,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,85,0, + // 0x0442 т + 18,22,110,20,1,0,170,170,170,170,160,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0, + // 0x0443 у + 21,32,192,21,0,246,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x0444 ф + 26,41,31,30,2,246,0,0,1,84,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,107,254,144,0,0,0,31,255,255,254,0,0,0,255,255,255,255,224,0,3,255,251,254,255,252,0,15,254,3,252,15,255,0,47,248,3,252,2,255,64,63,224,3,252,0,191,192,127,192,3,252,0,63,208,191,192,3,252,0,63,224,255,128,3,252,0,47,240,255,64,3,252,0,31,240,255,64,3,252,0,31,240,255,128,3,252,0,31,240,191,128,3,252,0,47,240,191,192,3,252,0,63,224,63,208,3,252,0,127,192,63,240,3,252,0,255,192,15,252,3,252,3,255,0,7,255,147,252,111,253,0,1,255,255,255,255,244,0,0,47,255,255,255,192,0,0,2,255,255,249,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,2,168,0,0,0, + // 0x0445 х + 20,22,110,22,1,0,106,128,0,2,169,127,208,0,11,252,47,240,0,31,244,15,252,0,63,224,7,253,0,191,192,2,255,1,255,64,0,255,131,254,0,0,63,219,252,0,0,31,255,240,0,0,15,255,224,0,0,3,255,192,0,0,3,255,192,0,0,15,255,224,0,0,47,255,240,0,0,63,219,252,0,0,255,131,254,0,2,255,1,255,64,7,253,0,191,192,15,248,0,63,224,47,240,0,31,244,127,208,0,11,252,255,128,0,3,255, + // 0x0446 ц + 23,30,180,26,3,248,106,64,0,2,168,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,128,0,3,252,0,191,149,85,87,253,80,191,255,255,255,255,244,191,255,255,255,255,244,191,255,255,255,255,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,11,244,0,0,0,0,6,160, + // 0x0447 ч + 19,22,110,25,3,0,170,0,0,6,164,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,0,0,11,248,255,128,0,127,248,191,245,91,255,248,63,255,255,255,248,15,255,255,203,248,1,255,248,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248, + // 0x0448 ш + 31,22,176,37,3,0,106,64,0,26,144,0,6,160,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,128,0,63,208,0,15,244,191,149,85,127,229,85,95,244,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,244, + // 0x0449 щ + 34,30,14,37,3,248,106,64,0,26,144,0,6,160,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,128,0,63,208,0,15,244,0,191,149,85,127,229,85,95,249,64,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,26,144, + // 0x044a ъ + 26,22,154,28,0,0,106,170,169,0,0,0,0,127,255,254,0,0,0,0,127,255,254,0,0,0,0,127,255,254,0,0,0,0,0,2,254,0,0,0,0,0,2,254,0,0,0,0,0,2,254,0,0,0,0,0,2,254,0,0,0,0,0,2,254,0,0,0,0,0,2,255,255,254,144,0,0,2,255,255,255,254,0,0,2,255,255,255,255,128,0,2,255,85,90,255,208,0,2,254,0,0,63,240,0,2,254,0,0,31,240,0,2,254,0,0,15,240,0,2,254,0,0,31,240,0,2,254,0,0,63,224,0,2,254,0,6,255,208,0,2,255,255,255,255,128,0,2,255,255,255,253,0,0,2,255,255,255,144,0, + // 0x044b ы + 26,22,154,32,3,0,106,64,0,0,0,26,144,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,128,0,0,0,47,224,191,255,254,144,0,47,224,191,255,255,254,0,47,224,191,255,255,255,128,47,224,191,149,90,255,208,47,224,191,128,0,63,224,47,224,191,128,0,31,240,47,224,191,128,0,31,240,47,224,191,128,0,31,240,47,224,191,128,0,63,224,47,224,191,128,22,255,192,47,224,191,255,255,255,128,47,224,191,255,255,253,0,47,224,191,255,255,144,0,47,224, + // 0x044c ь + 19,22,110,24,3,0,106,64,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,255,255,164,0,191,255,255,255,128,191,255,255,255,224,191,149,86,191,244,191,128,0,15,252,191,128,0,7,252,191,128,0,3,252,191,128,0,7,252,191,128,0,15,248,191,128,1,191,244,191,255,255,255,224,191,255,255,255,64,191,255,255,228,0, + // 0x044d э + 17,23,115,20,1,255,6,255,228,0,0,127,255,255,128,0,63,255,255,240,0,63,170,191,252,0,20,0,11,253,0,0,0,2,255,0,0,0,0,255,64,0,0,0,255,128,0,0,0,191,128,2,170,170,255,192,7,255,255,255,192,7,255,255,255,192,2,170,170,255,192,0,0,0,191,128,0,0,0,255,128,0,0,0,255,64,0,0,2,255,0,0,0,7,254,0,249,0,127,252,0,255,255,255,240,0,255,255,255,192,0,111,255,249,0,0,0,85,0,0,0, + // 0x044e ю + 29,23,184,34,3,255,106,64,0,1,191,228,0,0,191,128,0,31,255,255,64,0,191,128,0,127,255,255,224,0,191,128,1,255,250,191,248,0,191,128,3,255,0,11,253,0,191,128,7,252,0,3,255,0,191,128,15,248,0,1,255,0,191,128,15,244,0,0,255,64,191,128,31,240,0,0,191,128,191,255,255,240,0,0,191,192,191,255,255,240,0,0,191,192,191,255,255,240,0,0,191,192,191,234,191,240,0,0,191,192,191,128,31,240,0,0,191,128,191,128,15,240,0,0,255,128,191,128,15,244,0,0,255,64,191,128,11,252,0,2,255,0,191,128,3,254,0,3,254,0,191,128,2,255,208,47,252,0,191,128,0,255,255,255,240,0,191,128,0,47,255,255,192,0,191,128,0,7,255,253,0,0,0,0,0,0,21,64,0,0, + // 0x044f я + 19,22,110,23,1,0,0,5,170,170,160,1,255,255,255,244,11,255,255,255,244,31,255,170,175,244,63,240,0,15,244,63,192,0,15,244,63,192,0,15,244,63,192,0,15,244,63,192,0,15,244,63,244,0,15,244,31,255,234,175,244,7,255,255,255,244,0,191,255,255,244,0,63,250,175,244,0,127,192,15,244,0,255,64,15,244,3,254,0,15,244,7,252,0,15,244,15,244,0,15,244,63,240,0,15,244,191,192,0,15,244,255,128,0,15,244, + // 0x0450 ѐ + 255, + // 0x0451 ё + 19,31,155,23,2,255,0,20,0,80,0,0,253,1,252,0,1,255,3,253,0,1,254,2,253,0,0,184,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0452 ђ + 255, + // 0x0453 ѓ + 255, + // 0x0454 є + 17,23,115,20,2,255,0,6,255,228,0,0,127,255,255,128,2,255,255,255,64,11,255,170,191,0,31,248,0,5,0,63,240,0,0,0,127,192,0,0,0,191,192,0,0,0,191,128,0,0,0,255,234,170,160,0,255,255,255,244,0,255,255,255,244,0,255,234,170,160,0,255,128,0,0,0,191,128,0,0,0,127,192,0,0,0,63,224,0,0,0,47,244,0,0,0,15,254,64,27,64,7,255,255,255,64,1,255,255,255,64,0,31,255,254,0,0,0,85,64,0, + // 0x0455 ѕ + 255, + // 0x0456 і + 5,30,60,11,3,0,42,0,191,128,255,192,255,128,127,0,0,0,0,0,0,0,106,64,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x0457 ї + 13,30,120,11,255,0,4,0,20,0,63,64,191,0,127,128,255,64,127,128,191,0,46,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x0458 ј + 255, + // 0x0459 љ + 255, + // 0x045a њ + 255, + // 0x045b ћ + 255, + // 0x045c ќ + 255, + // 0x045d ѝ + 255, + // 0x045e ў + 255, + // 0x045f џ + 255, + // 0x0460 Ѡ + 255, + // 0x0461 ѡ + 255, + // 0x0462 Ѣ + 255, + // 0x0463 ѣ + 255, + // 0x0464 Ѥ + 255, + // 0x0465 ѥ + 255, + // 0x0466 Ѧ + 255, + // 0x0467 ѧ + 255, + // 0x0468 Ѩ + 255, + // 0x0469 ѩ + 255, + // 0x046a Ѫ + 255, + // 0x046b ѫ + 255, + // 0x046c Ѭ + 255, + // 0x046d ѭ + 255, + // 0x046e Ѯ + 255, + // 0x046f ѯ + 255, + // 0x0470 Ѱ + 255, + // 0x0471 ѱ + 255, + // 0x0472 Ѳ + 255, + // 0x0473 ѳ + 255, + // 0x0474 Ѵ + 255, + // 0x0475 ѵ + 255, + // 0x0476 Ѷ + 255, + // 0x0477 ѷ + 255, + // 0x0478 Ѹ + 255, + // 0x0479 ѹ + 255, + // 0x047a Ѻ + 255, + // 0x047b ѻ + 255, + // 0x047c Ѽ + 255, + // 0x047d ѽ + 255, + // 0x047e Ѿ + 255, + // 0x047f ѿ + 255, + // 0x0480 Ҁ + 255, + // 0x0481 ҁ + 255, + // 0x0482 ҂ + 255, + // 0x0483 ҃ + 255, + // 0x0484 ҄ + 255, + // 0x0485 ҅ + 255, + // 0x0486 ҆ + 255, + // 0x0487 ҇ + 255, + // 0x0488 ҈ + 255, + // 0x0489 ҉ + 255, + // 0x048a Ҋ + 255, + // 0x048b ҋ + 255, + // 0x048c Ҍ + 255, + // 0x048d ҍ + 255, + // 0x048e Ҏ + 255, + // 0x048f ҏ + 255, + // 0x0490 Ґ + 17,35,175,22,4,0,0,0,0,21,64,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,170,170,170,191,192,255,255,255,255,192,255,255,255,255,192,255,255,255,255,192,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x0491 ґ + 15,28,112,18,3,0,0,0,10,160,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,0,0,11,244,106,170,175,244,191,255,255,244,191,255,255,244,191,234,170,160,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Greek_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Greek_29.cpp new file mode 100644 index 000000000000..ffdd5c0b8338 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Greek_29.cpp @@ -0,0 +1,178 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Greek 40pt, capital 'A' height: 29px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +extern const uint8_t NotoSans_Medium_Greek_29[10140] = { + 130,29,134,3,206,3,38,246, // unifont_t + // 0x0386 Ά + 29,29,232,29,0,0,15,252,0,10,164,0,0,0,15,248,0,31,252,0,0,0,31,240,0,63,253,0,0,0,63,208,0,63,254,0,0,0,63,128,0,191,255,0,0,0,127,0,0,255,127,128,0,0,125,0,1,254,63,192,0,0,0,0,2,253,47,208,0,0,0,0,3,252,31,224,0,0,0,0,7,248,15,240,0,0,0,0,15,244,11,244,0,0,0,0,15,240,7,252,0,0,0,0,47,224,3,252,0,0,0,0,63,208,2,254,0,0,0,0,127,192,1,255,0,0,0,0,191,128,0,255,64,0,0,0,255,0,0,191,128,0,0,1,255,255,255,255,192,0,0,3,255,255,255,255,208,0,0,3,255,255,255,255,240,0,0,11,255,255,255,255,240,0,0,15,244,0,0,15,248,0,0,31,240,0,0,11,252,0,0,47,224,0,0,3,253,0,0,63,208,0,0,3,254,0,0,127,192,0,0,1,255,0,0,255,128,0,0,0,255,64,0,255,64,0,0,0,191,192,2,255,0,0,0,0,127,192, + // 0x0387 · + 255, + // 0x0388 Έ + 27,29,203,30,0,0,15,252,2,170,170,170,168,15,248,3,255,255,255,252,31,240,3,255,255,255,252,63,208,3,255,255,255,252,63,128,3,253,0,0,0,127,0,3,253,0,0,0,125,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,255,170,170,164,0,0,3,255,255,255,244,0,0,3,255,255,255,244,0,0,3,255,255,255,244,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,255,170,170,168,0,0,3,255,255,255,252,0,0,3,255,255,255,252,0,0,3,255,255,255,252, + // 0x0389 Ή + 34,29,5,37,0,0,15,252,2,168,0,0,0,42,128,15,248,3,253,0,0,0,63,208,31,240,3,253,0,0,0,63,208,63,208,3,253,0,0,0,63,208,63,128,3,253,0,0,0,63,208,127,0,3,253,0,0,0,63,208,125,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,255,170,170,170,191,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208,0,0,3,253,0,0,0,63,208, + // 0x038a Ί + 21,29,174,22,0,0,15,252,10,170,170,64,15,248,31,255,255,128,31,240,31,255,255,128,63,208,2,255,249,0,63,128,0,63,208,0,127,0,0,63,208,0,125,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,127,224,0,0,0,11,255,255,64,0,0,31,255,255,128,0,0,31,255,255,128, + // 0x038b ΋ + 255, + // 0x038c Ό + 35,30,14,37,0,255,15,252,0,0,111,255,144,0,0,15,248,0,11,255,255,254,0,0,31,240,0,127,255,255,255,208,0,63,208,1,255,255,255,255,244,0,63,128,7,255,208,0,127,253,0,127,0,15,253,0,0,7,255,0,125,0,47,248,0,0,1,255,128,0,0,63,240,0,0,0,255,192,0,0,127,208,0,0,0,127,208,0,0,191,192,0,0,0,63,224,0,0,255,128,0,0,0,47,240,0,0,255,128,0,0,0,47,240,0,0,255,64,0,0,0,31,240,0,1,255,64,0,0,0,31,240,0,1,255,0,0,0,0,31,244,0,1,255,64,0,0,0,31,240,0,0,255,64,0,0,0,31,240,0,0,255,64,0,0,0,31,240,0,0,255,128,0,0,0,47,240,0,0,255,192,0,0,0,63,224,0,0,191,192,0,0,0,63,208,0,0,63,224,0,0,0,191,192,0,0,63,240,0,0,0,255,128,0,0,31,252,0,0,3,255,0,0,0,11,255,64,0,31,254,0,0,0,3,255,249,86,255,252,0,0,0,0,255,255,255,255,224,0,0,0,0,47,255,255,255,64,0,0,0,0,2,255,255,244,0,0,0,0,0,0,1,84,0,0,0, + // 0x038d ΍ + 255, + // 0x038e Ύ + 32,29,232,33,0,0,15,252,26,160,0,0,0,170,15,248,15,248,0,0,2,255,31,240,11,252,0,0,3,253,63,208,3,254,0,0,11,252,63,128,2,255,0,0,15,244,127,0,0,255,128,0,47,240,125,0,0,127,192,0,63,208,0,0,0,63,224,0,191,128,0,0,0,31,240,1,255,0,0,0,0,15,248,3,254,0,0,0,0,7,252,7,252,0,0,0,0,3,255,15,248,0,0,0,0,0,255,95,240,0,0,0,0,0,191,255,208,0,0,0,0,0,63,255,192,0,0,0,0,0,47,255,64,0,0,0,0,0,15,255,0,0,0,0,0,0,11,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0, + // 0x038f Ώ + 34,29,5,35,0,0,15,252,0,1,191,254,64,0,0,15,248,0,31,255,255,248,0,0,31,240,0,255,255,255,255,128,0,63,208,3,255,255,191,255,224,0,63,128,15,255,64,0,191,248,0,127,0,63,252,0,0,31,253,0,125,0,127,240,0,0,7,255,0,0,0,255,192,0,0,2,255,64,0,0,255,128,0,0,0,255,192,0,1,255,0,0,0,0,191,192,0,2,255,0,0,0,0,127,208,0,3,255,0,0,0,0,63,208,0,3,254,0,0,0,0,63,208,0,3,254,0,0,0,0,63,224,0,3,254,0,0,0,0,63,208,0,3,254,0,0,0,0,63,208,0,2,255,0,0,0,0,63,192,0,1,255,0,0,0,0,127,192,0,0,255,64,0,0,0,191,128,0,0,191,128,0,0,0,255,64,0,0,63,192,0,0,2,255,0,0,0,47,224,0,0,3,252,0,0,0,15,248,0,0,15,244,0,0,0,3,253,0,0,63,224,0,0,0,0,255,128,0,255,128,0,0,2,170,255,224,3,255,170,160,0,3,255,255,240,7,255,255,240,0,3,255,255,240,7,255,255,240,0,3,255,255,240,7,255,255,240, + // 0x0390 ΐ + 255, + // 0x0391 Α + 26,29,203,26,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0392 Β + 20,29,145,26,4,0,170,170,165,0,0,255,255,255,249,0,255,255,255,255,192,255,255,255,255,240,255,0,1,191,248,255,0,0,31,252,255,0,0,11,252,255,0,0,7,252,255,0,0,7,252,255,0,0,7,252,255,0,0,15,248,255,0,0,47,240,255,170,171,255,192,255,255,255,249,0,255,255,255,254,0,255,255,255,255,224,255,0,0,111,248,255,0,0,11,253,255,0,0,3,255,255,0,0,2,255,255,0,0,1,255,255,0,0,2,255,255,0,0,3,255,255,0,0,7,254,255,0,0,31,253,255,170,171,255,248,255,255,255,255,224,255,255,255,255,64,255,255,255,228,0, + // 0x0393 Γ + 15,29,116,20,4,0,170,170,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0, + // 0x0394 Δ + 26,29,203,26,0,0,0,0,6,168,0,0,0,0,0,11,254,0,0,0,0,0,15,255,0,0,0,0,0,47,255,64,0,0,0,0,63,255,192,0,0,0,0,127,175,192,0,0,0,0,191,95,224,0,0,0,0,255,15,240,0,0,0,1,254,11,244,0,0,0,3,252,7,252,0,0,0,7,252,3,252,0,0,0,11,244,2,254,0,0,0,15,240,0,255,0,0,0,31,224,0,255,64,0,0,63,208,0,127,192,0,0,63,192,0,63,192,0,0,191,128,0,47,224,0,0,255,0,0,31,240,0,1,255,0,0,15,244,0,3,253,0,0,11,248,0,3,252,0,0,3,252,0,11,248,0,0,3,253,0,15,244,0,0,1,255,0,31,240,0,0,0,255,64,63,224,0,0,0,191,128,63,255,255,255,255,255,192,191,255,255,255,255,255,208,191,255,255,255,255,255,224,191,255,255,255,255,255,224, + // 0x0395 Ε + 16,29,116,22,4,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0396 Ζ + 21,29,174,23,1,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x0397 Η + 22,29,174,30,4,0,170,0,0,0,10,160,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,234,170,170,191,240,255,255,255,255,255,240,255,255,255,255,255,240,255,255,255,255,255,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240, + // 0x0398 Θ + 27,30,210,31,2,255,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,85,85,84,11,252,191,192,255,255,253,11,252,191,192,255,255,253,11,252,191,192,255,255,253,11,252,191,192,85,85,84,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x0399 Ι + 12,29,87,14,1,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x039a Κ + 21,29,174,25,4,0,170,0,0,0,170,64,255,0,0,3,255,0,255,0,0,15,252,0,255,0,0,47,244,0,255,0,0,127,208,0,255,0,1,255,128,0,255,0,3,254,0,0,255,0,15,252,0,0,255,0,63,240,0,0,255,0,255,192,0,0,255,2,255,0,0,0,255,11,253,0,0,0,255,31,244,0,0,0,255,127,244,0,0,0,255,255,252,0,0,0,255,255,255,0,0,0,255,242,255,128,0,0,255,192,255,208,0,0,255,0,63,240,0,0,255,0,31,248,0,0,255,0,15,253,0,0,255,0,3,255,0,0,255,0,1,255,128,0,255,0,0,191,208,0,255,0,0,63,240,0,255,0,0,15,252,0,255,0,0,11,254,0,255,0,0,3,255,0,255,0,0,0,255,192, + // 0x039b Λ + 25,29,203,25,0,0,0,0,10,168,0,0,0,0,0,15,252,0,0,0,0,0,31,254,0,0,0,0,0,63,255,0,0,0,0,0,63,255,64,0,0,0,0,191,127,128,0,0,0,0,255,63,192,0,0,0,1,254,47,208,0,0,0,2,253,15,224,0,0,0,3,252,15,240,0,0,0,7,248,11,244,0,0,0,11,244,3,252,0,0,0,15,240,3,252,0,0,0,31,224,2,253,0,0,0,63,208,1,255,0,0,0,63,192,0,255,0,0,0,191,128,0,191,128,0,0,255,64,0,127,192,0,0,255,0,0,63,208,0,2,254,0,0,47,224,0,3,253,0,0,31,240,0,7,252,0,0,15,244,0,11,248,0,0,11,248,0,15,244,0,0,7,252,0,31,240,0,0,3,253,0,47,224,0,0,2,255,0,63,208,0,0,1,255,0,127,192,0,0,0,255,128,255,128,0,0,0,191,192, + // 0x039c Μ + 29,29,232,37,4,0,170,160,0,0,0,2,170,128,255,244,0,0,0,11,255,192,255,248,0,0,0,15,255,192,255,252,0,0,0,31,255,192,255,253,0,0,0,47,255,192,254,255,0,0,0,63,191,192,254,255,0,0,0,127,127,192,254,127,64,0,0,255,63,192,254,63,192,0,0,253,63,192,254,47,192,0,2,252,63,192,254,31,224,0,3,248,63,192,254,15,240,0,7,244,127,192,254,11,244,0,11,240,127,192,254,7,248,0,15,224,127,192,254,3,252,0,31,208,127,192,254,2,253,0,63,192,127,192,254,0,254,0,63,128,127,192,254,0,255,0,191,0,127,192,254,0,191,64,255,0,127,192,254,0,63,193,253,0,127,192,254,0,63,194,252,0,127,192,254,0,31,211,248,0,127,192,254,0,15,247,244,0,127,192,254,0,11,255,240,0,127,192,254,0,7,255,224,0,127,192,254,0,3,255,192,0,127,192,254,0,2,255,192,0,127,192,254,0,1,255,128,0,127,192,254,0,0,255,0,0,127,192, + // 0x039d Ν + 23,29,174,31,4,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x039e Ξ + 21,29,174,25,2,0,26,170,170,170,169,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x039f Ο + 27,30,210,31,2,255,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x03a0 Π + 22,29,174,30,4,0,170,170,170,170,170,144,255,255,255,255,255,224,255,255,255,255,255,224,255,255,255,255,255,224,255,64,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224,255,0,0,0,47,224, + // 0x03a1 Ρ + 19,29,145,24,4,0,170,170,148,0,0,255,255,255,224,0,255,255,255,254,0,255,255,255,255,128,255,0,7,255,208,255,0,0,127,240,255,0,0,47,240,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,15,244,255,0,0,31,240,255,0,0,63,240,255,0,1,255,208,255,150,175,255,192,255,255,255,255,0,255,255,255,248,0,255,255,254,64,0,255,64,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0, + // 0x03a2 ΢ + 255, + // 0x03a3 Σ + 21,29,174,23,1,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,47,248,0,0,0,0,15,253,0,0,0,0,3,255,0,0,0,0,0,255,192,0,0,0,0,127,240,0,0,0,0,31,248,0,0,0,0,11,254,0,0,0,0,2,255,64,0,0,0,0,255,208,0,0,0,0,63,240,0,0,0,0,47,240,0,0,0,0,127,192,0,0,0,1,255,64,0,0,0,3,254,0,0,0,0,15,248,0,0,0,0,47,240,0,0,0,0,191,192,0,0,0,1,255,64,0,0,0,3,253,0,0,0,0,15,248,0,0,0,0,63,240,0,0,0,0,191,250,175,255,255,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x03a4 Τ + 22,29,174,23,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x03a5 Υ + 23,29,174,23,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x03a6 Φ + 31,30,240,34,2,255,0,0,0,42,128,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,208,0,0,0,0,0,107,255,254,144,0,0,0,27,255,255,255,255,64,0,0,191,255,255,255,255,244,0,3,255,255,191,255,255,254,0,15,255,64,63,208,27,255,64,47,248,0,63,208,1,255,192,63,224,0,63,208,0,63,224,127,192,0,63,208,0,47,240,191,128,0,63,208,0,15,240,255,64,0,63,208,0,15,244,255,64,0,63,208,0,15,244,255,64,0,63,208,0,15,244,255,64,0,63,208,0,15,244,255,128,0,63,208,0,15,240,191,192,0,63,208,0,31,240,63,208,0,63,208,0,63,224,63,240,0,63,208,0,191,192,15,253,0,63,208,3,255,128,7,255,228,63,209,111,255,0,1,255,255,255,255,255,252,0,0,47,255,255,255,255,208,0,0,2,255,255,255,249,0,0,0,0,1,127,229,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,208,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,0,0,0, + // 0x03a7 Χ + 24,29,174,24,0,0,42,144,0,0,2,168,47,240,0,0,11,252,15,252,0,0,31,244,7,253,0,0,63,224,2,255,0,0,191,192,0,255,128,0,255,64,0,127,192,3,254,0,0,47,240,7,252,0,0,15,244,15,244,0,0,7,252,47,224,0,0,3,254,63,192,0,0,0,255,255,64,0,0,0,127,255,0,0,0,0,63,252,0,0,0,0,47,252,0,0,0,0,127,254,0,0,0,0,255,255,0,0,0,2,255,191,192,0,0,3,252,63,208,0,0,15,248,31,240,0,0,31,240,15,252,0,0,63,208,3,253,0,0,191,128,2,255,0,1,255,0,0,255,128,3,253,0,0,127,208,11,252,0,0,63,240,31,244,0,0,15,248,63,224,0,0,11,253,191,192,0,0,3,255, + // 0x03a8 Ψ + 27,29,203,34,3,0,42,64,0,169,0,2,168,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,127,192,1,255,0,7,252,63,192,1,255,0,11,248,63,192,1,255,0,15,248,63,224,1,255,0,15,244,31,240,1,255,0,47,240,15,252,1,255,0,191,208,7,255,145,255,7,255,192,2,255,255,255,255,255,0,0,127,255,255,255,248,0,0,11,255,255,255,128,0,0,0,22,255,80,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0, + // 0x03a9 Ω + 27,29,203,29,1,0,0,0,27,255,160,0,0,0,7,255,255,255,64,0,0,47,255,255,255,224,0,0,255,255,239,255,252,0,2,255,224,0,47,255,0,7,255,0,0,3,255,128,15,252,0,0,0,255,208,47,244,0,0,0,127,224,63,240,0,0,0,47,240,63,224,0,0,0,31,244,127,208,0,0,0,15,248,191,192,0,0,0,15,248,191,192,0,0,0,15,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,11,248,127,192,0,0,0,15,248,63,208,0,0,0,15,244,63,224,0,0,0,31,240,31,240,0,0,0,47,224,15,244,0,0,0,63,192,7,252,0,0,0,255,64,2,255,0,0,2,255,0,0,191,128,0,11,252,0,0,47,240,0,47,224,0,170,175,252,0,255,234,168,255,255,252,0,255,255,252,255,255,252,0,255,255,252,255,255,252,0,255,255,252, + // 0x03aa Ϊ + 255, + // 0x03ab Ϋ + 255, + // 0x03ac ά + 23,32,192,25,2,255,0,0,11,253,0,0,0,0,15,252,0,0,0,0,15,244,0,0,0,0,31,224,0,0,0,0,47,192,0,0,0,0,63,64,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,253,0,169,0,0,255,255,208,253,0,3,255,255,249,253,0,15,255,170,255,253,0,47,248,0,47,253,0,63,240,0,15,253,0,127,192,0,7,253,0,191,192,0,3,253,0,191,128,0,3,253,0,255,128,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,128,0,2,253,0,191,128,0,3,253,0,127,192,0,3,253,0,63,208,0,11,253,0,63,240,0,15,254,0,31,254,0,191,255,64,11,255,255,253,255,244,2,255,255,240,191,244,0,127,255,128,63,244,0,1,80,0,1,64, + // 0x03ad έ + 17,32,160,19,1,255,0,0,11,253,0,0,0,15,248,0,0,0,31,240,0,0,0,47,208,0,0,0,63,192,0,0,0,63,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,164,0,1,255,255,255,64,7,255,255,255,128,15,254,86,255,0,31,244,0,6,0,31,224,0,0,0,31,224,0,0,0,31,240,0,0,0,15,248,0,0,0,3,255,255,128,0,0,127,255,192,0,1,255,255,192,0,15,254,149,64,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,63,224,0,0,0,63,249,0,27,64,15,255,255,255,64,7,255,255,255,64,0,191,255,254,0,0,1,85,0,0, + // 0x03ae ή + 19,41,205,25,3,246,0,0,255,192,0,0,1,255,64,0,0,2,254,0,0,0,3,252,0,0,0,7,244,0,0,0,11,240,0,0,0,11,192,0,0,0,0,0,0,0,0,0,0,0,0,105,0,191,228,0,191,11,255,255,0,191,63,255,255,192,191,255,170,255,224,191,248,0,63,240,191,240,0,15,244,191,208,0,15,244,191,192,0,11,248,191,192,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,6,164, + // 0x03af ί + 10,32,96,14,3,255,2,255,64,3,254,0,7,252,0,11,244,0,15,240,0,31,192,0,31,64,0,0,0,0,0,0,0,106,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,191,128,0,191,192,0,127,224,16,63,255,240,31,255,240,3,255,240,0,21,64, + // 0x03b0 ΰ + 255, + // 0x03b1 α + 23,23,138,25,2,255,0,27,253,0,169,0,0,255,255,208,253,0,3,255,255,249,253,0,15,255,170,255,253,0,47,248,0,47,253,0,63,240,0,15,253,0,127,192,0,7,253,0,191,192,0,3,253,0,191,128,0,3,253,0,255,128,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,128,0,2,253,0,191,128,0,3,253,0,127,192,0,3,253,0,63,208,0,11,253,0,63,240,0,15,254,0,31,254,0,191,255,64,11,255,255,253,255,244,2,255,255,240,191,244,0,127,255,128,63,244,0,1,80,0,1,64, + // 0x03b2 β + 20,41,205,25,3,246,0,1,105,64,0,0,127,255,248,0,3,255,255,255,0,15,255,255,255,192,31,252,0,255,224,63,240,0,63,240,127,192,0,31,240,127,192,0,15,244,191,128,0,15,244,191,128,0,15,240,191,128,0,31,240,191,128,0,63,208,191,128,0,191,192,191,130,171,254,0,191,131,255,224,0,191,131,255,249,0,191,130,175,255,128,191,128,0,127,240,191,128,0,15,248,191,128,0,7,252,191,128,0,3,253,191,128,0,2,254,191,128,0,2,254,191,128,0,2,254,191,128,0,3,254,191,128,0,7,253,191,192,0,15,252,191,249,0,191,244,191,255,255,255,224,191,255,255,255,64,191,159,255,248,0,191,128,85,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,106,64,0,0,0, + // 0x03b3 γ + 20,31,155,21,0,247,170,64,0,0,170,191,128,0,1,255,127,192,0,1,255,63,208,0,1,255,47,224,0,1,255,15,240,0,2,254,15,244,0,2,254,7,248,0,3,253,3,252,0,3,252,3,253,0,3,252,1,254,0,7,248,0,255,0,11,244,0,191,64,15,240,0,127,128,47,224,0,63,192,63,192,0,47,208,191,128,0,31,224,255,0,0,15,243,253,0,0,11,255,252,0,0,3,255,240,0,0,3,255,192,0,0,2,255,64,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,0,85,0,0, + // 0x03b4 δ + 21,32,192,24,1,255,0,0,22,148,0,0,0,2,255,255,208,0,0,15,255,255,252,0,0,63,255,255,254,0,0,191,208,2,252,0,0,255,64,0,36,0,0,255,0,0,0,0,0,255,64,0,0,0,0,191,192,0,0,0,0,127,244,0,0,0,0,31,254,0,0,0,0,7,255,224,0,0,0,2,255,253,0,0,0,47,255,255,128,0,0,255,224,255,240,0,3,255,0,47,248,0,15,252,0,7,253,0,31,240,0,2,255,0,63,224,0,0,255,0,63,208,0,0,255,64,63,192,0,0,191,128,127,192,0,0,191,128,127,192,0,0,191,128,63,192,0,0,191,128,63,224,0,0,255,64,47,240,0,2,255,0,31,252,0,7,254,0,11,255,64,111,252,0,3,255,255,255,244,0,0,191,255,255,192,0,0,11,255,253,0,0,0,0,21,64,0,0, + // 0x03b5 ε + 17,23,115,19,1,255,0,27,255,164,0,1,255,255,255,64,7,255,255,255,128,15,254,86,255,0,31,244,0,6,0,31,224,0,0,0,31,224,0,0,0,31,240,0,0,0,15,248,0,0,0,3,255,255,128,0,0,127,255,192,0,1,255,255,192,0,15,254,149,64,0,47,240,0,0,0,63,208,0,0,0,127,192,0,0,0,127,192,0,0,0,63,224,0,0,0,63,249,0,27,64,15,255,255,255,64,7,255,255,255,64,0,191,255,254,0,0,1,85,0,0, + // 0x03b6 ζ + 17,40,200,19,2,247,21,85,85,85,0,63,255,255,255,128,63,255,255,255,128,47,255,251,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,3,255,0,0,0,11,252,0,0,0,31,244,0,0,0,63,224,0,0,0,255,192,0,0,2,255,0,0,0,3,253,0,0,0,15,248,0,0,0,31,240,0,0,0,63,224,0,0,0,127,192,0,0,0,191,192,0,0,0,255,128,0,0,0,255,64,0,0,0,255,128,0,0,0,255,192,0,0,0,191,208,0,0,0,63,248,0,0,0,47,255,144,0,0,11,255,255,144,0,1,255,255,252,0,0,31,255,255,0,0,0,111,255,64,0,0,1,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,0,0,0,1,255,0,0,0,2,253,0,0,0,3,252,0,0,0,0,0,0, + // 0x03b7 η + 19,32,160,25,3,246,105,0,191,228,0,191,11,255,255,0,191,63,255,255,192,191,255,170,255,224,191,248,0,63,240,191,240,0,15,244,191,208,0,15,244,191,192,0,11,248,191,192,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,191,128,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,6,164, + // 0x03b8 θ + 20,32,160,24,2,255,0,1,105,64,0,0,47,255,244,0,0,255,255,255,0,3,255,255,255,128,11,253,0,191,208,15,244,0,31,240,47,240,0,15,244,63,208,0,7,248,63,192,0,3,252,127,192,0,3,253,191,128,0,2,253,191,128,0,2,254,255,64,0,2,254,255,64,0,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,128,0,2,255,255,64,0,1,255,191,64,0,2,254,191,128,0,2,254,127,128,0,2,253,127,192,0,3,253,63,192,0,3,252,47,208,0,7,252,31,240,0,15,244,15,244,0,47,240,7,254,0,191,208,2,255,255,255,128,0,191,255,254,0,0,31,255,244,0,0,0,85,0,0, + // 0x03b9 ι + 10,23,69,14,3,255,106,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,255,64,0,191,128,0,191,192,0,127,224,16,63,255,240,31,255,240,3,255,240,0,21,64, + // 0x03ba κ + 19,22,110,22,3,0,106,64,0,26,160,191,128,0,127,224,191,128,0,255,128,191,128,3,255,0,191,128,15,252,0,191,128,47,240,0,191,128,191,208,0,191,129,255,64,0,191,131,254,0,0,191,143,248,0,0,191,191,248,0,0,191,255,253,0,0,191,255,255,0,0,191,244,255,192,0,191,192,127,224,0,191,128,47,244,0,191,128,15,252,0,191,128,3,255,0,191,128,1,255,128,191,128,0,191,208,191,128,0,63,240,191,128,0,15,248, + // 0x03bb λ + 22,32,192,21,0,255,106,80,0,0,0,0,255,254,0,0,0,0,255,255,192,0,0,0,255,255,224,0,0,0,0,47,244,0,0,0,0,11,252,0,0,0,0,3,252,0,0,0,0,2,254,0,0,0,0,0,255,0,0,0,0,0,255,64,0,0,0,1,255,192,0,0,0,2,255,192,0,0,0,3,255,224,0,0,0,7,255,240,0,0,0,11,251,244,0,0,0,15,231,248,0,0,0,31,211,252,0,0,0,63,195,253,0,0,0,63,129,255,0,0,0,191,64,255,0,0,0,255,0,191,128,0,1,255,0,127,192,0,2,254,0,63,208,0,3,252,0,47,224,0,7,252,0,31,240,0,15,248,0,15,244,0,15,244,0,11,252,0,31,240,0,7,253,0,63,224,0,3,255,208,63,208,0,1,255,208,191,192,0,0,191,208,0,0,0,0,5,0, + // 0x03bc μ + 22,32,192,26,3,246,106,64,0,2,164,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,7,252,0,191,128,0,11,252,0,191,128,0,11,252,0,191,128,0,15,252,0,191,192,0,31,252,0,191,224,0,63,252,0,191,249,2,255,254,0,191,255,255,247,255,224,191,255,255,225,255,224,191,95,255,64,191,224,191,64,80,0,5,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,191,128,0,0,0,0,106,64,0,0,0,0, + // 0x03bd ν + 20,22,110,21,0,0,170,64,0,0,170,191,128,0,1,255,127,192,0,1,255,63,208,0,1,255,47,224,0,1,255,15,240,0,2,254,15,244,0,2,254,7,248,0,3,253,3,252,0,3,252,3,253,0,3,252,1,254,0,7,248,0,255,0,11,244,0,191,64,15,240,0,127,128,47,224,0,63,192,63,192,0,47,208,191,128,0,31,224,255,0,0,15,243,254,0,0,11,255,252,0,0,3,255,240,0,0,3,255,208,0,0,2,255,64,0, + // 0x03be ξ + 17,40,200,20,2,247,21,85,85,85,64,47,255,255,255,128,47,255,255,255,128,47,239,255,234,64,0,127,144,0,0,2,253,0,0,0,11,240,0,0,0,31,240,0,0,0,31,224,0,0,0,47,224,0,0,0,47,224,0,0,0,31,244,0,0,0,15,253,0,0,0,3,255,234,170,0,0,127,255,255,0,0,47,255,255,0,2,255,254,170,0,15,253,0,0,0,47,240,0,0,0,63,192,0,0,0,191,128,0,0,0,255,64,0,0,0,255,64,0,0,0,255,128,0,0,0,255,192,0,0,0,191,208,0,0,0,63,248,0,0,0,47,255,144,0,0,11,255,255,144,0,1,255,255,252,0,0,27,255,255,0,0,0,111,255,64,0,0,1,255,128,0,0,0,191,128,0,0,0,191,64,0,0,0,255,0,0,0,0,255,0,0,0,2,254,0,0,0,3,252,0,0,0,0,0,0, + // 0x03bf ο + 21,23,138,24,2,255,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x03c0 π + 26,23,161,27,0,255,42,170,170,170,170,170,160,127,255,255,255,255,255,240,127,255,255,255,255,255,240,42,191,250,170,191,250,160,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,31,240,0,0,63,208,0,15,240,0,0,63,208,0,15,248,0,0,63,208,0,15,255,224,0,63,208,0,7,255,224,0,63,208,0,1,255,224,0,0,0,0,0,21,0, + // 0x03c1 ρ + 20,32,160,24,2,246,0,6,255,144,0,0,63,255,254,0,1,255,255,255,192,3,255,235,255,240,15,252,0,47,248,31,240,0,11,252,47,224,0,3,253,63,208,0,2,254,63,192,0,2,255,63,192,0,1,255,127,192,0,1,255,127,192,0,0,255,127,192,0,1,255,127,192,0,1,255,127,192,0,2,255,127,192,0,3,254,127,192,0,7,252,127,224,0,15,248,127,254,64,191,240,127,255,255,255,208,127,255,255,255,64,127,203,255,248,0,127,192,21,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,0,42,128,0,0,0, + // 0x03c2 ς + 17,31,155,20,2,247,0,6,255,228,0,0,127,255,255,0,2,255,255,255,0,11,255,234,253,0,31,252,0,8,0,63,240,0,0,0,63,208,0,0,0,127,192,0,0,0,191,128,0,0,0,255,128,0,0,0,255,64,0,0,0,255,64,0,0,0,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,208,0,0,0,63,240,0,0,0,47,252,0,0,0,15,255,208,0,0,3,255,255,128,0,0,191,255,248,0,0,11,255,255,0,0,0,111,255,0,0,0,1,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,0,0,0,1,255,0,0,0,2,253,0,0,0,3,252,0,0,0,0,0,0, + // 0x03c3 σ + 22,23,138,25,2,255,0,0,90,170,170,144,0,31,255,255,255,224,0,255,255,255,255,224,7,255,254,191,234,144,15,254,0,47,208,0,47,244,0,15,240,0,63,208,0,7,248,0,127,192,0,3,252,0,191,128,0,3,253,0,255,128,0,2,254,0,255,64,0,1,255,0,255,64,0,1,255,0,255,64,0,1,255,0,255,128,0,2,254,0,191,128,0,3,254,0,127,192,0,3,253,0,63,208,0,11,252,0,47,244,0,31,248,0,15,254,65,191,240,0,7,255,255,255,192,0,1,255,255,255,0,0,0,31,255,244,0,0,0,0,85,0,0,0, + // 0x03c4 τ + 19,23,115,20,0,255,42,170,170,170,164,127,255,255,255,252,127,255,255,255,252,42,175,254,170,168,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,248,0,0,0,11,252,0,0,0,7,252,0,0,0,3,255,64,16,0,3,255,255,224,0,0,255,255,224,0,0,47,255,224,0,0,1,84,0, + // 0x03c5 υ + 19,23,115,24,3,255,106,0,0,26,144,255,64,0,47,224,255,64,0,31,240,255,64,0,15,240,255,64,0,15,244,255,64,0,15,244,255,64,0,15,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,15,244,255,64,0,15,244,191,128,0,31,240,191,192,0,63,224,127,208,0,191,208,63,248,6,255,128,31,255,255,255,0,11,255,255,252,0,1,255,255,208,0,0,5,84,0,0, + // 0x03c6 φ + 26,41,31,30,2,246,0,0,1,84,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,107,254,144,0,0,0,31,255,255,255,64,0,0,255,255,255,255,224,0,3,255,235,254,255,252,0,15,254,3,252,11,255,0,47,244,3,252,1,255,128,63,224,3,252,0,191,192,127,192,3,252,0,63,208,191,192,3,252,0,47,224,255,128,3,252,0,47,240,255,128,3,252,0,31,240,255,128,3,252,0,31,240,255,128,3,252,0,31,240,191,128,3,252,0,47,240,127,192,3,252,0,63,224,63,208,3,252,0,127,208,47,240,3,252,0,255,192,15,252,3,252,3,255,64,7,255,131,252,47,253,0,1,255,255,255,255,244,0,0,47,255,255,255,192,0,0,2,255,255,249,0,0,0,0,3,253,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,2,168,0,0,0, + // 0x03c7 χ + 23,32,192,24,1,246,106,0,0,0,6,164,255,224,0,0,15,244,255,244,0,0,47,224,255,252,0,0,63,192,3,254,0,0,191,128,1,255,0,0,255,0,0,255,128,3,253,0,0,127,192,7,252,0,0,63,224,15,240,0,0,31,240,31,224,0,0,15,248,63,192,0,0,7,252,191,64,0,0,3,254,255,0,0,0,1,255,253,0,0,0,0,255,248,0,0,0,0,127,240,0,0,0,0,63,224,0,0,0,0,191,240,0,0,0,0,255,244,0,0,0,3,255,252,0,0,0,7,251,253,0,0,0,15,241,255,0,0,0,47,208,255,64,0,0,127,192,191,192,0,0,255,64,63,208,0,2,254,0,47,240,0,3,252,0,15,244,0,15,244,0,11,253,0,31,240,0,3,255,252,63,208,0,1,255,252,191,128,0,0,127,252,170,0,0,0,6,148, + // 0x03c8 ψ + 25,41,31,31,3,246,0,0,1,80,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,106,0,11,244,0,170,0,255,0,11,244,0,255,0,255,0,11,244,0,191,64,255,0,11,244,0,191,128,255,0,11,244,0,127,128,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,0,11,244,0,63,192,255,64,11,244,0,63,192,191,64,11,244,0,127,192,127,128,11,244,0,191,128,63,208,11,244,1,255,0,63,240,11,244,7,254,0,15,254,75,248,127,252,0,7,255,255,255,255,240,0,1,255,255,255,255,128,0,0,27,255,255,248,0,0,0,0,27,248,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,6,164,0,0,0, + // 0x03c9 ω + 29,23,184,33,2,255,0,170,0,0,0,42,64,0,2,253,0,0,0,47,208,0,7,252,0,0,0,15,240,0,15,244,0,0,0,11,248,0,31,240,0,0,0,3,252,0,47,208,0,0,0,2,253,0,63,192,0,0,0,1,254,0,63,192,0,21,0,0,255,0,127,192,0,191,64,0,255,0,127,128,0,191,64,0,255,0,127,128,0,191,64,0,255,64,191,128,0,191,64,0,255,64,127,128,0,191,64,0,255,0,127,128,0,191,64,0,255,0,127,192,0,191,64,0,255,0,63,192,0,255,128,1,255,0,63,208,0,255,192,2,254,0,31,240,1,255,192,3,253,0,15,253,7,247,244,31,252,0,7,255,255,227,255,255,240,0,2,255,255,193,255,255,208,0,0,127,254,0,127,254,0,0,0,1,80,0,1,80,0,0, + // 0x03ca ϊ + 255, + // 0x03cb ϋ + 255, + // 0x03cc ό + 21,32,192,24,2,255,0,0,3,255,0,0,0,0,7,253,0,0,0,0,11,248,0,0,0,0,15,240,0,0,0,0,31,208,0,0,0,0,47,128,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x03cd ύ + 19,32,160,24,3,255,0,0,47,244,0,0,0,63,224,0,0,0,127,192,0,0,0,191,64,0,0,0,255,0,0,0,0,252,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,26,144,255,64,0,47,224,255,64,0,31,240,255,64,0,15,240,255,64,0,15,244,255,64,0,15,244,255,64,0,15,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,11,248,255,64,0,15,244,255,64,0,15,244,191,128,0,31,240,191,192,0,63,224,127,208,0,191,208,63,248,6,255,128,31,255,255,255,0,11,255,255,252,0,1,255,255,208,0,0,5,84,0,0, + // 0x03ce ώ + 29,32,0,33,2,255,0,0,0,3,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0,0,0,0,31,192,0,0,0,0,0,0,47,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,42,64,0,2,253,0,0,0,47,208,0,7,252,0,0,0,15,240,0,15,244,0,0,0,11,248,0,31,240,0,0,0,3,252,0,47,208,0,0,0,2,253,0,63,192,0,0,0,1,254,0,63,192,0,21,0,0,255,0,127,192,0,191,64,0,255,0,127,128,0,191,64,0,255,0,127,128,0,191,64,0,255,64,191,128,0,191,64,0,255,64,127,128,0,191,64,0,255,0,127,128,0,191,64,0,255,0,127,192,0,191,64,0,255,0,63,192,0,255,128,1,255,0,63,208,0,255,192,2,254,0,31,240,1,255,192,3,253,0,15,253,7,247,244,31,252,0,7,255,255,227,255,255,240,0,2,255,255,193,255,255,208,0,0,127,254,0,127,254,0,0,0,1,80,0,1,80,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Katakana_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Katakana_29.cpp new file mode 100644 index 000000000000..5ecf0161d9c3 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Katakana_29.cpp @@ -0,0 +1,238 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Katakana 40pt, capital 'A' height: 29px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +extern const uint8_t NotoSans_Medium_Katakana_29[11808] = { + 162,29,160,48,104,136,38,246, // unifont_t + // 0x30a0 ゠ + 160,48,18,8,40,40,11,11,191,255,255,255,224,106,170,170,170,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,144,191,255,255,255,224, + // 0x30a1 ァ + 161,48,28,27,189,40,7,251,255,255,255,255,255,255,244,255,255,255,255,255,255,254,255,255,255,255,255,255,254,250,170,170,170,170,175,252,0,0,0,0,0,31,240,0,0,0,0,0,63,224,0,0,15,244,0,255,192,0,0,15,244,2,255,0,0,0,11,244,11,253,0,0,0,11,244,47,244,0,0,0,11,240,255,224,0,0,0,15,240,63,128,0,0,0,15,240,9,0,0,0,0,15,240,0,0,0,0,0,31,240,0,0,0,0,0,47,224,0,0,0,0,0,63,192,0,0,0,0,0,127,192,0,0,0,0,0,255,64,0,0,0,0,3,255,0,0,0,0,0,15,253,0,0,0,0,0,127,248,0,0,0,0,2,255,224,0,0,0,0,15,255,128,0,0,0,0,3,253,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30a2 ア + 162,48,33,33,41,40,5,253,64,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,224,0,0,0,0,170,64,1,255,192,0,0,0,0,255,64,3,255,0,0,0,0,0,255,64,31,253,0,0,0,0,0,255,64,127,244,0,0,0,0,0,255,66,255,208,0,0,0,0,0,255,71,255,64,0,0,0,0,0,255,65,253,0,0,0,0,0,0,255,64,48,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,47,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0, + // 0x30a3 ィ + 163,48,27,29,203,40,5,252,0,0,0,0,0,2,64,0,0,0,0,0,11,208,0,0,0,0,0,47,244,0,0,0,0,0,191,244,0,0,0,0,3,255,208,0,0,0,0,15,255,64,0,0,0,0,127,252,0,0,0,0,2,255,224,0,0,0,0,31,255,64,0,0,0,1,255,252,0,0,0,0,31,255,240,0,0,0,1,255,255,240,0,0,0,111,255,255,240,0,0,27,255,255,95,240,0,0,255,255,244,31,240,0,0,191,254,64,31,240,0,0,63,208,0,31,240,0,0,40,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,31,240,0,0,0,0,0,47,240,0,0,0,0,0,47,240,0,0,0,0,0,5,80,0,0, + // 0x30a4 イ + 164,48,32,33,8,40,3,254,0,0,0,0,0,0,0,208,0,0,0,0,0,0,3,244,0,0,0,0,0,0,15,253,0,0,0,0,0,0,63,253,0,0,0,0,0,0,255,244,0,0,0,0,0,7,255,192,0,0,0,0,0,47,255,0,0,0,0,0,0,255,252,0,0,0,0,0,7,255,224,0,0,0,0,0,63,255,64,0,0,0,0,2,255,248,0,0,0,0,0,47,255,224,0,0,0,0,2,255,255,192,0,0,0,0,111,255,255,192,0,0,0,7,255,255,191,192,0,0,1,255,255,248,63,192,0,0,127,255,255,64,63,192,0,0,191,255,244,0,63,192,0,0,63,254,0,0,63,192,0,0,47,144,0,0,63,192,0,0,4,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,208,0,0,0,0,0,0,127,208,0,0, + // 0x30a5 ゥ + 165,48,27,29,203,40,7,252,0,0,7,252,0,0,0,0,0,7,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,0,0,3,252,0,0,0,255,255,255,255,255,255,208,191,255,255,255,255,255,248,191,255,255,255,255,255,244,191,170,170,170,170,191,240,191,0,0,0,0,31,240,191,0,0,0,0,47,240,191,0,0,0,0,63,224,191,0,0,0,0,63,208,191,0,0,0,0,127,192,191,0,0,0,0,255,128,255,0,0,0,0,255,64,21,0,0,0,2,255,0,0,0,0,0,3,254,0,0,0,0,0,15,252,0,0,0,0,0,47,248,0,0,0,0,0,191,240,0,0,0,0,3,255,192,0,0,0,0,47,255,64,0,0,0,1,255,252,0,0,0,0,111,255,240,0,0,0,15,255,255,128,0,0,0,3,255,252,0,0,0,0,1,255,144,0,0,0,0,0,116,0,0,0,0, + // 0x30a6 ウ + 166,48,31,36,32,40,5,253,0,0,0,106,128,0,0,0,0,0,0,191,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,254,170,170,255,234,170,175,192,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,240,255,0,0,0,0,0,47,240,255,0,0,0,0,0,63,240,255,0,0,0,0,0,63,224,255,0,0,0,0,0,63,208,255,0,0,0,0,0,127,192,255,0,0,0,0,0,191,192,255,0,0,0,0,0,255,128,255,0,0,0,0,1,255,64,255,64,0,0,0,2,255,0,85,0,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,31,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,208,0,0,0,0,0,3,255,192,0,0,0,0,0,15,255,0,0,0,0,0,0,127,253,0,0,0,0,0,2,255,244,0,0,0,0,0,47,255,208,0,0,0,0,7,255,255,0,0,0,0,2,255,255,248,0,0,0,0,1,255,255,192,0,0,0,0,0,127,253,0,0,0,0,0,0,47,128,0,0,0,0,0,0,4,0,0,0,0,0, + // 0x30a7 ェ + 167,48,28,23,161,40,6,254,14,170,170,170,170,170,176,15,255,255,255,255,255,244,15,255,255,255,255,255,244,15,255,255,255,255,255,244,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0, + // 0x30a8 エ + 168,48,34,27,243,40,3,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,7,255,255,255,255,255,255,254,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,80,0,0,7,252,0,0,0,80,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0, + // 0x30a9 ォ + 169,48,28,29,203,40,7,252,0,0,0,1,169,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,0,0,0,1,253,0,0,58,170,170,170,254,170,169,63,255,255,255,255,255,254,63,255,255,255,255,255,254,63,255,255,255,255,255,254,0,0,0,31,253,0,0,0,0,0,63,253,0,0,0,0,0,255,253,0,0,0,0,3,255,253,0,0,0,0,15,253,253,0,0,0,0,63,240,253,0,0,0,1,255,208,254,0,0,0,7,255,64,254,0,0,0,47,253,0,254,0,0,1,255,244,0,254,0,0,11,255,192,0,254,0,0,191,254,0,0,254,0,0,255,248,0,0,254,0,0,63,192,0,0,254,0,0,29,0,4,1,254,0,0,0,0,15,255,254,0,0,0,0,15,255,253,0,0,0,0,11,255,248,0,0,0,0,1,85,80,0,0, + // 0x30aa オ + 170,48,33,34,50,40,3,254,0,0,0,0,2,254,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,0,0,0,0,31,254,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,254,0,0,0,0,0,0,2,255,255,0,0,0,0,0,0,11,254,255,0,0,0,0,0,0,31,248,255,0,0,0,0,0,0,127,240,255,0,0,0,0,0,2,255,192,255,0,0,0,0,0,11,255,0,255,0,0,0,0,0,63,252,0,255,0,0,0,0,1,255,240,0,255,0,0,0,0,11,255,192,0,255,0,0,0,0,63,254,0,0,255,0,0,0,2,255,248,0,0,255,0,0,0,31,255,208,0,0,255,0,0,0,191,255,0,0,0,255,0,0,0,63,248,0,0,0,255,0,0,0,31,192,0,0,0,255,0,0,0,6,0,0,16,1,255,0,0,0,0,0,0,63,255,255,0,0,0,0,0,0,63,255,255,0,0,0,0,0,0,63,255,253,0,0,0,0,0,0,47,255,244,0,0,0, + // 0x30ab カ + 171,48,31,34,16,40,4,254,0,0,0,255,128,0,0,0,0,0,0,255,128,0,0,0,0,0,0,191,128,0,0,0,0,0,0,191,128,0,0,0,0,0,0,191,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,63,250,170,255,234,170,255,128,63,255,255,255,255,255,255,244,63,255,255,255,255,255,255,244,63,255,255,255,255,255,255,240,0,0,1,255,0,0,15,240,0,0,1,254,0,0,15,240,0,0,2,253,0,0,15,240,0,0,3,253,0,0,15,240,0,0,3,252,0,0,15,240,0,0,7,252,0,0,15,240,0,0,11,248,0,0,15,240,0,0,15,244,0,0,15,240,0,0,31,240,0,0,31,224,0,0,63,224,0,0,31,224,0,0,127,208,0,0,31,224,0,0,255,192,0,0,47,208,0,1,255,64,0,0,63,208,0,3,255,0,0,0,63,192,0,15,253,0,0,0,63,192,0,63,248,0,0,0,127,192,0,255,240,0,0,0,191,128,3,255,192,0,80,2,255,64,31,255,64,0,191,255,255,0,191,253,0,0,191,255,254,0,63,244,0,0,127,255,252,0,11,192,0,0,127,255,224,0,1,0,0,0,0,0,0,0, + // 0x30ac ガ + 172,48,35,37,77,40,3,253,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,31,128,0,0,0,106,64,0,6,15,192,0,0,0,191,192,0,63,7,240,0,0,0,191,192,0,31,195,244,0,0,0,191,128,0,15,209,252,0,0,0,127,128,0,7,240,180,0,0,0,191,128,0,3,244,0,0,0,0,191,128,0,0,144,0,0,0,0,191,128,0,0,0,0,63,255,255,255,255,255,255,208,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,244,0,0,0,0,255,0,0,11,244,0,0,0,1,255,0,0,11,244,0,0,0,2,254,0,0,11,244,0,0,0,2,253,0,0,15,240,0,0,0,3,253,0,0,15,240,0,0,0,3,252,0,0,15,240,0,0,0,11,252,0,0,15,240,0,0,0,15,248,0,0,15,240,0,0,0,15,240,0,0,15,240,0,0,0,47,240,0,0,15,240,0,0,0,63,208,0,0,31,224,0,0,0,255,192,0,0,31,224,0,0,1,255,128,0,0,47,208,0,0,3,255,0,0,0,47,208,0,0,15,253,0,0,0,63,192,0,0,47,252,0,0,0,63,192,0,0,191,240,0,0,0,191,192,0,3,255,208,0,80,1,255,128,0,31,255,64,0,127,255,255,64,0,191,253,0,0,127,255,255,0,0,47,244,0,0,127,255,253,0,0,11,208,0,0,63,255,224,0,0,1,0,0,0,0,0,0,0,0, + // 0x30ad キ + 173,48,32,35,24,40,4,253,0,0,1,188,0,0,0,0,0,0,7,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,0,0,0,0,0,0,2,254,0,0,0,0,0,0,1,255,0,1,111,0,0,0,0,255,22,255,255,64,0,0,1,255,255,255,255,64,0,90,255,255,255,255,255,128,255,255,255,255,255,254,144,0,191,255,255,255,229,0,0,0,127,255,250,191,192,0,0,0,127,164,0,63,192,0,0,0,16,0,0,63,208,0,0,0,0,0,0,47,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,240,0,6,253,0,0,0,15,240,107,255,254,0,0,0,15,255,255,255,255,0,0,107,255,255,255,255,255,90,255,255,255,255,255,249,64,255,255,255,255,255,148,0,0,191,255,255,235,252,0,0,0,127,254,144,3,253,0,0,0,57,64,0,2,253,0,0,0,0,0,0,2,254,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,208,0,0,0,0,0,0,62,64,0,0,0,0,0,0,0,0,0,0, + // 0x30ae ギ + 174,48,35,37,77,40,3,253,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,47,15,208,0,0,1,189,0,0,63,67,240,0,0,3,253,0,0,15,194,248,0,0,3,254,0,0,11,224,244,0,0,1,254,0,0,3,240,0,0,0,1,255,0,0,2,208,0,0,0,0,255,0,1,175,64,0,0,0,0,255,86,255,255,128,0,0,0,1,255,255,255,255,192,0,1,107,255,255,255,255,255,192,0,191,255,255,255,255,254,80,0,0,127,255,255,255,229,0,0,0,0,63,255,250,127,208,0,0,0,0,63,164,0,47,208,0,0,0,0,16,0,0,47,224,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,15,240,0,0,1,0,0,0,0,15,240,0,6,255,0,0,0,0,11,244,107,255,255,0,0,0,0,11,255,255,255,255,0,0,1,107,255,255,255,255,255,64,90,255,255,255,255,255,233,64,0,127,255,255,255,255,144,0,0,0,127,255,255,235,253,0,0,0,0,63,254,144,2,254,0,0,0,0,41,64,0,1,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,62,64,0,0,0, + // 0x30af ク + 175,48,31,36,32,40,4,253,0,0,0,40,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,224,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,64,0,0,0,0,0,3,255,0,0,0,0,0,0,11,255,170,170,171,128,0,0,31,255,255,255,255,248,0,0,63,255,255,255,255,252,0,0,191,255,255,255,255,248,0,2,255,128,0,0,47,240,0,7,255,0,0,0,63,240,0,31,252,0,0,0,63,224,0,127,244,0,0,0,191,192,2,255,208,0,0,0,255,192,15,255,64,0,0,1,255,64,127,253,0,0,0,3,255,0,255,244,0,0,0,7,253,0,63,192,0,0,0,15,252,0,10,0,0,0,0,47,244,0,0,0,0,0,0,127,240,0,0,0,0,0,0,255,192,0,0,0,0,0,3,255,128,0,0,0,0,0,15,255,0,0,0,0,0,0,47,252,0,0,0,0,0,0,191,240,0,0,0,0,0,3,255,208,0,0,0,0,0,31,255,64,0,0,0,0,0,191,253,0,0,0,0,0,11,255,240,0,0,0,0,0,191,255,192,0,0,0,0,27,255,253,0,0,0,0,0,255,255,224,0,0,0,0,0,127,255,64,0,0,0,0,0,31,228,0,0,0,0,0,0,2,0,0,0,0,0,0, + // 0x30b0 グ + 176,48,37,38,124,40,2,252,0,0,0,0,0,0,0,1,240,0,0,0,0,0,0,0,0,67,248,0,0,0,0,9,0,0,7,208,252,0,0,0,0,31,224,0,3,240,190,0,0,0,0,63,240,0,2,248,63,0,0,0,0,127,224,0,0,252,31,64,0,0,0,255,192,0,0,126,4,0,0,0,1,255,64,0,0,61,0,0,0,0,3,255,170,170,171,224,0,0,0,0,11,255,255,255,255,252,0,0,0,0,31,255,255,255,255,254,0,0,0,0,63,255,255,255,255,252,0,0,0,0,255,208,0,0,15,252,0,0,0,3,255,64,0,0,31,244,0,0,0,15,254,0,0,0,47,240,0,0,0,63,252,0,0,0,63,240,0,0,0,255,240,0,0,0,127,208,0,0,7,255,192,0,0,0,255,192,0,0,47,255,0,0,0,1,255,128,0,0,191,248,0,0,0,3,255,0,0,0,47,224,0,0,0,7,254,0,0,0,7,64,0,0,0,15,252,0,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,0,127,248,0,0,0,0,0,0,0,2,255,240,0,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,7,255,248,0,0,0,0,0,0,0,127,255,208,0,0,0,0,0,0,7,255,255,0,0,0,0,0,0,0,191,255,244,0,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,0,2,64,0,0,0,0,0,0,0, + // 0x30b1 ケ + 177,48,35,35,59,40,2,253,0,0,15,232,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,3,255,255,255,255,255,255,248,0,15,255,255,255,255,255,255,248,0,47,244,0,0,255,64,0,0,0,127,240,0,0,255,64,0,0,0,255,208,0,0,255,64,0,0,3,255,128,0,0,255,0,0,0,11,255,0,0,1,255,0,0,0,47,252,0,0,2,255,0,0,0,127,244,0,0,3,254,0,0,0,15,224,0,0,3,253,0,0,0,1,128,0,0,7,252,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,2,255,240,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b2 ゲ + 178,48,36,38,86,40,2,252,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,3,240,0,0,4,0,0,0,6,194,248,0,0,31,228,0,0,11,224,253,0,0,47,240,0,0,3,244,127,0,0,63,240,0,0,1,252,63,0,0,63,208,0,0,0,253,4,0,0,127,192,0,0,0,125,0,0,0,255,128,0,0,0,16,0,0,0,255,64,0,0,0,0,0,0,2,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,240,0,31,255,255,255,255,255,255,240,0,63,240,0,1,255,0,0,0,0,255,208,0,1,255,0,0,0,2,255,192,0,2,255,0,0,0,7,255,0,0,2,254,0,0,0,31,253,0,0,3,254,0,0,0,127,248,0,0,3,253,0,0,0,255,240,0,0,7,252,0,0,0,31,192,0,0,11,252,0,0,0,2,0,0,0,15,248,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,7,255,208,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,7,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b3 コ + 179,48,29,30,240,40,6,254,127,255,255,255,255,255,255,64,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,80,0,0,0,0,0,255,0,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,0, + // 0x30b4 ゴ + 180,48,33,38,86,40,5,253,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,2,244,0,0,0,0,0,0,7,193,252,0,0,0,0,0,0,11,224,190,0,0,0,0,0,0,3,244,63,0,0,0,0,0,0,2,252,47,128,0,0,0,0,0,0,253,15,64,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,16,0,0,63,255,255,255,255,255,255,64,0,63,255,255,255,255,255,255,64,0,63,255,255,255,255,255,255,64,0,63,255,255,255,255,255,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,0,16,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,85,0,0, + // 0x30b5 サ + 181,48,35,35,59,40,2,253,0,0,0,0,0,2,169,0,0,0,0,191,192,0,3,253,0,0,0,0,191,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,253,0,0,0,0,127,128,0,3,252,0,0,0,0,127,128,0,3,252,0,0,0,0,127,128,0,3,252,0,0,0,0,127,128,0,3,252,0,0,0,0,127,128,0,3,252,0,0,0,0,127,128,0,7,252,0,0,0,0,191,128,0,11,248,0,0,0,0,191,128,0,15,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,2,64,0,0,0,0, + // 0x30b6 ザ + 182,48,37,36,104,40,2,252,0,0,0,0,0,0,0,0,184,0,0,0,170,0,0,11,248,116,188,0,0,1,255,0,0,11,248,188,62,0,0,0,255,0,0,11,248,125,47,0,0,0,255,0,0,11,248,62,31,64,0,0,255,0,0,11,248,31,14,0,0,0,255,0,0,11,248,15,0,0,0,0,255,0,0,11,248,0,0,0,0,0,255,0,0,11,248,0,0,0,255,255,255,255,255,255,255,255,244,0,255,255,255,255,255,255,255,255,244,0,255,255,255,255,255,255,255,255,244,0,255,255,255,255,255,255,255,255,244,0,0,0,255,0,0,11,248,0,0,0,0,0,255,0,0,11,248,0,0,0,0,0,255,0,0,11,248,0,0,0,0,0,255,0,0,11,248,0,0,0,0,0,255,0,0,11,244,0,0,0,0,0,255,0,0,11,244,0,0,0,0,0,255,0,0,15,244,0,0,0,0,0,255,0,0,15,240,0,0,0,0,0,255,0,0,15,240,0,0,0,0,1,255,0,0,31,240,0,0,0,0,0,85,0,0,63,224,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,0,3,255,240,0,0,0,0,0,0,0,111,255,192,0,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,0,15,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30b7 シ + 183,48,33,33,41,40,4,254,0,0,192,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,1,255,253,0,0,0,0,0,0,0,47,255,128,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,28,0,0,0,0,0,8,0,0,0,0,0,0,4,0,63,128,0,0,0,0,0,44,0,191,244,0,0,0,0,0,63,0,255,254,0,0,0,0,0,255,64,47,255,208,0,0,0,2,255,128,2,255,248,0,0,0,11,255,0,0,127,244,0,0,0,31,252,0,0,11,240,0,0,0,127,244,0,0,1,192,0,0,1,255,224,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,47,254,0,0,0,0,0,0,0,191,248,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,47,255,64,0,0,0,0,0,1,255,253,0,0,0,0,0,0,31,255,240,0,0,0,0,0,1,255,255,128,0,0,0,0,0,47,255,252,0,0,0,0,0,27,255,255,208,0,0,0,0,11,255,255,254,0,0,0,0,0,15,255,255,224,0,0,0,0,0,7,255,253,0,0,0,0,0,0,2,254,64,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0, + // 0x30b8 ジ + 184,48,35,34,50,40,3,254,0,0,0,0,0,0,0,26,0,0,0,80,0,0,0,0,127,64,0,0,248,0,0,0,116,47,192,0,3,255,64,0,2,252,15,224,0,7,255,240,0,0,254,7,240,0,1,255,253,0,0,127,3,248,0,0,47,255,128,0,47,128,244,0,0,7,255,192,0,15,192,0,0,0,0,191,64,0,11,128,0,0,0,0,31,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,128,0,0,0,0,0,14,0,63,244,0,0,0,0,0,47,0,127,255,0,0,0,0,0,63,128,31,255,224,0,0,0,0,255,192,2,255,252,0,0,0,3,255,128,0,127,252,0,0,0,11,255,0,0,11,244,0,0,0,47,252,0,0,0,224,0,0,0,191,244,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,63,253,0,0,0,0,0,0,1,255,244,0,0,0,0,0,0,11,255,208,0,0,0,0,0,0,127,255,0,0,0,0,0,0,7,255,248,0,0,0,0,0,0,127,255,208,0,0,0,0,0,11,255,255,0,0,0,0,0,2,255,255,244,0,0,0,0,6,191,255,255,128,0,0,0,0,11,255,255,248,0,0,0,0,0,3,255,255,64,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,164,0,0,0,0,0,0,0, + // 0x30b9 ス + 185,48,32,32,0,40,4,254,0,0,0,0,0,0,16,0,2,255,255,255,255,255,253,0,2,255,255,255,255,255,255,64,2,255,255,255,255,255,255,0,2,255,255,255,255,255,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,224,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,3,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,15,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,1,255,192,0,0,0,0,0,7,255,240,0,0,0,0,0,31,255,252,0,0,0,0,0,127,255,255,0,0,0,0,1,255,211,255,192,0,0,0,11,255,128,255,240,0,0,0,47,254,0,127,252,0,0,1,255,248,0,31,255,0,0,11,255,208,0,7,255,128,0,127,255,64,0,1,255,224,2,255,252,0,0,0,191,244,47,255,224,0,0,0,47,253,255,255,64,0,0,0,15,255,127,248,0,0,0,0,3,253,31,208,0,0,0,0,1,244,5,0,0,0,0,0,0,144, + // 0x30ba ズ + 186,48,36,38,86,40,3,253,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,31,11,224,0,0,0,0,0,0,47,131,240,0,0,0,0,0,0,15,193,252,0,0,0,0,0,0,11,224,253,0,0,0,0,0,0,19,244,100,1,255,255,255,255,255,255,244,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,0,0,1,255,255,255,255,255,254,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,15,255,253,0,0,0,0,0,0,127,255,255,64,0,0,0,0,1,255,227,255,208,0,0,0,0,11,255,128,255,244,0,0,0,0,47,254,0,63,252,0,0,0,0,255,248,0,15,255,0,0,0,11,255,208,0,3,255,192,0,0,63,255,64,0,0,255,240,0,2,255,252,0,0,0,127,248,0,47,255,224,0,0,0,31,254,0,255,255,64,0,0,0,11,255,64,63,248,0,0,0,0,3,254,0,15,192,0,0,0,0,0,244,0,1,0,0,0,0,0,0,80,0, + // 0x30bb セ + 187,48,34,34,50,40,2,254,0,0,5,80,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,110,0,0,0,15,240,0,1,191,255,192,0,0,15,240,6,191,255,255,224,0,0,15,246,255,255,255,255,192,0,0,111,255,255,255,255,255,128,5,191,255,255,255,254,82,255,0,191,255,255,255,250,64,3,253,0,191,255,255,249,0,0,15,252,0,127,255,239,240,0,0,31,240,0,63,144,15,240,0,0,63,224,0,16,0,15,240,0,0,255,192,0,0,0,15,240,0,2,255,0,0,0,0,15,240,0,11,253,0,0,0,0,15,240,0,47,248,0,0,0,0,15,240,0,31,240,0,0,0,0,15,240,0,2,192,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,254,0,0,86,191,0,0,0,15,255,255,255,255,255,0,0,0,7,255,255,255,255,255,0,0,0,1,255,255,255,255,255,0,0,0,0,26,255,255,170,84,0, + // 0x30bc ゼ + 188,48,36,36,68,40,2,254,0,0,0,0,0,0,0,1,224,0,0,0,0,0,0,0,67,244,0,0,0,0,0,0,7,209,252,0,0,42,144,0,0,7,240,190,0,0,63,224,0,0,3,244,63,0,0,63,224,0,0,0,252,47,0,0,63,208,0,0,0,190,0,0,0,47,208,0,0,0,57,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,24,0,0,0,47,208,0,0,27,255,0,0,0,47,208,0,107,255,255,192,0,0,47,209,175,255,255,255,192,0,0,63,255,255,255,255,255,0,0,27,255,255,255,255,231,254,0,175,255,255,255,255,144,7,252,0,255,255,255,254,64,0,15,244,0,255,255,255,208,0,0,47,240,0,255,229,47,208,0,0,127,192,0,100,0,47,208,0,0,255,128,0,0,0,47,208,0,3,255,0,0,0,0,47,208,0,15,252,0,0,0,0,47,208,0,63,244,0,0,0,0,47,208,0,63,224,0,0,0,0,47,208,0,7,128,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,47,248,0,0,22,189,0,0,0,31,255,255,255,255,253,0,0,0,15,255,255,255,255,253,0,0,0,3,255,255,255,255,253,0,0,0,0,43,255,255,250,84,0, + // 0x30bd ソ + 189,48,31,31,248,40,4,254,0,64,0,0,0,0,46,144,11,192,0,0,0,0,47,244,127,240,0,0,0,0,63,240,63,244,0,0,0,0,63,224,15,252,0,0,0,0,63,208,11,254,0,0,0,0,127,208,3,255,0,0,0,0,191,192,1,255,192,0,0,0,255,192,0,255,208,0,0,0,255,128,0,127,240,0,0,1,255,0,0,47,248,0,0,3,255,0,0,15,252,0,0,3,254,0,0,11,244,0,0,11,252,0,0,3,64,0,0,15,248,0,0,0,0,0,0,47,244,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,208,0,0,0,0,0,2,255,128,0,0,0,0,0,7,255,0,0,0,0,0,0,15,253,0,0,0,0,0,0,63,248,0,0,0,0,0,0,255,240,0,0,0,0,0,3,255,192,0,0,0,0,0,31,255,0,0,0,0,0,0,255,252,0,0,0,0,0,7,255,240,0,0,0,0,0,127,255,192,0,0,0,0,7,255,254,0,0,0,0,0,3,255,244,0,0,0,0,0,0,191,128,0,0,0,0,0,0,40,0,0,0,0,0, + // 0x30be ゾ + 190,48,34,37,77,40,4,253,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,32,127,0,0,0,0,0,0,2,248,63,128,0,0,0,0,0,0,253,15,192,0,0,0,0,0,0,127,11,240,0,0,0,0,0,0,63,67,224,2,0,0,0,0,0,31,128,0,47,128,0,0,0,0,8,0,0,255,208,0,0,0,0,191,128,0,127,240,0,0,0,0,191,192,0,47,248,0,0,0,0,255,192,0,15,252,0,0,0,0,255,128,0,7,254,0,0,0,1,255,64,0,3,255,64,0,0,2,255,0,0,1,255,192,0,0,3,255,0,0,0,255,208,0,0,3,253,0,0,0,63,240,0,0,11,252,0,0,0,47,244,0,0,15,252,0,0,0,15,192,0,0,31,244,0,0,0,9,0,0,0,63,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,127,253,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,31,255,208,0,0,0,0,0,1,255,255,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,7,255,208,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0, + // 0x30bf タ + 191,48,32,36,32,40,3,253,0,0,0,15,64,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,244,0,0,0,0,0,0,63,240,0,0,0,0,0,0,191,208,0,0,0,0,0,0,255,128,0,0,64,0,0,3,255,255,255,255,248,0,0,7,255,255,255,255,255,0,0,15,255,255,255,255,255,0,0,63,250,170,170,175,254,0,0,191,208,0,0,11,252,0,2,255,128,0,0,15,248,0,11,255,0,0,0,31,244,0,47,252,0,0,0,47,240,0,191,240,0,0,0,63,224,3,255,192,60,0,0,191,192,31,255,0,255,128,0,255,128,191,252,2,255,244,3,255,0,47,224,0,191,254,7,254,0,7,128,0,31,255,223,252,0,0,0,0,2,255,255,244,0,0,0,0,0,127,255,224,0,0,0,0,0,15,255,208,0,0,0,0,0,7,255,248,0,0,0,0,0,31,255,255,0,0,0,0,0,127,255,255,208,0,0,0,2,255,226,255,192,0,0,0,15,255,128,191,64,0,0,0,127,254,0,29,0,0,0,7,255,244,0,0,0,0,0,47,255,192,0,0,0,0,7,255,254,0,0,0,0,0,191,255,244,0,0,0,0,0,63,255,128,0,0,0,0,0,15,244,0,0,0,0,0,0,2,64,0,0,0,0,0, + // 0x30c0 ダ + 192,48,37,38,124,40,2,252,0,0,0,0,0,0,0,2,240,0,0,0,0,0,0,0,0,66,248,0,0,0,0,14,64,0,7,224,252,0,0,0,0,15,248,0,3,240,190,0,0,0,0,47,240,0,2,248,63,0,0,0,0,63,224,0,0,252,31,64,0,0,0,191,192,0,0,126,4,0,0,0,1,255,128,0,0,125,0,0,0,0,3,255,255,255,255,244,0,0,0,0,11,255,255,255,255,255,0,0,0,0,31,255,255,255,255,255,0,0,0,0,63,250,170,170,175,253,0,0,0,0,255,208,0,0,11,252,0,0,0,3,255,64,0,0,15,248,0,0,0,15,254,0,0,0,31,244,0,0,0,47,252,0,0,0,63,240,0,0,0,255,240,0,0,0,127,208,0,0,3,255,192,56,0,0,255,192,0,0,31,255,0,255,64,1,255,64,0,0,191,252,3,255,240,3,255,0,0,0,63,224,0,191,254,7,253,0,0,0,11,64,0,31,255,223,252,0,0,0,0,0,0,2,255,255,240,0,0,0,0,0,0,0,127,255,224,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,7,255,248,0,0,0,0,0,0,0,47,255,255,0,0,0,0,0,0,0,191,255,255,192,0,0,0,0,0,2,255,211,255,192,0,0,0,0,0,15,255,64,191,0,0,0,0,0,0,191,253,0,45,0,0,0,0,0,7,255,244,0,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,7,255,254,0,0,0,0,0,0,0,191,255,240,0,0,0,0,0,0,0,63,255,64,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,2,64,0,0,0,0,0,0,0, + // 0x30c1 チ + 193,48,34,34,50,40,3,253,0,0,0,0,0,1,191,0,0,0,0,0,0,5,191,255,128,0,0,85,85,171,255,255,255,208,0,1,255,255,255,255,255,254,64,0,0,255,255,255,255,254,64,0,0,0,255,255,255,255,0,0,0,0,0,21,64,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,2,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,191,208,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,47,253,0,0,0,0,0,0,1,255,248,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0, + // 0x30c2 ヂ + 194,48,36,35,59,40,2,252,0,0,0,0,0,0,46,0,0,0,0,0,0,0,111,255,64,0,0,0,1,86,191,255,255,192,0,1,255,255,255,255,255,255,144,0,0,255,255,255,255,255,144,2,224,0,255,255,255,255,64,0,130,244,0,106,85,1,254,0,7,224,252,0,0,0,1,254,0,3,240,190,0,0,0,1,254,0,1,248,63,0,0,0,1,254,0,0,252,24,0,0,0,1,254,0,0,126,0,0,0,0,1,254,0,0,32,0,0,0,0,1,254,0,0,0,0,191,170,170,171,255,170,170,175,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,0,0,0,2,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,15,255,192,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c3 ッ + 195,48,27,27,189,40,7,252,0,0,6,192,0,0,0,0,0,63,208,0,2,64,10,0,47,224,0,7,248,255,0,15,240,0,11,252,255,64,11,244,0,11,248,127,192,7,252,0,15,244,63,208,3,252,0,31,240,47,224,2,254,0,47,240,15,240,1,254,0,63,208,15,244,0,224,0,127,192,7,252,0,0,0,255,128,3,228,0,0,1,255,64,1,0,0,0,3,254,0,0,0,0,0,11,252,0,0,0,0,0,15,248,0,0,0,0,0,63,240,0,0,0,0,0,255,208,0,0,0,0,3,255,64,0,0,0,0,31,254,0,0,0,0,0,191,248,0,0,0,0,7,255,224,0,0,0,0,127,255,64,0,0,0,7,255,253,0,0,0,0,63,255,224,0,0,0,0,31,255,64,0,0,0,0,7,244,0,0,0,0,0,1,64,0,0,0,0, + // 0x30c4 ツ + 196,48,34,32,32,40,3,254,0,0,0,31,0,0,0,0,0,0,0,0,255,0,0,0,16,0,1,64,0,255,128,0,0,127,128,47,192,0,127,192,0,0,191,208,127,208,0,63,208,0,0,255,192,63,240,0,47,240,0,0,255,128,31,240,0,15,240,0,0,255,64,15,248,0,15,248,0,2,255,0,11,252,0,11,252,0,3,255,0,3,253,0,3,253,0,3,253,0,2,255,0,3,253,0,7,252,0,1,255,0,1,128,0,15,248,0,0,255,128,0,0,0,31,244,0,0,191,128,0,0,0,63,240,0,0,36,0,0,0,0,127,208,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,253,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,31,255,192,0,0,0,0,0,1,255,255,0,0,0,0,0,0,47,255,248,0,0,0,0,0,2,255,255,208,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,29,0,0,0,0,0,0, + // 0x30c5 ヅ + 197,48,35,37,77,40,3,253,0,0,0,0,0,0,0,6,128,0,0,0,0,0,0,9,15,208,0,0,0,0,0,0,127,7,240,0,0,0,0,0,0,47,131,248,0,0,0,0,0,0,15,192,252,0,0,0,108,0,0,11,224,184,0,0,3,254,0,0,3,240,0,1,0,1,255,0,0,1,64,0,191,0,0,255,64,0,0,0,0,255,128,0,191,128,0,1,249,0,127,192,0,127,192,0,2,255,0,63,224,0,63,208,0,3,255,0,47,240,0,47,240,0,3,253,0,15,244,0,15,240,0,7,252,0,15,252,0,15,248,0,15,252,0,7,252,0,7,248,0,15,244,0,3,254,0,2,64,0,47,240,0,2,255,0,0,0,0,63,224,0,0,254,0,0,0,0,127,208,0,0,144,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,248,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,11,255,64,0,0,0,0,0,0,47,253,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,127,255,64,0,0,0,0,0,3,255,252,0,0,0,0,0,0,127,255,240,0,0,0,0,0,7,255,255,64,0,0,0,0,0,3,255,248,0,0,0,0,0,0,0,255,144,0,0,0,0,0,0,0,56,0,0,0,0,0,0, + // 0x30c6 テ + 198,48,34,33,41,40,3,253,0,47,255,255,255,255,255,208,0,0,47,255,255,255,255,255,208,0,0,47,255,255,255,255,255,208,0,0,47,170,170,170,170,175,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,7,255,192,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0, + // 0x30c7 デ + 199,48,36,39,95,40,3,252,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,2,131,244,0,0,0,0,0,0,15,208,252,0,0,0,0,0,0,3,240,190,0,63,170,170,170,171,246,248,63,0,63,255,255,255,255,244,252,24,0,63,255,255,255,255,244,189,0,0,63,255,255,255,255,244,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,0,0,0,2,254,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,2,255,128,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,1,255,244,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30c8 ト + 200,48,21,33,198,40,13,254,255,128,0,0,0,0,255,128,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,249,0,0,0,0,255,255,224,0,0,0,255,255,255,64,0,0,255,255,255,249,0,0,255,175,255,255,224,0,255,65,191,255,254,0,255,64,7,255,255,192,255,64,0,111,255,128,255,64,0,2,255,64,255,64,0,0,47,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,64,0,0,0,0,255,128,0,0,0,0,170,64,0,0,0,0, + // 0x30c9 ド + 201,48,24,34,204,40,11,253,21,64,0,0,1,192,127,208,0,0,11,224,127,192,0,6,3,244,63,192,0,63,129,252,63,192,0,15,208,254,63,192,0,11,240,127,63,192,0,3,244,45,63,192,0,1,252,0,63,192,0,0,244,0,63,192,0,0,0,0,63,192,0,0,0,0,63,228,0,0,0,0,63,255,144,0,0,0,63,255,254,0,0,0,63,255,255,244,0,0,63,255,255,255,144,0,63,198,255,255,253,0,63,192,31,255,255,224,63,192,0,191,255,224,63,192,0,7,255,192,63,192,0,0,47,192,63,192,0,0,2,64,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,63,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,127,208,0,0,0,0,21,64,0,0,0,0, + // 0x30ca ナ + 202,48,34,35,59,40,3,253,0,0,0,0,85,0,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,127,255,255,255,255,255,255,255,240,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,1,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30cb ニ + 203,48,33,26,234,40,3,1,0,85,0,0,0,0,5,64,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,255,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,127,255,255,255,255,255,255,255,128,105,85,85,85,85,85,85,86,64, + // 0x30cc ヌ + 204,48,28,32,224,40,5,253,0,0,0,0,0,0,80,15,255,255,255,255,255,248,15,255,255,255,255,255,255,15,255,255,255,255,255,255,15,255,255,255,255,255,253,0,0,0,0,0,11,252,0,0,0,0,0,15,248,0,0,0,0,0,31,244,0,0,0,0,0,47,240,0,0,0,0,0,63,224,0,15,64,0,0,191,192,0,63,224,0,0,255,128,0,191,254,0,2,255,64,0,47,255,208,3,254,0,0,3,255,248,11,252,0,0,0,127,255,95,248,0,0,0,11,255,255,240,0,0,0,1,255,255,208,0,0,0,0,63,255,192,0,0,0,0,15,255,224,0,0,0,0,47,255,252,0,0,0,0,255,255,255,64,0,0,3,255,215,255,224,0,0,47,255,65,255,248,0,0,255,253,0,63,255,0,11,255,244,0,11,255,0,191,255,192,0,2,252,27,255,254,0,0,0,180,255,255,240,0,0,0,0,63,255,64,0,0,0,0,15,244,0,0,0,0,0,2,64,0,0,0,0,0, + // 0x30cd ネ + 205,48,34,36,68,40,3,253,0,0,0,2,169,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,3,255,170,171,255,170,191,128,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,244,0,3,255,255,255,255,255,255,224,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,127,252,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,31,255,128,0,0,0,0,0,1,255,254,0,180,0,0,0,0,31,255,252,2,254,0,0,0,2,255,255,252,7,255,224,0,0,111,255,255,252,2,255,253,0,31,255,255,131,252,0,63,255,128,255,255,248,3,252,0,7,255,240,127,255,128,3,252,0,0,255,240,47,228,0,3,252,0,0,47,208,9,0,0,3,252,0,0,7,128,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,2,168,0,0,0,0, + // 0x30ce ノ + 206,48,28,32,224,40,5,254,0,0,0,0,0,7,144,0,0,0,0,0,11,253,0,0,0,0,0,15,252,0,0,0,0,0,15,252,0,0,0,0,0,31,244,0,0,0,0,0,63,240,0,0,0,0,0,63,224,0,0,0,0,0,127,208,0,0,0,0,0,255,192,0,0,0,0,1,255,64,0,0,0,0,3,255,0,0,0,0,0,7,254,0,0,0,0,0,15,252,0,0,0,0,0,31,248,0,0,0,0,0,63,240,0,0,0,0,0,191,224,0,0,0,0,1,255,192,0,0,0,0,3,255,64,0,0,0,0,15,254,0,0,0,0,0,63,252,0,0,0,0,0,255,240,0,0,0,0,7,255,192,0,0,0,0,47,255,64,0,0,0,0,191,253,0,0,0,0,7,255,240,0,0,0,0,127,255,192,0,0,0,7,255,254,0,0,0,0,127,255,244,0,0,0,0,63,255,192,0,0,0,0,15,253,0,0,0,0,0,3,208,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30cf ハ + 207,48,34,29,5,40,3,255,0,0,4,0,0,11,0,0,0,0,0,47,224,0,255,128,0,0,0,0,47,240,0,191,192,0,0,0,0,63,224,0,63,224,0,0,0,0,63,208,0,47,240,0,0,0,0,63,192,0,15,244,0,0,0,0,127,192,0,15,252,0,0,0,0,191,128,0,7,253,0,0,0,0,255,64,0,3,255,0,0,0,0,255,0,0,1,255,64,0,0,2,255,0,0,0,255,128,0,0,3,254,0,0,0,191,192,0,0,3,253,0,0,0,63,224,0,0,11,252,0,0,0,63,240,0,0,15,248,0,0,0,31,244,0,0,31,244,0,0,0,15,248,0,0,47,240,0,0,0,11,252,0,0,63,224,0,0,0,7,253,0,0,191,192,0,0,0,3,255,0,0,255,128,0,0,0,2,255,0,2,255,0,0,0,0,1,255,64,7,255,0,0,0,0,0,255,192,15,253,0,0,0,0,0,255,192,47,252,0,0,0,0,0,127,208,63,240,0,0,0,0,0,63,240,255,224,0,0,0,0,0,63,240,255,192,0,0,0,0,0,47,240,27,64,0,0,0,0,0,30,64,0,0,0,0,0,0,0,0,0, + // 0x30d0 バ + 208,48,37,34,84,40,2,255,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,2,209,252,0,0,0,0,0,0,0,7,240,190,0,0,0,0,0,0,0,2,248,63,0,0,0,0,0,0,0,0,252,47,64,0,0,14,144,0,47,192,190,4,0,0,0,15,248,0,127,208,61,0,0,0,0,15,244,0,63,240,0,0,0,0,0,31,240,0,31,244,0,0,0,0,0,47,240,0,15,252,0,0,0,0,0,63,224,0,11,252,0,0,0,0,0,63,208,0,3,254,0,0,0,0,0,127,192,0,2,255,0,0,0,0,0,191,192,0,0,255,128,0,0,0,0,255,128,0,0,191,192,0,0,0,0,255,64,0,0,127,208,0,0,0,1,255,0,0,0,63,240,0,0,0,3,254,0,0,0,47,240,0,0,0,3,253,0,0,0,15,248,0,0,0,11,252,0,0,0,15,252,0,0,0,15,248,0,0,0,7,253,0,0,0,31,244,0,0,0,3,254,0,0,0,63,240,0,0,0,2,255,0,0,0,127,224,0,0,0,1,255,64,0,0,255,192,0,0,0,0,255,192,0,1,255,128,0,0,0,0,191,192,0,3,255,0,0,0,0,0,127,208,0,11,254,0,0,0,0,0,63,240,0,15,252,0,0,0,0,0,63,240,0,63,244,0,0,0,0,0,47,244,0,191,240,0,0,0,0,0,31,248,0,47,208,0,0,0,0,0,15,228,0,1,128,0,0,0,0,0,5,0,0, + // 0x30d1 パ + 209,48,37,35,94,40,2,254,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,127,254,0,0,0,0,0,0,0,0,248,47,0,0,0,0,0,0,0,1,240,11,128,0,0,0,0,0,0,1,224,7,128,0,0,4,0,0,6,65,240,11,128,0,0,15,228,0,127,192,248,31,0,0,0,15,244,0,127,224,127,254,0,0,0,31,240,0,63,240,15,244,0,0,0,31,240,0,31,244,0,0,0,0,0,47,224,0,15,252,0,0,0,0,0,63,224,0,7,253,0,0,0,0,0,63,208,0,3,255,0,0,0,0,0,127,192,0,1,255,0,0,0,0,0,191,192,0,0,255,128,0,0,0,0,255,128,0,0,191,192,0,0,0,0,255,64,0,0,63,208,0,0,0,2,255,0,0,0,63,240,0,0,0,3,254,0,0,0,31,244,0,0,0,3,253,0,0,0,15,248,0,0,0,11,252,0,0,0,11,252,0,0,0,15,248,0,0,0,7,253,0,0,0,31,244,0,0,0,3,254,0,0,0,63,240,0,0,0,2,255,0,0,0,127,224,0,0,0,1,255,64,0,0,255,192,0,0,0,0,255,128,0,1,255,128,0,0,0,0,191,192,0,3,255,0,0,0,0,0,127,208,0,7,254,0,0,0,0,0,63,224,0,15,252,0,0,0,0,0,63,240,0,47,248,0,0,0,0,0,47,244,0,127,240,0,0,0,0,0,31,248,0,127,208,0,0,0,0,0,15,248,0,7,192,0,0,0,0,0,14,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d2 ヒ + 210,48,27,33,231,40,8,255,21,64,0,0,0,0,0,127,192,0,0,0,0,0,127,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,2,0,63,192,0,0,0,47,64,63,192,0,0,6,255,192,63,192,0,0,127,255,192,63,192,0,31,255,255,128,63,192,7,255,255,248,0,63,198,255,255,254,64,0,63,255,255,255,208,0,0,63,255,255,248,0,0,0,63,255,253,0,0,0,0,63,254,64,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,192,0,0,0,0,0,63,208,0,0,0,0,16,63,249,64,0,21,175,244,47,255,255,255,255,255,244,15,255,255,255,255,255,244,3,255,255,255,255,255,244,0,26,255,255,255,170,80, + // 0x30d3 ビ + 211,48,30,36,32,40,7,254,0,0,0,0,0,0,8,0,0,0,0,0,0,0,126,0,0,0,0,0,0,40,63,0,85,64,0,0,0,252,31,192,255,128,0,0,0,127,15,208,255,128,0,0,0,63,71,240,255,64,0,0,0,31,195,128,255,64,0,0,0,15,208,0,255,64,0,0,0,6,0,0,255,64,0,0,0,8,0,0,255,64,0,0,0,189,0,0,255,64,0,0,11,255,0,0,255,64,0,1,255,255,64,0,255,64,0,127,255,255,64,0,255,64,31,255,255,224,0,0,255,91,255,255,253,0,0,0,255,255,255,255,128,0,0,0,255,255,255,224,0,0,0,0,255,255,248,0,0,0,0,0,255,249,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,192,0,0,0,0,16,0,191,249,0,0,21,175,240,0,127,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,107,255,255,255,169,64,0, + // 0x30d4 ピ + 212,48,31,35,24,40,7,254,0,0,0,0,0,0,190,0,0,0,0,0,0,7,255,208,170,64,0,0,0,15,146,240,255,128,0,0,0,31,0,180,255,64,0,0,0,30,0,120,255,64,0,0,0,31,0,184,255,64,0,0,0,15,129,240,255,64,0,0,0,7,255,224,255,64,0,0,0,45,255,64,255,64,0,0,2,254,0,0,255,64,0,0,111,255,0,0,255,64,0,11,255,255,64,0,255,64,1,255,255,253,0,0,255,64,191,255,255,144,0,0,255,175,255,255,244,0,0,0,255,255,255,254,0,0,0,0,255,255,255,144,0,0,0,0,255,255,224,0,0,0,0,0,255,228,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,64,0,0,0,0,0,0,191,192,0,0,0,0,16,0,191,249,0,0,21,175,240,0,63,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,107,255,255,255,169,64,0, + // 0x30d5 フ + 213,48,30,30,240,40,5,254,127,255,255,255,255,255,255,0,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,208,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,192,0,0,0,0,0,0,255,128,0,0,0,0,0,1,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,253,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,240,0,0,0,0,0,0,255,208,0,0,0,0,0,2,255,128,0,0,0,0,0,7,255,0,0,0,0,0,0,31,253,0,0,0,0,0,0,127,248,0,0,0,0,0,2,255,240,0,0,0,0,0,11,255,192,0,0,0,0,0,127,255,0,0,0,0,0,7,255,252,0,0,0,0,0,127,255,224,0,0,0,0,27,255,255,64,0,0,0,0,191,255,248,0,0,0,0,0,63,255,192,0,0,0,0,0,15,248,0,0,0,0,0,0,3,64,0,0,0,0,0, + // 0x30d6 ブ + 214,48,35,38,86,40,4,253,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,20,63,64,0,0,0,0,0,0,252,31,192,0,0,0,0,0,0,190,11,224,0,0,0,0,0,0,63,3,240,0,0,0,0,0,0,47,194,248,0,0,0,0,0,0,15,192,128,127,255,255,255,255,255,255,64,0,127,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,224,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,7,255,208,0,0,0,0,0,0,47,255,128,0,0,0,0,0,1,255,253,0,0,0,0,0,0,31,255,244,0,0,0,0,0,2,255,255,192,0,0,0,0,0,127,255,254,0,0,0,0,0,0,63,255,224,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d7 プ + 215,48,35,37,77,40,5,253,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,31,71,224,0,0,0,0,0,0,45,0,240,0,0,0,0,0,0,60,0,244,0,0,0,0,0,0,61,0,240,255,255,255,255,255,255,255,67,240,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,128,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,15,253,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,31,255,64,0,0,0,0,0,0,127,254,0,0,0,0,0,0,7,255,244,0,0,0,0,0,0,127,255,208,0,0,0,0,0,11,255,255,0,0,0,0,0,1,255,255,248,0,0,0,0,0,0,255,255,192,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30d8 ヘ + 216,48,36,26,234,40,2,0,0,0,0,47,64,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,3,255,248,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,63,255,255,192,0,0,0,0,0,191,225,255,224,0,0,0,0,1,255,192,63,248,0,0,0,0,7,255,0,15,254,0,0,0,0,15,253,0,7,255,128,0,0,0,63,248,0,1,255,224,0,0,0,255,240,0,0,127,244,0,0,2,255,192,0,0,47,253,0,0,11,255,64,0,0,11,255,64,0,47,254,0,0,0,3,255,192,0,191,252,0,0,0,0,255,240,0,63,240,0,0,0,0,63,252,0,15,208,0,0,0,0,31,255,0,3,128,0,0,0,0,7,255,128,0,0,0,0,0,0,2,255,224,0,0,0,0,0,0,0,255,248,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,15,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,2,240,0,0,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0, + // 0x30d9 ベ + 217,48,36,29,5,40,2,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,180,47,192,0,0,0,0,0,2,252,15,224,0,0,0,126,0,0,254,7,244,0,0,2,255,208,0,127,66,252,0,0,11,255,244,0,47,192,224,0,0,31,255,254,0,15,208,0,0,0,63,255,255,128,11,128,0,0,0,255,209,255,208,0,0,0,0,3,255,64,127,244,0,0,0,0,11,254,0,31,253,0,0,0,0,31,252,0,7,255,64,0,0,0,127,240,0,2,255,208,0,0,0,255,208,0,0,191,240,0,0,3,255,128,0,0,47,252,0,0,15,255,0,0,0,15,255,0,0,63,252,0,0,0,3,255,192,0,255,244,0,0,0,0,255,240,0,63,224,0,0,0,0,127,248,0,31,192,0,0,0,0,31,254,0,7,0,0,0,0,0,11,255,128,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,31,253,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,128, + // 0x30da ペ + 218,48,36,29,5,40,2,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,31,255,192,0,0,0,0,0,0,62,7,224,0,0,0,0,0,0,124,1,240,0,0,0,127,0,0,184,0,240,0,0,2,255,208,0,184,0,240,0,0,11,255,244,0,124,2,240,0,0,31,255,254,0,63,91,208,0,0,63,255,255,128,31,255,128,0,0,255,209,255,208,2,253,0,0,3,255,64,127,244,0,0,0,0,11,254,0,31,253,0,0,0,0,31,252,0,7,255,64,0,0,0,127,240,0,2,255,208,0,0,0,255,208,0,0,191,240,0,0,3,255,128,0,0,47,252,0,0,15,255,0,0,0,15,255,0,0,63,252,0,0,0,3,255,192,0,255,244,0,0,0,0,255,240,0,127,224,0,0,0,0,127,248,0,31,192,0,0,0,0,31,254,0,7,64,0,0,0,0,11,255,128,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,31,253,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,128, + // 0x30db ホ + 219,48,35,34,50,40,3,254,0,0,0,2,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,192,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,1,0,1,254,0,1,0,0,0,7,224,1,254,0,31,128,0,0,15,248,1,254,0,127,208,0,0,31,240,1,254,0,63,240,0,0,63,224,1,254,0,15,248,0,0,191,192,1,254,0,7,253,0,1,255,64,1,254,0,3,255,0,3,254,0,1,254,0,0,255,128,15,252,0,1,254,0,0,191,192,63,244,0,1,254,0,0,63,224,191,224,0,1,254,0,0,31,244,191,192,0,1,254,0,0,15,240,31,0,0,1,254,0,0,7,64,0,0,0,2,254,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,31,255,254,0,0,0,0,0,0,31,255,253,0,0,0,0,0,0,31,255,252,0,0,0,0,0,0,11,255,224,0,0,0,0, + // 0x30dc ボ + 220,48,36,36,68,40,2,253,0,0,0,0,0,0,0,1,224,0,0,0,0,0,0,2,131,244,0,0,0,1,255,0,15,193,252,0,0,0,0,255,0,7,240,189,0,0,0,0,255,0,3,244,63,0,0,0,0,255,0,1,252,47,0,0,0,0,255,0,0,252,0,0,0,0,0,255,0,0,80,0,0,0,0,0,255,0,0,0,0,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,208,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1,64,0,255,0,1,64,0,0,3,244,0,255,0,31,192,0,0,11,252,0,255,0,63,240,0,0,15,244,0,255,0,31,244,0,0,63,240,0,255,0,11,252,0,0,191,192,0,255,0,3,255,0,0,255,128,0,255,0,1,255,64,3,255,0,0,255,0,0,191,192,11,252,0,0,255,0,0,63,224,47,244,0,0,255,0,0,47,240,191,240,0,0,255,0,0,15,248,63,192,0,0,255,0,0,11,240,11,0,0,0,255,0,0,3,64,0,0,0,0,255,0,0,0,0,0,0,4,2,255,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,15,255,253,0,0,0,0,0,0,6,191,224,0,0,0,0, + // 0x30dd ポ + 221,48,36,37,77,40,2,253,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,1,255,244,0,0,0,0,0,0,3,224,188,0,0,0,1,255,0,7,192,60,0,0,0,0,255,0,11,128,45,0,0,0,0,255,0,7,192,60,0,0,0,0,255,0,3,224,188,0,0,0,0,255,0,1,255,240,0,0,0,0,255,0,0,47,128,0,0,0,0,255,0,0,0,0,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,224,31,255,255,255,255,255,255,255,208,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1,64,0,255,0,1,64,0,0,3,244,0,255,0,31,192,0,0,11,252,0,255,0,63,240,0,0,15,244,0,255,0,31,244,0,0,63,240,0,255,0,11,252,0,0,191,192,0,255,0,3,255,0,0,255,128,0,255,0,1,255,64,3,255,0,0,255,0,0,191,192,11,252,0,0,255,0,0,63,224,47,244,0,0,255,0,0,47,240,191,240,0,0,255,0,0,15,248,63,192,0,0,255,0,0,11,240,11,0,0,0,255,0,0,3,64,0,0,0,0,255,0,0,0,0,0,0,4,2,255,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,15,255,253,0,0,0,0,0,0,6,191,224,0,0,0,0, + // 0x30de マ + 222,48,34,31,23,40,4,253,255,255,255,255,255,255,255,253,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,15,254,0,0,0,1,64,0,0,47,252,0,0,0,7,224,0,0,191,240,0,0,0,47,252,0,2,255,192,0,0,0,47,255,0,11,255,64,0,0,0,7,255,192,47,253,0,0,0,0,1,255,244,255,244,0,0,0,0,0,63,255,255,208,0,0,0,0,0,15,255,255,64,0,0,0,0,0,3,255,252,0,0,0,0,0,0,0,255,248,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,15,255,64,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,16,0,0,0, + // 0x30df ミ + 223,48,27,32,224,40,6,254,0,63,148,0,0,0,0,0,63,255,229,0,0,0,0,191,255,255,249,0,0,0,191,255,255,255,249,0,0,0,111,255,255,255,244,0,0,0,27,255,255,244,0,0,0,0,27,255,240,0,0,0,0,0,27,224,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,64,0,0,0,0,0,2,254,144,0,0,0,0,3,255,255,144,0,0,0,11,255,255,255,144,0,0,6,255,255,255,255,144,0,0,1,191,255,255,255,0,0,0,0,111,255,254,0,0,0,0,0,111,253,0,0,0,0,0,1,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,0,0,0,63,255,144,0,0,0,0,127,255,255,144,0,0,0,255,255,255,255,144,0,0,22,255,255,255,255,144,0,0,5,191,255,255,254,64,0,0,1,191,255,255,208,0,0,0,1,191,255,192,0,0,0,0,1,255,128,0,0,0,0,0,7,0, + // 0x30e0 ム + 224,48,35,34,50,40,3,253,0,0,0,47,144,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,47,240,0,0,32,0,0,0,0,63,224,0,2,248,0,0,0,0,127,192,0,11,252,0,0,0,0,191,192,0,3,255,0,0,0,0,255,128,0,1,255,64,0,0,1,255,0,0,0,255,192,0,0,2,255,0,0,0,127,224,0,0,3,254,0,0,0,47,240,0,0,7,252,0,0,0,15,248,0,0,11,252,0,0,0,11,252,0,0,15,248,0,0,90,255,254,0,0,31,245,107,255,255,255,255,0,170,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,192,255,255,255,255,255,233,64,127,224,255,255,255,165,0,0,0,63,240,186,84,0,0,0,0,0,47,244,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0, + // 0x30e1 メ + 225,48,30,32,0,40,5,254,0,0,0,0,0,3,228,0,0,0,0,0,0,3,254,0,0,0,0,0,0,7,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,15,244,0,0,4,0,0,0,47,240,0,0,31,0,0,0,63,224,0,0,63,208,0,0,127,192,0,0,255,252,0,0,255,192,0,0,63,255,64,1,255,64,0,0,11,255,224,3,255,0,0,0,0,255,253,11,252,0,0,0,0,47,255,143,248,0,0,0,0,7,255,255,240,0,0,0,0,0,255,255,224,0,0,0,0,0,47,255,192,0,0,0,0,0,7,255,224,0,0,0,0,0,15,255,248,0,0,0,0,0,63,255,255,0,0,0,0,0,191,251,255,192,0,0,0,2,255,194,255,240,0,0,0,15,255,0,191,252,0,0,0,63,253,0,31,255,0,0,0,255,244,0,7,255,192,0,11,255,208,0,1,255,240,0,63,255,0,0,0,127,240,1,255,252,0,0,0,31,192,31,255,224,0,0,0,11,0,255,255,64,0,0,0,0,0,255,248,0,0,0,0,0,0,63,208,0,0,0,0,0,0,10,0,0,0,0,0,0,0, + // 0x30e2 モ + 226,48,33,31,23,40,4,254,3,250,170,170,170,170,170,208,0,3,255,255,255,255,255,255,208,0,3,255,255,255,255,255,255,208,0,3,255,255,255,255,255,255,208,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,191,255,255,255,255,255,255,255,64,191,255,255,255,255,255,255,255,64,191,255,255,255,255,255,255,255,64,191,255,255,255,255,255,255,255,64,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,224,0,0,84,0,0,0,0,255,255,255,255,252,0,0,0,0,127,255,255,255,252,0,0,0,0,31,255,255,255,252,0,0,0,0,1,255,255,255,252,0,0,0,0,0,0,0,0,0,0, + // 0x30e3 ャ + 227,48,29,29,232,40,6,252,0,0,80,0,0,0,0,0,0,31,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,11,244,0,0,0,0,0,0,7,248,0,0,0,24,0,0,3,252,0,0,107,255,0,0,3,252,1,175,255,255,128,0,2,255,255,255,255,255,0,0,91,255,255,255,251,254,0,191,255,255,255,233,7,252,0,255,255,255,228,0,15,240,0,255,255,255,128,0,63,224,0,190,64,63,192,0,191,192,0,0,0,63,192,1,255,0,0,0,0,47,208,7,253,0,0,0,0,31,224,31,248,0,0,0,0,15,240,47,224,0,0,0,0,15,240,2,192,0,0,0,0,11,248,0,0,0,0,0,0,7,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,0,0,0,0,0,0,2,254,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,57,0,0,0,0, + // 0x30e4 ヤ + 228,48,35,35,59,40,2,253,0,0,27,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,63,192,0,0,0,27,208,0,0,63,208,0,1,111,255,248,0,0,47,224,6,191,255,255,248,0,0,31,250,255,255,255,255,240,0,0,111,255,255,255,255,191,224,22,191,255,255,255,254,64,191,192,191,255,255,255,249,0,1,255,64,127,255,255,253,0,0,3,254,0,63,255,147,253,0,0,15,252,0,62,64,3,254,0,0,47,244,0,0,0,1,255,0,0,191,208,0,0,0,0,255,0,1,255,128,0,0,0,0,255,128,7,255,0,0,0,0,0,191,192,31,252,0,0,0,0,0,127,192,31,244,0,0,0,0,0,63,208,1,208,0,0,0,0,0,63,224,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,0,185,64,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30e5 ュ + 229,48,29,21,168,40,6,255,1,255,255,255,255,244,0,0,1,255,255,255,255,254,0,0,1,255,255,255,255,254,0,0,1,255,255,255,255,253,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,244,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,64, + // 0x30e6 ユ + 230,48,34,27,243,40,3,1,0,0,0,0,0,0,16,0,0,0,191,255,255,255,255,253,0,0,0,191,255,255,255,255,255,128,0,0,191,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,224,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,80,0,0,0,0,0,0,0,16, + // 0x30e7 ョ + 231,48,23,26,156,40,8,252,127,255,255,255,255,252,127,255,255,255,255,252,127,255,255,255,255,252,42,170,170,170,171,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,10,170,170,170,171,252,31,255,255,255,255,252,31,255,255,255,255,252,31,255,255,255,255,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,0,0,0,0,2,252,191,255,255,255,255,252,191,255,255,255,255,252,191,255,255,255,255,252,186,170,170,170,171,252,0,0,0,0,2,252,0,0,0,0,0,84, + // 0x30e8 ヨ + 232,48,28,30,210,40,6,254,127,255,255,255,255,255,254,127,255,255,255,255,255,254,127,255,255,255,255,255,253,127,255,255,255,255,255,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,31,255,255,255,255,255,253,31,255,255,255,255,255,253,31,255,255,255,255,255,253,31,255,255,255,255,255,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,0,0,0,0,0,2,253,255,255,255,255,255,255,253,255,255,255,255,255,255,253,255,255,255,255,255,255,253,255,255,255,255,255,255,254,0,0,0,0,0,2,254,0,0,0,0,0,2,253, + // 0x30e9 ラ + 233,48,31,33,8,40,5,253,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,170,170,170,170,170,175,128,191,255,255,255,255,255,255,244,191,255,255,255,255,255,255,240,191,255,255,255,255,255,255,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,127,192,0,0,0,0,0,0,255,192,0,0,0,0,0,0,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,7,253,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,191,224,0,0,0,0,0,2,255,192,0,0,0,0,0,11,255,0,0,0,0,0,0,127,253,0,0,0,0,0,2,255,244,0,0,0,0,0,47,255,192,0,0,0,0,6,255,255,0,0,0,0,1,191,255,244,0,0,0,0,3,255,255,128,0,0,0,0,0,255,248,0,0,0,0,0,0,63,128,0,0,0,0,0,0,20,0,0,0,0,0, + // 0x30ea リ + 234,48,24,33,198,40,8,254,0,0,0,0,2,169,191,192,0,0,3,253,191,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,253,127,192,0,0,3,252,127,192,0,0,7,252,127,192,0,0,7,252,191,192,0,0,11,252,191,192,0,0,15,248,21,64,0,0,15,244,0,0,0,0,31,240,0,0,0,0,63,240,0,0,0,0,191,208,0,0,0,2,255,192,0,0,0,11,255,0,0,0,0,63,253,0,0,0,2,255,248,0,0,0,47,255,224,0,0,7,255,255,64,0,0,3,255,248,0,0,0,0,255,144,0,0,0,0,56,0,0,0, + // 0x30eb ル + 235,48,36,32,32,40,2,254,0,0,255,64,7,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,64,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,0,255,0,3,252,0,0,0,0,1,255,0,3,252,0,0,16,0,1,254,0,3,252,0,0,60,0,2,253,0,3,252,0,0,254,0,3,253,0,3,252,0,3,255,0,7,252,0,3,252,0,15,254,0,15,248,0,3,252,0,63,248,0,31,244,0,3,252,1,255,240,0,63,240,0,3,252,11,255,128,0,127,208,0,3,252,127,254,0,0,255,192,0,3,255,255,244,0,3,255,64,0,3,255,255,208,0,15,254,0,0,3,255,254,0,0,127,252,0,0,7,255,244,0,0,127,240,0,0,3,255,128,0,0,11,192,0,0,0,252,0,0,0,1,0,0,0,0,16,0,0,0, + // 0x30ec レ + 236,48,29,32,0,40,8,254,127,208,0,0,0,0,0,0,127,208,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,44,0,63,192,0,0,0,0,126,0,63,192,0,0,0,1,255,64,63,192,0,0,0,11,255,0,63,192,0,0,0,47,253,0,63,192,0,0,1,255,244,0,63,192,0,0,11,255,208,0,63,192,0,0,63,255,0,0,63,192,0,2,255,248,0,0,63,192,0,47,255,208,0,0,63,192,2,255,255,0,0,0,63,192,47,255,248,0,0,0,63,219,255,255,128,0,0,0,63,255,255,248,0,0,0,0,127,255,255,128,0,0,0,0,127,255,244,0,0,0,0,0,47,254,0,0,0,0,0,0,7,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30ed ロ + 237,48,30,30,240,40,5,254,191,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,128,0,0,0,0,47,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,127,255,255,255,255,255,255,224,191,128,0,0,0,0,47,224,191,192,0,0,0,0,47,224,0,0,0,0,0,0,0,0, + // 0x30ee ヮ + 238,48,27,27,189,40,7,251,170,170,170,170,170,175,64,191,255,255,255,255,255,240,191,255,255,255,255,255,244,191,255,255,255,255,255,240,191,64,0,0,0,47,240,191,64,0,0,0,47,224,191,64,0,0,0,63,208,191,64,0,0,0,63,208,191,64,0,0,0,127,192,191,64,0,0,0,191,192,191,64,0,0,0,255,128,255,64,0,0,1,255,0,85,0,0,0,2,255,0,0,0,0,0,3,253,0,0,0,0,0,15,252,0,0,0,0,0,47,244,0,0,0,0,0,127,240,0,0,0,0,1,255,208,0,0,0,0,11,255,64,0,0,0,0,63,254,0,0,0,0,2,255,248,0,0,0,0,31,255,208,0,0,0,6,255,255,64,0,0,0,7,255,248,0,0,0,0,2,255,192,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0, + // 0x30ef ワ + 239,48,31,32,0,40,5,253,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,240,255,64,0,0,0,0,63,240,255,64,0,0,0,0,63,224,255,64,0,0,0,0,63,208,255,64,0,0,0,0,127,208,255,64,0,0,0,0,127,192,255,64,0,0,0,0,191,192,255,64,0,0,0,0,255,128,255,64,0,0,0,0,255,64,255,64,0,0,0,1,255,0,255,64,0,0,0,3,255,0,170,64,0,0,0,3,254,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,252,0,0,0,0,0,0,47,244,0,0,0,0,0,0,127,240,0,0,0,0,0,1,255,208,0,0,0,0,0,3,255,128,0,0,0,0,0,15,255,0,0,0,0,0,0,127,252,0,0,0,0,0,2,255,244,0,0,0,0,0,31,255,192,0,0,0,0,0,191,255,0,0,0,0,0,27,255,252,0,0,0,0,2,255,255,224,0,0,0,0,2,255,255,0,0,0,0,0,0,191,244,0,0,0,0,0,0,46,64,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f0 ヰ + 240,48,34,35,59,40,3,253,0,0,0,0,0,21,64,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,255,255,255,255,255,255,255,192,15,234,255,234,170,191,250,171,192,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,0,0,127,128,0,47,208,0,0,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,21,64,0,0, + // 0x30f1 ヱ + 241,48,34,28,252,40,3,0,11,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,208,11,255,255,255,255,255,255,255,192,11,255,255,255,255,255,255,255,64,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,31,248,0,0,0,0,15,248,0,63,240,0,0,0,0,15,248,0,255,192,0,0,0,0,15,248,3,255,64,0,0,0,0,15,244,15,254,0,0,0,0,0,15,244,63,248,0,0,0,0,0,15,244,11,224,0,0,0,0,0,15,244,1,128,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,84,0,0,0,0,0,0,0,16, + // 0x30f2 ヲ + 242,48,30,32,0,40,6,253,255,255,255,255,255,255,253,0,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,192,0,0,0,0,0,0,191,192,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,64,0,0,0,0,0,0,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,2,254,0,0,0,0,0,0,3,253,0,63,255,255,255,255,255,252,0,63,255,255,255,255,255,252,0,63,255,255,255,255,255,248,0,47,234,170,170,170,191,240,0,0,0,0,0,0,47,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,255,192,0,0,0,0,0,2,255,64,0,0,0,0,0,7,255,0,0,0,0,0,0,31,252,0,0,0,0,0,0,127,244,0,0,0,0,0,2,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,127,254,0,0,0,0,0,7,255,244,0,0,0,0,0,127,255,208,0,0,0,0,27,255,254,0,0,0,0,0,191,255,244,0,0,0,0,0,47,255,64,0,0,0,0,0,11,244,0,0,0,0,0,0,2,0,0,0,0,0,0, + // 0x30f3 ン + 243,48,32,31,248,40,5,255,0,128,0,0,0,0,0,0,3,244,0,0,0,0,0,0,15,254,0,0,0,0,0,0,31,255,128,0,0,0,0,0,3,255,240,0,0,0,0,0,0,191,253,0,0,0,0,0,0,31,255,64,0,0,0,16,0,7,255,208,0,0,0,52,0,0,255,244,0,0,0,188,0,0,63,224,0,0,0,254,0,0,15,128,0,0,3,255,0,0,1,0,0,0,11,254,0,0,0,0,0,0,31,252,0,0,0,0,0,0,63,244,0,0,0,0,0,0,255,224,0,0,0,0,0,3,255,192,0,0,0,0,0,15,255,0,0,0,0,0,0,63,252,0,0,0,0,0,1,255,244,0,0,0,0,0,11,255,192,0,0,0,0,0,63,255,0,0,0,0,0,1,255,252,0,0,0,0,0,31,255,224,0,0,0,0,1,255,255,64,0,0,0,0,47,255,252,0,0,0,0,27,255,255,208,0,0,0,27,255,255,254,0,0,0,0,127,255,255,224,0,0,0,0,63,255,253,0,0,0,0,0,15,255,128,0,0,0,0,0,7,144,0,0,0,0,0,0, + // 0x30f4 ヴ + 244,48,34,38,86,40,4,253,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,116,63,0,0,0,0,191,192,1,252,47,128,0,0,0,127,192,0,190,15,208,0,0,0,127,192,0,63,7,240,0,0,0,127,192,0,47,131,224,0,0,0,127,192,0,15,192,0,0,0,0,127,192,0,5,0,0,0,0,0,127,192,0,0,0,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,248,0,191,255,255,255,255,255,255,248,0,191,234,170,170,170,170,191,244,0,191,64,0,0,0,0,47,240,0,191,64,0,0,0,0,47,240,0,191,64,0,0,0,0,63,224,0,191,64,0,0,0,0,63,208,0,191,64,0,0,0,0,127,192,0,191,64,0,0,0,0,191,192,0,191,64,0,0,0,0,255,128,0,255,64,0,0,0,1,255,64,0,255,64,0,0,0,3,255,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,0,255,208,0,0,0,0,0,0,7,255,128,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,191,252,0,0,0,0,0,0,7,255,240,0,0,0,0,0,0,191,255,192,0,0,0,0,0,111,255,254,0,0,0,0,0,2,255,255,240,0,0,0,0,0,0,255,255,64,0,0,0,0,0,0,63,244,0,0,0,0,0,0,0,14,0,0,0,0,0,0, + // 0x30f5 ヵ + 245,48,26,29,203,40,6,252,0,0,6,164,0,0,0,0,0,11,244,0,0,0,0,0,11,244,0,0,0,0,0,7,244,0,0,0,0,0,11,244,0,0,0,0,0,11,240,0,0,0,58,170,175,250,170,170,64,63,255,255,255,255,255,240,63,255,255,255,255,255,240,63,255,255,255,255,255,240,0,0,15,224,0,15,240,0,0,15,224,0,15,240,0,0,31,208,0,15,240,0,0,47,192,0,15,240,0,0,63,192,0,15,240,0,0,63,128,0,15,224,0,0,191,64,0,15,224,0,0,255,0,0,15,224,0,2,254,0,0,31,208,0,3,253,0,0,31,208,0,11,252,0,0,47,192,0,47,240,0,0,63,192,0,191,224,0,0,63,192,2,255,192,0,0,191,128,11,255,0,15,235,255,64,127,252,0,15,255,255,0,63,240,0,15,255,253,0,11,128,0,11,255,244,0,1,0,0,0,0,0,0, + // 0x30f6 ヶ + 246,48,30,30,240,40,5,251,0,0,164,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,255,0,0,0,0,0,0,2,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,254,170,170,170,170,128,0,31,255,255,255,255,255,208,0,63,255,255,255,255,255,208,0,191,255,255,255,255,255,208,1,255,64,0,127,128,0,0,3,255,0,0,191,64,0,0,15,252,0,0,191,64,0,0,63,244,0,0,255,0,0,0,255,224,0,0,255,0,0,0,191,192,0,1,255,0,0,0,15,0,0,2,254,0,0,0,0,0,0,3,252,0,0,0,0,0,0,11,252,0,0,0,0,0,0,15,248,0,0,0,0,0,0,63,240,0,0,0,0,0,0,127,224,0,0,0,0,0,1,255,192,0,0,0,0,0,7,255,64,0,0,0,0,0,31,254,0,0,0,0,0,0,191,248,0,0,0,0,0,3,255,224,0,0,0,0,0,0,255,128,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x30f7 ヷ + 247,48,34,39,95,40,4,252,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,80,190,0,0,0,0,0,0,3,244,63,64,0,0,0,0,0,2,252,47,192,0,0,0,0,0,0,253,15,208,0,0,0,0,0,0,191,11,208,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,16,0,0,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,244,0,255,255,255,255,255,255,255,244,0,255,255,255,255,255,255,255,240,0,255,128,0,0,0,0,63,240,0,255,128,0,0,0,0,63,240,0,255,128,0,0,0,0,63,224,0,255,128,0,0,0,0,63,208,0,255,128,0,0,0,0,127,192,0,255,128,0,0,0,0,191,192,0,255,128,0,0,0,0,255,192,0,255,128,0,0,0,0,255,128,0,255,128,0,0,0,1,255,0,0,255,128,0,0,0,3,255,0,0,85,0,0,0,0,3,254,0,0,0,0,0,0,0,11,252,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,191,224,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,7,255,64,0,0,0,0,0,0,47,254,0,0,0,0,0,0,0,255,248,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,127,255,128,0,0,0,0,0,6,255,254,0,0,0,0,0,1,191,255,244,0,0,0,0,0,2,255,255,128,0,0,0,0,0,0,191,252,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,4,0,0,0,0,0,0, + // 0x30f8 ヸ + 248,48,36,37,77,40,3,253,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,3,224,0,0,0,0,0,0,3,210,240,0,0,0,0,0,63,194,240,248,0,0,0,0,0,63,193,244,188,0,0,0,0,0,63,192,248,125,0,0,0,0,0,63,192,188,32,0,0,0,0,0,63,192,52,0,0,0,0,0,0,63,192,0,0,47,234,170,170,170,191,234,191,64,47,255,255,255,255,255,255,255,64,47,255,255,255,255,255,255,255,64,47,255,255,255,255,255,255,255,64,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,0,0,255,0,0,63,192,0,0,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,208,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,21,64,0,0, + // 0x30f9 ヹ + 249,48,36,36,68,40,2,255,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,7,224,0,0,0,0,0,0,31,3,240,0,0,0,0,0,0,47,130,248,0,0,0,0,0,0,15,208,252,0,0,0,0,0,0,7,240,189,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,1,64,0,3,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,240,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,192,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,11,252,0,0,0,0,7,252,0,47,244,0,0,0,0,7,252,0,191,224,0,0,0,0,7,252,2,255,192,0,0,0,0,7,252,11,255,0,0,0,0,0,7,252,31,252,0,0,0,0,0,7,252,3,240,0,0,0,0,0,7,252,0,128,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,7,252,0,0,0,0,127,255,255,255,255,255,255,255,248,127,255,255,255,255,255,255,255,248,127,255,255,255,255,255,255,255,248,127,255,255,255,255,255,255,255,248,21,0,0,0,0,0,0,0,20, + // 0x30fa ヺ + 250,48,34,39,95,40,4,252,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,96,191,0,0,0,0,0,0,3,244,63,64,0,0,0,0,0,1,252,31,192,0,0,0,0,0,0,253,15,208,0,0,0,0,0,0,127,7,64,0,0,0,0,0,0,56,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,224,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,15,255,255,255,255,255,254,0,0,15,255,255,255,255,255,253,0,0,15,255,255,255,255,255,252,0,0,15,234,170,170,170,175,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,3,255,64,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,255,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,47,255,0,0,0,0,0,0,1,255,252,0,0,0,0,0,0,31,255,240,0,0,0,0,0,6,255,255,64,0,0,0,0,0,63,255,248,0,0,0,0,0,0,31,255,208,0,0,0,0,0,0,7,253,0,0,0,0,0,0,0,1,128,0,0,0,0,0,0, + // 0x30fb ・ + 251,48,10,10,30,40,15,10,2,248,0,31,255,64,63,255,192,127,255,208,191,255,224,127,255,208,63,255,192,47,255,128,7,253,0,0,0,0, + // 0x30fc ー + 252,48,32,6,48,40,4,12,170,170,170,170,170,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0, + // 0x30fd ヽ + 253,48,19,20,100,40,11,4,2,0,0,0,0,15,208,0,0,0,127,244,0,0,0,127,253,0,0,0,15,255,64,0,0,3,255,208,0,0,0,255,244,0,0,0,63,253,0,0,0,15,255,0,0,0,3,255,192,0,0,0,255,240,0,0,0,63,252,0,0,0,31,254,0,0,0,11,255,128,0,0,2,255,208,0,0,0,255,240,0,0,0,63,252,0,0,0,31,248,0,0,0,11,208,0,0,0,2,0, + // 0x30fe ヾ + 254,48,22,26,156,40,10,3,0,0,0,0,28,0,0,0,0,0,191,0,0,0,1,240,63,64,0,0,3,248,31,192,0,0,0,253,15,224,0,0,0,191,7,240,7,128,0,63,66,208,47,224,0,31,192,0,191,248,0,13,0,0,47,254,0,0,0,0,11,255,128,0,0,0,2,255,224,0,0,0,0,191,248,0,0,0,0,47,254,0,0,0,0,11,255,128,0,0,0,2,255,208,0,0,0,0,191,244,0,0,0,0,63,252,0,0,0,0,15,255,0,0,0,0,3,255,192,0,0,0,1,255,224,0,0,0,0,191,244,0,0,0,0,47,252,0,0,0,0,15,244,0,0,0,0,7,192,0,0,0,0,1,0,0, + // 0x30ff ヿ + 255,48,25,34,238,40,7,253,127,255,255,255,255,255,128,127,255,255,255,255,255,128,127,255,255,255,255,255,128,63,255,255,255,255,255,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,127,128,0,0,0,0,0,106,128, + // 0x4eee 仮 + 238,78,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,63,193,170,170,170,170,170,64,0,0,191,67,255,255,255,255,255,128,0,0,255,3,255,255,255,255,255,128,0,2,254,3,255,255,255,255,255,128,0,3,252,3,248,0,0,0,0,0,0,11,248,3,248,0,0,0,0,0,0,31,240,3,248,0,0,0,0,0,0,63,208,3,248,0,0,0,0,0,0,191,208,3,248,0,0,0,0,0,1,255,208,3,248,0,0,0,0,0,3,255,208,3,248,0,0,0,0,0,15,255,208,3,255,255,255,255,253,0,63,255,208,3,255,255,255,255,255,0,255,239,208,3,255,255,255,255,254,0,191,143,208,3,255,245,85,86,253,0,63,15,208,3,255,244,0,2,252,0,44,15,208,3,251,248,0,3,252,0,0,15,208,3,250,252,0,7,248,0,0,15,208,3,244,254,0,11,240,0,0,15,208,7,244,191,0,15,240,0,0,15,208,7,244,127,128,47,208,0,0,15,208,11,240,63,192,63,192,0,0,15,208,11,240,31,240,191,64,0,0,15,208,15,240,11,245,255,0,0,0,15,208,15,224,3,255,253,0,0,0,15,208,31,224,2,255,252,0,0,0,15,208,47,208,0,255,240,0,0,0,15,208,63,192,0,191,240,0,0,0,15,208,63,128,2,255,252,0,0,0,15,208,127,64,15,255,255,64,0,0,15,208,255,0,127,250,255,224,0,0,15,209,255,2,255,224,127,254,0,0,15,211,253,47,255,64,15,255,224,0,15,215,252,47,253,0,2,255,192,0,15,208,244,15,224,0,0,63,64,0,10,128,32,2,0,0,0,6,0, + // 0x540d 名 + 13,84,35,38,86,40,1,252,0,0,0,46,144,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,255,255,255,255,0,0,0,0,31,255,255,255,255,192,0,0,0,63,255,255,255,255,128,0,0,1,255,213,85,85,255,0,0,0,7,255,0,0,2,255,0,0,0,31,252,0,0,3,253,0,0,0,191,253,0,0,15,248,0,0,7,255,255,128,0,31,240,0,0,47,255,255,240,0,63,208,0,0,63,248,63,252,0,255,192,0,0,15,208,11,255,3,255,0,0,0,6,0,2,255,203,253,0,0,0,0,0,0,127,255,244,0,0,0,0,0,0,31,255,224,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,191,255,255,255,255,244,0,0,7,255,255,255,255,255,244,0,0,63,255,255,255,255,255,244,0,2,255,254,85,85,85,91,244,0,111,255,254,0,0,0,7,244,11,255,254,254,0,0,0,7,244,127,255,224,254,0,0,0,7,244,47,254,0,254,0,0,0,7,244,15,208,0,254,0,0,0,7,244,5,0,0,254,0,0,0,7,244,0,0,0,254,0,0,0,7,244,0,0,0,254,0,0,0,7,244,0,0,0,254,85,85,85,91,244,0,0,0,255,255,255,255,255,244,0,0,0,255,255,255,255,255,244,0,0,0,255,255,255,255,255,244,0,0,0,254,0,0,0,7,244,0,0,0,169,0,0,0,7,244, + // 0x5b9a 定 + 154,91,37,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,6,170,170,170,191,234,170,170,169,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,170,170,170,170,170,160,254,0,11,240,255,255,255,255,255,244,254,0,0,0,255,255,255,255,255,244,0,0,0,0,255,255,255,255,255,244,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,1,253,0,63,192,0,0,0,0,0,2,253,0,63,192,0,0,0,0,0,3,252,0,63,192,0,0,0,0,0,3,252,0,63,255,255,255,64,0,0,3,248,0,63,255,255,255,64,0,0,7,248,0,63,255,255,255,64,0,0,11,252,0,63,213,85,85,0,0,0,15,253,0,63,192,0,0,0,0,0,31,255,0,63,192,0,0,0,0,0,47,255,128,63,192,0,0,0,0,0,127,255,224,63,192,0,0,0,0,0,255,143,248,63,192,0,0,0,0,1,255,7,255,127,192,0,0,0,0,3,254,1,255,255,192,0,0,0,0,15,252,0,127,255,255,234,170,170,128,63,244,0,15,255,255,255,255,255,128,127,208,0,0,191,255,255,255,255,0,15,128,0,0,5,175,255,255,255,0,2,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,34,38,86,40,2,252,0,0,0,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,2,254,0,0,0,0,191,64,0,3,253,0,0,0,0,191,64,0,7,252,0,0,0,0,191,64,0,11,248,0,0,0,0,191,64,0,15,244,0,0,0,0,191,64,0,63,240,0,0,0,0,191,64,0,191,208,0,0,0,0,191,64,0,255,192,0,0,0,0,191,64,0,191,0,0,0,0,0,191,64,0,45,0,0,0,0,0,191,64,0,8,0,0,0,0,0,191,64,0, + // 0x793a 示 + 58,121,36,35,59,40,2,252,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,170,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,106,170,170,170,255,170,170,170,169,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2,64,0,255,0,1,128,0,0,11,244,0,255,0,31,208,0,0,15,240,0,255,0,31,240,0,0,47,240,0,255,0,15,248,0,0,63,208,0,255,0,3,253,0,0,191,192,0,255,0,2,255,0,0,255,64,0,255,0,0,255,128,3,255,0,0,255,0,0,127,192,11,252,0,0,255,0,0,63,224,31,248,0,0,255,0,0,31,240,63,240,0,0,255,0,0,15,248,255,192,0,0,255,0,0,7,252,191,64,0,0,255,0,0,3,252,30,0,0,0,255,0,0,2,224,0,0,47,255,255,0,0,0,0,0,0,31,255,255,0,0,0,0,0,0,15,255,252,0,0,0,0,0,0,11,254,144,0,0,0,0, + // 0x7fa9 義 + 169,127,37,38,124,40,2,252,0,0,25,0,0,0,165,0,0,0,0,0,255,0,0,0,255,0,0,0,0,0,127,192,0,2,254,0,0,0,0,0,47,208,0,3,252,0,0,0,11,255,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,255,240,0,15,255,255,255,255,255,255,255,240,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,170,170,170,255,170,170,170,0,0,0,255,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,255,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,191,255,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,254,0,0,0,0,26,0,0,1,0,0,0,0,21,175,255,194,252,11,208,0,0,63,255,255,255,226,252,47,253,0,0,47,255,255,229,2,252,7,255,192,0,0,0,191,0,1,252,0,127,208,0,0,0,191,0,0,253,0,7,64,0,191,255,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,255,0,0,0,191,0,0,63,128,20,0,0,0,0,191,0,0,63,192,63,128,0,0,0,191,171,248,47,208,255,0,0,106,255,255,255,248,15,231,252,0,0,191,255,255,255,228,11,255,244,0,0,191,255,255,0,0,7,255,192,24,0,0,0,191,0,0,47,255,0,47,64,0,0,191,0,6,255,255,192,63,64,0,0,191,1,191,255,191,249,191,0,3,255,255,7,255,248,15,255,255,0,1,255,254,2,255,64,2,255,253,0,0,255,164,0,224,0,0,47,244,0, + // 0x8868 表 + 104,136,38,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,63,255,255,255,255,255,255,224,0,0,63,255,255,255,255,255,255,224,0,0,63,255,255,255,255,255,255,224,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,0,0,0,15,255,252,0,0,0,0,0,0,0,127,241,253,0,0,144,0,0,0,7,255,192,254,0,3,248,0,0,0,47,254,0,191,0,31,253,0,0,2,255,244,0,63,128,191,240,0,0,127,255,224,0,47,195,255,128,0,27,255,255,224,0,31,255,253,0,0,127,255,223,224,0,15,255,224,0,0,47,248,15,224,0,3,255,0,0,0,15,128,15,224,0,2,255,0,0,0,0,0,15,224,0,0,255,192,0,0,0,0,15,224,0,108,63,244,0,0,0,0,15,224,111,252,31,254,0,0,0,0,15,255,255,253,7,255,208,0,0,1,191,255,255,248,0,255,253,0,0,127,255,255,249,0,0,63,255,208,0,63,255,249,0,0,0,7,255,128,0,63,249,0,0,0,0,0,191,0,0,25,0,0,0,0,0,0,5,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Korean_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Korean_29.cpp new file mode 100644 index 000000000000..75fec1e45f41 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Korean_29.cpp @@ -0,0 +1,252 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Korean 40pt, capital 'A' height: 29px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +extern const uint8_t NotoSans_Medium_Korean_29[6128] = { + 162,29,112,172,136,215,38,246, // unifont_t + // 0xac70 거 + 112,172,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,5,85,85,85,80,0,15,240,47,255,255,255,240,0,15,240,47,255,255,255,240,0,15,240,47,255,255,255,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,31,224,0,15,240,0,0,0,47,224,0,15,240,0,0,0,63,208,0,15,240,0,0,0,63,192,0,15,240,0,0,0,127,192,0,15,240,0,0,0,191,133,85,111,240,0,0,0,255,15,255,255,240,0,0,2,254,15,255,255,240,0,0,7,253,15,255,255,240,0,0,15,252,0,0,15,240,0,0,47,240,0,0,15,240,0,0,127,224,0,0,15,240,0,1,255,192,0,0,15,240,0,11,255,0,0,0,15,240,0,47,252,0,0,0,15,240,1,255,240,0,0,0,15,240,11,255,192,0,0,0,15,240,127,254,0,0,0,0,15,240,191,244,0,0,0,0,15,240,63,128,0,0,0,0,15,240,29,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240, + // 0xace0 고 + 224,172,33,29,5,37,2,1,2,255,255,255,255,255,255,192,0,2,255,255,255,255,255,255,192,0,2,255,255,255,255,255,255,192,0,0,85,85,85,85,85,127,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,170,0,0,127,192,0,0,0,0,255,64,0,127,192,0,0,0,0,255,64,0,191,128,0,0,0,0,255,64,0,191,128,0,0,0,0,255,64,0,191,64,0,0,0,0,255,64,0,255,64,0,0,0,0,255,64,0,255,0,0,0,0,0,255,64,0,255,0,0,0,0,0,255,64,1,255,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,85,85,85,255,149,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xadf8 그 + 248,173,33,29,5,37,2,1,0,85,85,85,85,85,85,0,0,1,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xae09 급 + 9,174,33,36,68,37,2,252,0,85,85,85,85,85,85,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,85,85,85,85,85,86,255,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,64,0,0,0,191,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,85,85,85,85,85,85,0,0, + // 0xae30 기 + 48,174,30,38,48,37,2,252,0,0,0,0,0,0,5,64,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,5,85,85,85,84,0,31,240,15,255,255,255,252,0,31,240,15,255,255,255,252,0,31,240,15,255,255,255,252,0,31,240,0,0,0,3,252,0,31,240,0,0,0,7,252,0,31,240,0,0,0,7,248,0,31,240,0,0,0,11,244,0,31,240,0,0,0,15,244,0,31,240,0,0,0,15,240,0,31,240,0,0,0,47,224,0,31,240,0,0,0,63,208,0,31,240,0,0,0,127,192,0,31,240,0,0,0,255,128,0,31,240,0,0,2,255,0,0,31,240,0,0,7,254,0,0,31,240,0,0,15,252,0,0,31,240,0,0,63,240,0,0,31,240,0,0,255,224,0,0,31,240,0,3,255,128,0,0,31,240,0,31,254,0,0,0,31,240,0,191,248,0,0,0,31,240,7,255,224,0,0,0,31,240,127,255,64,0,0,0,31,240,127,252,0,0,0,0,31,240,47,208,0,0,0,0,31,240,14,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,10,160, + // 0xae45 깅 + 69,174,30,37,40,37,2,252,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,1,85,85,85,84,0,31,224,11,255,255,255,252,0,31,224,11,255,255,255,248,0,31,224,11,255,255,255,248,0,31,224,0,0,0,11,244,0,31,224,0,0,0,15,240,0,31,224,0,0,0,15,240,0,31,224,0,0,0,47,224,0,31,224,0,0,0,63,192,0,31,224,0,0,0,255,128,0,31,224,0,0,2,255,0,0,31,224,0,0,11,252,0,0,31,224,0,0,63,244,0,0,31,224,0,1,255,208,0,0,31,224,0,31,255,64,0,0,31,224,1,255,252,0,0,0,31,224,111,255,224,0,0,0,31,224,127,254,0,0,0,0,31,224,63,224,0,0,0,0,31,224,25,0,0,0,0,0,26,144,0,0,0,111,255,233,0,0,0,0,31,255,255,255,224,0,0,0,255,255,255,255,253,0,0,3,255,249,85,175,255,64,0,15,254,0,0,1,255,192,0,15,244,0,0,0,63,224,0,31,224,0,0,0,31,240,0,47,224,0,0,0,31,240,0,31,224,0,0,0,31,240,0,15,244,0,0,0,63,224,0,15,254,0,0,1,255,192,0,3,255,249,85,111,255,64,0,0,255,255,255,255,253,0,0,0,31,255,255,255,224,0,0,0,0,111,255,233,0,0, + // 0xb044 끄 + 68,176,33,29,5,37,2,1,1,85,85,80,21,85,85,64,0,11,255,255,244,63,255,255,192,0,11,255,255,244,63,255,255,192,0,11,255,255,244,63,255,255,192,0,0,0,11,244,0,0,63,192,0,0,0,11,244,0,0,63,192,0,0,0,11,244,0,0,63,192,0,0,0,15,244,0,0,63,192,0,0,0,15,240,0,0,63,192,0,0,0,15,240,0,0,63,192,0,0,0,15,240,0,0,63,192,0,0,0,15,240,0,0,63,192,0,0,0,31,240,0,0,127,192,0,0,0,47,224,0,0,127,128,0,0,0,47,208,0,0,127,128,0,0,0,63,192,0,0,191,128,0,0,0,63,192,0,0,191,64,0,0,0,127,192,0,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,255,64,0,1,255,0,0,0,0,255,0,0,1,254,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb0b4 내 + 180,176,30,38,48,37,3,252,0,0,0,0,0,0,5,64,0,0,0,0,10,144,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,229,95,224,127,128,0,0,31,255,255,224,127,128,0,0,31,255,255,224,127,128,0,0,31,255,255,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,128,0,0,31,224,15,224,127,192,22,189,31,224,15,224,127,255,255,254,31,224,15,224,127,255,255,254,31,224,15,224,127,255,255,233,31,224,15,224,42,85,80,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,31,224,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224, + // 0xb178 노 + 120,177,33,31,23,37,2,0,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,95,249,85,85,64,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb204 누 + 4,178,33,36,68,37,2,252,0,106,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,95,249,85,85,85,64,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,11,240,0,0,0,0, + // 0xb274 뉴 + 116,178,33,36,68,37,2,252,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,255,85,85,191,213,85,64,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0,0,0,255,0,0,127,128,0,0, + // 0xb2c8 니 + 200,178,28,37,3,37,4,252,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,170,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,0,0,255,255,0,0,0,6,64,255,255,0,21,107,255,128,255,255,255,255,255,255,128,255,255,255,255,255,255,128,255,255,255,255,254,144,0,255,106,85,80,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0,0,0,254, + // 0xb2e4 다 + 228,178,33,38,86,37,3,252,0,0,0,0,0,1,84,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,149,85,85,64,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,255,255,128,191,128,0,0,0,3,255,255,128,191,128,0,0,0,3,255,255,128,191,128,0,0,0,3,253,85,64,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,86,191,3,252,0,0,191,255,255,255,255,3,252,0,0,191,255,255,255,255,3,252,0,0,191,255,255,255,233,3,252,0,0,21,85,85,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,168,0,0, + // 0xb2f9 당 + 249,178,33,37,77,37,3,252,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,21,85,85,85,0,3,253,0,0,191,255,255,255,128,3,253,0,0,191,255,255,255,128,3,253,0,0,191,255,255,255,128,3,253,0,0,191,128,0,0,0,3,253,0,0,191,128,0,0,0,3,253,0,0,191,128,0,0,0,3,253,0,0,191,128,0,0,0,3,255,255,64,191,128,0,0,0,3,255,255,64,191,128,0,0,0,3,255,255,64,191,128,0,0,0,3,254,85,0,191,128,0,0,0,3,253,0,0,191,128,0,0,5,3,253,0,0,191,149,86,175,255,3,253,0,0,191,255,255,255,255,3,253,0,0,191,255,255,255,255,3,253,0,0,191,255,255,234,80,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,1,84,0,0,0,0,6,255,254,128,0,0,0,0,1,255,255,255,253,0,0,0,0,15,255,255,255,255,192,0,0,0,63,255,149,91,255,240,0,0,0,191,224,0,0,31,252,0,0,0,255,64,0,0,3,253,0,0,1,255,0,0,0,2,253,0,0,1,254,0,0,0,1,254,0,0,1,255,0,0,0,2,253,0,0,0,255,64,0,0,3,253,0,0,0,191,224,0,0,47,252,0,0,0,63,255,165,107,255,240,0,0,0,15,255,255,255,255,192,0,0,0,1,255,255,255,253,0,0,0,0,0,6,255,254,128,0,0,0, + // 0xb3c4 도 + 196,179,33,31,23,37,2,0,0,85,85,85,85,85,85,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb3cc 돌 + 204,179,33,36,68,37,2,252,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,149,85,85,85,85,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,21,85,95,249,85,85,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,95,249,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0, + // 0xb3d9 동 + 217,179,33,36,68,37,2,252,0,21,85,85,85,85,85,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,95,249,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,191,255,164,0,0,0,0,1,255,255,255,255,128,0,0,0,15,255,255,255,255,244,0,0,0,63,255,148,21,191,253,0,0,0,191,224,0,0,3,255,0,0,0,255,128,0,0,0,255,64,0,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,191,128,0,0,255,128,0,0,0,255,64,0,0,191,224,0,0,3,255,0,0,0,63,255,148,21,191,253,0,0,0,15,255,255,255,255,244,0,0,0,1,255,255,255,255,128,0,0,0,0,6,255,255,164,0,0,0, + // 0xb418 되 + 24,180,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,7,255,255,255,255,192,31,224,7,255,255,255,255,192,31,224,7,255,255,255,255,192,31,224,7,253,85,85,85,64,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,252,0,0,0,0,31,224,7,255,255,255,255,208,31,224,7,255,255,255,255,208,31,224,7,255,255,255,255,208,31,224,1,85,95,245,85,64,31,224,0,0,15,240,0,0,31,224,0,0,15,240,0,0,31,224,0,0,15,240,0,0,31,224,0,0,15,240,0,0,31,224,0,0,15,240,0,0,31,224,0,0,15,240,0,20,31,224,85,85,111,251,255,253,31,224,191,255,255,255,255,254,31,224,191,255,255,255,255,253,31,224,127,255,255,234,148,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224, + // 0xb41c 된 + 28,180,31,37,40,37,2,253,0,0,0,0,0,0,5,80,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,2,255,255,255,255,128,31,240,2,255,255,255,255,128,31,240,2,255,255,255,255,128,31,240,2,254,85,85,85,0,31,240,2,253,0,0,0,0,31,240,2,253,0,0,0,0,31,240,2,253,0,0,0,0,31,240,2,253,0,0,0,0,31,240,2,253,0,0,0,0,31,240,2,254,85,85,85,64,31,240,2,255,255,255,255,192,31,240,2,255,255,255,255,192,31,240,2,255,255,255,255,192,31,240,0,0,15,240,0,0,31,240,0,0,15,240,0,0,31,240,0,0,15,240,0,0,31,240,0,0,15,240,0,0,31,240,85,85,95,250,255,252,31,240,191,255,255,255,255,253,31,240,191,255,255,255,255,253,31,240,127,255,255,170,84,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,5,80,0,0,0,31,240,0,15,240,0,0,0,31,240,0,15,240,0,0,0,10,144,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,245,85,85,85,85,84,0,15,255,255,255,255,255,252,0,15,255,255,255,255,255,252,0,15,255,255,255,255,255,252, + // 0xb428 됨 + 40,180,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,85,85,85,85,64,15,240,2,255,255,255,255,128,15,240,2,255,255,255,255,128,15,240,2,255,255,255,255,128,15,240,2,253,0,0,0,0,15,240,2,253,0,0,0,0,15,240,2,253,0,0,0,0,15,240,2,253,0,0,0,0,15,240,2,253,0,0,0,0,15,240,2,255,255,255,255,192,15,240,2,255,255,255,255,192,15,240,2,255,255,255,255,192,15,240,0,85,95,245,85,64,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,20,15,240,0,21,95,250,255,253,15,240,191,255,255,255,255,253,15,240,127,255,255,255,255,249,15,240,127,255,255,169,80,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,245,85,85,85,95,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,5,85,85,85,85,85,80, + // 0xb4a4 뒤 + 164,180,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,1,85,85,85,85,0,15,240,3,255,255,255,255,128,15,240,3,255,255,255,255,128,15,240,3,255,255,255,255,128,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,253,0,0,0,0,15,240,3,255,255,255,255,192,15,240,3,255,255,255,255,192,15,240,3,255,255,255,255,192,15,240,1,85,85,85,85,64,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,85,106,254,15,240,255,255,255,255,255,254,15,240,255,255,255,255,255,254,15,240,191,255,255,255,169,64,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,10,160,0,0,15,240,0,0,0,0,0,0,15,224, + // 0xb4dc 드 + 220,180,33,29,5,37,2,1,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,85,85,85,85,85,64,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0xb514 디 + 20,181,28,38,10,37,4,252,0,0,0,0,0,0,85,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,191,255,255,255,208,1,254,191,255,255,255,208,1,254,191,255,255,255,208,1,254,191,149,85,85,64,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,0,0,1,254,191,64,0,22,191,65,254,191,255,255,255,255,65,254,191,255,255,255,255,129,254,191,255,255,255,249,1,254,85,85,85,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254, + // 0xb77c 라 + 124,183,33,38,86,37,3,252,0,0,0,0,0,1,84,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,191,255,255,255,192,3,252,0,0,191,255,255,255,192,3,252,0,0,191,255,255,255,192,3,252,0,0,21,85,85,127,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,63,192,3,252,0,0,0,0,0,63,192,3,252,0,0,21,85,85,127,192,3,252,0,0,191,255,255,255,192,3,255,255,128,191,255,255,255,192,3,255,255,128,191,255,255,255,192,3,255,255,128,191,128,0,0,0,3,253,85,64,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,0,3,252,0,0,191,128,0,0,22,3,252,0,0,191,149,106,191,255,3,252,0,0,191,255,255,255,255,67,252,0,0,191,255,255,255,255,67,252,0,0,191,255,255,169,64,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0, + // 0xb7ec 러 + 236,183,29,38,48,37,3,252,0,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,255,255,255,255,64,0,63,192,255,255,255,255,64,0,63,192,255,255,255,255,64,0,63,192,85,85,85,191,64,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,64,0,63,192,0,0,0,191,64,0,63,192,191,255,255,255,65,85,127,192,191,255,255,255,71,255,255,192,191,255,255,255,71,255,255,192,191,149,85,85,7,255,255,192,191,64,0,0,0,0,63,192,191,64,0,0,0,0,63,192,191,64,0,0,0,0,63,192,191,64,0,0,0,0,63,192,191,64,0,0,0,0,63,192,191,64,0,0,0,0,63,192,191,64,0,0,20,0,63,192,191,149,106,191,253,0,63,192,191,255,255,255,253,0,63,192,191,255,255,255,253,0,63,192,191,255,255,165,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,128, + // 0xb808 레 + 8,184,30,37,40,37,3,252,0,0,0,0,1,80,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,85,85,85,64,7,244,15,240,255,255,255,192,7,244,15,240,255,255,255,192,7,244,15,240,255,255,255,192,7,244,15,240,0,0,63,192,7,244,15,240,0,0,63,192,7,244,15,240,0,0,63,192,7,244,15,240,0,0,63,192,7,244,15,240,0,0,63,192,7,244,15,240,0,0,63,193,91,244,15,240,85,85,127,199,255,244,15,240,255,255,255,199,255,244,15,240,255,255,255,199,255,244,15,240,255,255,255,192,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,5,7,244,15,240,255,86,171,255,7,244,15,240,255,255,255,255,7,244,15,240,255,255,255,255,7,244,15,240,255,255,250,80,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224, + // 0xb825 력 + 37,184,29,38,48,37,3,252,0,0,0,0,0,0,1,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,191,255,255,255,0,0,63,192,191,255,255,255,0,0,63,192,191,255,255,255,0,0,63,192,21,85,85,255,11,255,255,192,0,0,0,255,11,255,255,192,0,0,0,255,11,255,255,192,0,0,0,255,1,85,127,192,0,0,0,255,0,0,63,192,191,255,255,255,0,0,63,192,191,255,255,255,0,0,63,192,191,255,255,255,1,85,127,192,191,128,0,0,11,255,255,192,191,128,0,0,11,255,255,192,191,128,0,0,11,255,255,192,191,128,0,0,0,0,63,192,191,149,86,175,240,0,63,192,191,255,255,255,240,0,63,192,191,255,255,255,240,0,63,192,191,255,255,234,64,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,42,128,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,64,0,127,255,255,255,255,255,192,0,127,255,255,255,255,255,192,0,127,255,255,255,255,255,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192, + // 0xb85c 로 + 92,184,33,31,23,37,2,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,85,85,85,127,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,85,85,85,85,85,127,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,85,85,95,249,85,85,64,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb8cc 료 + 204,184,33,31,23,37,2,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,85,85,85,127,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,85,85,85,85,85,127,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,85,127,213,85,255,149,64,0,0,0,63,192,0,191,64,0,0,0,0,63,192,0,191,64,0,0,0,0,63,192,0,191,64,0,0,0,0,63,192,0,191,64,0,0,0,0,63,192,0,191,64,0,0,0,0,63,192,0,191,64,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb974 르 + 116,185,33,31,23,37,2,0,0,85,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,85,85,85,85,85,127,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,85,85,85,85,85,85,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xb9ac 리 + 172,185,28,38,10,37,4,252,0,0,0,0,0,0,85,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,255,255,255,255,192,1,255,255,255,255,255,192,1,255,255,255,255,255,192,1,255,85,85,85,191,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,0,0,0,127,192,1,255,85,85,85,191,192,1,255,255,255,255,255,192,1,255,255,255,255,255,192,1,255,255,255,255,255,192,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,21,65,255,255,150,170,191,255,193,255,255,255,255,255,255,193,255,255,255,255,255,255,193,255,255,255,255,169,80,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,1,254, + // 0xb9b0 린 + 176,185,29,37,40,37,4,253,0,0,0,0,0,0,85,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,255,255,255,255,64,1,255,0,255,255,255,255,64,1,255,0,255,255,255,255,64,1,255,0,85,85,85,255,64,1,255,0,0,0,0,191,64,1,255,0,0,0,0,191,64,1,255,0,0,0,0,191,64,1,255,0,0,0,0,191,64,1,255,0,255,255,255,255,64,1,255,0,255,255,255,255,64,1,255,0,255,255,255,255,64,1,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,1,255,0,255,0,0,0,0,1,255,0,255,0,0,0,6,1,255,0,255,85,90,175,255,1,255,0,255,255,255,255,255,1,255,0,255,255,255,255,255,65,255,0,255,255,255,234,80,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,255,0,0,0,1,255,0,0,255,0,0,0,1,255,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128,0,255,255,255,255,255,255,128, + // 0xb9bd 립 + 189,185,28,37,3,37,4,252,0,0,0,0,0,1,255,85,85,85,85,0,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,0,0,0,191,64,1,255,0,0,0,191,64,1,255,0,0,0,191,64,1,255,0,0,0,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,22,191,1,255,255,255,255,255,255,1,255,255,255,255,255,255,65,255,255,255,255,255,165,1,255,85,85,80,0,0,1,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,1,255,0,255,0,0,0,1,255,0,255,0,0,0,1,255,0,255,64,0,0,1,255,0,255,255,255,255,255,255,0,255,255,255,255,255,255,0,255,255,255,255,255,255,0,255,0,0,0,1,255,0,255,0,0,0,1,255,0,255,0,0,0,1,255,0,255,0,0,0,1,255,0,255,255,255,255,255,255,0,255,255,255,255,255,255,0,255,255,255,255,255,255,0,85,85,85,85,85,85, + // 0xb9c1 링 + 193,185,28,38,10,37,4,252,0,0,0,0,0,0,84,0,0,0,0,0,1,255,0,0,0,0,0,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,85,85,85,255,64,1,255,0,0,0,191,64,1,255,0,0,0,191,64,1,255,0,0,0,191,64,1,255,0,0,0,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,255,255,255,64,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,0,0,1,255,255,0,0,22,191,1,255,255,255,255,255,255,1,255,255,255,255,255,255,65,255,255,255,255,255,165,1,255,85,85,80,0,0,1,255,0,0,0,0,0,1,255,0,0,0,0,0,0,84,0,0,6,255,254,144,0,0,1,255,255,255,254,64,0,15,255,255,255,255,224,0,63,254,85,86,255,248,0,255,208,0,0,11,253,0,255,0,0,0,2,255,1,255,0,0,0,0,255,1,255,0,0,0,0,255,0,255,0,0,0,2,255,0,255,208,0,0,11,253,0,63,254,149,86,255,248,0,15,255,255,255,255,224,0,1,255,255,255,255,64,0,0,6,255,254,144,0, + // 0xba48 멈 + 72,186,29,38,48,37,3,252,0,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,149,85,127,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,229,85,127,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,149,85,127,208,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,64,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,208,0,0,0,63,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,5,85,85,85,85,85,64, + // 0xba54 메 + 84,186,30,38,48,37,3,252,0,0,0,0,0,0,5,80,0,0,0,0,2,164,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,21,85,85,80,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,245,91,248,15,240,255,0,11,255,255,248,15,240,255,0,11,255,255,248,15,240,255,0,11,255,255,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,85,95,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,10,160, + // 0xba74 면 + 116,186,30,36,32,37,3,253,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,21,85,85,85,64,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,128,0,47,229,85,127,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,208,0,63,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,128,0,47,255,255,255,192,127,255,255,255,229,85,127,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,21,85,85,85,64,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,26,144,0,0,0,63,192,0,47,224,0,0,0,63,192,0,47,224,0,0,0,63,192,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,229,85,85,85,85,80,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,240, + // 0xbaa8 모 + 168,186,33,30,14,37,2,1,0,85,85,85,85,85,85,64,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,192,0,0,85,85,95,249,85,85,64,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,95,249,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xbabb 못 + 187,186,33,36,68,37,2,252,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,85,85,85,85,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,85,85,85,85,191,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,95,249,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,191,255,0,0,0,0,0,0,2,255,191,192,0,0,0,0,0,11,253,63,244,0,0,0,0,0,191,248,15,255,64,0,0,0,27,255,224,3,255,249,0,0,7,255,255,64,0,127,255,240,0,3,255,244,0,0,11,255,224,0,2,254,64,0,0,0,127,208,0,0,64,0,0,0,0,0,64,0, + // 0xbbf8 미 + 248,187,28,38,10,37,4,252,0,0,0,0,0,0,85,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,255,255,255,255,192,1,254,255,255,255,255,192,1,254,255,255,255,255,192,1,254,255,85,85,127,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,0,0,63,192,1,254,255,255,255,255,192,1,254,255,255,255,255,192,1,254,255,255,255,255,192,1,254,85,85,85,85,64,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254, + // 0xbc00 밀 + 0,188,29,38,48,37,4,252,0,0,0,0,0,0,84,0,0,0,0,0,0,1,255,0,85,85,85,85,64,1,255,0,255,255,255,255,192,1,255,0,255,255,255,255,192,1,255,0,255,255,255,255,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,0,0,63,192,1,255,0,255,85,85,127,192,1,255,0,255,255,255,255,192,1,255,0,255,255,255,255,192,1,255,0,255,255,255,255,192,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,0,0,0,0,1,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,255,255,255,255,255,255,192,0,0,0,0,0,0,0,0, + // 0xbc14 바 + 20,188,33,38,86,37,3,252,0,0,0,0,0,1,84,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,21,0,0,5,64,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,255,255,128,191,149,85,127,208,3,255,255,128,191,64,0,47,208,3,255,255,128,191,64,0,47,208,3,253,85,64,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,64,0,47,208,3,252,0,0,191,149,85,127,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,252,0,0,191,255,255,255,208,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0, + // 0xbc84 버 + 132,188,29,38,48,37,3,252,0,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,21,0,0,21,64,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,255,255,255,208,0,63,192,191,255,255,255,255,255,255,192,191,255,255,255,255,255,255,192,191,128,0,63,255,255,255,192,191,64,0,47,229,85,127,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,64,0,47,208,0,63,192,191,149,85,127,208,0,63,192,191,255,255,255,208,0,63,192,191,255,255,255,208,0,63,192,191,255,255,255,208,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192, + // 0xbca0 베 + 160,188,30,38,48,37,3,252,0,0,0,0,0,0,5,64,0,0,0,0,2,164,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,170,0,6,160,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,249,91,248,15,240,255,255,255,255,255,248,15,240,255,85,91,255,255,248,15,240,255,0,11,255,255,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,0,11,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,255,255,255,240,7,248,15,240,85,85,85,80,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,248,15,240,0,0,0,0,7,244,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,10,160, + // 0xbca8 벨 + 168,188,31,38,48,37,3,252,0,0,0,0,0,0,5,64,0,0,0,0,6,160,31,224,21,0,0,0,7,244,31,224,191,64,3,248,7,244,31,224,191,64,3,248,7,244,31,224,191,64,3,248,7,244,31,224,191,64,3,248,7,244,31,224,191,255,255,248,7,244,31,224,191,255,255,249,91,244,31,224,191,255,255,255,255,244,31,224,191,64,7,255,255,244,31,224,191,64,3,255,255,244,31,224,191,64,3,248,7,244,31,224,191,64,3,248,7,244,31,224,191,64,3,248,7,244,31,224,191,255,255,248,7,244,31,224,191,255,255,248,7,244,31,224,191,255,255,248,7,244,31,224,0,0,0,0,7,244,31,224,0,0,0,0,6,164,31,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,224,0,47,255,255,255,255,255,224,0,47,255,255,255,255,255,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,0,0,0,0,0,47,224,0,31,255,255,255,255,255,224,0,31,255,255,255,255,255,224,0,31,255,255,255,255,255,224,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,255,255,255,255,255,252,0,31,255,255,255,255,255,252,0,31,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xbcf8 본 + 248,188,33,35,59,37,2,253,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,64,0,0,0,191,64,0,0,255,85,85,85,85,191,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,64,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,85,85,85,95,249,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,149,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0, + // 0xbe44 비 + 68,190,28,38,10,37,4,252,0,0,0,0,0,0,85,0,0,0,0,0,1,254,0,0,0,0,0,1,254,85,0,0,21,64,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,255,255,255,208,1,254,255,255,255,255,208,1,254,255,255,255,255,208,1,254,255,85,85,127,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,0,0,63,208,1,254,255,85,85,127,208,1,254,255,255,255,255,208,1,254,255,255,255,255,208,1,254,255,255,255,255,208,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254,0,0,0,0,0,1,254, + // 0xc0ac 사 + 172,192,35,37,77,37,1,252,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,47,240,0,0,63,192,0,0,0,47,240,0,0,63,192,0,0,0,63,240,0,0,63,192,0,0,0,63,240,0,0,63,192,0,0,0,63,244,0,0,63,213,80,0,0,191,252,0,0,63,255,248,0,0,255,252,0,0,63,255,248,0,1,255,254,0,0,63,255,248,0,3,253,255,0,0,63,192,0,0,7,252,191,192,0,63,192,0,0,15,244,63,224,0,63,192,0,0,47,240,47,240,0,63,192,0,0,191,208,15,252,0,63,192,0,2,255,128,7,255,64,63,192,0,11,255,0,2,255,224,63,192,0,127,252,0,0,191,240,63,192,0,63,244,0,0,47,208,63,192,0,15,192,0,0,7,128,63,192,0,6,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,42,128,0, + // 0xc0bd 삽 + 189,192,34,38,86,37,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,106,64,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,255,192,0,0,255,0,0,0,0,255,208,0,0,255,255,208,0,1,255,240,0,0,255,255,208,0,3,255,244,0,0,255,255,208,0,11,251,252,0,0,255,149,64,0,31,242,255,0,0,255,0,0,0,63,224,255,192,0,255,0,0,1,255,192,127,248,0,255,0,0,15,255,0,31,255,128,255,0,0,191,253,0,7,255,192,255,0,0,191,244,0,0,255,0,255,0,0,63,192,0,0,29,0,255,0,0,29,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,208,0,0,0,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,21,85,85,85,85,85,0,0, + // 0xc0c8 새 + 200,192,31,37,40,37,2,252,0,0,0,0,2,164,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,2,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,252,0,3,252,3,252,0,3,253,0,3,252,3,252,0,3,253,0,3,252,3,252,0,3,254,0,3,252,3,252,0,7,254,0,3,253,87,252,0,11,255,0,3,255,255,252,0,15,255,64,3,255,255,252,0,15,255,128,3,255,255,252,0,31,255,192,3,252,3,252,0,63,239,224,3,252,3,252,0,191,143,240,3,252,3,252,0,255,11,252,3,252,3,252,3,254,3,254,3,252,3,252,11,252,2,255,131,252,3,252,47,248,0,255,243,252,3,252,191,240,0,63,243,252,3,252,255,192,0,15,195,252,3,252,127,0,0,2,67,252,3,252,28,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,3,252,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,248, + // 0xc124 설 + 36,193,31,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,191,192,7,255,255,240,0,0,255,208,7,255,255,240,0,0,255,240,7,255,255,240,0,2,255,244,1,85,95,240,0,3,255,252,0,0,15,240,0,15,246,255,0,0,15,240,0,63,240,255,192,0,15,240,0,255,208,127,244,0,15,240,11,255,128,47,255,64,15,240,191,254,0,11,255,192,15,240,191,248,0,1,255,64,15,240,63,208,0,0,46,0,15,240,29,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,7,255,255,255,255,255,240,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc18c 소 + 140,193,33,30,14,37,2,1,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,253,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,255,255,64,0,0,0,0,0,2,255,127,192,0,0,0,0,0,11,252,47,240,0,0,0,0,0,47,248,15,253,0,0,0,0,1,255,240,7,255,128,0,0,0,11,255,128,1,255,244,0,0,1,255,254,0,0,63,255,144,0,47,255,244,0,0,11,255,252,0,15,255,128,0,0,1,255,248,0,11,248,0,0,0,0,27,240,0,2,0,0,15,244,0,0,80,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,85,85,85,95,249,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xc18d 속 + 141,193,33,37,77,37,2,252,0,0,0,10,164,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,255,64,0,0,0,0,0,3,255,127,208,0,0,0,0,0,15,252,47,248,0,0,0,0,0,191,244,15,255,64,0,0,0,27,255,208,2,255,248,0,0,11,255,255,0,0,127,255,244,0,11,255,244,0,0,11,255,244,0,3,254,64,15,244,0,127,240,0,2,64,0,15,244,0,1,144,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,0,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0, + // 0xc2a4 스 + 164,194,33,30,14,37,2,1,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,47,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,191,255,0,0,0,0,0,0,1,255,191,192,0,0,0,0,0,3,253,63,224,0,0,0,0,0,31,252,31,248,0,0,0,0,0,127,240,11,255,0,0,0,0,2,255,192,2,255,208,0,0,0,47,255,0,0,191,253,0,0,7,255,252,0,0,47,255,228,0,47,255,224,0,0,7,255,252,0,15,255,0,0,0,0,127,248,0,11,224,0,0,0,0,6,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xc2ac 슬 + 172,194,33,37,77,37,2,252,0,0,0,15,244,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,3,255,63,224,0,0,0,0,0,47,252,31,253,0,0,0,0,2,255,240,7,255,208,0,0,5,191,255,128,0,255,255,148,0,15,255,253,0,0,47,255,248,0,11,255,144,0,0,1,255,244,0,3,164,0,0,0,0,6,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0, + // 0xc2dc 시 + 220,194,30,37,40,37,2,252,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,47,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,224,0,0,31,224,0,0,63,224,0,0,31,224,0,0,127,240,0,0,31,224,0,0,191,240,0,0,31,224,0,0,255,248,0,0,31,224,0,1,255,252,0,0,31,224,0,2,255,253,0,0,31,224,0,3,252,255,0,0,31,224,0,15,244,191,128,0,31,224,0,31,240,63,208,0,31,224,0,127,208,47,244,0,31,224,0,255,192,15,253,0,31,224,7,255,0,7,255,64,31,224,47,254,0,1,255,244,31,224,255,248,0,0,127,240,31,224,191,224,0,0,31,208,31,224,63,64,0,0,2,128,31,224,8,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0, + // 0xc2dd 식 + 221,194,30,38,48,37,2,252,0,0,0,0,0,0,5,64,0,0,0,0,0,0,31,240,0,0,42,128,0,0,31,240,0,0,63,192,0,0,31,240,0,0,63,192,0,0,31,240,0,0,63,192,0,0,31,240,0,0,63,192,0,0,31,240,0,0,63,208,0,0,31,240,0,0,127,208,0,0,31,240,0,0,191,224,0,0,31,240,0,0,255,240,0,0,31,240,0,1,255,248,0,0,31,240,0,3,255,252,0,0,31,240,0,11,253,255,0,0,31,240,0,31,244,255,192,0,31,240,0,127,224,127,240,0,31,240,2,255,192,31,254,0,31,240,31,255,0,11,255,224,31,240,191,252,0,1,255,208,31,240,63,240,0,0,47,128,31,240,31,64,0,0,2,0,31,240,4,0,0,0,0,0,31,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,64,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,47,255,255,255,255,255,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,10,160, + // 0xc5b4 어 + 180,197,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,1,169,0,0,0,15,240,0,31,255,224,0,0,15,240,0,191,255,252,0,0,15,240,2,255,255,255,0,0,15,240,3,255,65,255,128,0,15,240,11,248,0,127,192,0,15,240,15,240,0,47,224,0,15,240,47,224,0,15,240,0,15,240,63,192,0,11,244,0,15,240,63,192,0,7,248,0,15,240,63,192,0,7,248,0,15,240,127,128,0,3,253,85,95,240,127,128,0,3,255,255,255,240,127,128,0,3,255,255,255,240,127,128,0,3,255,255,255,240,127,128,0,3,252,0,15,240,63,192,0,7,248,0,15,240,63,192,0,7,248,0,15,240,63,192,0,11,244,0,15,240,47,224,0,15,240,0,15,240,15,240,0,31,224,0,15,240,15,248,0,63,208,0,15,240,3,255,1,255,128,0,15,240,2,255,255,255,0,0,15,240,0,191,255,252,0,0,15,240,0,31,255,224,0,0,15,240,0,1,169,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240, + // 0xc5c6 없 + 198,197,34,37,77,37,2,252,0,0,0,0,0,0,15,240,0,0,0,84,0,0,0,15,240,0,0,31,255,244,0,0,15,240,0,1,255,255,255,0,0,15,240,0,7,255,255,255,192,0,15,240,0,15,253,0,191,240,0,15,240,0,47,240,0,15,248,0,15,240,0,63,192,0,7,252,0,15,240,0,127,128,0,3,255,255,255,240,0,127,128,0,2,255,255,255,240,0,127,128,0,3,255,255,255,240,0,127,192,0,3,253,85,111,240,0,63,208,0,7,252,0,15,240,0,47,240,0,31,244,0,15,240,0,15,254,1,191,240,0,15,240,0,7,255,255,255,192,0,15,240,0,1,255,255,255,0,0,15,240,0,0,31,255,244,0,0,15,240,0,0,0,84,0,0,0,15,240,0,0,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,84,0,0,0,255,0,63,192,3,253,0,0,0,255,0,63,192,3,253,0,0,0,255,0,63,192,3,253,0,0,0,255,0,63,192,3,253,0,0,0,255,255,255,192,3,254,0,0,0,255,255,255,192,7,255,0,0,0,255,255,255,192,15,255,64,0,0,255,0,63,192,31,255,128,0,0,255,0,63,192,63,255,224,0,0,255,0,63,192,255,143,244,0,0,255,0,63,203,255,11,254,0,0,255,255,255,255,252,2,255,208,0,255,255,255,223,240,0,191,192,0,255,255,255,203,128,0,31,64,0,0,0,0,1,0,0,1,0, + // 0xc5d1 엑 + 209,197,31,38,48,37,2,252,0,0,0,0,0,0,1,80,0,0,0,0,0,169,7,248,0,0,0,0,0,254,7,248,0,31,249,0,0,254,7,248,1,255,255,208,0,254,7,248,7,255,255,244,0,254,7,248,15,254,175,252,0,254,7,248,63,224,2,255,0,254,7,248,63,192,0,255,0,254,7,248,127,64,0,127,64,254,7,248,191,0,0,63,255,254,7,248,191,0,0,63,255,254,7,248,191,0,0,63,255,254,7,248,191,0,0,63,150,254,7,248,127,128,0,191,64,254,7,248,63,192,0,255,0,254,7,248,47,240,3,254,0,254,7,248,15,254,111,252,0,254,7,248,7,255,255,240,0,254,7,248,1,255,255,192,0,254,7,248,0,31,249,0,0,254,7,248,0,0,0,0,0,254,7,248,0,0,0,0,0,253,7,248,0,0,0,0,0,0,0,0,0,5,85,85,85,85,85,80,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,15,255,255,255,255,255,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,7,248, + // 0xc5d4 엔 + 212,197,32,37,40,37,2,253,0,0,0,0,0,0,1,80,0,0,0,0,0,169,7,248,0,0,0,0,0,254,7,248,0,5,80,0,0,254,7,248,0,127,255,64,0,254,7,248,3,255,255,224,0,254,7,248,15,255,255,248,0,254,7,248,31,248,11,253,0,254,7,248,63,208,1,255,0,254,7,248,127,128,0,255,0,254,7,248,191,64,0,127,64,254,7,248,191,0,0,63,255,254,7,248,191,0,0,63,255,254,7,248,191,0,0,63,255,254,7,248,191,0,0,127,150,254,7,248,127,128,0,191,0,254,7,248,63,208,1,255,0,254,7,248,47,248,11,253,0,254,7,248,15,255,255,248,0,254,7,248,3,255,255,240,0,254,7,248,0,127,255,64,0,254,7,248,0,5,148,0,0,254,7,248,0,0,0,0,0,254,7,248,0,0,0,0,0,254,7,248,0,1,84,0,0,254,7,248,0,7,252,0,0,254,7,248,0,7,252,0,0,254,7,248,0,7,252,0,0,0,7,248,0,7,252,0,0,0,1,80,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,252,0,0,0,0,0,0,7,253,85,85,85,85,84,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254,0,7,255,255,255,255,255,254, + // 0xc5f4 열 + 244,197,31,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,6,255,144,0,0,15,240,0,191,255,254,0,0,15,240,3,255,255,255,208,0,31,240,15,255,154,255,255,255,255,240,31,248,0,47,255,255,255,240,63,208,0,11,255,255,255,240,63,192,0,3,252,0,15,240,127,128,0,3,252,0,15,240,127,64,0,2,253,0,15,240,127,128,0,3,252,0,15,240,63,192,0,3,253,0,31,240,63,208,0,11,255,255,255,240,31,244,0,47,255,255,255,240,15,255,150,255,255,255,255,240,3,255,255,255,128,0,15,240,0,191,255,253,0,0,15,240,0,6,255,144,0,0,15,240,0,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,255,255,255,255,255,240,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,11,255,255,255,255,255,252,0,11,255,255,255,255,255,252,0,11,255,255,255,255,255,252,0,0,0,0,0,0,0,0, + // 0xc608 예 + 8,198,31,37,40,37,2,252,0,0,0,0,0,84,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,27,244,0,0,254,3,252,0,191,255,0,0,254,3,252,3,255,255,192,0,254,3,252,7,255,255,240,0,254,3,252,15,248,31,244,0,254,3,252,31,224,7,253,86,254,3,252,63,192,3,255,255,254,3,252,63,192,1,255,255,254,3,252,63,128,0,255,255,254,3,252,127,64,0,254,0,254,3,252,127,64,0,254,0,254,3,252,191,0,0,255,0,254,3,252,191,0,0,255,0,254,3,252,191,0,0,255,0,254,3,252,191,0,0,255,0,254,3,252,127,64,0,254,0,254,3,252,127,64,0,255,85,254,3,252,63,128,1,255,255,254,3,252,63,192,2,255,255,254,3,252,47,192,3,255,255,254,3,252,31,224,7,248,0,254,3,252,15,248,31,240,0,254,3,252,7,255,255,224,0,254,3,252,2,255,255,192,0,254,3,252,0,191,255,0,0,254,3,252,0,11,228,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,254,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,168, + // 0xc624 오 + 36,198,33,30,14,37,2,1,0,0,1,191,254,144,0,0,0,0,0,111,255,255,254,0,0,0,0,2,255,255,255,255,224,0,0,0,15,255,233,90,255,248,0,0,0,63,249,0,0,31,254,0,0,0,191,208,0,0,2,255,64,0,0,255,64,0,0,0,191,192,0,2,254,0,0,0,0,63,192,0,2,253,0,0,0,0,47,208,0,3,252,0,0,0,0,31,224,0,3,252,0,0,0,0,31,224,0,3,253,0,0,0,0,47,208,0,2,254,0,0,0,0,63,208,0,0,255,64,0,0,0,191,192,0,0,191,192,0,0,2,255,64,0,0,63,248,0,0,31,255,0,0,0,15,255,229,90,255,252,0,0,0,3,255,255,255,255,224,0,0,0,0,127,255,255,254,0,0,0,0,0,2,191,255,144,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,85,85,85,95,249,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xc628 온 + 40,198,33,36,68,37,2,253,0,0,0,1,80,0,0,0,0,0,0,27,255,255,249,0,0,0,0,2,255,255,255,255,208,0,0,0,15,255,255,255,255,248,0,0,0,63,254,64,1,127,255,0,0,0,255,208,0,0,2,255,64,0,0,255,64,0,0,0,191,192,0,1,255,0,0,0,0,63,192,0,1,254,0,0,0,0,63,192,0,1,255,0,0,0,0,127,192,0,0,255,128,0,0,0,255,192,0,0,191,224,0,0,7,255,64,0,0,63,255,149,85,191,254,0,0,0,15,255,255,255,255,248,0,0,0,1,255,255,255,255,128,0,0,0,0,6,255,255,228,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,15,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,149,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0, + // 0xc644 완 + 68,198,34,37,77,37,2,253,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,255,64,0,0,2,255,228,0,0,255,64,0,0,47,255,255,64,0,255,64,0,0,255,255,255,224,0,255,64,0,3,255,144,127,248,0,255,64,0,7,252,0,7,252,0,255,64,0,15,244,0,2,253,0,255,64,0,15,240,0,1,254,0,255,64,0,15,240,0,0,254,0,255,64,0,15,240,0,0,254,0,255,64,0,15,240,0,1,253,0,255,64,0,7,252,0,3,252,0,255,64,0,3,255,64,47,248,0,255,255,208,0,255,255,255,240,0,255,255,208,0,63,255,255,128,0,255,255,208,0,6,255,248,0,0,255,149,64,0,0,63,192,0,0,255,64,0,0,0,63,192,0,0,255,64,0,0,0,63,192,1,96,255,64,0,85,85,191,239,255,240,255,64,0,255,255,255,255,255,244,255,64,0,255,255,255,255,255,224,255,64,0,191,255,254,165,64,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,63,192,0,0,0,255,64,0,0,63,192,0,0,0,255,64,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,213,85,85,85,85,64,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0,0,63,255,255,255,255,255,224,0, + // 0xc6d0 원 + 208,198,31,37,40,37,2,253,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,1,175,233,0,0,15,240,0,31,255,255,208,0,15,240,0,191,255,255,248,0,15,240,2,255,144,27,254,0,15,240,3,253,0,1,255,0,15,240,7,252,0,0,191,64,15,240,7,248,0,0,191,64,15,240,7,252,0,0,191,64,15,240,3,253,0,1,255,0,15,240,2,255,144,27,254,0,15,240,0,191,255,255,252,0,15,240,0,31,255,255,224,0,15,240,0,1,191,249,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,88,15,240,85,85,106,175,255,252,15,240,255,255,255,255,255,252,15,240,255,255,255,255,255,252,15,240,191,255,255,255,169,64,15,240,0,0,15,240,0,0,15,240,0,0,15,240,3,255,255,240,0,0,15,240,3,255,255,240,0,0,15,240,3,255,255,240,0,0,15,240,0,0,15,240,0,127,207,240,0,0,15,240,0,127,202,160,0,0,15,240,0,127,192,0,0,0,10,160,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,213,85,85,85,85,84,0,127,255,255,255,255,255,252,0,127,255,255,255,255,255,252,0,127,255,255,255,255,255,252, + // 0xc704 위 + 4,199,30,37,40,37,2,252,0,0,0,0,0,0,15,240,0,0,5,80,0,0,15,240,0,2,255,255,64,0,15,240,0,31,255,255,240,0,15,240,0,191,255,255,253,0,15,240,1,255,208,11,255,0,15,240,3,254,0,0,255,128,15,240,7,252,0,0,127,192,15,240,7,248,0,0,63,192,15,240,11,248,0,0,63,192,15,240,7,248,0,0,63,192,15,240,3,252,0,0,191,128,15,240,3,255,64,2,255,64,15,240,0,255,249,111,254,0,15,240,0,127,255,255,252,0,15,240,0,11,255,255,208,0,15,240,0,0,191,249,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,89,15,240,85,85,170,175,255,254,15,240,255,255,255,255,255,254,15,240,191,255,255,255,255,233,15,240,191,255,255,249,80,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,10,160,0,0,15,240,0,0,0,0,0,0,15,224, + // 0xc73c 으 + 60,199,33,30,14,37,2,1,0,0,1,191,254,80,0,0,0,0,0,47,255,255,254,0,0,0,0,2,255,255,255,255,208,0,0,0,15,255,250,107,255,248,0,0,0,63,253,0,0,47,254,0,0,0,191,208,0,0,2,255,0,0,0,255,64,0,0,0,191,192,0,1,254,0,0,0,0,63,192,0,2,253,0,0,0,0,47,208,0,3,252,0,0,0,0,31,224,0,3,252,0,0,0,0,31,224,0,3,252,0,0,0,0,47,208,0,2,254,0,0,0,0,63,208,0,1,255,0,0,0,0,127,192,0,0,255,192,0,0,1,255,128,0,0,63,244,0,0,11,255,0,0,0,31,255,144,5,191,252,0,0,0,7,255,255,255,255,240,0,0,0,0,191,255,255,255,64,0,0,0,0,7,255,255,228,0,0,0,0,0,0,5,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128, + // 0xc74c 음 + 76,199,33,36,68,37,2,252,0,0,27,255,255,228,0,0,0,0,2,255,255,255,255,208,0,0,0,31,255,255,255,255,252,0,0,0,127,254,64,0,111,255,0,0,0,255,208,0,0,2,255,128,0,1,255,0,0,0,0,191,192,0,1,255,0,0,0,0,63,192,0,1,255,0,0,0,0,63,192,0,1,255,64,0,0,0,191,192,0,0,255,224,0,0,2,255,128,0,0,63,255,149,85,191,255,0,0,0,15,255,255,255,255,248,0,0,0,1,255,255,255,255,128,0,0,0,0,6,191,255,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,85,85,85,85,191,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,85,85,85,85,85,85,0,0, + // 0xc774 이 + 116,199,29,38,48,37,3,252,0,0,0,0,0,0,21,64,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,1,169,0,0,0,127,128,0,47,255,224,0,0,127,128,0,255,255,252,0,0,127,128,3,255,255,255,0,0,127,128,11,254,2,255,128,0,127,128,15,244,0,127,192,0,127,128,47,224,0,47,224,0,127,128,63,192,0,15,240,0,127,128,63,192,0,15,240,0,127,128,127,128,0,11,244,0,127,128,191,64,0,7,248,0,127,128,191,64,0,7,248,0,127,128,191,64,0,3,252,0,127,128,255,0,0,3,252,0,127,128,191,64,0,3,252,0,127,128,191,64,0,7,248,0,127,128,191,64,0,7,248,0,127,128,127,128,0,11,244,0,127,128,63,192,0,15,240,0,127,128,63,192,0,15,240,0,127,128,47,224,0,47,224,0,127,128,15,244,0,127,192,0,127,128,11,254,2,255,128,0,127,128,3,255,255,255,0,0,127,128,0,255,255,252,0,0,127,128,0,47,255,224,0,0,127,128,0,1,169,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128, + // 0xc77c 일 + 124,199,30,37,40,37,3,252,0,0,0,0,0,0,127,192,0,27,254,128,0,0,127,192,1,255,255,248,0,0,127,192,11,255,255,255,0,0,127,192,47,254,155,255,192,0,127,192,127,224,0,127,224,0,127,192,255,128,0,31,240,0,127,192,255,0,0,11,244,0,127,192,255,0,0,7,248,0,127,192,255,0,0,7,248,0,127,192,255,0,0,11,248,0,127,192,255,64,0,15,244,0,127,192,191,192,0,47,240,0,127,192,63,249,1,255,208,0,127,192,15,255,255,255,128,0,127,192,3,255,255,253,0,0,127,192,0,127,255,224,0,0,127,192,0,0,84,0,0,0,127,192,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,127,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,255,255,255,255,255,240,0,63,255,255,255,255,255,240,0,63,255,255,255,255,255,240,0,0,0,0,0,0,0,0, + // 0xc77d 읽 + 125,199,29,37,40,37,3,252,0,0,0,0,0,0,127,192,0,0,84,0,0,0,127,192,0,127,255,224,0,0,127,192,3,255,255,253,0,0,127,192,15,255,255,255,64,0,127,192,63,249,1,255,208,0,127,192,191,192,0,63,240,0,127,192,255,64,0,15,244,0,127,192,255,0,0,11,248,0,127,192,255,0,0,7,248,0,127,192,255,0,0,7,248,0,127,192,255,0,0,11,244,0,127,192,255,128,0,31,240,0,127,192,127,224,0,127,224,0,127,192,47,254,91,255,192,0,127,192,11,255,255,255,0,0,127,192,1,255,255,248,0,0,127,192,0,27,255,128,0,0,127,192,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,0,0,85,85,84,21,85,85,0,2,255,255,254,63,255,255,192,2,255,255,254,63,255,255,192,2,255,255,254,63,255,255,192,0,0,1,254,0,0,127,192,0,0,1,254,0,0,127,192,0,0,1,254,0,0,127,192,2,255,255,254,0,0,127,192,2,255,255,254,0,0,127,192,2,255,255,253,0,0,127,192,2,253,0,0,0,0,127,192,2,253,0,0,0,0,127,192,2,253,0,5,160,0,127,192,2,255,255,255,240,0,127,192,2,255,255,255,240,0,127,192,2,255,255,254,144,0,127,192,0,0,0,0,0,0,21,64, + // 0xc785 입 + 133,199,29,37,40,37,3,252,0,0,0,0,0,0,127,192,0,0,84,0,0,0,127,192,0,127,255,224,0,0,127,192,3,255,255,254,0,0,127,192,15,255,255,255,128,0,127,192,63,249,1,255,208,0,127,192,127,208,0,47,240,0,127,192,255,64,0,15,244,0,127,192,255,0,0,7,248,0,127,192,255,0,0,3,252,0,127,192,255,0,0,3,252,0,127,192,255,0,0,7,248,0,127,192,255,64,0,15,244,0,127,192,127,208,0,47,240,0,127,192,63,249,1,255,224,0,127,192,15,255,255,255,128,0,127,192,3,255,255,254,0,0,127,192,0,127,255,224,0,0,127,192,0,1,84,0,0,0,127,192,0,0,0,0,0,0,21,64,0,0,0,0,0,0,0,0,0,42,128,0,0,0,42,128,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,208,0,0,0,127,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,63,255,255,255,255,255,192,0,21,85,85,85,85,85,64, + // 0xc790 자 + 144,199,35,37,77,37,1,252,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,5,85,85,85,85,64,63,192,0,31,255,255,255,255,208,63,192,0,31,255,255,255,255,208,63,192,0,31,255,255,255,255,208,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,31,224,0,0,63,192,0,0,0,47,224,0,0,63,192,0,0,0,47,240,0,0,63,192,0,0,0,47,240,0,0,63,192,0,0,0,63,240,0,0,63,213,80,0,0,63,244,0,0,63,255,248,0,0,191,252,0,0,63,255,248,0,0,255,252,0,0,63,255,248,0,1,254,254,0,0,63,192,0,0,3,252,255,64,0,63,192,0,0,7,248,127,192,0,63,192,0,0,15,244,63,240,0,63,192,0,0,63,240,15,248,0,63,192,0,0,191,192,11,254,0,63,192,0,2,255,128,3,255,192,63,192,0,15,255,0,0,255,244,63,192,0,127,252,0,0,63,240,63,192,0,63,240,0,0,11,208,63,192,0,15,128,0,0,1,128,63,192,0,5,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0, + // 0xc791 작 + 145,199,34,38,86,37,2,252,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,63,255,255,255,255,64,255,0,0,63,255,255,255,255,64,255,0,0,63,255,255,255,255,64,255,0,0,21,85,191,213,85,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,255,208,0,0,255,255,208,0,1,255,224,0,0,255,255,208,0,3,255,240,0,0,255,255,208,0,7,255,252,0,0,255,149,64,0,15,243,254,0,0,255,0,0,0,63,225,255,128,0,255,0,0,0,255,192,191,240,0,255,0,0,7,255,64,63,254,0,255,0,0,127,254,0,15,255,192,255,0,0,255,248,0,2,255,64,255,0,0,127,208,0,0,127,0,255,0,0,46,0,0,0,4,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,0,0,0,191,255,255,255,255,255,0,0,0,191,255,255,255,255,255,0,0,0,21,85,85,85,85,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,191,0,0, + // 0xc798 잘 + 152,199,34,37,77,37,2,252,0,0,0,0,0,0,255,0,0,21,85,85,85,85,0,255,0,0,63,255,255,255,255,0,255,0,0,63,255,255,255,255,0,255,0,0,63,255,255,255,255,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,255,192,0,0,255,149,64,0,0,255,208,0,0,255,255,208,0,2,255,240,0,0,255,255,208,0,3,255,248,0,0,255,255,208,0,15,251,253,0,0,255,0,0,0,47,242,255,64,0,255,0,0,0,255,208,255,244,0,255,0,0,11,255,64,63,255,64,255,0,0,191,254,0,11,255,192,255,0,0,255,244,0,1,255,64,255,0,0,127,128,0,0,26,0,255,0,0,36,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,63,255,255,255,255,255,208,0,0,0,0,0,0,0,0,0,0, + // 0xc7a5 장 + 165,199,34,37,77,37,2,252,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,21,85,85,85,85,0,255,0,0,63,255,255,255,255,64,255,0,0,63,255,255,255,255,64,255,0,0,63,255,255,255,255,64,255,0,0,0,0,127,128,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,0,191,192,0,0,255,149,64,0,0,255,192,0,0,255,255,208,0,0,255,224,0,0,255,255,208,0,2,255,240,0,0,255,255,208,0,3,255,248,0,0,255,0,0,0,15,247,254,0,0,255,0,0,0,47,241,255,128,0,255,0,0,0,191,208,191,244,0,255,0,0,7,255,128,47,255,64,255,0,0,47,255,0,11,255,192,255,0,0,255,252,0,1,255,64,255,0,0,191,224,0,0,47,0,255,0,0,63,64,0,0,0,0,255,0,0,4,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,255,248,0,0,0,0,0,191,255,255,255,208,0,0,0,7,255,255,255,255,248,0,0,0,31,255,64,0,111,254,0,0,0,63,240,0,0,3,255,0,0,0,127,192,0,0,0,255,64,0,0,127,128,0,0,0,191,128,0,0,127,128,0,0,0,191,128,0,0,63,192,0,0,0,255,64,0,0,63,244,0,0,7,255,0,0,0,15,255,149,85,191,253,0,0,0,3,255,255,255,255,244,0,0,0,0,127,255,255,255,128,0,0,0,0,2,191,255,164,0,0,0, + // 0xc7ac 재 + 172,199,31,37,40,37,2,252,0,0,0,0,1,168,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,127,255,255,255,194,252,3,252,127,255,255,255,194,252,3,252,127,255,255,255,194,252,3,252,21,87,253,85,66,252,3,252,0,3,252,0,2,252,3,252,0,3,252,0,2,252,3,252,0,3,252,0,2,252,3,252,0,3,252,0,2,252,3,252,0,3,253,0,2,252,3,252,0,7,253,0,2,252,3,252,0,7,254,0,2,253,87,252,0,11,255,0,2,255,255,252,0,15,255,0,2,255,255,252,0,15,255,64,2,255,255,252,0,31,255,192,2,252,3,252,0,63,239,192,2,252,3,252,0,127,143,240,2,252,3,252,0,255,79,248,2,252,3,252,1,255,7,253,2,252,3,252,3,253,2,255,66,252,3,252,15,252,0,255,226,252,3,252,127,240,0,63,242,252,3,252,255,208,0,15,210,252,3,252,191,64,0,2,130,252,3,252,45,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,2,252,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,2,252, + // 0xc800 저 + 0,200,30,37,40,37,2,252,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,21,85,85,85,85,64,15,240,63,255,255,255,255,192,15,240,63,255,255,255,255,192,15,240,63,255,255,255,255,192,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,191,208,3,255,255,240,0,0,191,224,3,255,255,240,0,0,255,240,3,255,255,240,0,1,255,244,1,85,95,240,0,2,255,248,0,0,15,240,0,3,250,252,0,0,15,240,0,11,245,255,0,0,15,240,0,31,240,255,128,0,15,240,0,63,208,127,208,0,15,240,0,191,192,63,240,0,15,240,2,255,64,15,252,0,15,240,11,254,0,7,255,64,15,240,63,252,0,2,255,240,15,240,255,240,0,0,191,224,15,240,191,192,0,0,31,192,15,240,62,0,0,0,2,0,15,240,4,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240, + // 0xc804 전 + 4,200,31,36,32,37,2,253,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,5,85,85,85,85,0,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,127,208,1,85,95,240,0,0,191,224,2,255,255,240,0,0,255,240,2,255,255,240,0,1,255,248,2,255,255,240,0,3,255,252,0,0,15,240,0,11,249,255,0,0,15,240,0,47,240,255,192,0,15,240,0,191,208,127,244,0,15,240,7,255,128,31,255,64,15,240,127,255,0,7,255,208,15,240,191,248,0,1,255,128,15,240,63,224,0,0,47,0,15,240,30,0,0,0,1,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,2,164,0,0,0,15,240,0,7,248,0,0,0,15,240,0,7,248,0,0,0,15,240,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,248,0,0,0,0,0,0,7,253,85,85,85,85,84,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252,0,7,255,255,255,255,255,252, + // 0xc815 정 + 21,200,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,21,85,127,213,85,0,15,240,0,0,63,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,208,0,0,15,240,0,0,191,224,2,255,255,240,0,0,255,240,2,255,255,240,0,1,255,248,2,255,255,240,0,3,255,252,0,85,95,240,0,11,249,255,0,0,15,240,0,31,240,255,192,0,15,240,0,191,224,127,244,0,15,240,2,255,192,31,255,64,15,240,47,255,0,11,255,208,15,240,191,252,0,1,255,128,15,240,63,240,0,0,47,0,15,240,47,64,0,0,1,0,15,240,4,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,0,0,1,191,255,254,64,0,0,0,47,255,255,255,244,0,0,0,255,255,255,255,255,0,0,3,255,228,0,27,255,192,0,11,253,0,0,0,127,224,0,15,244,0,0,0,31,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,244,0,0,0,47,240,0,11,253,0,0,0,191,208,0,3,255,229,65,95,255,192,0,0,255,255,255,255,254,0,0,0,31,255,255,255,244,0,0,0,0,111,255,249,0,0, + // 0xc81c 제 + 28,200,32,38,48,37,1,252,0,0,0,0,0,0,0,85,0,0,0,0,0,42,64,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,128,255,5,85,85,85,80,127,128,255,31,255,255,255,240,127,128,255,31,255,255,255,240,127,128,255,31,255,255,255,240,127,128,255,0,0,255,0,0,127,128,255,0,0,255,0,0,127,128,255,0,0,255,0,0,127,128,255,0,0,255,0,0,127,128,255,0,0,255,0,0,127,128,255,0,1,255,0,85,191,128,255,0,1,255,66,255,255,128,255,0,1,255,66,255,255,128,255,0,2,255,130,255,255,128,255,0,3,255,192,0,127,128,255,0,7,255,208,0,127,128,255,0,11,255,224,0,127,128,255,0,15,235,240,0,127,128,255,0,47,211,252,0,127,128,255,0,63,195,253,0,127,128,255,0,191,129,255,0,127,128,255,1,255,0,255,192,127,128,255,7,254,0,63,240,127,128,255,31,252,0,31,252,127,128,255,127,240,0,11,248,127,128,255,47,208,0,1,240,127,128,255,15,0,0,0,64,127,128,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,128,255,0,0,0,0,0,127,64,255,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,170, + // 0xc8fd 죽 + 253,200,33,36,68,37,2,252,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,1,85,85,111,253,85,85,64,0,0,0,0,63,254,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,1,255,255,192,0,0,0,0,0,7,255,63,240,0,0,0,0,0,127,252,31,254,0,0,0,0,7,255,240,7,255,228,0,0,11,255,255,128,0,255,255,228,0,15,255,253,0,0,47,255,248,0,11,255,144,0,0,1,255,240,0,3,164,0,0,0,0,6,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,95,249,85,85,85,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,85,85,95,249,85,85,0,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0, + // 0xc900 준 + 0,201,33,35,59,37,2,253,1,85,85,85,85,85,85,64,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,0,0,0,47,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,255,255,192,0,0,0,0,0,3,255,63,224,0,0,0,0,0,47,252,31,253,0,0,0,0,1,255,240,11,255,208,0,0,1,191,255,192,1,255,254,144,0,15,255,254,0,0,63,255,248,0,11,255,224,0,0,7,255,244,0,3,249,0,0,0,0,47,240,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,85,0,7,248,0,0,0,0,0,255,0,7,248,0,0,0,0,0,255,0,7,248,0,0,0,0,0,255,0,7,248,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0, + // 0xc911 중 + 17,201,33,36,68,37,2,252,1,85,85,85,85,85,85,64,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,0,0,0,47,253,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,3,255,127,224,0,0,0,0,0,47,253,47,253,0,0,0,0,6,255,244,11,255,224,0,0,6,255,255,192,1,255,255,228,0,15,255,253,0,0,47,255,248,0,11,255,144,0,0,1,255,240,0,3,148,0,0,0,0,6,160,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,27,255,255,232,0,0,0,0,2,255,255,255,255,208,0,0,0,31,255,255,255,255,248,0,0,0,63,254,64,0,111,254,0,0,0,255,192,0,0,2,255,64,0,0,255,64,0,0,0,191,128,0,0,255,0,0,0,0,127,128,0,0,255,64,0,0,0,255,128,0,0,191,208,0,0,2,255,0,0,0,63,254,84,5,191,254,0,0,0,15,255,255,255,255,248,0,0,0,1,255,255,255,255,128,0,0,0,0,6,255,255,164,0,0,0, + // 0xc990 즐 + 144,201,33,36,68,37,2,252,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,0,0,0,31,253,0,0,0,0,0,0,0,47,253,0,0,0,0,0,0,0,127,255,0,0,0,0,0,0,1,255,255,192,0,0,0,0,0,11,254,63,248,0,0,0,0,1,191,252,15,255,128,0,0,5,191,255,224,2,255,254,144,0,15,255,255,0,0,127,255,252,0,11,255,224,0,0,6,255,244,0,7,229,0,0,0,0,22,240,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0, + // 0xc9c0 지 + 192,201,30,37,40,37,2,252,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,21,85,85,85,85,64,31,224,63,255,255,255,255,208,31,224,63,255,255,255,255,208,31,224,63,255,255,255,255,208,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,208,0,0,31,224,0,0,63,224,0,0,31,224,0,0,127,240,0,0,31,224,0,0,191,240,0,0,31,224,0,0,255,248,0,0,31,224,0,1,255,252,0,0,31,224,0,2,254,253,0,0,31,224,0,3,248,255,0,0,31,224,0,15,244,191,128,0,31,224,0,47,240,63,208,0,31,224,0,127,208,31,244,0,31,224,0,255,128,15,254,0,31,224,7,255,0,3,255,192,31,224,47,253,0,0,255,244,31,224,255,244,0,0,63,240,31,224,127,208,0,0,11,208,31,224,47,0,0,0,0,64,31,224,4,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,31,224,0,0,0,0,0,0,26,160, + // 0xcc98 처 + 152,204,30,38,48,37,2,252,0,0,0,0,0,0,5,80,0,0,42,128,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,63,255,255,255,255,128,15,240,21,85,127,213,85,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,63,192,0,0,15,240,0,0,127,192,0,0,15,240,0,0,127,208,7,255,255,240,0,0,191,224,7,255,255,240,0,0,255,240,7,255,255,240,0,1,255,244,1,85,95,240,0,3,255,252,0,0,15,240,0,7,250,253,0,0,15,240,0,15,240,255,0,0,15,240,0,47,224,191,192,0,15,240,0,127,192,63,224,0,15,240,1,255,128,31,248,0,15,240,7,255,0,15,255,0,15,240,47,253,0,3,255,208,15,240,255,244,0,0,255,208,15,240,63,208,0,0,47,128,15,240,47,0,0,0,2,0,15,240,4,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240, + // 0xcd08 초 + 8,205,33,33,41,37,2,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,224,0,1,85,85,95,249,85,85,80,0,0,0,0,15,248,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,47,253,0,0,0,0,0,0,0,63,255,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,2,255,127,208,0,0,0,0,0,15,253,47,248,0,0,0,0,0,127,248,15,255,64,0,0,0,11,255,224,2,255,244,0,0,6,255,255,64,0,191,255,164,0,15,255,248,0,0,31,255,252,0,15,255,128,0,0,1,255,248,0,7,228,0,11,244,0,6,240,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xcd95 축 + 149,205,33,38,86,37,2,252,0,0,0,5,80,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,3,255,255,255,255,255,255,208,0,3,255,255,255,255,255,255,208,0,3,255,255,255,255,255,255,208,0,0,0,0,31,252,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,7,255,127,240,0,0,0,0,0,127,252,31,254,64,0,0,0,111,255,240,7,255,249,64,0,15,255,255,64,0,191,255,248,0,11,255,244,0,0,11,255,244,0,7,233,0,0,0,0,27,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,95,249,85,85,85,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,1,255,255,255,255,255,255,128,0,0,85,85,85,85,85,191,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,106,64,0, + // 0xcd9c 출 + 156,205,33,38,86,37,2,252,0,0,0,5,80,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,244,0,0,0,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,0,0,0,31,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,7,254,63,244,0,0,0,0,1,191,248,15,255,144,0,0,10,255,255,128,1,255,255,164,0,15,255,248,0,0,27,255,248,0,11,233,0,0,0,0,107,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,255,255,255,255,255,255,224,0,0,0,0,0,0,0,0,0,0, + // 0xcda4 춤 + 164,205,33,38,86,37,2,252,0,0,0,5,80,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,0,0,0,31,252,0,0,0,0,0,0,0,31,252,0,0,0,0,0,0,0,63,254,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,7,255,127,240,0,0,0,0,0,191,252,31,255,64,0,0,1,111,255,240,7,255,254,80,0,15,255,255,64,0,191,255,248,0,11,255,228,0,0,7,255,244,0,7,229,0,0,0,0,26,240,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,85,85,95,249,85,85,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,85,85,85,85,85,85,0,0, + // 0xcde8 취 + 232,205,30,37,40,37,2,252,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,31,244,0,0,15,240,11,255,255,255,255,224,15,240,11,255,255,255,255,224,15,240,11,255,255,255,255,224,15,240,0,0,15,240,0,0,15,240,0,0,31,244,0,0,15,240,0,0,47,248,0,0,15,240,0,0,63,253,0,0,15,240,0,0,255,255,0,0,15,240,0,3,255,191,224,0,15,240,0,31,252,63,253,0,15,240,2,255,244,15,255,240,15,240,31,255,208,2,255,240,15,240,15,254,0,0,127,208,15,240,7,224,0,0,1,128,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,85,15,240,85,85,106,175,255,254,15,240,255,255,255,255,255,254,15,240,191,255,255,255,255,249,15,240,191,255,255,249,80,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,10,160,0,0,15,240,0,0,0,0,0,0,15,224, + // 0xce58 치 + 88,206,30,38,48,37,2,252,0,0,0,0,0,0,5,64,0,0,10,144,0,0,31,240,0,0,31,224,0,0,31,240,0,0,31,224,0,0,31,240,0,0,31,224,0,0,31,240,0,0,31,224,0,0,31,240,0,0,31,224,0,0,31,240,31,255,255,255,255,224,31,240,31,255,255,255,255,224,31,240,31,255,255,255,255,224,31,240,5,85,111,245,85,64,31,240,0,0,31,224,0,0,31,240,0,0,31,224,0,0,31,240,0,0,47,224,0,0,31,240,0,0,47,240,0,0,31,240,0,0,63,240,0,0,31,240,0,0,63,240,0,0,31,240,0,0,127,248,0,0,31,240,0,0,191,252,0,0,31,240,0,0,255,253,0,0,31,240,0,1,253,255,0,0,31,240,0,3,252,191,128,0,31,240,0,11,248,63,208,0,31,240,0,31,240,47,244,0,31,240,0,127,208,15,253,0,31,240,2,255,128,3,255,64,31,240,11,255,0,1,255,244,31,240,127,252,0,0,127,244,31,240,63,240,0,0,15,224,31,240,15,128,0,0,1,192,31,240,4,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,31,240,0,0,0,0,0,0,26,160, + // 0xce68 침 + 104,206,30,38,48,37,2,252,0,0,5,64,0,0,0,0,0,0,47,224,0,0,31,240,0,0,47,224,0,0,31,240,0,0,47,224,0,0,31,240,5,85,111,229,85,64,31,240,31,255,255,255,255,208,31,240,31,255,255,255,255,208,31,240,31,255,255,255,255,208,31,240,0,0,47,224,0,0,31,240,0,0,47,224,0,0,31,240,0,0,63,240,0,0,31,240,0,0,63,240,0,0,31,240,0,0,191,248,0,0,31,240,0,0,255,253,0,0,31,240,0,3,255,255,0,0,31,240,0,11,252,255,192,0,31,240,0,47,244,63,244,0,31,240,1,255,224,31,255,64,31,240,31,255,128,7,255,240,31,240,127,254,0,0,255,240,31,240,47,244,0,0,47,192,31,240,15,128,0,0,1,128,31,240,4,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,0,1,85,85,85,85,85,64,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,15,255,255,255,255,255,240,0,1,85,85,85,85,85,64, + // 0xce74 카 + 116,206,34,37,77,37,2,252,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,5,85,85,85,80,0,255,0,0,15,255,255,255,248,0,255,0,0,15,255,255,255,248,0,255,0,0,15,255,255,255,248,0,255,0,0,0,0,0,7,248,0,255,0,0,0,0,0,11,244,0,255,0,0,0,0,0,15,244,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,31,224,0,255,0,0,21,170,255,255,208,0,255,0,0,127,255,255,255,192,0,255,85,64,127,255,255,255,192,0,255,255,208,63,254,149,255,128,0,255,255,208,16,0,1,255,0,0,255,255,208,0,0,3,254,0,0,255,0,0,0,0,11,252,0,0,255,0,0,0,0,31,244,0,0,255,0,0,0,0,127,240,0,0,255,0,0,0,1,255,192,0,0,255,0,0,0,7,255,64,0,0,255,0,0,0,47,253,0,0,0,255,0,0,0,255,244,0,0,0,255,0,0,11,255,192,0,0,0,255,0,0,127,255,0,0,0,0,255,0,0,127,248,0,0,0,0,255,0,0,47,128,0,0,0,0,255,0,0,13,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,170,0,0, + // 0xcf1c 켜 + 28,207,30,37,40,37,2,252,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,5,85,85,85,80,0,15,240,15,255,255,255,244,0,15,240,15,255,255,255,240,0,15,240,15,255,255,255,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,15,240,0,15,240,0,0,0,31,255,255,255,240,0,0,0,31,255,255,255,240,0,0,0,63,255,255,255,240,90,175,255,255,213,85,95,240,255,255,255,255,192,0,15,240,191,255,255,255,64,0,15,240,127,169,81,255,0,0,15,240,0,0,3,254,0,0,15,240,0,0,11,252,0,0,15,240,0,0,15,248,21,85,95,240,0,0,63,240,127,255,255,240,0,0,255,208,127,255,255,240,0,3,255,128,127,255,255,240,0,15,254,0,0,0,15,240,0,127,248,0,0,0,15,240,2,255,224,0,0,0,15,240,31,255,128,0,0,0,15,240,255,253,0,0,0,0,15,240,127,240,0,0,0,0,15,240,47,64,0,0,0,0,15,240,8,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,10,160, + // 0xd0d1 탑 + 209,208,33,38,86,37,3,252,0,0,0,0,0,1,84,0,0,0,0,0,0,0,3,252,0,0,21,85,85,85,64,3,252,0,0,127,255,255,255,192,3,252,0,0,127,255,255,255,192,3,252,0,0,127,255,255,255,192,3,252,0,0,127,128,0,0,0,3,252,0,0,127,128,0,0,0,3,252,0,0,127,128,0,0,0,3,252,0,0,127,149,85,85,0,3,255,255,64,127,255,255,255,128,3,255,255,64,127,255,255,255,128,3,255,255,64,127,255,255,255,128,3,254,85,0,127,128,0,0,0,3,252,0,0,127,128,0,0,0,3,252,0,0,127,128,0,0,0,3,252,0,0,127,128,0,22,189,3,252,0,0,127,255,255,255,254,3,252,0,0,127,255,255,255,254,3,252,0,0,127,255,255,255,165,3,252,0,0,21,85,80,0,0,3,252,0,0,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,3,252,0,0,0,255,0,0,0,3,252,0,0,0,255,0,0,0,3,252,0,0,0,255,64,0,0,3,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,255,0,0,0,3,252,0,0,0,255,0,0,0,3,252,0,0,0,255,0,0,0,3,252,0,0,0,255,0,0,0,3,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,85,85,85,85,85,84,0,0, + // 0xd130 터 + 48,209,29,38,48,37,3,252,0,0,0,0,0,0,21,64,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,255,255,255,208,0,63,192,127,213,85,85,64,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,213,85,85,15,255,255,192,127,255,255,255,15,255,255,192,127,255,255,255,15,255,255,192,127,255,255,255,15,255,255,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,0,0,63,192,127,128,0,0,4,0,63,192,127,213,86,175,253,0,63,192,127,255,255,255,254,0,63,192,127,255,255,255,254,0,63,192,127,255,255,233,64,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192, + // 0xd14c 테 + 76,209,30,38,48,37,3,252,0,0,0,0,0,0,5,80,0,0,0,0,1,80,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,255,255,255,224,7,244,15,240,255,255,255,224,7,244,15,240,255,255,255,224,7,244,15,240,255,85,85,64,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,5,91,244,15,240,255,255,255,15,255,244,15,240,255,255,255,15,255,244,15,240,255,255,255,15,255,244,15,240,255,64,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,0,0,0,7,244,15,240,255,85,106,253,7,244,15,240,255,255,255,253,7,244,15,240,255,255,255,254,7,244,15,240,255,255,254,148,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,7,244,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,10,160, + // 0xd1a0 토 + 160,209,33,31,23,37,2,0,0,85,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,85,85,85,85,85,85,85,85,64, + // 0xd2b8 트 + 184,210,33,30,14,37,2,1,0,85,85,85,85,85,85,64,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,192,0,0,85,85,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0xd39c 펜 + 156,211,32,37,40,37,2,253,0,0,0,0,0,0,1,84,0,0,0,0,0,170,3,248,0,0,0,0,0,255,3,248,0,0,0,0,0,255,3,248,191,255,255,255,192,255,3,248,191,255,255,255,192,255,3,248,191,255,255,255,192,255,3,248,23,253,91,249,64,255,3,248,3,252,7,244,0,255,3,248,3,252,7,244,0,255,3,248,3,252,7,244,0,255,3,248,3,252,7,244,255,255,3,248,3,252,7,244,255,255,3,248,3,252,7,244,255,255,3,248,3,252,7,244,85,255,3,248,3,252,7,244,0,255,3,248,3,252,7,244,0,255,3,248,3,252,7,244,0,255,3,248,3,252,7,250,160,255,3,248,255,255,255,255,240,255,3,248,255,255,255,255,240,255,3,248,255,255,255,254,80,255,3,248,85,85,0,0,0,255,3,248,0,0,0,0,0,255,3,248,0,0,0,0,0,255,3,248,0,3,252,0,0,255,3,248,0,3,252,0,0,255,3,248,0,3,252,0,0,105,3,248,0,3,252,0,0,0,1,80,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,252,0,0,0,0,0,0,3,253,85,85,85,85,85,0,3,255,255,255,255,255,254,0,3,255,255,255,255,255,254,0,3,255,255,255,255,255,254, + // 0xd504 프 + 4,213,33,29,5,37,2,1,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,1,85,255,85,85,191,149,80,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,0,0,255,0,0,191,128,0,0,1,85,255,85,85,191,149,80,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,3,255,255,255,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,64,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192,255,255,255,255,255,255,255,255,192, + // 0xd558 하 + 88,213,34,37,77,37,2,252,0,0,21,0,0,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,191,128,0,0,255,0,0,0,0,191,128,0,0,255,0,0,85,85,191,149,85,64,255,0,0,255,255,255,255,255,192,255,0,0,255,255,255,255,255,192,255,0,0,255,255,255,255,255,192,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,0,0,0,255,0,0,0,11,255,248,0,0,255,0,0,0,127,255,255,64,0,255,0,0,1,255,255,255,208,0,255,85,80,3,255,64,127,240,0,255,255,224,11,252,0,15,248,0,255,255,224,15,244,0,3,252,0,255,255,224,15,240,0,2,253,0,255,0,0,31,224,0,2,253,0,255,0,0,31,224,0,1,253,0,255,0,0,31,224,0,2,253,0,255,0,0,15,240,0,3,252,0,255,0,0,15,248,0,7,252,0,255,0,0,7,253,0,31,244,0,255,0,0,3,255,230,255,240,0,255,0,0,0,255,255,255,192,0,255,0,0,0,47,255,254,0,0,255,0,0,0,2,255,224,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0, + // 0xd569 합 + 105,213,34,38,86,37,2,252,0,0,42,128,0,0,0,0,0,0,0,127,192,0,0,255,0,0,0,0,127,192,0,0,255,0,0,0,0,127,192,0,0,255,0,0,255,255,255,255,255,208,255,0,0,255,255,255,255,255,208,255,0,0,255,255,255,255,255,208,255,0,0,85,85,85,85,85,64,255,0,0,0,0,0,0,0,0,255,0,0,0,2,191,228,0,0,255,0,0,0,127,255,255,64,0,255,255,208,1,255,255,255,240,0,255,255,208,3,255,64,111,248,0,255,255,208,11,248,0,7,252,0,255,149,64,15,240,0,2,253,0,255,0,0,15,240,0,2,253,0,255,0,0,15,240,0,2,253,0,255,0,0,11,248,0,7,252,0,255,0,0,3,255,64,111,248,0,255,0,0,1,255,255,255,240,0,255,0,0,0,127,255,255,64,0,255,0,0,0,2,191,228,0,0,255,0,0,0,0,0,0,0,0,85,0,0,0,21,64,0,0,0,85,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,208,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,192,0,0,0,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,63,255,255,255,255,255,0,0,0,5,85,85,85,85,85,0,0, + // 0xd648 홈 + 72,214,33,38,86,37,2,252,0,0,0,6,164,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,248,0,0,0,0,31,255,255,255,255,255,255,252,0,31,255,255,255,255,255,255,252,0,31,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,26,255,255,228,0,0,0,0,2,255,255,255,255,208,0,0,0,15,255,255,255,255,252,0,0,0,63,249,0,0,31,254,0,0,0,127,208,0,0,2,255,0,0,0,127,192,0,0,1,255,0,0,0,127,208,0,0,2,255,0,0,0,63,253,64,0,111,254,0,0,0,15,255,255,255,255,248,0,0,0,1,255,255,255,255,144,0,0,0,0,6,175,254,148,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,11,244,0,0,0,0,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,255,255,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,0,0,0,0,127,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,255,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0, + // 0xd654 화 + 84,214,35,37,77,37,1,252,0,0,15,240,0,0,63,208,0,0,0,15,240,0,0,63,208,0,0,0,15,240,0,0,63,208,0,0,0,15,240,0,0,63,208,0,63,255,255,255,255,248,63,208,0,63,255,255,255,255,248,63,208,0,63,255,255,255,255,248,63,208,0,21,85,85,85,85,80,63,208,0,0,0,0,0,0,0,63,208,0,0,0,111,249,0,0,63,208,0,0,7,255,255,224,0,63,208,0,0,63,255,255,252,0,63,208,0,0,191,228,27,254,0,63,208,0,0,255,64,1,255,0,63,208,0,1,254,0,0,191,64,63,208,0,2,253,0,0,127,128,63,255,244,2,253,0,0,127,128,63,255,244,1,254,0,0,191,64,63,255,244,0,255,64,1,255,0,63,229,80,0,191,224,11,254,0,63,208,0,0,63,255,255,252,0,63,208,0,0,11,255,255,224,0,63,208,0,0,0,191,254,64,0,63,208,0,0,0,15,240,0,0,63,208,0,0,0,15,240,0,0,63,208,0,0,0,15,240,0,20,63,208,0,21,85,111,251,255,252,63,208,0,127,255,255,255,255,253,63,208,0,63,255,255,255,255,248,63,208,0,63,255,255,170,80,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,42,128,0, + // 0xd788 히 + 136,215,29,37,40,37,3,252,0,0,21,64,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,0,0,127,128,85,85,191,213,85,64,127,128,255,255,255,255,255,208,127,128,255,255,255,255,255,208,127,128,255,255,255,255,255,208,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,21,0,0,0,127,128,0,11,255,248,0,0,127,128,0,127,255,255,64,0,127,128,1,255,255,255,224,0,127,128,3,255,64,127,244,0,127,128,11,252,0,11,252,0,127,128,15,244,0,3,252,0,127,128,31,240,0,2,254,0,127,128,31,224,0,1,254,0,127,128,31,224,0,1,254,0,127,128,31,224,0,1,254,0,127,128,15,240,0,2,253,0,127,128,15,248,0,7,252,0,127,128,7,253,0,31,248,0,127,128,3,255,230,255,240,0,127,128,0,255,255,255,192,0,127,128,0,47,255,255,0,0,127,128,0,2,255,228,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128,0,0,0,0,0,0,127,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Latin_Extended_A_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Latin_Extended_A_29.cpp new file mode 100644 index 000000000000..24b1d05c0ea6 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Latin_Extended_A_29.cpp @@ -0,0 +1,288 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Latin Extended-A 40pt, capital 'A' height: 29px, width: 100%, range: 0x0100-0x017f +extern const uint8_t NotoSans_Medium_Latin_Extended_A_29[22499] = { + 130,29,0,1,127,1,38,246, // unifont_t + // 0x0100 Ā + 26,35,245,26,0,0,0,1,85,85,84,0,0,0,3,255,255,252,0,0,0,3,255,255,252,0,0,0,3,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0101 ā + 18,29,145,23,2,255,1,85,85,85,0,2,255,255,254,0,2,255,255,254,0,2,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0102 Ă + 26,37,3,26,0,0,0,11,192,0,62,0,0,0,7,208,0,189,0,0,0,3,254,171,252,0,0,0,1,255,255,244,0,0,0,0,127,255,208,0,0,0,0,6,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0103 ă + 18,31,155,23,2,255,3,208,0,47,0,3,240,0,63,0,2,254,171,253,0,0,255,255,252,0,0,63,255,224,0,0,6,170,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0104 Ą + 26,39,17,26,0,246,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240,0,0,0,0,0,47,64,0,0,0,0,0,190,0,0,0,0,0,1,252,0,0,0,0,0,3,244,0,0,0,0,0,3,240,0,0,0,0,0,3,244,0,0,0,0,0,3,255,176,0,0,0,0,1,255,240,0,0,0,0,0,127,224,0,0,0,0,0,0,0, + // 0x0105 ą + 19,32,160,23,2,246,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,15,192,0,0,0,63,64,0,0,0,190,0,0,0,0,252,0,0,0,1,252,0,0,0,1,252,0,0,0,0,255,184,0,0,0,191,248,0,0,0,31,244,0,0,0,0,0, + // 0x0106 Ć + 22,39,234,25,2,255,0,0,0,2,170,0,0,0,0,15,252,0,0,0,0,31,244,0,0,0,0,63,208,0,0,0,0,255,64,0,0,0,2,252,0,0,0,0,3,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x0107 ć + 16,32,128,20,2,255,0,0,2,170,0,0,11,253,0,0,15,248,0,0,63,224,0,0,191,128,0,1,253,0,0,2,244,0,0,0,0,0,0,0,0,0,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,85,0, + // 0x0108 Ĉ + 22,39,234,25,2,255,0,0,2,169,0,0,0,0,15,255,0,0,0,0,47,255,192,0,0,0,191,175,240,0,0,1,254,7,248,0,0,7,248,1,254,0,0,15,128,0,47,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x0109 ĉ + 17,32,160,20,2,255,0,2,170,0,0,0,11,255,64,0,0,47,255,192,0,0,127,223,240,0,0,255,7,252,0,3,248,0,255,0,11,208,0,47,64,0,0,0,0,0,0,0,0,0,0,0,6,255,228,0,0,127,255,255,0,2,255,255,255,0,11,255,234,253,0,31,253,0,8,0,63,240,0,0,0,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,255,128,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,244,0,1,0,15,254,64,111,0,7,255,255,255,0,1,255,255,255,0,0,47,255,248,0,0,0,85,0,0, + // 0x010a Ċ + 22,38,228,25,2,255,0,0,0,164,0,0,0,0,3,253,0,0,0,0,3,254,0,0,0,0,3,253,0,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x010b ċ + 16,31,124,20,2,255,0,0,168,0,0,2,254,0,0,3,255,0,0,3,254,0,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,228,0,127,255,255,2,255,255,255,11,255,234,253,31,253,0,8,63,240,0,0,127,208,0,0,191,192,0,0,191,128,0,0,255,128,0,0,255,64,0,0,255,64,0,0,255,64,0,0,255,128,0,0,191,192,0,0,127,192,0,0,63,224,0,0,47,244,0,1,15,254,64,111,7,255,255,255,1,255,255,255,0,47,255,248,0,0,85,0, + // 0x010c Č + 22,39,234,25,2,255,0,10,128,0,42,64,0,11,244,0,255,0,0,2,254,7,252,0,0,0,191,159,240,0,0,0,63,255,192,0,0,0,15,255,64,0,0,0,7,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,2,255,255,255,208,0,31,255,255,255,224,0,127,255,255,255,208,1,255,244,0,27,192,3,255,128,0,0,0,11,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,127,208,0,0,0,0,63,224,0,0,0,0,63,240,0,0,0,0,47,244,0,0,0,0,15,252,0,0,0,0,11,255,0,0,0,0,3,255,208,0,0,64,1,255,254,85,175,192,0,127,255,255,255,192,0,15,255,255,255,192,0,1,191,255,254,64,0,0,1,85,0,0, + // 0x010d č + 17,32,160,20,2,255,10,144,0,26,64,7,248,0,191,0,1,254,3,252,0,0,127,223,240,0,0,47,255,208,0,0,15,255,64,0,0,3,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,228,0,0,127,255,255,0,2,255,255,255,0,11,255,234,253,0,31,253,0,8,0,63,240,0,0,0,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,255,128,0,0,0,255,64,0,0,0,255,64,0,0,0,255,64,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,244,0,1,0,15,254,64,111,0,7,255,255,255,0,1,255,255,255,0,0,47,255,248,0,0,0,85,0,0, + // 0x010e Ď + 23,38,228,29,4,0,1,164,0,6,160,0,0,254,0,47,208,0,0,63,192,255,64,0,0,31,247,253,0,0,0,7,255,244,0,0,0,2,255,224,0,0,0,0,191,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,165,0,0,0,255,255,255,248,0,0,255,255,255,255,192,0,255,255,255,255,244,0,255,0,1,191,253,0,255,0,0,11,255,64,255,0,0,1,255,192,255,0,0,0,191,224,255,0,0,0,63,240,255,0,0,0,31,244,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,11,252,255,0,0,0,15,248,255,0,0,0,15,248,255,0,0,0,31,244,255,0,0,0,63,240,255,0,0,0,127,224,255,0,0,0,255,192,255,0,0,7,255,64,255,0,0,127,254,0,255,170,191,255,248,0,255,255,255,255,208,0,255,255,255,253,0,0,255,255,254,64,0,0, + // 0x010f ď + 26,32,224,25,2,255,0,0,0,1,84,5,80,0,0,0,3,253,15,240,0,0,0,3,253,15,224,0,0,0,3,253,15,208,0,0,0,3,253,31,192,0,0,0,3,253,47,64,0,0,0,3,253,62,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,27,254,2,253,0,0,0,255,255,226,253,0,0,3,255,255,250,253,0,0,15,255,170,255,253,0,0,47,248,0,47,253,0,0,63,240,0,15,253,0,0,127,208,0,7,253,0,0,191,192,0,3,253,0,0,191,128,0,3,253,0,0,255,128,0,2,253,0,0,255,64,0,2,253,0,0,255,64,0,2,253,0,0,255,64,0,2,253,0,0,255,128,0,2,253,0,0,191,192,0,3,253,0,0,127,192,0,3,253,0,0,63,224,0,7,253,0,0,63,244,0,15,253,0,0,31,254,1,191,253,0,0,11,255,255,254,253,0,0,2,255,255,240,253,0,0,0,127,255,128,253,0,0,0,1,80,0,0,0,0, + // 0x0110 Đ + 26,29,203,29,1,0,2,170,170,148,0,0,0,3,255,255,255,224,0,0,3,255,255,255,255,0,0,3,255,255,255,255,208,0,3,253,0,6,255,244,0,3,253,0,0,47,253,0,3,253,0,0,7,255,0,3,253,0,0,2,255,128,3,253,0,0,0,255,192,3,253,0,0,0,127,208,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,171,255,170,160,0,47,240,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,127,192,3,253,0,0,0,255,192,3,253,0,0,1,255,128,3,253,0,0,3,255,0,3,253,0,0,31,253,0,3,253,0,1,255,248,0,3,255,170,255,255,224,0,3,255,255,255,255,64,0,3,255,255,255,244,0,0,3,255,255,249,0,0,0, + // 0x0111 đ + 23,32,192,25,2,255,0,0,0,1,84,0,0,0,0,3,253,0,0,0,0,3,253,0,0,0,0,3,253,0,0,2,255,255,255,244,0,2,255,255,255,248,0,2,255,255,255,248,0,0,0,3,254,0,0,0,0,3,253,0,0,1,84,3,253,0,0,127,255,130,253,0,2,255,255,246,253,0,11,255,255,254,253,0,31,253,0,191,253,0,63,240,0,15,253,0,127,208,0,11,253,0,127,192,0,3,253,0,191,192,0,3,253,0,255,128,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,128,0,2,253,0,191,128,0,3,253,0,127,192,0,3,253,0,63,208,0,7,253,0,63,240,0,15,253,0,31,254,1,191,253,0,11,255,255,254,253,0,2,255,255,241,253,0,0,127,255,128,253,0,0,1,80,0,0,0, + // 0x0112 Ē + 16,35,140,22,4,0,5,85,85,80,15,255,255,244,15,255,255,244,15,255,255,240,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0113 ē + 19,29,145,23,2,255,1,85,85,85,0,2,255,255,254,0,2,255,255,254,0,1,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0114 Ĕ + 16,37,148,22,4,0,31,0,0,248,31,128,1,244,15,250,175,240,7,255,255,208,1,255,255,64,0,26,164,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0115 ĕ + 19,31,155,23,2,255,3,208,0,31,0,3,240,0,63,0,2,254,170,253,0,0,255,255,252,0,0,63,255,224,0,0,6,170,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0116 Ė + 16,37,148,22,4,0,0,2,144,0,0,15,244,0,0,15,248,0,0,15,244,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x0117 ė + 19,31,155,23,2,255,0,0,168,0,0,0,2,254,0,0,0,3,255,0,0,0,2,255,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x0118 Ę + 16,39,156,22,4,246,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255,0,0,2,244,0,0,11,208,0,0,31,128,0,0,63,0,0,0,63,0,0,0,63,64,0,0,63,234,0,0,47,255,0,0,7,254,0,0,0,0, + // 0x0119 ę + 19,32,160,23,2,246,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,208,0,0,21,127,0,0,0,0,252,0,0,0,2,244,0,0,0,3,240,0,0,0,7,240,0,0,0,7,240,0,0,0,3,254,224,0,0,2,255,224,0,0,0,191,208,0,0,0,0,0, + // 0x011a Ě + 16,38,152,22,4,0,42,0,0,169,47,208,3,252,11,248,31,240,2,254,127,192,0,255,255,0,0,63,253,0,0,31,244,0,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x011b ě + 19,32,160,23,2,255,6,144,0,26,128,3,248,0,191,64,0,255,3,253,0,0,127,223,244,0,0,31,255,208,0,0,11,255,128,0,0,2,254,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x011c Ĝ + 24,39,234,29,2,255,0,0,0,170,64,0,0,0,3,255,192,0,0,0,11,255,240,0,0,0,47,235,252,0,0,0,127,129,254,0,0,1,254,0,127,128,0,3,224,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0, + // 0x011d ĝ + 20,41,205,25,2,246,0,1,170,64,0,0,3,255,192,0,0,15,255,240,0,0,47,235,248,0,0,191,130,254,0,1,253,0,127,128,3,224,0,11,192,0,0,0,0,0,0,0,0,0,0,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x011e Ğ + 24,38,228,29,2,255,0,1,240,0,15,128,0,1,248,0,31,64,0,0,255,170,255,0,0,0,127,255,253,0,0,0,31,255,244,0,0,0,1,170,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0, + // 0x011f ğ + 20,40,200,25,2,246,2,240,0,15,128,1,244,0,47,64,0,255,170,255,0,0,127,255,253,0,0,31,255,244,0,0,1,170,64,0,0,0,0,0,0,0,0,0,0,0,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x0120 Ġ + 24,38,228,29,2,255,0,0,0,41,0,0,0,0,0,255,64,0,0,0,0,255,128,0,0,0,0,255,64,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0, + // 0x0121 ġ + 20,40,200,25,2,246,0,0,41,0,0,0,0,255,0,0,0,1,255,64,0,0,0,255,64,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x0122 Ģ + 24,38,228,29,2,247,0,0,6,255,250,64,0,1,191,255,255,249,0,11,255,255,255,253,0,63,255,255,255,252,0,255,249,0,1,184,3,255,192,0,0,0,11,255,0,0,0,0,15,252,0,0,0,0,47,244,0,0,0,0,63,240,0,0,0,0,63,208,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,191,192,0,5,85,85,191,192,0,31,255,255,191,192,0,31,255,255,127,192,0,31,255,255,127,192,0,5,86,255,127,208,0,0,0,255,63,224,0,0,0,255,63,240,0,0,0,255,31,244,0,0,0,255,15,252,0,0,0,255,11,255,0,0,0,255,3,255,208,0,0,255,0,255,254,85,91,255,0,63,255,255,255,255,0,11,255,255,255,255,0,0,191,255,255,228,0,0,0,85,64,0,0,0,0,0,0,0,0,0,0,42,64,0,0,0,0,191,64,0,0,0,0,191,0,0,0,0,0,254,0,0,0,0,1,252,0,0,0,0,2,244,0,0,0,0,2,224,0,0, + // 0x0123 ģ + 20,41,205,25,2,246,0,0,6,128,0,0,0,31,128,0,0,0,63,64,0,0,0,127,0,0,0,0,255,0,0,0,1,254,0,0,0,2,253,0,0,0,0,0,0,0,0,0,0,0,0,0,27,254,0,169,0,255,255,224,253,3,255,255,249,253,15,255,171,255,253,31,248,0,63,253,63,240,0,15,253,127,208,0,7,253,191,192,0,3,253,191,128,0,3,253,255,128,0,2,253,255,64,0,2,253,255,64,0,2,253,255,64,0,2,253,255,128,0,2,253,191,192,0,3,253,127,192,0,3,253,63,208,0,7,253,63,240,0,15,253,15,253,0,191,253,11,255,255,254,253,2,255,255,242,253,0,127,255,130,253,0,1,80,2,253,0,0,0,3,253,0,0,0,3,253,0,0,0,7,252,0,0,0,15,252,30,64,0,127,244,31,255,255,255,224,31,255,255,255,128,11,255,255,253,0,0,22,169,64,0, + // 0x0124 Ĥ + 22,38,228,30,4,0,0,0,106,144,0,0,0,0,255,240,0,0,0,3,255,252,0,0,0,11,250,254,0,0,0,47,224,191,128,0,0,191,64,31,208,0,0,248,0,2,240,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,10,160,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,234,170,170,191,240,255,255,255,255,255,240,255,255,255,255,255,240,255,255,255,255,255,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240,255,0,0,0,15,240, + // 0x0125 ĥ + 24,40,240,25,254,0,0,42,160,0,0,0,0,191,248,0,0,0,1,255,253,0,0,0,7,253,255,0,0,0,15,240,63,192,0,0,63,192,15,240,0,0,189,0,2,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,64,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,0,0,0,0,47,224,27,249,0,0,47,210,255,255,208,0,47,219,255,255,244,0,47,255,234,191,252,0,47,254,0,11,253,0,47,252,0,3,254,0,47,244,0,1,255,0,47,240,0,1,255,0,47,240,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255,0,47,224,0,0,255, + // 0x0126 Ħ + 30,29,232,30,0,0,0,170,0,0,0,10,160,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,1,255,0,0,0,31,240,0,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,240,1,255,0,0,0,31,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,234,170,170,191,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,255,255,255,255,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0,0,255,0,0,0,15,240,0, + // 0x0127 ħ + 22,31,186,25,0,0,1,84,0,0,0,0,2,254,0,0,0,0,2,254,0,0,0,0,2,254,0,0,0,0,191,255,255,253,0,0,191,255,255,253,0,0,191,255,255,253,0,0,2,254,0,0,0,0,2,254,0,0,0,0,2,254,0,0,0,0,2,254,2,255,224,0,2,253,47,255,254,0,2,253,255,255,255,128,2,255,254,155,255,192,2,255,224,0,191,224,2,255,192,0,63,240,2,255,64,0,31,240,2,255,0,0,31,240,2,255,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240,2,254,0,0,15,240, + // 0x0128 Ĩ + 16,37,148,14,255,0,0,164,0,25,11,255,64,61,31,255,249,252,63,175,255,248,61,1,255,240,120,0,26,64,0,0,0,0,0,0,0,0,6,170,170,144,7,255,255,224,7,255,255,224,0,191,254,64,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,31,248,0,7,255,255,208,7,255,255,224,7,255,255,224, + // 0x0129 ĩ + 15,30,120,11,254,0,1,144,0,104,31,254,0,188,63,255,230,248,191,191,255,240,248,7,255,208,240,0,106,0,0,0,0,0,0,0,0,0,0,26,144,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0, + // 0x012a Ī + 12,35,105,14,1,0,85,85,85,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x012b ī + 13,28,112,11,255,0,85,85,85,0,191,255,255,128,191,255,255,128,191,255,255,64,0,0,0,0,0,0,0,0,0,106,64,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x012c Ĭ + 14,37,148,14,0,0,124,0,3,224,125,0,7,208,63,234,191,192,31,255,255,64,7,255,253,0,0,106,144,0,0,0,0,0,0,0,0,0,26,170,170,64,31,255,255,128,31,255,255,128,2,255,249,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,63,192,0,0,127,224,0,31,255,255,64,31,255,255,128,31,255,255,128, + // 0x012d ĭ + 13,30,120,11,255,0,244,0,11,192,252,0,15,192,191,170,255,64,63,255,254,0,15,255,248,0,1,170,64,0,0,0,0,0,0,0,0,0,0,106,64,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0, + // 0x012e Į + 12,39,117,14,1,246,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254,0,3,240,0,15,192,0,47,64,0,63,0,0,127,0,0,127,0,0,127,237,0,63,254,0,11,253,0,0,0, + // 0x012f į + 8,40,80,11,1,246,2,160,11,248,15,252,15,248,7,240,0,0,0,0,0,0,6,164,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,11,248,7,240,15,192,63,0,126,0,190,0,191,0,127,237,63,253,11,252,0,0, + // 0x0130 İ + 12,37,111,14,1,0,0,41,0,0,255,64,0,255,64,0,255,64,0,190,0,0,0,0,0,0,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x0131 ı + 5,22,44,11,3,0,106,64,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128, + // 0x0132 IJ + 21,37,222,26,1,248,106,170,169,0,42,128,127,255,254,0,63,192,127,255,254,0,63,192,11,255,228,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,0,255,0,0,63,192,1,255,128,0,63,192,127,255,253,0,63,192,127,255,254,0,63,192,127,255,254,0,63,192,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,255,128,0,0,0,3,255,64,0,0,15,255,255,0,0,0,15,255,252,0,0,0,15,255,240,0,0,0,6,250,64,0, + // 0x0133 ij + 16,40,160,22,3,246,42,0,0,164,191,128,3,253,255,192,3,254,255,128,3,254,127,0,1,252,0,0,0,0,0,0,0,0,0,0,0,0,106,64,1,168,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,191,128,3,253,0,0,3,253,0,0,3,253,0,0,3,253,0,0,3,253,0,0,3,253,0,0,11,252,0,31,255,248,0,31,255,240,0,31,255,192,0,5,164,0, + // 0x0134 Ĵ + 16,46,184,12,253,248,0,6,168,0,0,31,255,0,0,63,255,128,0,255,127,208,2,253,15,244,11,244,2,253,31,128,0,126,0,0,0,0,0,0,0,0,0,2,168,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,7,252,0,0,11,252,0,0,15,248,0,0,63,240,0,255,255,224,0,255,255,192,0,255,254,0,0,111,160,0,0, + // 0x0135 ĵ + 16,41,164,11,253,246,0,10,168,0,0,47,253,0,0,127,255,64,1,255,127,192,3,252,31,240,15,224,3,252,47,64,0,189,0,0,0,0,0,0,0,0,0,6,164,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,11,248,0,0,15,244,0,0,47,240,0,127,255,240,0,127,255,192,0,127,255,64,0,22,148,0,0, + // 0x0136 Ķ + 21,38,228,25,4,247,170,0,0,0,170,64,255,0,0,3,255,0,255,0,0,15,252,0,255,0,0,47,244,0,255,0,0,127,208,0,255,0,1,255,128,0,255,0,3,254,0,0,255,0,15,252,0,0,255,0,63,240,0,0,255,0,255,192,0,0,255,2,255,0,0,0,255,11,253,0,0,0,255,31,244,0,0,0,255,127,244,0,0,0,255,255,252,0,0,0,255,255,255,0,0,0,255,242,255,128,0,0,255,192,255,208,0,0,255,0,63,240,0,0,255,0,31,248,0,0,255,0,15,253,0,0,255,0,3,255,0,0,255,0,1,255,128,0,255,0,0,191,208,0,255,0,0,63,240,0,255,0,0,15,252,0,255,0,0,11,254,0,255,0,0,3,255,0,255,0,0,0,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,255,0,0,0,0,1,254,0,0,0,0,2,252,0,0,0,0,3,244,0,0,0,0,3,240,0,0,0,0,7,192,0,0,0, + // 0x0137 ķ + 19,40,200,22,3,247,85,0,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,0,0,191,128,0,26,160,191,128,0,127,224,191,128,1,255,128,191,128,3,254,0,191,128,15,248,0,191,128,63,240,0,191,128,255,192,0,191,67,255,0,0,191,79,252,0,0,191,111,240,0,0,191,191,244,0,0,191,255,252,0,0,191,255,255,0,0,191,224,255,128,0,191,128,127,208,0,191,128,47,244,0,191,128,15,252,0,191,128,3,254,0,191,128,1,255,64,191,128,0,191,208,191,128,0,63,240,191,128,0,31,248,0,0,0,0,0,0,0,0,0,0,0,2,168,0,0,0,7,248,0,0,0,7,244,0,0,0,11,240,0,0,0,15,208,0,0,0,31,128,0,0,0,31,0,0,0, + // 0x0138 ĸ + 19,22,110,22,3,0,106,64,0,26,160,191,128,0,127,224,191,128,0,255,128,191,128,3,255,0,191,128,15,252,0,191,128,47,240,0,191,128,191,208,0,191,129,255,64,0,191,131,254,0,0,191,143,248,0,0,191,191,248,0,0,191,255,253,0,0,191,255,255,0,0,191,244,255,192,0,191,192,127,224,0,191,128,47,244,0,191,128,15,252,0,191,128,3,255,0,191,128,1,255,128,191,128,0,191,208,191,128,0,63,240,191,128,0,15,248, + // 0x0139 Ĺ + 18,38,190,21,3,0,0,106,144,0,0,0,255,192,0,0,2,255,0,0,0,7,252,0,0,0,15,240,0,0,0,63,192,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,128,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,192,0,0,0,63,250,170,170,128,63,255,255,255,208,63,255,255,255,208,63,255,255,255,208, + // 0x013a ĺ + 9,40,120,11,3,0,0,170,128,2,255,64,3,254,0,15,248,0,47,224,0,127,64,0,189,0,0,0,0,0,0,0,0,85,0,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0, + // 0x013b Ļ + 17,38,190,21,4,247,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,2,164,0,0,0,7,248,0,0,0,11,240,0,0,0,15,224,0,0,0,15,192,0,0,0,31,128,0,0,0,47,0,0,0, + // 0x013c ļ + 6,40,80,11,2,247,21,64,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,0,0,0,0,10,160,15,240,15,224,31,192,63,128,63,0,125,0, + // 0x013d Ľ + 17,29,145,21,4,0,170,0,0,106,64,255,0,0,191,64,255,0,0,255,0,255,0,0,254,0,255,0,0,252,0,255,0,1,244,0,255,0,2,240,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64, + // 0x013e ľ + 12,31,93,11,3,0,85,1,84,191,130,253,191,131,252,191,131,244,191,135,240,191,139,208,191,143,192,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0, + // 0x013f Ŀ + 17,29,145,21,4,0,170,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,6,144,0,255,0,15,240,0,255,0,31,244,0,255,0,31,240,0,255,0,11,224,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,64,255,255,255,255,64,255,255,255,255,64, + // 0x0140 ŀ + 11,31,93,12,3,0,85,0,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,130,144,191,143,244,191,143,248,191,143,248,191,135,240,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0, + // 0x0141 Ł + 21,29,174,21,0,0,0,170,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,192,0,0,0,255,11,224,0,0,0,255,191,240,0,0,0,255,255,208,0,0,0,255,254,0,0,0,2,255,240,0,0,0,31,255,64,0,0,0,127,255,0,0,0,0,63,255,0,0,0,0,30,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,0,0,0,0,0,255,234,170,170,0,0,255,255,255,255,64,0,255,255,255,255,64,0,255,255,255,255,64, + // 0x0142 ł + 11,31,93,11,0,0,1,84,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,32,3,254,244,3,255,252,3,255,244,7,255,192,47,254,0,255,253,0,255,253,0,59,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0,3,253,0, + // 0x0143 Ń + 23,38,228,31,4,0,0,0,0,42,160,0,0,0,0,127,224,0,0,0,0,255,128,0,0,0,3,254,0,0,0,0,7,248,0,0,0,0,15,224,0,0,0,0,47,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x0144 ń + 19,31,155,25,3,0,0,0,2,170,0,0,0,7,254,0,0,0,15,248,0,0,0,47,224,0,0,0,127,128,0,0,0,254,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x0145 Ņ + 23,38,228,31,4,247,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,160,0,0,0,0,15,240,0,0,0,0,15,224,0,0,0,0,31,192,0,0,0,0,47,128,0,0,0,0,63,0,0,0,0,0,61,0,0,0, + // 0x0146 ņ + 19,31,155,25,3,247,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,255,0,0,0,0,254,0,0,0,1,252,0,0,0,2,248,0,0,0,3,240,0,0,0,3,208,0,0, + // 0x0147 Ň + 23,38,228,31,4,0,0,105,0,1,164,0,0,63,128,11,240,0,0,31,240,63,208,0,0,7,253,255,64,0,0,1,255,253,0,0,0,0,191,248,0,0,0,0,47,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,0,0,3,252,254,255,192,0,3,252,253,127,208,0,3,252,254,63,240,0,3,252,254,15,248,0,3,252,254,11,253,0,3,252,254,3,255,0,3,252,254,1,255,128,3,252,254,0,191,192,3,252,254,0,63,240,3,252,254,0,31,244,3,252,254,0,15,252,2,252,254,0,3,254,2,252,254,0,2,255,66,252,254,0,0,255,194,252,254,0,0,127,226,252,254,0,0,47,242,252,254,0,0,15,254,252,254,0,0,7,255,252,254,0,0,3,255,252,254,0,0,0,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252, + // 0x0148 ň + 19,31,155,25,3,0,6,144,0,26,128,3,248,0,191,64,0,255,3,253,0,0,127,223,244,0,0,31,255,208,0,0,11,255,128,0,0,2,254,0,0,0,0,0,0,0,0,0,0,0,0,105,0,191,228,0,191,11,255,255,64,191,63,255,255,208,191,255,170,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252, + // 0x0149 ʼn + 26,29,203,28,0,0,10,164,0,0,0,0,0,15,244,0,0,0,0,0,31,240,0,0,0,0,0,47,240,0,0,0,0,0,47,208,0,0,0,0,0,63,192,0,0,0,0,0,63,128,0,0,0,0,0,127,66,160,6,255,128,0,191,7,240,127,255,248,0,253,7,245,255,255,255,0,0,7,255,254,175,255,64,0,7,255,192,1,255,192,0,7,255,0,0,191,192,0,7,254,0,0,63,192,0,7,253,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208,0,7,252,0,0,63,208, + // 0x014a Ŋ + 23,37,222,31,4,248,170,128,0,0,1,168,255,224,0,0,3,252,255,244,0,0,3,252,255,252,0,0,3,252,255,254,0,0,3,252,255,255,64,0,3,252,254,255,192,0,3,252,254,127,240,0,3,252,254,47,244,0,3,252,254,15,252,0,3,252,254,7,255,0,3,252,254,2,255,64,3,252,254,0,255,192,3,252,254,0,127,240,3,252,254,0,47,244,3,252,254,0,15,252,2,252,254,0,3,255,2,252,254,0,2,255,130,252,254,0,0,255,194,252,254,0,0,63,242,252,254,0,0,31,250,252,254,0,0,15,254,252,254,0,0,3,255,252,254,0,0,1,255,252,254,0,0,0,191,252,254,0,0,0,63,252,254,0,0,0,31,252,254,0,0,0,11,252,254,0,0,0,3,252,0,0,0,0,2,252,0,0,0,0,3,252,0,0,0,0,7,252,0,0,0,0,31,248,0,0,0,255,255,240,0,0,0,255,255,208,0,0,0,255,255,64,0,0,0,111,228,0, + // 0x014b ŋ + 19,32,160,25,3,246,105,0,191,228,0,191,11,255,255,64,191,47,255,255,224,191,255,234,255,240,191,248,0,47,248,191,240,0,15,252,191,208,0,7,252,191,192,0,7,252,191,192,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,191,128,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,7,252,0,0,0,7,252,0,0,0,15,248,0,0,15,255,244,0,0,15,255,224,0,0,15,255,128,0,0,5,164,0, + // 0x014c Ō + 27,36,252,31,2,255,0,0,85,85,85,0,0,0,1,255,255,255,0,0,0,1,255,255,255,0,0,0,1,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x014d ō + 21,29,174,24,2,255,0,85,85,85,0,0,0,255,255,255,64,0,0,255,255,255,64,0,0,191,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x014e Ŏ + 27,38,10,31,2,255,0,3,224,0,31,64,0,0,2,240,0,63,0,0,0,1,254,170,254,0,0,0,0,191,255,252,0,0,0,0,47,255,240,0,0,0,0,2,170,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x014f ŏ + 21,31,186,24,2,255,1,240,0,15,128,0,0,248,0,31,128,0,0,255,170,255,0,0,0,127,255,253,0,0,0,31,255,244,0,0,0,1,170,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x0150 Ő + 27,39,17,31,2,255,0,0,26,160,42,128,0,0,0,63,224,191,192,0,0,0,191,128,255,0,0,0,0,255,3,252,0,0,0,2,252,7,240,0,0,0,7,240,15,192,0,0,0,11,128,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x0151 ő + 21,32,192,24,2,255,0,10,164,42,160,0,0,31,240,63,208,0,0,63,208,255,64,0,0,191,65,254,0,0,1,253,3,248,0,0,3,244,11,224,0,0,7,208,15,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x0152 Œ + 34,30,14,38,2,255,0,0,107,255,170,170,170,170,128,0,7,255,255,255,255,255,255,208,0,47,255,255,255,255,255,255,208,0,255,255,239,255,255,255,255,208,2,255,224,0,47,240,0,0,0,7,255,0,0,31,240,0,0,0,15,252,0,0,31,240,0,0,0,31,244,0,0,31,240,0,0,0,47,240,0,0,31,240,0,0,0,63,224,0,0,31,240,0,0,0,63,208,0,0,31,240,0,0,0,127,192,0,0,31,240,0,0,0,127,192,0,0,31,250,170,170,64,191,192,0,0,31,255,255,255,128,191,192,0,0,31,255,255,255,128,191,192,0,0,31,255,255,255,64,191,192,0,0,31,240,0,0,0,127,192,0,0,31,240,0,0,0,127,208,0,0,31,240,0,0,0,63,208,0,0,31,240,0,0,0,63,240,0,0,31,240,0,0,0,47,244,0,0,31,240,0,0,0,15,252,0,0,31,240,0,0,0,11,254,0,0,31,240,0,0,0,3,255,128,0,31,240,0,0,0,1,255,253,85,191,250,170,170,128,0,127,255,255,255,255,255,255,208,0,11,255,255,255,255,255,255,208,0,1,191,255,255,255,255,255,208,0,0,1,85,0,0,0,0,0, + // 0x0153 œ + 34,23,207,38,2,255,0,6,255,144,0,10,254,64,0,0,127,255,252,0,191,255,244,0,2,255,255,255,67,255,255,254,0,11,255,171,255,223,254,91,255,64,31,248,0,47,255,240,0,191,192,63,240,0,15,255,192,0,63,208,127,192,0,3,255,128,0,31,240,191,192,0,3,255,0,0,15,240,191,128,0,2,255,0,0,15,240,255,128,0,2,255,255,255,255,240,255,64,0,1,255,255,255,255,240,255,64,0,1,255,255,255,255,240,255,64,0,1,255,0,0,0,0,255,128,0,2,255,0,0,0,0,191,192,0,2,255,0,0,0,0,127,192,0,3,255,128,0,0,0,63,224,0,7,255,192,0,0,0,47,244,0,15,255,240,0,0,64,15,254,64,191,255,254,0,27,192,3,255,255,255,199,255,255,255,192,0,255,255,254,0,255,255,255,192,0,31,255,244,0,31,255,254,0,0,0,85,0,0,0,85,64,0, + // 0x0154 Ŕ + 21,38,228,25,4,0,0,0,6,169,0,0,0,0,15,252,0,0,0,0,63,240,0,0,0,0,191,192,0,0,0,0,255,0,0,0,0,3,248,0,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,148,0,0,0,255,255,255,228,0,0,255,255,255,254,0,0,255,255,255,255,192,0,255,0,22,255,224,0,255,0,0,127,240,0,255,0,0,31,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,47,240,0,255,0,0,127,224,0,255,64,23,255,192,0,255,255,255,255,0,0,255,255,255,248,0,0,255,255,255,192,0,0,255,149,127,224,0,0,255,0,31,244,0,0,255,0,11,252,0,0,255,0,3,254,0,0,255,0,2,255,0,0,255,0,0,255,192,0,255,0,0,127,208,0,255,0,0,47,240,0,255,0,0,15,248,0,255,0,0,11,253,0,255,0,0,3,255,0,255,0,0,1,255,128, + // 0x0155 ŕ + 14,31,124,17,3,0,0,0,106,144,0,0,255,192,0,3,255,0,0,11,252,0,0,15,240,0,0,63,128,0,0,126,0,0,0,0,0,0,0,0,0,0,105,0,127,192,191,3,255,192,191,15,255,192,191,63,255,192,191,255,64,0,191,248,0,0,191,240,0,0,191,192,0,0,191,192,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0,191,128,0,0, + // 0x0156 Ŗ + 21,38,228,25,4,247,170,170,148,0,0,0,255,255,255,228,0,0,255,255,255,254,0,0,255,255,255,255,192,0,255,0,22,255,224,0,255,0,0,127,240,0,255,0,0,31,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,47,240,0,255,0,0,127,224,0,255,64,23,255,192,0,255,255,255,255,0,0,255,255,255,248,0,0,255,255,255,192,0,0,255,149,127,224,0,0,255,0,31,244,0,0,255,0,11,252,0,0,255,0,3,254,0,0,255,0,2,255,0,0,255,0,0,255,192,0,255,0,0,127,208,0,255,0,0,47,240,0,255,0,0,15,248,0,255,0,0,11,253,0,255,0,0,3,255,0,255,0,0,1,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,255,0,0,0,0,0,254,0,0,0,0,1,252,0,0,0,0,2,248,0,0,0,0,3,240,0,0,0,0,3,208,0,0,0, + // 0x0157 ŗ + 14,31,124,17,2,247,26,64,31,240,47,192,255,240,47,195,255,240,47,207,255,240,47,255,208,0,47,254,0,0,47,252,0,0,47,240,0,0,47,240,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,0,0,0,0,0,0,0,0,10,160,0,0,15,240,0,0,31,224,0,0,47,192,0,0,63,64,0,0,63,0,0,0,124,0,0,0, + // 0x0158 Ř + 21,38,228,25,4,0,26,64,0,42,0,0,15,240,1,253,0,0,3,252,11,244,0,0,0,255,127,224,0,0,0,127,255,128,0,0,0,31,255,0,0,0,0,11,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,148,0,0,0,255,255,255,228,0,0,255,255,255,254,0,0,255,255,255,255,192,0,255,0,22,255,224,0,255,0,0,127,240,0,255,0,0,31,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,15,244,0,255,0,0,47,240,0,255,0,0,127,224,0,255,64,23,255,192,0,255,255,255,255,0,0,255,255,255,248,0,0,255,255,255,192,0,0,255,149,127,224,0,0,255,0,31,244,0,0,255,0,11,252,0,0,255,0,3,254,0,0,255,0,2,255,0,0,255,0,0,255,192,0,255,0,0,127,208,0,255,0,0,47,240,0,255,0,0,15,248,0,255,0,0,11,253,0,255,0,0,3,255,0,255,0,0,1,255,128, + // 0x0159 ř + 15,31,124,17,2,0,105,0,0,168,63,192,7,244,15,240,47,208,3,253,255,128,1,255,254,0,0,127,252,0,0,47,240,0,0,0,0,0,0,0,0,0,26,64,31,240,47,192,255,240,47,195,255,240,47,207,255,240,47,255,208,0,47,254,0,0,47,252,0,0,47,240,0,0,47,240,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0, + // 0x015a Ś + 18,39,195,22,2,255,0,0,2,170,0,0,0,11,253,0,0,0,15,244,0,0,0,63,208,0,0,0,191,64,0,0,1,253,0,0,0,2,244,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,21,80,0,0, + // 0x015b ś + 16,32,128,19,2,255,0,0,42,160,0,0,127,224,0,0,255,192,0,2,255,0,0,7,248,0,0,15,224,0,0,31,64,0,0,0,0,0,0,0,0,0,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,85,64,0, + // 0x015c Ŝ + 18,39,195,22,2,255,0,2,170,0,0,0,11,255,64,0,0,47,255,192,0,0,127,223,240,0,0,255,7,252,0,3,248,0,255,0,11,208,0,47,64,0,0,0,0,0,0,0,0,0,0,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,21,80,0,0, + // 0x015d ŝ + 16,32,128,19,2,255,0,42,160,0,0,127,248,0,0,255,254,0,3,253,255,64,15,244,63,208,63,192,11,240,126,0,1,248,0,0,0,0,0,0,0,0,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,85,64,0, + // 0x015e Ş + 18,39,195,22,2,246,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,23,240,0,0,0,7,208,0,0,0,15,248,0,0,0,7,255,0,0,0,0,127,64,0,0,0,63,128,0,0,0,127,64,0,0,191,255,0,0,0,191,252,0,0,0,106,64,0,0, + // 0x015f ş + 16,32,128,19,2,246,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,95,208,0,0,15,128,0,0,47,224,0,0,27,252,0,0,0,254,0,0,0,191,0,0,0,254,0,1,255,253,0,1,255,244,0,0,169,64,0, + // 0x0160 Š + 18,39,195,22,2,255,10,144,0,26,64,7,248,0,191,0,1,254,3,252,0,0,127,223,240,0,0,47,255,208,0,0,15,255,64,0,0,3,254,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,164,0,1,255,255,255,128,11,255,255,255,208,31,255,255,255,192,63,244,0,27,128,127,208,0,0,0,191,192,0,0,0,191,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,240,0,0,0,47,253,0,0,0,15,255,224,0,0,3,255,254,0,0,0,191,255,224,0,0,11,255,253,0,0,0,127,255,64,0,0,7,255,192,0,0,0,191,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,240,0,0,0,15,240,0,0,0,47,240,224,0,0,127,224,255,165,91,255,192,255,255,255,255,0,255,255,255,252,0,47,255,255,144,0,0,21,80,0,0, + // 0x0161 š + 16,32,128,19,2,255,105,0,0,168,63,192,11,244,15,240,47,208,3,253,255,128,1,255,254,0,0,127,252,0,0,47,240,0,0,0,0,0,0,0,0,0,0,111,254,64,11,255,255,248,63,255,255,252,191,249,91,244,255,128,0,96,255,0,0,0,255,64,0,0,255,208,0,0,127,253,0,0,47,255,208,0,7,255,254,0,0,191,255,208,0,7,255,244,0,0,127,252,0,0,7,253,0,0,2,254,0,0,2,254,64,0,3,253,249,0,11,252,255,255,255,248,255,255,255,224,111,255,254,0,0,85,64,0, + // 0x0162 Ţ + 22,39,234,23,0,246,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,15,128,0,0,0,0,47,64,0,0,0,0,63,224,0,0,0,0,31,252,0,0,0,0,1,253,0,0,0,0,0,253,0,0,0,0,1,253,0,0,0,2,255,252,0,0,0,2,255,240,0,0,0,1,169,0,0,0, + // 0x0163 ţ + 15,37,148,15,0,246,0,21,0,0,0,63,0,0,0,127,0,0,0,191,0,0,0,255,0,0,2,255,170,160,47,255,255,240,127,255,255,240,43,255,170,160,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,0,255,0,0,0,255,64,0,0,255,208,16,0,191,255,244,0,63,255,244,0,11,255,240,0,1,249,0,0,3,240,0,0,7,253,0,0,6,255,128,0,0,47,192,0,0,31,192,0,0,47,192,0,63,255,128,0,63,254,0,0,26,144,0, + // 0x0164 Ť + 22,38,228,23,0,0,0,168,0,2,164,0,0,127,64,15,240,0,0,31,224,63,192,0,0,11,249,255,0,0,0,2,255,252,0,0,0,0,255,244,0,0,0,0,63,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x0165 ť + 20,32,160,15,0,255,0,0,0,0,85,0,0,0,0,255,0,0,0,1,253,0,0,0,2,252,0,21,0,3,244,0,63,0,3,240,0,127,0,7,208,0,191,0,0,0,0,255,0,0,0,2,255,170,160,0,47,255,255,240,0,127,255,255,240,0,43,255,170,160,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,0,255,0,0,0,0,255,64,0,0,0,255,208,16,0,0,191,255,244,0,0,63,255,244,0,0,11,255,240,0,0,0,21,0,0, + // 0x0166 Ŧ + 22,29,174,23,0,0,106,170,170,170,170,160,127,255,255,255,255,240,127,255,255,255,255,240,127,255,255,255,255,240,0,0,63,224,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,2,255,255,255,252,0,2,255,255,255,252,0,2,255,255,255,252,0,0,85,127,229,84,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0,0,0,63,208,0,0, + // 0x0167 ŧ + 15,28,112,15,0,255,0,21,0,0,0,63,0,0,0,127,0,0,0,191,0,0,0,255,0,0,2,255,170,160,47,255,255,240,127,255,255,240,43,255,170,160,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,47,255,255,224,63,255,255,224,63,255,255,224,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,1,255,0,0,0,255,0,0,0,255,64,0,0,255,208,16,0,191,255,244,0,63,255,244,0,11,255,240,0,0,21,0, + // 0x0168 Ũ + 23,38,228,30,3,255,0,1,164,0,40,0,0,15,255,64,124,0,0,63,255,246,252,0,0,63,175,255,244,0,0,188,2,255,224,0,0,180,0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x0169 ũ + 19,31,155,25,3,255,0,25,0,2,128,0,255,224,11,192,3,255,254,111,128,7,250,255,255,0,15,192,47,253,0,11,64,2,160,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x016a Ū + 23,36,216,30,3,255,0,5,85,85,80,0,0,31,255,255,240,0,0,31,255,255,240,0,0,31,255,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x016b ū + 19,29,145,25,3,255,0,85,85,85,0,2,255,255,254,0,2,255,255,254,0,1,255,255,254,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x016c Ŭ + 23,38,228,30,3,255,0,62,0,0,244,0,0,47,0,2,240,0,0,31,234,175,224,0,0,11,255,255,192,0,0,2,255,255,0,0,0,0,42,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x016d ŭ + 19,31,155,25,3,255,3,224,0,31,0,3,240,0,63,0,1,254,170,254,0,0,255,255,252,0,0,63,255,224,0,0,6,170,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x016e Ů + 23,41,246,30,3,255,0,0,31,224,0,0,0,0,191,253,0,0,0,1,249,127,0,0,0,2,240,31,0,0,0,2,224,15,64,0,0,2,240,31,0,0,0,1,253,191,0,0,0,0,191,252,0,0,0,0,26,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x016f ů + 19,34,170,25,3,255,0,2,254,0,0,0,15,255,192,0,0,47,155,224,0,0,62,2,240,0,0,61,1,240,0,0,62,2,240,0,0,47,155,224,0,0,15,255,192,0,0,1,169,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x0170 Ű + 23,39,234,30,3,255,0,1,170,2,168,0,0,3,254,11,252,0,0,7,252,15,240,0,0,15,240,63,192,0,0,47,192,127,0,0,0,127,0,252,0,0,0,184,1,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x0171 ű + 19,32,160,25,3,255,0,26,160,42,128,0,63,208,255,128,0,191,129,255,0,0,254,3,252,0,3,248,11,240,0,11,224,31,192,0,15,128,46,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x0172 Ų + 23,39,234,30,3,246,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,252,0,0,11,255,255,240,0,0,0,21,91,208,0,0,0,0,31,128,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,127,0,0,0,0,0,127,0,0,0,0,0,63,238,0,0,0,0,47,254,0,0,0,0,7,253,0,0,0,0,0,0,0, + // 0x0173 ų + 19,32,160,25,3,246,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,3,252,0,5,80,11,224,0,0,0,31,128,0,0,0,63,0,0,0,0,189,0,0,0,0,253,0,0,0,0,254,0,0,0,0,255,236,0,0,0,127,252,0,0,0,31,252,0,0,0,0,0, + // 0x0174 Ŵ + 37,38,124,38,0,0,0,0,0,0,106,128,0,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,3,255,248,0,0,0,0,0,0,0,15,247,253,0,0,0,0,0,0,0,47,208,255,64,0,0,0,0,0,0,191,64,47,208,0,0,0,0,0,1,248,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,0,0,42,128,127,192,0,0,191,192,0,0,127,192,63,208,0,0,255,208,0,0,191,128,63,224,0,1,255,240,0,0,255,64,47,240,0,2,255,240,0,0,255,0,31,240,0,3,255,244,0,1,255,0,15,244,0,3,251,248,0,2,254,0,15,248,0,7,247,252,0,3,253,0,11,252,0,11,242,252,0,3,252,0,7,252,0,15,241,254,0,7,252,0,3,253,0,31,224,255,0,11,248,0,3,254,0,47,208,255,0,15,244,0,2,255,0,63,192,191,64,15,240,0,1,255,0,63,192,127,128,31,240,0,0,255,64,127,128,63,192,47,224,0,0,191,128,191,0,47,192,63,208,0,0,127,192,255,0,31,224,63,192,0,0,63,193,254,0,15,240,127,192,0,0,63,194,253,0,15,240,191,128,0,0,47,211,252,0,11,244,255,64,0,0,31,227,252,0,7,248,255,0,0,0,15,243,248,0,3,252,254,0,0,0,15,247,240,0,2,253,253,0,0,0,11,255,240,0,1,254,252,0,0,0,7,255,224,0,0,255,252,0,0,0,3,255,208,0,0,255,248,0,0,0,3,255,192,0,0,191,244,0,0,0,2,255,192,0,0,127,240,0,0,0,1,255,128,0,0,63,240,0,0, + // 0x0175 ŵ + 32,31,248,32,0,0,0,0,0,10,164,0,0,0,0,0,0,63,252,0,0,0,0,0,0,191,255,0,0,0,0,0,2,254,191,192,0,0,0,0,7,248,31,224,0,0,0,0,31,224,7,248,0,0,0,0,62,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,10,164,0,1,169,127,192,0,31,252,0,2,254,63,208,0,63,252,0,3,253,47,224,0,63,253,0,7,252,31,240,0,127,254,0,11,248,15,240,0,191,191,0,15,244,15,244,0,254,127,0,15,240,11,248,1,253,63,128,31,240,7,252,2,252,63,192,47,224,3,252,3,252,47,192,63,208,3,253,3,248,31,208,63,192,1,254,7,240,15,224,127,128,0,255,11,240,15,240,191,64,0,255,15,224,7,240,255,0,0,191,79,208,3,244,255,0,0,127,95,192,3,249,254,0,0,63,175,128,2,253,253,0,0,63,255,64,1,254,252,0,0,47,255,0,0,255,252,0,0,31,255,0,0,255,244,0,0,15,254,0,0,127,240,0,0,11,253,0,0,63,240,0, + // 0x0176 Ŷ + 23,38,228,23,0,0,0,0,42,160,0,0,0,0,127,248,0,0,0,1,255,253,0,0,0,3,253,255,64,0,0,15,240,63,208,0,0,63,192,11,240,0,0,126,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x0177 ŷ + 21,41,246,21,0,246,0,0,170,128,0,0,0,2,255,224,0,0,0,7,255,244,0,0,0,15,247,253,0,0,0,63,192,255,0,0,0,255,0,63,192,0,2,248,0,11,224,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x0178 Ÿ + 23,37,222,23,0,0,0,1,64,1,0,0,0,15,224,31,208,0,0,15,240,47,224,0,0,15,240,31,208,0,0,7,128,11,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x0179 Ź + 21,38,228,23,1,0,0,0,0,170,128,0,0,0,1,255,128,0,0,0,3,254,0,0,0,0,11,248,0,0,0,0,31,224,0,0,0,0,63,128,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x017a ź + 17,31,155,19,1,0,0,0,10,168,0,0,0,31,248,0,0,0,63,224,0,0,0,255,128,0,0,2,254,0,0,0,7,248,0,0,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,0,63,255,255,255,0,63,255,255,255,0,42,170,171,255,0,0,0,3,253,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,229,85,85,0,191,255,255,255,128,191,255,255,255,128,191,255,255,255,128, + // 0x017b Ż + 21,37,222,23,1,0,0,0,26,0,0,0,0,0,127,192,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x017c ż + 17,30,150,19,1,0,0,2,160,0,0,0,11,248,0,0,0,15,252,0,0,0,11,252,0,0,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,0,63,255,255,255,0,63,255,255,255,0,42,170,171,255,0,0,0,3,253,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,229,85,85,0,191,255,255,255,128,191,255,255,255,128,191,255,255,255,128, + // 0x017d Ž + 21,38,228,23,1,0,1,164,0,6,160,0,0,254,0,47,208,0,0,63,192,191,64,0,0,15,247,253,0,0,0,7,255,248,0,0,0,2,255,240,0,0,0,0,191,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,170,0,63,255,255,255,255,0,63,255,255,255,255,0,63,255,255,255,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,224,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,254,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,208,0,0,0,0,255,192,0,0,0,2,255,0,0,0,0,7,253,0,0,0,0,15,252,0,0,0,0,47,240,0,0,0,0,127,250,170,170,170,64,191,255,255,255,255,128,191,255,255,255,255,128,191,255,255,255,255,128, + // 0x017e ž + 17,31,155,19,1,0,26,64,0,105,0,15,224,2,252,0,7,252,15,244,0,1,255,127,208,0,0,127,255,64,0,0,47,254,0,0,0,11,248,0,0,0,0,0,0,0,0,0,0,0,0,42,170,170,170,0,63,255,255,255,0,63,255,255,255,0,42,170,171,255,0,0,0,3,253,0,0,0,11,252,0,0,0,31,240,0,0,0,63,208,0,0,0,255,128,0,0,2,255,0,0,0,7,252,0,0,0,15,244,0,0,0,47,240,0,0,0,127,192,0,0,0,255,64,0,0,3,254,0,0,0,11,252,0,0,0,31,240,0,0,0,63,229,85,85,0,191,255,255,255,128,191,255,255,255,128,191,255,255,255,128, + // 0x017f ſ + 12,31,93,14,3,0,0,26,148,2,255,255,15,255,254,63,255,252,63,224,4,127,192,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0,191,128,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Simplified_Chinese_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Simplified_Chinese_29.cpp new file mode 100644 index 000000000000..9d035f24540c --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Simplified_Chinese_29.cpp @@ -0,0 +1,778 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Simplified Chinese 40pt, capital 'A' height: 29px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +extern const uint8_t NotoSans_Medium_Simplified_Chinese_29[41075] = { + 162,29,28,32,26,255,38,246, // unifont_t + // 0x201c “ + 28,32,15,11,44,15,0,18,0,168,0,164,2,248,2,248,3,248,3,244,7,244,11,240,15,240,15,240,15,240,31,224,31,224,47,224,63,208,63,208,63,208,127,192,127,192,191,192,0,0,0,0, + // 0x201d ” + 29,32,15,11,44,15,0,18,6,164,6,164,11,252,15,248,15,248,15,244,15,240,15,240,31,240,31,240,31,208,47,208,47,192,63,192,63,128,63,128,63,64,127,0,127,0,191,0,0,0,0,0, + // 0x22bf ⊿ + 191,34,31,32,0,40,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,184,0,0,0,0,0,0,2,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,47,248,0,0,0,0,0,0,191,248,0,0,0,0,0,2,255,248,0,0,0,0,0,11,255,248,0,0,0,0,0,47,242,248,0,0,0,0,0,191,194,248,0,0,0,0,2,255,2,248,0,0,0,0,11,252,2,248,0,0,0,0,47,240,2,248,0,0,0,0,191,192,2,248,0,0,0,1,255,0,2,248,0,0,0,7,252,0,2,248,0,0,0,31,240,0,2,248,0,0,0,127,192,0,2,248,0,0,1,255,64,0,2,248,0,0,7,253,0,0,2,248,0,0,31,244,0,0,2,248,0,0,127,208,0,0,2,248,0,1,255,64,0,0,2,248,0,7,253,0,0,0,2,248,0,31,244,0,0,0,2,248,0,127,208,0,0,0,2,248,1,255,64,0,0,0,2,248,3,254,85,85,85,85,87,248,15,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,255,255,255,255,255,255,255,248, + // 0x4e00 一 + 0,78,37,4,40,40,2,13,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64, + // 0x4e09 三 + 9,78,34,31,23,40,3,255,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e0a 上 + 10,78,36,35,59,40,2,254,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,255,255,255,255,192,0,0,0,7,255,255,255,255,192,0,0,0,7,255,255,255,255,192,0,0,0,7,254,170,170,170,128,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,254, + // 0x4e0b 下 + 11,78,36,35,59,40,2,252,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,254,128,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,3,255,255,64,0,0,0,0,0,3,255,255,240,0,0,0,0,0,3,253,255,254,0,0,0,0,0,3,252,47,255,208,0,0,0,0,3,252,3,255,252,0,0,0,0,3,252,0,127,255,64,0,0,0,3,252,0,11,255,208,0,0,0,3,252,0,1,255,192,0,0,0,3,252,0,0,63,0,0,0,0,3,252,0,0,9,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,168,0,0,0,0, + // 0x4e0d 不 + 13,78,36,35,59,40,2,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,0,47,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,63,255,10,0,0,0,0,0,0,255,255,47,192,0,0,0,0,3,255,255,191,244,0,0,0,0,15,254,255,47,254,0,0,0,0,63,248,255,7,255,192,0,0,1,255,240,255,0,255,244,0,0,11,255,192,255,0,47,253,0,0,47,254,0,255,0,11,255,128,1,255,248,0,255,0,1,255,240,15,255,208,0,255,0,0,127,252,191,255,0,0,255,0,0,15,255,191,248,0,0,255,0,0,3,255,63,208,0,0,255,0,0,0,248,14,0,0,0,255,0,0,0,32,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0, + // 0x4e13 专 + 19,78,35,38,86,40,2,252,0,0,0,11,160,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,31,224,0,0,0,0,0,170,170,191,234,170,170,170,0,1,255,255,255,255,255,255,255,64,1,255,255,255,255,255,255,255,64,1,255,255,255,255,255,255,255,64,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,106,170,171,254,170,170,170,170,168,191,255,255,255,255,255,255,255,252,191,255,255,255,255,255,255,255,252,191,255,255,255,255,255,255,255,252,0,0,15,240,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,255,255,255,255,252,0,0,0,191,255,255,255,255,255,64,0,0,255,255,255,255,255,254,0,0,0,85,85,85,85,127,252,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,7,255,0,0,0,0,4,0,0,31,252,0,0,0,0,31,208,0,127,240,0,0,0,0,63,255,129,255,192,0,0,0,0,127,255,255,255,0,0,0,0,0,1,255,255,252,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,0,111,255,244,0,0,0,0,0,0,2,255,255,64,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,24,0,0, + // 0x4e1d 丝 + 29,78,36,36,68,40,2,254,0,0,20,0,0,0,8,0,0,0,0,63,64,0,0,31,128,0,0,0,191,64,0,0,63,192,0,0,0,255,0,0,0,127,128,0,0,1,254,0,0,0,191,0,0,0,3,252,0,0,0,254,0,0,0,7,248,0,0,2,252,0,0,0,15,240,1,0,3,248,0,0,0,31,224,11,208,11,240,1,224,0,63,192,15,240,31,224,3,252,0,127,64,63,224,63,192,11,248,0,255,0,127,192,127,64,31,240,2,252,0,255,0,254,0,63,208,7,244,2,254,3,252,0,191,128,47,255,255,252,15,255,255,255,0,31,255,255,244,15,255,255,252,0,15,255,255,224,11,255,255,244,0,10,149,127,192,7,149,47,224,0,0,0,255,0,0,0,63,192,0,0,2,253,0,0,0,255,0,0,0,11,248,0,0,3,253,0,0,0,31,224,0,0,11,244,0,0,0,127,192,0,0,47,208,0,0,0,255,0,0,0,191,128,0,0,7,255,255,255,195,255,255,255,248,15,255,255,255,207,255,255,255,248,11,255,255,255,199,255,255,255,248,7,255,169,80,3,255,170,84,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85,85, + // 0x4e2a 个 + 42,78,38,37,114,40,1,252,0,0,0,0,191,192,0,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,3,255,248,0,0,0,0,0,0,0,11,255,253,0,0,0,0,0,0,0,47,246,255,0,0,0,0,0,0,0,191,224,255,192,0,0,0,0,0,1,255,192,63,240,0,0,0,0,0,7,255,0,15,253,0,0,0,0,0,31,252,0,7,255,64,0,0,0,0,191,240,0,0,255,208,0,0,0,2,255,192,0,0,63,248,0,0,0,15,255,0,0,0,15,255,0,0,0,63,252,0,0,0,3,255,208,0,2,255,224,0,63,128,0,191,253,0,31,255,64,0,63,192,0,31,255,192,191,253,0,0,63,192,0,3,255,240,191,224,0,0,63,192,0,0,191,208,47,64,0,0,63,192,0,0,15,128,8,0,0,0,63,192,0,0,1,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,42,128,0,0,0,0, + // 0x4e2d 中 + 45,78,32,38,48,40,4,252,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,170,170,170,175,250,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,175,250,170,170,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,191,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0, + // 0x4e3a 为 + 58,78,34,38,86,40,2,252,0,0,0,10,160,0,0,0,0,0,5,0,15,240,0,0,0,0,0,127,64,15,240,0,0,0,0,0,127,192,15,240,0,0,0,0,0,47,240,15,240,0,0,0,0,0,15,244,15,240,0,0,0,0,0,7,252,15,240,0,0,0,0,0,2,253,15,224,0,0,0,0,0,0,208,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,42,170,170,191,250,170,170,175,240,0,0,0,47,192,0,0,15,240,0,0,0,63,192,0,0,15,240,0,0,0,63,192,0,0,15,240,0,0,0,127,128,0,0,15,240,0,0,0,191,64,128,0,15,240,0,0,0,255,11,224,0,15,224,0,0,1,255,15,244,0,15,224,0,0,2,254,3,252,0,31,224,0,0,3,252,2,255,0,31,224,0,0,11,252,0,255,128,31,208,0,0,15,244,0,63,192,31,208,0,0,47,240,0,47,224,47,208,0,0,127,208,0,15,208,47,208,0,0,255,192,0,5,0,47,192,0,3,255,0,0,0,0,63,192,0,11,253,0,0,0,0,63,192,0,47,248,0,0,0,0,63,192,0,191,240,0,0,0,0,127,192,2,255,192,0,0,0,0,191,128,15,255,0,0,0,0,1,255,64,127,252,0,0,0,191,255,255,0,47,224,0,0,0,63,255,254,0,11,128,0,0,0,63,255,248,0,0,0,0,0,0,26,250,64,0, + // 0x4e3b 主 + 59,78,36,37,77,40,2,253,0,0,0,2,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,0,47,248,0,0,0,0,0,0,0,11,224,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,10,170,170,170,255,170,170,170,160,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,170,170,170,255,170,170,170,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,106,170,170,170,170,170,170,170,170, + // 0x4e49 义 + 73,78,36,37,77,40,2,253,0,0,0,0,144,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,3,252,0,0,36,0,0,0,0,1,253,0,0,63,192,0,25,0,0,255,0,0,191,128,0,255,0,0,191,64,0,255,64,0,191,0,0,63,128,0,255,0,0,127,128,0,63,192,2,254,0,0,63,192,0,31,208,3,252,0,0,31,208,0,13,0,11,248,0,0,15,240,0,0,0,15,240,0,0,11,248,0,0,0,47,224,0,0,3,252,0,0,0,63,192,0,0,1,254,0,0,0,191,128,0,0,0,255,64,0,0,255,0,0,0,0,127,192,0,3,254,0,0,0,0,63,240,0,11,252,0,0,0,0,15,244,0,15,244,0,0,0,0,7,253,0,63,224,0,0,0,0,2,255,0,255,192,0,0,0,0,0,255,195,255,0,0,0,0,0,0,63,251,253,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,127,255,255,0,0,0,0,0,3,255,215,255,208,0,0,0,0,47,255,0,255,252,0,0,0,2,255,248,0,63,255,128,0,0,47,255,208,0,7,255,248,0,6,255,254,0,0,0,191,255,208,191,255,224,0,0,0,31,255,255,255,254,0,0,0,0,1,255,254,127,208,0,0,0,0,0,27,252,40,0,0,0,0,0,0,0,112, + // 0x4e4b 之 + 75,78,37,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,3,255,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,248,0,2,170,170,170,170,170,170,191,240,0,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,0,63,240,0,0,0,0,2,224,0,0,255,192,0,0,0,0,3,252,0,7,255,0,0,0,0,0,11,248,0,31,252,0,0,0,0,0,15,244,0,127,240,0,0,0,0,0,31,248,2,255,192,0,0,0,0,0,63,252,15,255,0,0,0,0,0,0,127,255,127,248,0,0,0,0,0,0,255,255,255,224,0,0,0,0,0,1,255,63,255,64,0,0,0,0,0,3,253,15,255,64,0,0,0,0,0,11,252,3,255,249,0,0,0,0,0,31,244,0,255,255,255,170,170,170,128,63,240,0,31,255,255,255,255,255,192,127,192,0,1,191,255,255,255,255,128,15,128,0,0,5,175,255,255,255,0,1,0,0,0,0,0,0,0,0,0, + // 0x4e86 了 + 134,78,32,35,24,40,4,252,170,170,170,170,170,170,170,208,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,253,255,255,255,255,255,255,255,248,0,0,0,0,0,0,255,224,0,0,0,0,0,3,255,128,0,0,0,0,0,15,254,0,0,0,0,0,0,63,248,0,0,0,0,0,1,255,224,0,0,0,0,0,11,255,128,0,0,0,0,0,47,253,0,0,0,0,0,15,255,240,0,0,0,0,0,15,255,128,0,0,0,0,0,15,253,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,15,255,255,240,0,0,0,0,7,255,255,224,0,0,0,0,3,255,255,128,0,0,0,0,2,170,164,0,0,0,0, + // 0x4e8c 二 + 140,78,36,28,252,40,2,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254, + // 0x4e8e 于 + 142,78,36,35,59,40,2,252,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,2,170,170,170,255,234,170,170,128,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,106,170,170,170,255,234,170,170,169,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,255,64,0,0,0,0,0,191,255,255,0,0,0,0,0,0,63,255,255,0,0,0,0,0,0,63,255,252,0,0,0,0,0,0,31,254,144,0,0,0,0, + // 0x4ea4 交 + 164,78,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,106,170,170,170,255,170,170,170,169,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,15,64,0,0,248,0,0,0,0,63,240,0,7,255,0,0,0,0,255,208,0,3,255,208,0,0,3,255,64,0,0,191,248,0,0,15,254,0,0,0,31,254,0,0,127,248,0,0,0,3,255,192,2,255,224,0,0,0,0,255,240,31,255,66,192,0,3,224,63,252,191,253,31,224,0,11,252,11,254,47,240,15,240,0,15,244,3,248,11,128,11,248,0,31,240,0,208,0,0,3,252,0,63,208,0,0,0,0,2,255,0,191,192,0,0,0,0,0,255,130,255,64,0,0,0,0,0,127,215,254,0,0,0,0,0,0,47,255,252,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,127,255,253,0,0,0,0,0,7,255,255,255,208,0,0,0,0,127,255,130,255,253,0,0,0,27,255,253,0,127,255,228,0,6,255,255,224,0,11,255,255,144,255,255,254,0,0,0,255,255,255,191,255,208,0,0,0,11,255,253,63,248,0,0,0,0,0,111,252,30,0,0,0,0,0,0,0,96, + // 0x4eae 亮 + 174,78,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,10,170,170,170,170,170,160,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,0,0,0,0,0,0,0,252,63,0,1,80,0,0,0,0,252,63,0,7,244,0,191,64,0,252,63,0,11,244,0,191,64,0,252,63,0,11,240,0,191,64,0,252,0,0,15,240,0,191,64,0,0,0,0,31,240,0,191,64,0,0,0,0,47,208,0,191,64,0,0,0,0,127,192,0,191,64,0,184,0,1,255,128,0,191,64,0,191,0,15,255,0,0,191,64,0,254,2,255,252,0,0,191,128,1,254,255,255,224,0,0,127,255,255,253,191,255,64,0,0,63,255,255,252,63,224,0,0,0,31,255,255,240,20,0,0,0,0,0,21,84,0, + // 0x4ece 从 + 206,78,38,36,104,40,1,252,0,0,63,192,0,1,254,0,0,0,0,0,63,192,0,1,254,0,0,0,0,0,63,192,0,1,254,0,0,0,0,0,63,192,0,2,253,0,0,0,0,0,63,192,0,2,253,0,0,0,0,0,63,192,0,2,253,0,0,0,0,0,127,192,0,2,253,0,0,0,0,0,127,128,0,2,253,0,0,0,0,0,127,128,0,3,253,0,0,0,0,0,191,64,0,3,254,0,0,0,0,0,191,64,0,3,255,0,0,0,0,0,255,64,0,3,255,0,0,0,0,0,255,0,0,7,255,0,0,0,0,0,255,0,0,7,255,64,0,0,0,0,255,0,0,11,255,64,0,0,0,1,255,192,0,15,255,192,0,0,0,1,255,240,0,15,255,192,0,0,0,2,255,248,0,31,255,208,0,0,0,3,255,253,0,47,255,224,0,0,0,3,255,255,64,63,223,240,0,0,0,7,252,255,192,63,203,240,0,0,0,11,248,127,224,191,135,248,0,0,0,15,244,47,240,255,67,252,0,0,0,15,240,15,250,255,3,253,0,0,0,47,240,7,243,254,1,255,0,0,0,63,208,2,199,252,0,255,64,0,0,127,192,0,15,248,0,191,192,0,0,255,128,0,63,240,0,63,224,0,1,255,64,0,191,224,0,47,248,0,3,255,0,1,255,192,0,15,253,0,11,253,0,7,255,64,0,7,255,64,47,252,0,31,254,0,0,2,255,208,127,240,0,63,248,0,0,0,255,128,31,208,0,11,224,0,0,0,63,0,3,192,0,1,192,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0, + // 0x4ee4 令 + 228,78,37,38,124,40,2,252,0,0,0,1,254,0,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,0,191,219,252,0,0,0,0,0,0,2,255,131,255,64,0,0,0,0,0,11,254,0,255,208,0,0,0,0,0,47,252,0,63,244,0,0,0,0,0,191,240,0,15,253,0,0,0,0,2,255,192,0,3,255,128,0,0,0,15,254,0,0,0,191,244,0,0,0,127,248,0,0,0,47,254,0,0,2,255,255,255,255,255,255,255,208,0,31,255,95,255,255,255,245,255,248,0,255,252,31,255,255,255,244,63,255,64,255,224,5,85,85,85,80,11,255,0,127,64,0,0,0,0,0,1,253,0,40,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,255,254,0,0,2,255,255,255,255,255,255,254,0,0,2,255,255,255,255,255,255,254,0,0,1,85,85,127,213,85,85,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,10,170,254,0,0,0,0,0,47,192,11,255,253,0,0,0,0,0,47,192,3,255,252,0,0,0,0,0,47,192,3,255,144,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0, + // 0x4ee5 以 + 229,78,38,35,94,40,1,252,0,47,192,0,0,0,0,47,144,0,0,63,192,0,0,0,0,63,208,0,0,63,192,0,0,0,0,63,192,0,0,63,192,2,208,0,0,63,192,0,0,63,192,31,240,0,0,63,192,0,0,47,192,11,252,0,0,127,192,0,0,47,192,3,254,0,0,127,128,0,0,47,192,1,255,64,0,191,64,0,0,47,192,0,191,192,0,255,64,0,0,47,208,0,63,224,0,255,0,0,0,47,208,0,31,240,0,255,0,0,0,47,208,0,15,248,1,254,0,0,0,31,208,0,7,248,2,253,0,0,0,31,208,0,3,128,3,252,0,0,0,31,208,0,0,0,7,252,0,0,0,31,208,0,0,0,11,248,0,0,0,31,208,0,0,0,15,240,0,0,0,31,224,0,0,0,47,240,0,0,0,31,224,0,0,0,63,208,0,0,0,31,224,0,0,0,127,192,0,0,0,15,224,7,192,0,255,128,0,0,0,15,224,191,192,2,255,192,0,0,0,15,251,255,208,7,255,240,0,0,0,15,255,255,128,15,255,252,0,0,0,111,255,248,0,63,251,255,0,0,7,255,255,128,0,255,210,255,128,0,127,255,244,0,3,255,128,255,224,0,63,254,64,0,31,255,0,63,248,0,63,224,0,0,191,252,0,15,253,0,29,0,0,7,255,224,0,3,255,0,0,0,0,191,255,128,0,1,255,192,0,0,7,255,252,0,0,0,191,224,0,0,2,255,224,0,0,0,63,128,0,0,0,190,0,0,0,0,14,0,0,0,0,32,0,0,0,0,0,0, + // 0x4ef6 件 + 246,78,37,38,124,40,1,252,0,0,20,0,0,1,80,0,0,0,0,0,63,128,0,3,248,0,0,0,0,0,127,64,144,3,248,0,0,0,0,0,255,0,254,3,248,0,0,0,0,1,254,1,253,3,248,0,0,0,0,2,253,2,252,3,248,0,0,0,0,7,252,3,252,3,248,0,0,0,0,15,244,3,248,3,248,0,0,0,0,31,240,7,254,171,254,170,168,0,0,63,208,11,255,255,255,255,253,0,0,191,192,15,255,255,255,255,253,0,0,255,192,31,255,255,255,255,253,0,3,255,192,63,192,3,248,0,0,0,11,255,192,127,128,3,248,0,0,0,31,255,192,255,0,3,248,0,0,0,63,255,193,254,0,3,248,0,0,0,191,239,192,188,0,3,248,0,0,0,63,111,192,24,0,3,248,0,0,0,30,47,192,0,0,3,248,0,0,0,12,47,192,0,0,3,248,0,0,0,0,47,192,170,170,171,254,170,170,128,0,47,192,255,255,255,255,255,255,192,0,47,192,255,255,255,255,255,255,192,0,47,192,255,255,255,255,255,255,192,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,31,128,0,0,3,244,0,0,0, + // 0x4efd 份 + 253,78,38,38,124,40,1,252,0,0,36,0,0,0,0,0,0,0,0,0,127,128,3,255,255,244,0,0,0,0,191,0,3,255,255,248,0,0,0,0,254,0,3,255,255,252,0,0,0,2,253,0,65,85,87,252,0,0,0,3,252,0,254,0,1,253,0,0,0,11,244,1,254,0,0,254,0,0,0,15,240,2,252,0,0,255,0,0,0,47,208,3,248,0,0,127,128,0,0,127,192,11,244,0,0,63,192,0,0,255,128,15,240,0,0,47,224,0,2,255,128,31,208,0,0,15,240,0,3,255,128,63,192,0,0,11,252,0,15,255,128,191,64,0,0,3,254,0,63,255,129,254,0,0,0,2,255,64,191,255,131,252,0,0,0,0,255,224,255,191,143,249,85,85,85,85,191,208,191,63,143,235,255,255,255,255,223,64,60,63,131,203,255,255,255,255,198,0,20,63,128,11,255,255,255,255,192,0,0,63,128,0,2,252,0,63,192,0,0,63,128,0,3,252,0,63,192,0,0,63,128,0,3,248,0,63,192,0,0,63,128,0,3,244,0,63,128,0,0,63,128,0,7,244,0,63,128,0,0,63,128,0,11,240,0,63,128,0,0,63,128,0,15,240,0,63,128,0,0,63,128,0,15,224,0,63,128,0,0,63,128,0,47,192,0,63,128,0,0,63,128,0,63,192,0,127,64,0,0,63,128,0,191,64,0,127,64,0,0,63,128,1,255,0,0,191,64,0,0,63,128,7,252,0,0,191,0,0,0,63,128,47,244,0,0,255,0,0,0,63,128,255,224,3,255,255,0,0,0,63,129,255,128,1,255,253,0,0,0,63,128,125,0,0,255,248,0,0,0,47,128,32,0,0,106,64,0,0, + // 0x4f11 休 + 17,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,15,224,0,11,240,0,0,0,0,0,47,224,0,11,240,0,0,0,0,0,63,192,0,11,240,0,0,0,0,0,127,192,0,11,240,0,0,0,0,0,255,64,0,11,240,0,0,0,0,1,255,0,0,11,240,0,0,0,0,3,253,0,0,11,240,0,0,0,0,11,252,0,0,11,240,0,0,0,0,31,244,0,0,11,240,0,0,0,0,63,241,170,170,175,250,170,170,128,0,191,241,255,255,255,255,255,255,192,1,255,241,255,255,255,255,255,255,192,7,255,241,255,255,255,255,255,255,192,31,255,240,0,0,191,255,0,0,0,127,255,240,0,0,255,255,128,0,0,255,239,240,0,2,255,255,192,0,0,127,143,240,0,3,255,255,208,0,0,63,15,240,0,7,255,251,240,0,0,28,15,240,0,15,255,247,244,0,0,0,15,240,0,47,219,243,252,0,0,0,15,240,0,63,203,241,254,0,0,0,15,240,0,191,75,240,255,0,0,0,15,240,1,255,11,240,127,192,0,0,15,240,3,253,11,240,63,224,0,0,15,240,15,248,11,240,15,244,0,0,15,240,47,240,11,240,11,252,0,0,15,240,127,208,11,240,3,255,0,0,15,242,255,128,11,240,1,255,192,0,15,251,255,0,11,240,0,191,240,0,15,251,252,0,11,240,0,47,208,0,15,242,240,0,11,240,0,15,64,0,15,240,128,0,11,240,0,1,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,10,160,0,0,11,240,0,0,0, + // 0x4f20 传 + 32,79,37,38,124,40,1,252,0,0,20,0,0,21,0,0,0,0,0,0,63,128,0,63,192,0,0,0,0,0,191,64,0,63,192,0,0,0,0,0,255,0,0,127,128,0,0,0,0,1,253,21,85,191,149,85,84,0,0,3,252,63,255,255,255,255,252,0,0,7,248,63,255,255,255,255,252,0,0,15,240,63,255,255,255,255,252,0,0,47,224,0,2,252,0,0,0,0,0,63,192,0,3,252,0,0,0,0,0,255,192,0,3,252,0,0,0,0,1,255,192,0,7,248,0,0,0,0,3,255,193,85,91,249,85,85,85,64,15,255,195,255,255,255,255,255,255,192,47,255,195,255,255,255,255,255,255,192,191,255,195,255,255,255,255,255,255,192,255,191,192,0,47,192,0,0,0,0,127,63,192,0,63,192,0,0,0,0,60,63,192,0,127,128,0,0,0,0,16,63,192,0,191,64,0,0,0,0,0,63,192,0,255,255,255,255,224,0,0,63,192,1,255,255,255,255,252,0,0,63,192,2,255,255,255,255,244,0,0,63,192,1,85,85,85,191,224,0,0,63,192,0,0,0,0,255,128,0,0,63,192,0,0,0,3,255,0,0,0,63,192,0,0,0,11,252,0,0,0,63,192,0,1,128,47,240,0,0,0,63,192,0,11,244,191,192,0,0,0,63,192,0,31,255,255,64,0,0,0,63,192,0,3,255,253,0,0,0,0,63,192,0,0,127,252,0,0,0,0,63,192,0,0,15,255,0,0,0,0,63,192,0,0,3,255,192,0,0,0,63,192,0,0,0,191,240,0,0,0,63,192,0,0,0,31,240,0,0,0,63,192,0,0,0,7,208,0,0,0,47,128,0,0,0,1,64,0,0, + // 0x4f4d 位 + 77,79,38,38,124,40,1,252,0,0,4,0,0,1,80,0,0,0,0,0,47,192,0,11,240,0,0,0,0,0,63,192,0,11,240,0,0,0,0,0,191,64,0,11,240,0,0,0,0,0,255,0,0,11,240,0,0,0,0,2,254,0,0,11,240,0,0,0,0,3,252,0,0,11,240,0,0,0,0,11,244,0,0,11,240,0,0,0,0,31,240,191,255,255,255,255,255,128,0,63,208,191,255,255,255,255,255,128,0,191,208,191,255,255,255,255,255,128,1,255,208,106,170,170,170,170,170,64,3,255,208,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,63,255,208,0,188,0,0,47,208,0,191,239,208,1,253,0,0,63,192,0,255,207,208,0,253,0,0,63,192,0,127,15,208,0,254,0,0,63,128,0,60,15,208,0,191,0,0,127,64,0,20,15,208,0,127,0,0,191,64,0,0,15,208,0,63,64,0,255,0,0,0,15,208,0,63,128,0,255,0,0,0,15,208,0,63,192,1,254,0,0,0,15,208,0,47,192,2,253,0,0,0,15,208,0,47,192,3,252,0,0,0,15,208,0,31,208,3,248,0,0,0,15,208,0,31,208,7,244,0,0,0,15,208,0,15,224,11,240,0,0,0,15,208,0,15,224,15,240,0,0,0,15,208,0,15,240,15,224,0,0,0,15,208,0,15,144,31,208,0,0,0,15,208,0,0,0,47,192,0,0,0,15,208,170,170,170,191,234,170,144,0,15,209,255,255,255,255,255,255,224,0,15,209,255,255,255,255,255,255,224,0,15,209,255,255,255,255,255,255,224,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,38,38,124,40,1,252,0,0,36,0,0,0,0,0,0,0,0,0,127,64,0,0,0,0,64,0,0,0,191,0,0,0,0,111,240,0,0,0,255,0,0,1,175,255,248,0,0,2,253,25,26,255,255,255,248,0,0,3,252,31,255,255,255,249,0,0,0,11,244,31,255,255,255,0,0,0,0,15,240,31,250,80,191,0,0,0,0,47,208,31,192,0,191,0,0,0,0,127,192,31,192,0,191,0,0,0,0,255,128,31,192,0,127,64,0,0,2,255,128,31,192,0,127,64,0,0,7,255,128,31,192,0,127,64,0,0,15,255,128,31,192,0,127,64,0,0,63,255,128,31,255,255,255,255,255,208,255,255,128,31,255,255,255,255,255,208,255,127,128,31,255,255,255,255,255,208,126,63,128,31,229,85,127,213,85,64,60,63,128,31,192,0,47,192,0,0,16,63,128,31,192,0,47,192,0,0,0,63,128,31,192,0,31,192,0,0,0,63,128,31,192,0,31,208,0,0,0,63,128,31,192,0,15,224,0,0,0,63,128,31,192,0,15,240,0,0,0,63,128,31,192,0,11,240,0,0,0,63,128,31,192,0,71,244,0,0,0,63,128,31,209,175,227,248,0,0,0,63,128,47,255,255,227,252,2,0,0,63,131,255,255,255,226,252,3,224,0,63,130,255,255,250,65,254,3,240,0,63,130,255,228,0,0,255,3,240,0,63,128,144,0,0,0,127,135,224,0,63,128,0,0,0,0,63,255,224,0,63,128,21,85,85,85,31,255,192,0,63,128,255,255,255,255,135,255,128,0,63,128,255,255,255,255,129,190,0,0,63,128,255,255,255,255,128,0,0,0,63,128,0,0,0,0,0,0,0, + // 0x4f53 体 + 83,79,38,38,124,40,1,252,0,0,80,0,0,10,144,0,0,0,0,0,254,0,0,15,224,0,0,0,0,0,254,0,0,15,224,0,0,0,0,2,253,0,0,15,224,0,0,0,0,3,252,0,0,15,224,0,0,0,0,7,248,0,0,15,224,0,0,0,0,15,240,0,0,15,224,0,0,0,0,31,224,0,0,15,224,0,0,0,0,63,211,255,255,255,255,255,255,192,0,127,195,255,255,255,255,255,255,192,0,255,131,255,255,255,255,255,255,192,2,255,129,170,170,255,255,170,170,128,3,255,128,0,1,255,255,0,0,0,15,255,128,0,3,255,255,64,0,0,47,255,128,0,3,255,255,192,0,0,127,255,128,0,11,239,239,208,0,0,191,191,128,0,15,223,235,224,0,0,63,63,128,0,47,207,227,240,0,0,29,63,128,0,63,79,227,252,0,0,4,63,128,0,191,15,225,253,0,0,0,63,128,0,253,15,224,255,0,0,0,63,128,3,252,15,224,127,64,0,0,63,128,7,244,15,224,63,192,0,0,63,128,15,240,15,224,31,240,0,0,63,128,63,208,15,224,15,248,0,0,63,128,191,128,15,224,3,253,0,0,63,130,255,0,15,224,2,255,0,0,63,135,253,255,255,255,254,255,192,0,63,159,248,255,255,255,253,63,224,0,63,135,224,255,255,255,253,31,128,0,63,130,192,85,95,229,84,6,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,42,128,0,0,10,144,0,0,0, + // 0x4f59 余 + 89,79,38,39,134,40,1,251,0,0,0,0,106,128,0,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,0,3,255,248,0,0,0,0,0,0,0,15,255,253,0,0,0,0,0,0,0,63,246,255,64,0,0,0,0,0,0,255,208,255,224,0,0,0,0,0,3,255,128,63,248,0,0,0,0,0,31,254,0,15,255,0,0,0,0,0,191,248,0,2,255,208,0,0,0,3,255,208,0,0,191,248,0,0,0,31,255,64,0,0,31,255,64,0,1,255,252,0,0,0,3,255,244,0,11,255,245,85,85,85,85,255,255,64,127,254,191,255,255,255,255,223,255,208,47,244,127,255,255,255,255,194,255,128,15,128,127,255,255,255,255,192,47,0,0,0,0,0,63,192,0,0,1,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,1,170,170,170,191,234,170,170,168,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,36,0,63,192,7,64,0,0,0,0,255,64,63,192,47,224,0,0,0,2,255,0,63,192,47,248,0,0,0,11,252,0,63,192,11,255,0,0,0,47,244,0,63,192,2,255,192,0,0,191,208,0,63,192,0,127,240,0,3,255,64,0,63,192,0,31,252,0,47,253,0,0,63,192,0,7,255,0,63,244,2,170,191,192,0,1,255,64,11,192,2,255,255,128,0,0,188,0,1,0,0,255,255,0,0,0,16,0,0,0,0,255,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,47,192,1,248,0,0,0,0,0,0,63,192,3,252,0,0,0,0,0,0,127,128,3,248,0,0,0,0,0,0,255,64,11,244,0,0,0,0,0,0,255,0,15,240,0,0,0,0,0,3,253,0,31,224,0,0,0,0,0,7,252,0,63,255,255,255,255,208,0,15,244,0,127,255,255,255,255,208,0,31,240,0,255,255,255,255,255,208,0,63,224,2,254,175,250,170,170,128,0,191,224,3,252,15,224,0,0,0,1,255,224,15,244,15,224,0,0,0,3,255,224,31,240,15,224,0,0,0,15,255,224,127,208,15,224,0,0,0,63,255,224,255,128,15,224,0,0,0,127,255,226,255,0,15,255,255,255,64,63,207,224,125,0,15,255,255,255,64,31,15,224,20,0,15,255,255,255,64,12,15,224,0,0,15,245,85,85,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,245,85,85,64,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,10,144,0,0,10,144,0,0,0, + // 0x4f7f 使 + 127,79,38,38,124,40,1,252,0,0,25,0,0,2,160,0,0,0,0,0,63,192,0,7,244,0,0,0,0,0,63,192,0,7,244,0,0,0,0,0,191,64,0,7,244,0,0,0,0,0,255,85,85,91,249,85,85,64,0,2,253,255,255,255,255,255,255,208,0,3,252,255,255,255,255,255,255,208,0,11,244,255,255,255,255,255,255,208,0,15,240,0,0,7,244,0,0,0,0,63,208,0,0,7,244,0,0,0,0,191,208,0,0,7,244,0,0,0,0,255,208,0,0,7,244,0,0,0,3,255,208,63,255,255,255,255,255,0,11,255,208,63,255,255,255,255,255,0,47,255,208,63,255,255,255,255,255,0,191,255,208,63,128,7,244,0,127,0,255,207,208,63,128,7,244,0,127,0,63,15,208,63,128,7,244,0,127,0,44,15,208,63,128,7,244,0,127,0,0,15,208,63,128,7,244,0,127,0,0,15,208,63,255,255,255,255,255,0,0,15,208,63,255,255,255,255,255,0,0,15,208,63,255,255,255,255,255,0,0,15,208,0,0,11,240,0,0,0,0,15,208,31,128,15,240,0,0,0,0,15,208,31,208,15,224,0,0,0,0,15,208,11,244,31,208,0,0,0,0,15,208,3,253,63,192,0,0,0,0,15,208,0,255,191,128,0,0,0,0,15,208,0,63,255,0,0,0,0,0,15,208,0,15,255,0,0,0,0,0,15,208,0,31,255,224,0,0,0,0,15,208,0,191,255,255,128,0,0,0,15,208,11,255,219,255,254,64,0,0,15,210,255,255,1,255,255,255,144,0,15,211,255,244,0,11,255,255,192,0,15,208,255,64,0,0,111,255,64,0,15,208,100,0,0,0,0,90,0, + // 0x4f9b 供 + 155,79,38,38,124,40,1,252,0,0,20,0,21,64,0,84,0,0,0,0,63,128,47,192,0,253,0,0,0,0,191,64,47,192,0,253,0,0,0,0,255,0,47,192,0,253,0,0,0,1,254,0,47,192,0,253,0,0,0,3,252,0,47,192,0,253,0,0,0,7,248,0,47,192,0,253,0,0,0,15,240,0,47,192,0,253,0,0,0,47,224,42,191,234,170,255,170,128,0,63,192,127,255,255,255,255,255,192,0,255,192,127,255,255,255,255,255,192,1,255,192,127,255,255,255,255,255,192,3,255,192,0,47,192,0,253,0,0,15,255,192,0,47,192,0,253,0,0,63,255,192,0,47,192,0,253,0,0,191,255,192,0,47,192,0,253,0,0,191,175,192,0,47,192,0,253,0,0,63,47,192,0,47,192,0,253,0,0,44,47,192,0,47,192,0,253,0,0,4,47,192,0,47,192,0,253,0,0,0,47,192,0,47,192,0,253,0,0,0,47,193,170,191,234,170,255,170,128,0,47,193,255,255,255,255,255,255,208,0,47,193,255,255,255,255,255,255,208,0,47,193,255,255,255,255,255,255,208,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,14,64,0,36,0,0,0,47,192,0,47,224,1,253,0,0,0,47,192,0,127,192,1,255,64,0,0,47,192,0,255,64,0,127,192,0,0,47,192,3,254,0,0,47,240,0,0,47,192,15,252,0,0,11,248,0,0,47,192,63,240,0,0,3,254,0,0,47,192,255,192,0,0,1,255,0,0,47,194,255,64,0,0,0,191,192,0,47,192,125,0,0,0,0,62,0,0,47,128,4,0,0,0,0,20,0, + // 0x4fb5 侵 + 181,79,38,38,124,40,1,252,0,0,16,0,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,191,79,255,255,255,255,244,0,0,0,255,15,255,255,255,255,244,0,0,1,253,15,255,255,255,255,244,0,0,3,252,0,0,0,0,3,244,0,0,11,248,0,0,0,0,3,244,0,0,15,240,2,170,170,170,175,244,0,0,47,224,3,255,255,255,255,244,0,0,127,192,3,255,255,255,255,244,0,0,255,192,0,0,0,0,3,244,0,2,255,128,0,0,0,0,3,244,0,7,255,128,31,255,255,255,255,244,0,31,255,128,31,255,255,255,255,244,0,63,255,128,31,255,255,255,255,244,0,255,255,128,0,0,0,0,0,0,0,255,127,128,0,0,0,0,0,0,0,61,63,129,255,255,255,255,255,255,192,40,63,129,255,255,255,255,255,255,192,0,63,129,255,255,255,255,255,255,192,0,63,129,252,0,0,0,0,47,192,0,63,129,252,0,0,0,0,47,192,0,63,129,252,0,0,0,0,47,192,0,63,129,255,255,255,255,255,255,192,0,63,128,171,255,255,255,255,250,64,0,63,128,7,255,255,255,255,208,0,0,63,128,0,111,0,0,127,192,0,0,63,128,0,127,192,1,255,0,0,0,63,128,0,47,240,7,253,0,0,0,63,128,0,11,253,47,244,0,0,0,63,128,0,2,255,255,208,0,0,0,63,128,0,0,191,255,64,0,0,0,63,128,0,1,255,255,144,0,0,0,63,128,0,127,255,255,254,64,0,0,63,129,191,255,254,111,255,255,144,0,63,129,255,255,208,2,255,255,192,0,63,128,255,248,0,0,27,255,64,0,42,128,121,0,0,0,0,26,0, + // 0x4fdd 保 + 221,79,38,38,124,40,1,252,0,0,20,0,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,63,203,255,255,255,255,252,0,0,0,191,75,255,255,255,255,252,0,0,0,255,11,255,255,255,255,252,0,0,2,253,11,245,85,85,87,252,0,0,3,252,11,240,0,0,2,252,0,0,11,244,11,240,0,0,2,252,0,0,15,240,11,240,0,0,2,252,0,0,63,208,11,240,0,0,2,252,0,0,191,208,11,240,0,0,2,252,0,1,255,208,11,240,0,0,2,252,0,3,255,208,11,255,255,255,255,252,0,15,255,208,11,255,255,255,255,252,0,47,255,208,11,255,255,255,255,252,0,191,255,208,1,85,91,249,85,84,0,191,207,208,0,0,7,244,0,0,0,63,15,208,0,0,7,244,0,0,0,45,15,208,0,0,7,244,0,0,0,4,15,208,0,0,7,244,0,0,0,0,15,209,255,255,255,255,255,255,192,0,15,209,255,255,255,255,255,255,192,0,15,209,255,255,255,255,255,255,192,0,15,208,85,85,255,255,149,85,64,0,15,208,0,0,255,255,192,0,0,0,15,208,0,3,255,255,240,0,0,0,15,208,0,11,255,251,248,0,0,0,15,208,0,47,231,246,253,0,0,0,15,208,0,191,199,244,255,64,0,0,15,208,2,255,7,244,127,208,0,0,15,208,15,253,7,244,31,244,0,0,15,208,127,244,7,244,11,254,0,0,15,210,255,208,7,244,2,255,208,0,15,215,255,64,7,244,0,191,240,0,15,209,252,0,7,244,0,47,192,0,15,208,160,0,7,244,0,7,0,0,15,208,0,0,7,244,0,0,0,0,10,144,0,0,7,244,0,0,0, + // 0x4fe1 信 + 225,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,63,193,255,255,255,255,240,0,0,0,191,65,255,255,255,255,240,0,0,0,255,1,255,255,255,255,240,0,0,2,254,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,0,31,240,255,255,255,255,255,255,208,0,63,224,255,255,255,255,255,255,208,0,191,208,255,255,255,255,255,255,208,1,255,208,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,15,255,208,3,255,255,255,255,244,0,63,255,208,3,255,255,255,255,244,0,255,223,208,3,255,255,255,255,244,0,191,79,208,0,0,0,0,0,0,0,62,15,208,0,0,0,0,0,0,0,44,15,208,0,0,0,0,0,0,0,0,15,208,3,255,255,255,255,244,0,0,15,208,3,255,255,255,255,244,0,0,15,208,3,255,255,255,255,244,0,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,240,0,0,3,252,0,0,10,128,7,240,0,0,2,168,0, + // 0x503c 值 + 60,80,37,38,124,40,1,252,0,0,36,0,0,7,164,0,0,0,0,0,127,64,0,7,244,0,0,0,0,0,191,0,0,11,240,0,0,0,0,0,254,0,0,11,240,0,0,0,0,2,253,191,255,255,255,255,255,0,0,3,252,191,255,255,255,255,255,0,0,7,244,191,255,255,255,255,255,0,0,15,240,0,0,31,208,0,0,0,0,31,224,0,0,31,192,0,0,0,0,63,192,0,0,47,192,0,0,0,0,191,128,0,0,63,128,0,0,0,1,255,128,11,255,255,255,255,240,0,3,255,128,11,255,255,255,255,240,0,11,255,128,11,255,255,255,255,240,0,47,255,128,11,224,0,0,7,240,0,127,255,128,11,224,0,0,7,240,0,127,191,128,11,250,170,170,175,240,0,47,63,128,11,255,255,255,255,240,0,28,63,128,11,255,255,255,255,240,0,4,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,250,170,170,175,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,250,170,170,175,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,15,224,0,0,11,240,0,0,63,135,255,255,255,255,255,255,192,0,63,135,255,255,255,255,255,255,192,0,63,135,255,255,255,255,255,255,192,0,63,128,0,0,0,0,0,0,0, + // 0x503e 倾 + 62,80,37,38,124,40,1,252,0,1,0,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,11,240,0,3,255,255,255,255,192,0,15,224,0,3,255,255,255,255,192,0,31,194,244,3,255,255,255,255,192,0,63,194,244,0,0,15,240,0,0,0,63,66,244,0,0,15,224,0,0,0,191,2,244,0,0,31,192,0,0,0,255,2,244,0,0,47,192,0,0,2,255,2,244,0,127,255,255,253,0,3,255,2,244,0,127,255,255,253,0,11,255,2,255,252,127,255,255,253,0,31,255,2,255,252,126,0,0,253,0,63,255,2,255,252,126,1,64,253,0,191,255,2,248,0,126,11,208,253,0,255,191,2,244,0,126,11,208,253,0,190,127,2,244,0,126,11,208,253,0,60,127,2,244,0,126,11,208,253,0,48,127,2,244,0,126,11,208,253,0,0,127,2,244,0,126,11,208,253,0,0,127,2,244,0,126,11,208,253,0,0,127,2,244,0,126,11,208,253,0,0,127,2,244,0,126,11,208,253,0,0,127,2,244,44,126,11,192,253,0,0,127,2,250,252,126,15,192,253,0,0,127,3,255,252,126,15,192,253,0,0,127,7,255,244,126,31,192,253,0,0,127,15,255,64,106,47,128,169,0,0,127,7,244,0,0,63,68,0,0,0,127,3,128,0,0,191,62,0,0,0,127,0,0,0,1,253,191,192,0,0,127,0,0,0,7,252,47,244,0,0,127,0,0,0,47,240,11,254,0,0,127,0,0,1,255,192,1,255,128,0,127,0,0,15,255,0,0,63,192,0,127,0,0,11,248,0,0,15,64,0,127,0,0,2,128,0,0,1,0, + // 0x504f 偏 + 79,80,38,39,134,40,1,251,0,0,144,0,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,2,252,255,255,255,255,255,255,208,0,3,248,255,255,255,255,255,255,208,0,7,244,255,255,255,255,255,255,208,0,15,240,0,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,47,255,255,255,255,254,0,0,255,64,47,255,255,255,255,254,0,1,255,64,47,255,255,255,255,254,0,3,255,64,47,192,0,0,0,254,0,7,255,64,47,192,0,0,0,254,0,15,255,64,47,192,0,0,0,254,0,63,255,64,47,255,255,255,255,254,0,191,255,64,47,255,255,255,255,254,0,255,127,64,47,255,255,255,255,254,0,190,63,64,47,128,0,0,0,0,0,60,63,64,47,128,0,0,0,0,0,36,63,64,63,128,0,0,0,0,0,0,63,64,63,255,255,255,255,255,64,0,63,64,63,255,255,255,255,255,64,0,63,64,63,255,255,255,255,255,64,0,63,64,63,248,31,66,240,63,64,0,63,64,127,248,31,66,240,63,64,0,63,64,191,248,31,66,240,63,64,0,63,64,255,248,31,66,240,63,64,0,63,64,255,255,255,255,255,255,64,0,63,65,253,255,255,255,255,255,64,0,63,67,253,255,255,255,255,255,64,0,63,67,249,248,31,66,240,63,64,0,63,75,245,248,31,66,240,63,64,0,63,79,241,248,31,66,240,63,64,0,63,127,209,248,31,66,240,63,64,0,63,95,193,248,31,66,240,63,64,0,63,71,1,248,31,66,247,255,64,0,63,64,1,248,31,66,243,255,0,0,63,64,1,248,31,66,242,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x505c 停 + 92,80,38,38,124,40,1,252,0,0,36,0,0,6,160,0,0,0,0,0,127,64,0,11,240,0,0,0,0,0,191,0,0,11,240,0,0,0,0,0,255,0,0,11,240,0,0,0,0,2,254,255,255,255,255,255,255,192,0,3,252,255,255,255,255,255,255,192,0,11,244,255,255,255,255,255,255,192,0,15,240,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,127,192,7,255,255,255,255,244,0,0,255,128,7,255,255,255,255,244,0,2,255,128,7,250,170,170,171,244,0,7,255,128,7,240,0,0,7,244,0,15,255,128,7,240,0,0,7,244,0,63,255,128,7,240,0,0,7,244,0,191,255,128,7,255,255,255,255,244,0,255,191,128,7,255,255,255,255,244,0,127,63,128,2,170,170,170,170,160,0,60,63,128,0,0,0,0,0,0,0,20,63,131,255,255,255,255,255,255,224,0,63,131,255,255,255,255,255,255,224,0,63,131,255,255,255,255,255,255,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,255,255,255,255,207,224,0,63,131,244,255,255,255,255,207,224,0,63,128,0,255,255,255,255,192,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,21,95,240,0,0,0,0,63,128,0,63,255,240,0,0,0,0,63,128,0,47,255,224,0,0,0,0,47,128,0,31,254,64,0,0,0, + // 0x50a8 储 + 168,80,38,38,124,40,1,252,0,2,64,0,0,0,168,0,0,0,0,3,240,0,0,1,252,0,4,0,0,7,240,0,0,1,252,0,47,128,0,15,224,224,0,1,252,0,63,128,0,15,215,248,0,1,252,0,191,0,0,31,194,253,3,255,255,253,254,0,0,63,128,255,67,255,255,255,252,0,0,63,64,63,195,255,255,255,248,0,0,191,0,15,208,1,252,11,240,0,0,254,0,7,0,1,252,31,208,0,2,254,0,0,0,1,252,63,192,0,3,254,0,0,0,1,252,255,0,0,11,254,0,0,15,255,255,255,255,208,31,254,63,255,15,255,255,255,255,208,63,254,63,255,15,255,255,255,255,208,191,254,63,255,5,85,191,213,85,64,191,190,42,191,0,1,255,64,0,0,125,190,0,127,0,7,254,0,0,0,60,190,0,127,0,31,252,0,0,0,16,190,0,127,0,191,240,0,0,0,0,190,0,127,7,255,255,255,254,0,0,190,0,127,47,255,255,255,254,0,0,190,0,127,63,255,255,255,254,0,0,190,0,127,31,255,128,0,190,0,0,190,0,127,11,111,128,0,190,0,0,190,0,127,0,47,128,0,190,0,0,190,0,127,0,47,234,170,254,0,0,190,0,127,0,47,255,255,254,0,0,190,0,127,5,47,255,255,254,0,0,190,0,127,46,47,128,0,190,0,0,190,0,127,255,47,128,0,190,0,0,190,0,191,255,47,128,0,190,0,0,190,0,255,248,47,128,0,190,0,0,190,2,255,192,47,255,255,254,0,0,190,1,253,0,47,255,255,254,0,0,190,0,176,0,47,255,255,254,0,0,190,0,0,0,47,128,0,190,0,0,189,0,0,0,31,128,0,105,0, + // 0x50cf 像 + 207,80,38,38,124,40,1,252,0,0,64,0,21,0,0,0,0,0,0,1,252,0,63,192,0,0,0,0,0,2,252,0,191,64,0,0,0,0,0,3,248,0,255,255,255,128,0,0,0,7,244,3,255,255,255,240,0,0,0,11,240,11,255,255,255,208,0,0,0,15,224,47,224,0,127,128,0,0,0,47,192,191,192,0,255,0,0,0,0,63,194,255,170,171,255,170,170,0,0,191,79,255,255,255,255,255,255,0,0,255,79,255,255,255,255,255,255,0,2,255,66,255,0,15,224,0,191,0,7,255,64,191,0,15,224,0,191,0,15,255,64,191,0,15,224,0,191,0,47,255,64,191,0,15,224,0,191,0,127,255,64,191,255,255,255,255,255,0,255,191,64,191,255,255,255,255,255,0,191,63,64,106,171,255,191,170,169,0,61,63,64,0,31,252,47,64,0,0,56,63,64,1,255,240,31,192,30,0,0,63,64,47,255,252,15,192,127,128,0,63,71,255,245,254,15,209,255,128,0,63,67,255,64,191,75,251,253,0,0,63,65,228,3,255,199,255,240,0,0,63,64,0,47,255,227,255,128,0,0,63,64,2,255,135,242,253,0,0,0,63,64,111,252,3,244,254,0,0,0,63,67,255,208,31,248,191,0,0,0,63,66,253,0,127,252,63,192,0,0,63,64,208,2,255,252,47,224,0,0,63,64,0,31,249,252,15,244,0,0,63,64,1,255,209,252,7,253,0,0,63,64,31,255,1,252,2,255,64,0,63,66,255,244,3,252,0,255,208,0,63,79,255,128,11,244,0,63,128,0,63,67,248,31,255,240,0,11,0,0,63,65,128,15,255,192,0,0,0,0,63,64,0,15,254,0,0,0,0, + // 0x5145 充 + 69,81,37,38,124,40,2,252,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,255,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,253,0,42,170,171,255,170,170,170,170,168,0,0,0,3,253,0,0,208,0,0,0,0,0,7,252,0,11,244,0,0,0,0,0,11,244,0,11,254,0,0,0,0,0,15,240,0,2,255,128,0,0,0,0,47,208,0,0,191,224,0,0,0,0,63,128,0,0,31,248,0,0,0,0,127,170,175,255,255,254,0,0,15,255,255,255,255,255,255,255,128,0,15,255,255,255,255,255,255,255,224,0,15,255,255,255,255,234,165,111,244,0,15,234,85,0,0,0,0,15,248,0,0,0,1,84,0,42,128,3,208,0,0,0,7,248,0,63,192,0,0,0,0,0,7,248,0,63,192,0,0,0,0,0,7,244,0,63,192,0,0,0,0,0,11,244,0,63,192,0,0,0,0,0,15,240,0,63,192,0,0,0,0,0,15,240,0,63,192,0,0,0,0,0,31,224,0,63,192,0,32,0,0,0,63,208,0,63,192,0,62,0,0,0,191,192,0,63,192,0,63,64,0,1,255,64,0,63,192,0,63,64,0,7,255,0,0,63,192,0,127,0,0,63,252,0,0,63,192,0,127,0,6,255,240,0,0,47,192,0,255,0,191,255,192,0,0,47,255,255,254,0,191,253,0,0,0,31,255,255,252,0,63,224,0,0,0,11,255,255,248,0,24,0,0,0,0,0,106,170,64,0, + // 0x5148 先 + 72,81,36,38,86,40,2,252,0,0,0,0,191,0,0,0,0,0,2,228,0,255,0,0,0,0,0,3,252,0,255,0,0,0,0,0,3,248,0,255,0,0,0,0,0,7,244,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,15,255,255,255,255,255,255,128,0,47,255,255,255,255,255,255,128,0,63,255,255,255,255,255,255,128,0,127,170,170,255,170,170,170,64,0,255,0,0,255,0,0,0,0,2,254,0,0,255,0,0,0,0,3,252,0,0,255,0,0,0,0,15,248,0,0,255,0,0,0,0,2,240,0,0,255,0,0,0,0,0,80,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,106,170,170,170,255,170,170,170,169,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,11,244,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,15,224,0,63,192,0,0,0,0,31,224,0,63,192,0,0,0,0,47,208,0,63,192,0,0,0,0,63,192,0,63,192,0,0,0,0,191,128,0,63,192,0,116,0,1,255,0,0,63,192,0,127,0,3,254,0,0,63,192,0,191,0,31,252,0,0,63,192,0,191,0,191,244,0,0,63,192,0,254,7,255,208,0,0,63,234,170,253,191,255,64,0,0,47,255,255,252,127,252,0,0,0,15,255,255,248,47,208,0,0,0,2,255,255,224,13,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,38,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,7,0,0,63,128,0,15,64,0,0,127,128,0,63,128,0,31,240,0,0,63,192,0,63,128,0,63,208,0,0,47,224,0,63,128,0,127,192,0,0,15,240,0,63,128,0,191,64,0,0,11,248,0,63,128,0,255,0,0,0,3,252,0,63,128,2,253,0,0,0,2,254,0,63,128,3,252,0,0,0,0,255,0,63,128,11,244,0,0,0,0,255,64,63,128,31,224,0,0,0,0,125,0,63,128,7,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,26,170,170,170,191,234,170,170,170,64,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192,0,0,2,253,0,15,240,0,0,0,0,0,2,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,7,248,0,15,240,0,0,0,0,0,11,244,0,15,240,0,0,0,0,0,15,240,0,15,240,0,0,0,0,0,31,240,0,15,240,0,4,0,0,0,63,208,0,15,240,0,14,64,0,0,191,192,0,15,240,0,15,208,0,2,255,64,0,15,240,0,31,192,0,11,254,0,0,15,240,0,31,192,0,127,252,0,0,15,240,0,47,192,7,255,240,0,0,15,240,0,63,192,127,255,128,0,0,11,255,255,255,128,47,253,0,0,0,7,255,255,255,0,15,208,0,0,0,2,255,255,253,0,5,0,0,0,0,0,21,85,80,0, + // 0x5165 入 + 101,81,37,36,104,40,2,252,0,2,170,170,170,64,0,0,0,0,0,3,255,255,255,64,0,0,0,0,0,3,255,255,255,64,0,0,0,0,0,3,255,255,255,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,1,63,192,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,0,31,251,244,0,0,0,0,0,0,0,47,231,252,0,0,0,0,0,0,0,63,211,252,0,0,0,0,0,0,0,127,194,254,0,0,0,0,0,0,0,255,128,255,0,0,0,0,0,0,1,255,0,255,128,0,0,0,0,0,3,255,0,127,192,0,0,0,0,0,7,253,0,63,224,0,0,0,0,0,15,252,0,31,244,0,0,0,0,0,47,244,0,15,252,0,0,0,0,0,127,224,0,7,254,0,0,0,0,0,255,192,0,2,255,128,0,0,0,3,255,64,0,0,255,208,0,0,0,15,254,0,0,0,127,244,0,0,0,47,252,0,0,0,47,253,0,0,0,255,240,0,0,0,11,255,128,0,7,255,192,0,0,0,2,255,240,0,47,255,64,0,0,0,0,191,253,0,255,252,0,0,0,0,0,47,255,64,127,224,0,0,0,0,0,7,253,0,31,64,0,0,0,0,0,0,248,0,5,0,0,0,0,0,0,0,16,0, + // 0x5168 全 + 104,81,37,37,114,40,1,253,0,0,0,0,191,192,0,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,0,11,255,253,0,0,0,0,0,0,0,31,246,255,0,0,0,0,0,0,0,127,224,255,192,0,0,0,0,0,1,255,192,63,240,0,0,0,0,0,7,255,0,15,253,0,0,0,0,0,31,252,0,3,255,64,0,0,0,0,191,240,0,0,255,224,0,0,0,2,255,192,0,0,63,248,0,0,0,15,255,0,0,0,15,255,64,0,0,127,252,0,0,0,3,255,224,0,2,255,224,0,0,0,0,191,253,0,31,255,64,0,0,0,0,31,255,192,127,255,255,255,255,255,255,255,255,192,47,226,255,255,255,255,255,252,127,64,15,2,255,255,255,255,255,252,10,0,0,0,85,85,127,213,85,80,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,47,255,255,255,255,255,255,64,0,0,47,255,255,255,255,255,255,64,0,0,47,255,255,255,255,255,255,64,0,0,0,0,0,127,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,5,85,85,85,127,213,85,85,85,0,15,255,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,255,0, + // 0x5171 共 + 113,81,36,38,86,40,2,252,0,0,21,64,0,1,84,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,10,170,191,234,170,171,254,170,164,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,15,128,0,7,224,0,0,0,0,63,244,0,31,252,0,0,0,0,255,224,0,11,255,64,0,0,3,255,128,0,1,255,224,0,0,15,254,0,0,0,63,248,0,0,127,248,0,0,0,15,255,0,2,255,208,0,0,0,2,255,208,31,255,64,0,0,0,0,191,244,63,252,0,0,0,0,0,47,252,15,208,0,0,0,0,0,7,240,2,0,0,0,0,0,0,1,64, + // 0x5173 关 + 115,81,28,38,10,40,6,252,0,0,0,0,0,96,0,0,45,0,0,0,191,64,0,255,0,0,0,255,0,0,191,128,0,2,254,0,0,63,208,0,3,252,0,0,31,240,0,11,248,0,0,11,244,0,15,240,0,0,3,248,0,47,208,0,0,3,208,0,7,128,0,6,170,170,170,170,170,144,15,255,255,255,255,255,240,15,255,255,255,255,255,240,15,255,255,255,255,255,240,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,0,0,0,254,0,0,0,63,255,255,255,255,255,252,63,255,255,255,255,255,252,63,255,255,255,255,255,252,42,170,171,255,234,170,168,0,0,3,255,192,0,0,0,0,3,255,208,0,0,0,0,7,255,240,0,0,0,0,15,255,244,0,0,0,0,31,243,252,0,0,0,0,63,209,255,0,0,0,0,255,192,255,128,0,0,3,255,0,127,224,0,0,31,253,0,47,252,0,0,191,244,0,11,255,64,7,255,208,0,2,255,244,191,255,0,0,0,191,255,255,248,0,0,0,31,253,63,128,0,0,0,2,248,24,0,0,0,0,0,32, + // 0x5177 具 + 119,81,36,36,68,40,2,252,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,11,208,0,3,208,0,0,0,0,127,248,0,31,254,0,0,0,11,255,248,0,47,255,244,0,1,191,255,128,0,2,255,255,128,47,255,248,0,0,0,31,255,248,127,255,128,0,0,0,0,191,254,31,244,0,0,0,0,0,11,244,10,0,0,0,0,0,0,1,128, + // 0x5197 冗 + 151,81,37,35,94,40,2,252,47,255,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,255,252,0,47,234,170,170,170,170,170,171,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,21,64,63,255,255,255,248,1,84,0,0,0,63,255,255,255,248,0,0,0,0,0,63,255,255,255,248,0,0,0,0,0,63,229,85,91,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,127,128,0,3,248,0,0,0,0,0,191,64,0,3,248,0,16,0,0,0,255,0,0,3,248,0,61,0,0,2,254,0,0,3,248,0,63,64,0,7,253,0,0,3,248,0,127,64,0,31,248,0,0,3,248,0,127,0,0,127,240,0,0,3,248,0,127,0,3,255,208,0,0,3,252,0,191,0,47,255,64,0,0,3,255,170,255,0,255,253,0,0,0,3,255,255,253,0,127,224,0,0,0,1,255,255,252,0,47,64,0,0,0,0,127,255,224,0,4,0,0,0,0,0,0,0,0,0, + // 0x51b7 冷 + 183,81,37,38,124,40,2,252,0,0,0,0,0,170,0,0,0,0,0,0,0,0,2,255,64,0,0,0,4,0,0,0,7,255,192,0,0,0,31,0,0,0,15,255,240,0,0,0,127,208,0,0,47,255,248,0,0,0,191,248,0,0,191,195,254,0,0,0,31,254,0,1,255,65,255,128,0,0,7,255,128,7,255,0,191,208,0,0,0,255,208,31,252,0,47,248,0,0,0,63,128,127,240,0,11,254,0,0,0,14,1,255,208,0,3,255,192,0,0,0,7,255,64,0,0,191,244,0,0,0,47,254,85,85,85,111,254,0,0,1,255,243,255,255,255,203,255,128,0,2,255,195,255,255,255,193,255,0,0,0,254,3,255,255,255,192,61,0,0,0,116,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,66,255,255,255,255,255,208,0,0,15,210,255,255,255,255,255,208,0,0,47,226,255,255,255,255,255,208,0,0,63,193,85,95,245,85,111,208,0,0,191,128,0,15,240,0,15,208,0,1,255,0,0,15,240,0,15,208,0,3,254,0,0,15,240,0,15,208,0,11,252,0,0,15,240,0,15,208,0,15,244,0,0,15,240,0,15,208,0,63,240,0,0,15,240,0,15,208,0,127,208,0,0,15,240,42,175,208,0,255,128,0,0,15,240,63,255,208,0,255,0,0,0,15,240,31,255,192,0,45,0,0,0,15,240,15,253,0,0,4,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,10,160,0,0,0,0, + // 0x51c6 准 + 198,81,37,38,124,40,2,252,0,0,0,0,36,0,5,0,0,0,0,0,0,0,191,64,11,240,0,0,0,0,0,0,255,0,15,240,0,0,15,64,0,1,254,0,15,224,0,0,63,224,0,3,252,0,47,192,0,0,63,252,0,7,248,0,63,192,0,0,11,255,64,15,244,0,63,64,0,0,1,255,208,31,240,0,191,0,0,0,0,63,240,63,255,255,255,255,253,0,0,15,192,127,255,255,255,255,253,0,0,3,0,255,255,255,255,255,253,0,0,0,2,255,213,86,253,85,84,0,0,0,7,255,192,1,252,0,0,0,0,0,15,255,192,1,252,0,0,0,0,0,63,255,192,1,252,0,0,0,0,0,255,239,192,1,252,0,0,0,0,0,127,159,255,255,255,255,244,0,0,0,30,31,255,255,255,255,244,0,0,0,4,31,255,255,255,255,244,0,0,0,0,31,213,86,253,85,80,0,0,0,0,31,192,1,252,0,0,0,0,11,0,31,192,1,252,0,0,0,0,31,208,31,192,1,252,0,0,0,0,63,208,31,192,1,252,0,0,0,0,127,192,31,255,255,255,255,244,0,0,255,0,31,255,255,255,255,244,0,2,254,0,31,255,255,255,255,244,0,7,252,0,31,213,86,253,85,80,0,15,248,0,31,192,1,252,0,0,0,47,240,0,31,192,1,252,0,0,0,127,208,0,31,192,1,252,0,0,0,255,128,0,31,192,1,252,0,0,0,255,0,0,31,229,86,254,85,85,0,61,0,0,31,255,255,255,255,255,64,8,0,0,31,255,255,255,255,255,64,0,0,0,31,255,255,255,255,255,64,0,0,0,31,192,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0, + // 0x51fa 出 + 250,81,32,38,48,40,4,252,0,0,0,10,144,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,250,170,175,250,170,175,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,106,0,0,15,224,0,0,169,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,170,170,175,250,170,170,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,0,0,0,0,0,0,254,191,0,0,0,0,0,0,254,106,0,0,0,0,0,0,169, + // 0x51fb 击 + 251,81,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,1,170,170,170,255,170,170,170,128,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,192,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,106,170,170,170,255,170,170,170,169,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,85,0,0,255,0,0,106,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,170,170,170,170,170,170,255,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0, + // 0x5206 分 + 6,82,38,37,114,40,1,252,0,0,1,228,0,0,180,0,0,0,0,0,3,254,0,7,252,0,0,0,0,0,7,252,0,3,254,0,0,0,0,0,15,248,0,1,255,0,0,0,0,0,31,240,0,0,255,192,0,0,0,0,63,224,0,0,63,224,0,0,0,0,255,192,0,0,47,244,0,0,0,1,255,64,0,0,15,252,0,0,0,3,255,0,0,0,3,255,0,0,0,15,252,0,0,0,1,255,192,0,0,63,244,0,0,0,0,255,224,0,0,191,224,0,0,0,0,63,248,0,2,255,192,0,0,0,0,15,254,0,15,255,0,0,0,0,0,7,255,192,63,255,170,170,170,170,170,171,255,224,191,251,255,255,255,255,255,253,191,192,47,195,255,255,255,255,255,253,47,0,11,3,255,255,255,255,255,253,4,0,0,0,0,15,240,0,2,253,0,0,0,0,0,15,240,0,2,253,0,0,0,0,0,31,240,0,2,253,0,0,0,0,0,31,224,0,2,252,0,0,0,0,0,47,208,0,2,252,0,0,0,0,0,63,192,0,3,252,0,0,0,0,0,127,192,0,3,252,0,0,0,0,0,255,128,0,3,252,0,0,0,0,1,255,0,0,3,252,0,0,0,0,3,254,0,0,3,252,0,0,0,0,15,252,0,0,3,248,0,0,0,0,47,248,0,0,7,248,0,0,0,0,255,224,0,0,11,244,0,0,0,7,255,192,0,0,15,244,0,0,0,127,255,0,0,0,47,240,0,0,7,255,248,0,7,255,255,224,0,0,3,255,208,0,3,255,255,208,0,0,1,254,0,0,2,255,255,64,0,0,0,224,0,0,0,170,148,0,0,0, + // 0x5207 切 + 7,82,37,38,124,40,1,251,0,42,64,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,2,170,170,170,170,170,64,0,63,128,3,255,255,255,255,255,128,0,63,128,3,255,255,255,255,255,128,0,63,128,3,255,255,255,255,255,128,0,63,128,0,0,31,208,0,127,64,0,63,128,0,0,31,192,0,127,64,0,63,128,1,128,47,192,0,127,64,0,63,133,191,192,47,192,0,127,64,0,63,255,255,208,47,192,0,127,64,27,255,255,255,224,47,192,0,127,64,191,255,255,249,0,47,192,0,127,64,191,255,228,0,0,47,192,0,127,64,127,191,128,0,0,63,192,0,191,64,16,63,128,0,0,63,192,0,191,0,0,63,128,0,0,63,128,0,191,0,0,63,128,0,0,63,128,0,191,0,0,63,128,0,0,63,64,0,191,0,0,63,128,0,0,127,64,0,191,0,0,63,128,24,0,191,0,0,255,0,0,63,128,31,128,255,0,0,255,0,0,63,128,31,192,254,0,0,255,0,0,63,128,47,193,253,0,0,255,0,0,63,128,47,131,252,0,0,255,0,0,63,234,191,67,252,0,0,255,0,0,63,255,255,11,244,0,0,254,0,0,31,255,254,15,240,0,1,254,0,0,7,255,248,47,224,0,1,254,0,0,0,0,0,127,192,0,2,253,0,0,0,0,1,255,128,0,3,253,0,0,0,0,3,255,0,0,3,252,0,0,0,0,31,252,0,0,11,252,0,0,0,0,191,244,0,255,255,248,0,0,0,1,255,208,0,127,255,240,0,0,0,0,127,64,0,63,255,208,0,0,0,0,28,0,0,42,169,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x521b 创 + 27,82,36,38,86,40,1,252,0,0,2,64,0,0,0,0,0,0,0,7,248,0,0,0,0,254,0,0,15,240,0,0,0,0,254,0,0,31,244,0,0,0,0,254,0,0,63,253,0,0,0,0,254,0,0,191,255,0,0,254,0,254,0,0,255,127,192,0,254,0,254,0,3,253,47,240,0,254,0,254,0,11,248,11,252,0,254,0,254,0,47,240,3,254,0,254,0,254,0,127,208,0,255,128,254,0,254,1,255,128,0,127,208,254,0,254,11,254,0,0,31,240,254,0,254,47,248,0,0,11,248,254,0,254,191,240,0,0,3,240,254,0,254,63,255,255,255,255,192,254,0,254,14,127,255,255,254,0,254,0,254,0,127,255,255,254,0,254,0,254,0,127,64,1,253,0,254,0,254,0,127,64,0,253,0,254,0,254,0,127,64,1,253,0,254,0,254,0,127,64,1,252,0,254,0,254,0,127,64,1,252,0,254,0,254,0,127,64,2,252,0,254,0,254,0,127,64,3,252,0,254,0,254,0,127,71,255,248,0,254,0,254,0,127,67,255,240,0,254,0,254,0,127,66,255,128,0,20,0,254,0,127,64,0,2,0,0,0,254,0,127,64,0,3,224,0,0,254,0,127,64,0,3,240,0,0,254,0,127,64,0,3,240,0,0,254,0,127,64,0,7,240,0,0,254,0,63,128,0,15,240,0,1,254,0,63,255,255,255,208,63,255,253,0,47,255,255,255,192,47,255,252,0,7,255,255,255,0,31,255,244,0,0,0,0,0,0,10,165,0, + // 0x521d 初 + 29,82,37,39,134,40,1,251,0,3,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,170,170,170,170,170,64,0,7,244,1,255,255,255,255,255,128,0,7,244,1,255,255,255,255,255,128,0,7,244,1,255,255,255,255,255,128,21,91,249,80,0,15,224,0,127,64,63,255,255,253,0,15,224,0,127,64,63,255,255,253,0,15,224,0,127,64,63,255,255,252,0,31,224,0,127,64,0,0,3,248,0,31,208,0,127,64,0,0,11,240,0,31,208,0,127,64,0,0,31,224,0,31,208,0,127,64,0,0,63,192,0,31,208,0,127,64,0,0,191,70,0,47,192,0,191,64,0,1,255,15,128,47,192,0,191,64,0,3,252,47,192,47,192,0,191,0,0,11,252,127,0,63,192,0,191,0,0,47,255,252,0,63,192,0,191,0,0,191,255,244,0,63,128,0,191,0,1,255,255,240,0,127,64,0,191,0,11,255,251,252,0,191,0,0,255,0,47,255,245,255,0,255,0,0,255,0,191,231,244,191,64,255,0,0,255,0,63,199,244,62,2,253,0,0,255,0,46,7,244,12,3,252,0,0,255,0,8,7,244,0,7,252,0,0,255,0,0,7,244,0,15,244,0,0,254,0,0,7,244,0,31,240,0,1,254,0,0,7,244,0,63,208,0,1,253,0,0,7,244,0,191,192,0,2,253,0,0,7,244,2,255,64,0,3,252,0,0,7,244,11,254,0,0,11,252,0,0,7,244,47,252,0,191,255,248,0,0,7,244,63,240,0,63,255,240,0,0,7,244,15,192,0,63,255,208,0,0,3,244,2,0,0,42,169,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x522b 别 + 43,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,254,7,255,255,255,248,0,0,0,254,7,255,255,255,248,0,0,0,254,7,255,255,255,248,0,0,0,254,7,245,85,87,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,240,0,3,248,1,252,0,254,7,255,255,255,248,1,252,0,254,7,255,255,255,248,1,252,0,254,7,255,255,255,248,1,252,0,254,1,85,85,85,80,1,252,0,254,0,0,169,0,0,1,252,0,254,0,0,253,0,0,1,252,0,254,0,0,253,0,0,1,252,0,254,5,85,254,85,84,1,252,0,254,47,255,255,255,254,1,252,0,254,47,255,255,255,253,1,252,0,254,47,255,255,255,253,1,252,0,254,0,2,252,0,253,1,252,0,254,0,3,252,0,253,1,252,0,254,0,3,248,1,253,1,252,0,254,0,3,244,1,253,1,252,0,254,0,7,240,1,252,1,168,0,254,0,15,240,1,252,0,0,0,254,0,31,208,2,252,0,0,0,254,0,63,192,2,252,0,0,0,254,0,191,128,3,252,0,0,0,254,1,255,0,3,248,0,0,0,254,7,254,0,11,248,0,0,1,254,47,248,15,255,244,0,31,255,253,127,224,11,255,240,0,15,255,252,31,128,7,255,192,0,11,255,244,9,0,1,84,0,0,6,170,64, + // 0x5230 到 + 48,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,254,63,255,255,255,255,208,0,0,254,63,255,255,255,255,208,0,0,254,63,255,255,255,255,211,244,0,254,21,87,253,85,85,67,244,0,254,0,7,248,0,0,3,244,0,254,0,11,244,7,192,3,244,0,254,0,15,240,31,224,3,244,0,254,0,31,208,11,244,3,244,0,254,0,47,192,3,252,3,244,0,254,0,63,128,0,255,3,244,0,254,42,255,255,255,255,67,244,0,254,63,255,255,255,255,195,244,0,254,63,255,255,255,255,227,244,0,254,63,254,170,85,11,243,244,0,254,0,0,21,64,3,131,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,11,255,255,255,255,3,244,0,254,11,255,255,255,255,3,244,0,254,11,255,255,255,255,3,244,0,254,1,85,111,213,85,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,2,164,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,5,144,0,0,254,0,0,47,239,255,208,0,0,254,5,175,255,255,255,208,0,0,254,127,255,255,255,255,208,0,0,254,63,255,255,254,148,0,31,255,254,63,255,165,0,0,0,15,255,253,41,0,0,0,0,0,11,255,248,0,0,0,0,0,0,7,170,64, + // 0x5236 制 + 54,82,36,38,86,40,1,252,0,0,6,144,0,0,0,0,0,0,164,11,240,0,0,0,0,191,0,254,11,240,0,0,0,0,191,1,253,11,240,0,0,0,0,191,2,252,11,240,0,0,47,192,191,3,252,11,240,0,0,47,192,191,3,255,255,255,255,208,47,192,191,7,255,255,255,255,208,47,192,191,15,255,255,255,255,208,47,192,191,31,229,95,245,85,64,47,192,191,63,192,11,240,0,0,47,192,191,127,128,11,240,0,0,47,192,191,7,0,11,240,0,0,47,192,191,63,255,255,255,255,252,47,192,191,63,255,255,255,255,252,47,192,191,63,255,255,255,255,252,47,192,191,21,85,95,245,85,84,47,192,191,0,0,11,240,0,0,47,192,191,0,0,11,240,0,0,47,192,191,0,0,11,240,0,0,47,192,191,7,255,255,255,255,240,47,192,191,7,255,255,255,255,240,47,192,191,7,255,255,255,255,240,47,192,191,7,245,95,245,91,240,47,192,191,7,240,11,240,11,240,47,192,191,7,240,11,240,11,240,47,192,191,7,240,11,240,11,240,21,64,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,243,255,224,0,0,191,7,240,11,241,255,208,0,0,191,7,224,11,240,254,64,7,255,255,0,0,11,240,0,0,3,255,254,0,0,11,240,0,0,2,255,252,0,0,11,240,0,0,1,250,144, + // 0x5237 刷 + 55,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,190,1,85,85,85,85,80,0,0,191,3,255,255,255,255,240,0,0,191,3,255,255,255,255,240,21,0,191,3,255,255,255,255,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,255,255,255,255,240,191,0,191,3,255,255,255,255,240,191,0,191,3,255,255,255,255,240,191,0,191,3,249,85,191,85,80,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,251,255,255,255,240,191,0,191,3,251,255,255,255,240,191,0,191,3,251,255,255,255,240,191,0,191,3,251,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,7,243,224,127,3,240,191,0,191,7,243,224,127,3,240,191,0,191,11,227,224,127,3,240,21,0,191,15,227,224,127,3,240,0,0,191,15,211,224,127,3,240,0,0,191,15,195,224,127,191,240,0,0,191,47,195,224,127,63,224,0,0,191,63,131,224,127,63,128,0,0,191,63,65,64,127,0,0,0,0,255,191,0,0,127,0,0,7,255,255,62,0,0,127,0,0,3,255,254,8,0,0,127,0,0,2,255,252,0,0,0,126,0,0,1,234,80, + // 0x5272 割 + 114,82,35,38,86,40,2,252,0,0,42,0,0,0,0,0,0,0,0,127,64,0,0,0,2,252,0,0,127,64,0,0,0,2,252,0,0,127,64,0,0,0,2,252,255,255,255,255,255,192,0,2,252,255,255,255,255,255,195,248,2,252,255,255,255,255,255,195,248,2,252,253,0,0,0,31,195,248,2,252,253,0,63,0,31,195,248,2,252,253,0,63,0,31,195,248,2,252,111,170,255,234,190,131,248,2,252,15,255,255,255,252,3,248,2,252,15,255,255,255,252,3,248,2,252,0,0,63,0,0,3,248,2,252,0,0,63,0,0,3,248,2,252,6,170,191,170,160,3,248,2,252,7,255,255,255,244,3,248,2,252,7,255,255,255,244,3,248,2,252,0,0,63,0,0,3,248,2,252,0,0,63,0,0,3,248,2,252,191,255,255,255,255,131,248,2,252,255,255,255,255,255,131,248,2,252,255,255,255,255,255,131,248,2,252,0,0,0,0,0,3,248,2,252,0,0,0,0,0,3,248,2,252,7,255,255,255,248,3,248,2,252,11,255,255,255,252,3,248,2,252,11,255,255,255,252,0,0,2,252,11,240,0,2,252,0,0,2,252,11,240,0,2,252,0,0,2,252,11,240,0,2,252,0,0,2,252,11,240,0,2,252,0,0,2,252,11,240,0,2,252,0,0,2,252,11,255,255,255,252,0,0,3,252,11,255,255,255,252,0,63,255,252,11,255,255,255,252,0,31,255,248,11,240,0,2,252,0,15,255,240,7,224,0,0,84,0,15,250,64, + // 0x529b 力 + 155,82,34,39,95,40,2,251,0,0,0,10,160,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,0,0,0,31,224,0,0,15,240,0,0,0,31,224,0,0,15,240,0,0,0,47,208,0,0,15,240,0,0,0,47,208,0,0,15,240,0,0,0,63,192,0,0,15,240,0,0,0,63,192,0,0,15,224,0,0,0,127,128,0,0,15,224,0,0,0,255,64,0,0,15,224,0,0,0,255,0,0,0,31,224,0,0,1,255,0,0,0,31,208,0,0,3,253,0,0,0,31,208,0,0,7,252,0,0,0,47,208,0,0,15,248,0,0,0,47,192,0,0,47,240,0,0,0,63,192,0,0,63,224,0,0,0,63,192,0,0,255,192,0,0,0,63,192,0,3,255,64,0,0,0,127,128,0,11,254,0,0,0,0,127,128,0,63,252,0,0,0,0,191,64,0,255,240,0,0,0,0,255,0,7,255,192,0,0,0,3,255,0,47,255,0,0,0,255,255,254,0,127,252,0,0,0,255,255,252,0,31,208,0,0,0,127,255,240,0,11,0,0,0,0,42,170,64,0,0,0,0,0,0,0,0,0,0, + // 0x529f 功 + 159,82,37,37,114,40,1,252,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,0,11,240,0,0,0,63,255,255,254,0,11,240,0,0,0,63,255,255,254,0,11,240,0,0,0,63,255,255,254,0,11,240,0,0,0,42,171,250,169,0,11,240,0,0,0,0,7,244,0,106,175,250,170,170,0,0,7,244,0,255,255,255,255,255,64,0,7,244,0,255,255,255,255,255,64,0,7,244,0,255,255,255,255,255,64,0,7,244,0,0,15,240,0,127,64,0,7,244,0,0,15,224,0,127,64,0,7,244,0,0,15,224,0,127,64,0,7,244,0,0,31,208,0,127,0,0,7,244,0,0,31,208,0,127,0,0,7,244,0,0,31,208,0,191,0,0,7,244,0,0,47,192,0,191,0,0,7,244,0,0,63,192,0,191,0,0,7,244,0,0,63,192,0,191,0,0,7,244,0,0,63,128,0,191,0,0,7,244,111,64,191,64,0,255,0,0,7,255,255,128,255,0,0,255,0,0,31,255,255,128,255,0,0,255,0,27,255,255,254,66,253,0,0,254,0,127,255,255,144,3,252,0,0,254,0,63,255,144,0,11,248,0,0,254,0,63,228,0,0,31,240,0,1,253,0,20,0,0,0,63,224,0,1,253,0,0,0,0,0,255,192,0,2,252,0,0,0,0,3,255,0,0,3,252,0,0,0,0,31,253,0,0,11,252,0,0,0,0,255,244,0,255,255,244,0,0,0,0,255,208,0,191,255,240,0,0,0,0,63,64,0,127,255,192,0,0,0,0,24,0,0,22,148,0,0, + // 0x52a0 加 + 160,82,36,37,77,40,1,252,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,31,255,255,253,0,11,240,0,0,31,255,255,253,0,11,240,0,0,31,255,255,253,47,255,255,255,252,31,234,170,253,47,255,255,255,252,31,192,0,253,47,255,255,255,252,31,192,0,253,26,175,250,171,248,31,192,0,253,0,11,240,3,248,31,192,0,253,0,15,240,3,248,31,192,0,253,0,15,240,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,208,3,248,31,192,0,253,0,31,208,3,248,31,192,0,253,0,31,192,3,248,31,192,0,253,0,47,192,3,244,31,192,0,253,0,63,192,3,244,31,192,0,253,0,63,128,3,244,31,192,0,253,0,63,128,7,244,31,192,0,253,0,127,64,7,244,31,192,0,253,0,191,0,7,244,31,192,0,253,0,255,0,7,240,31,192,0,253,1,254,0,11,240,31,192,0,253,3,252,0,11,240,31,234,170,253,7,248,0,15,240,31,255,255,253,15,244,0,15,240,31,255,255,253,47,240,106,191,224,31,255,255,253,127,208,63,255,208,31,192,0,253,127,128,63,255,128,31,192,0,253,15,0,47,253,0,31,192,0,169,4,0,0,0,0,0,0,0,0, + // 0x52a8 动 + 168,82,36,37,77,40,2,252,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,5,85,85,85,64,2,252,0,0,31,255,255,255,192,2,252,0,0,31,255,255,255,192,2,252,0,0,31,255,255,255,192,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,6,171,254,170,169,0,0,0,0,15,255,255,255,254,0,0,0,0,15,255,255,255,254,0,0,0,0,15,255,255,255,254,255,255,255,255,224,3,252,0,254,255,255,255,255,224,3,248,0,254,255,255,255,255,224,3,248,0,254,85,127,229,85,80,3,248,0,254,0,63,192,0,0,3,244,0,253,0,63,128,0,0,7,244,0,253,0,127,64,4,0,7,244,0,253,0,191,0,252,0,11,240,1,253,0,255,0,254,0,11,240,1,253,0,254,0,127,0,15,240,1,253,1,252,0,63,64,15,224,1,252,2,252,0,47,128,31,208,1,252,3,248,0,31,192,47,192,2,252,7,240,0,111,208,63,192,2,252,15,240,111,255,224,63,128,2,252,31,255,255,255,240,191,64,3,252,63,255,255,251,244,255,0,3,252,63,255,249,3,249,254,0,3,248,63,249,0,2,147,252,0,3,248,46,64,0,0,11,252,0,7,244,0,0,0,0,31,244,0,15,240,0,0,0,0,127,224,255,255,240,0,0,0,0,191,192,191,255,208,0,0,0,0,31,0,127,255,128,0,0,0,0,9,0,26,164,0, + // 0x5316 化 + 22,83,38,37,114,40,1,252,0,0,3,144,11,240,0,0,0,0,0,0,11,248,11,240,0,0,0,0,0,0,15,240,11,240,0,0,0,0,0,0,47,224,11,240,0,0,0,0,0,0,63,192,11,240,0,0,0,0,0,0,255,128,11,240,0,0,0,0,0,1,255,0,11,240,0,0,0,0,0,3,254,0,11,240,0,0,160,0,0,11,252,0,11,240,0,2,244,0,0,31,244,0,11,240,0,15,253,0,0,63,244,0,11,240,0,127,253,0,0,255,244,0,11,240,2,255,240,0,2,255,244,0,11,240,31,255,128,0,11,255,244,0,11,240,255,252,0,0,47,255,244,0,11,251,255,208,0,0,191,247,244,0,11,255,254,0,0,0,255,215,244,0,11,255,224,0,0,0,63,71,244,0,11,255,64,0,0,0,45,7,244,0,11,244,0,0,0,0,4,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,4,0,0,7,244,0,11,240,0,0,15,128,0,7,244,0,11,240,0,0,15,224,0,7,244,0,11,240,0,0,15,208,0,7,244,0,11,240,0,0,15,208,0,7,244,0,11,240,0,0,31,192,0,7,244,0,11,244,0,0,63,192,0,7,244,0,7,254,85,86,255,128,0,7,244,0,3,255,255,255,255,64,0,7,244,0,2,255,255,255,254,0,0,7,244,0,0,111,255,255,244,0,0,2,160,0,0,0,0,0,0,0, + // 0x5347 升 + 71,83,36,37,77,40,2,252,0,0,0,1,244,0,254,0,0,0,0,0,31,252,0,254,0,0,0,0,2,255,255,0,254,0,0,0,0,127,255,248,0,254,0,0,0,31,255,255,128,0,254,0,0,27,255,255,228,0,0,254,0,0,127,255,255,128,0,0,254,0,0,63,254,127,128,0,0,254,0,0,30,64,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,0,0,63,128,0,0,254,0,0,170,170,191,234,170,170,255,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,127,64,0,0,254,0,0,0,0,127,64,0,0,254,0,0,0,0,191,0,0,0,254,0,0,0,0,191,0,0,0,254,0,0,0,0,255,0,0,0,254,0,0,0,0,255,0,0,0,254,0,0,0,2,253,0,0,0,254,0,0,0,3,252,0,0,0,254,0,0,0,11,252,0,0,0,254,0,0,0,15,244,0,0,0,254,0,0,0,63,240,0,0,0,254,0,0,0,255,192,0,0,0,254,0,0,3,255,128,0,0,0,254,0,0,15,254,0,0,0,0,254,0,0,191,248,0,0,0,0,254,0,0,191,224,0,0,0,0,254,0,0,47,64,0,0,0,0,254,0,0,8,0,0,0,0,0,253,0,0, + // 0x534a 半 + 74,83,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,9,0,0,255,0,0,164,0,0,191,0,0,255,0,0,255,64,0,255,64,0,255,0,1,255,0,0,127,192,0,255,0,3,253,0,0,47,224,0,255,0,7,252,0,0,15,240,0,255,0,15,244,0,0,11,248,0,255,0,31,240,0,0,3,252,0,255,0,63,208,0,0,3,253,0,255,0,191,128,0,0,1,253,0,255,0,191,0,0,0,0,128,0,255,0,5,0,0,0,0,0,0,255,0,0,0,0,2,170,170,170,255,170,170,170,144,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,171,255,170,170,170,170,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x534f 协 + 79,83,37,38,124,40,2,252,0,190,0,0,0,84,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,63,255,255,255,253,0,0,85,255,85,63,255,255,255,253,0,0,255,255,255,63,255,255,255,253,0,0,255,255,255,42,171,254,170,253,0,0,255,255,255,0,2,252,1,252,0,0,0,254,0,0,2,252,1,252,0,0,0,254,0,0,3,248,1,252,0,0,0,254,0,62,3,248,1,254,176,0,0,254,0,127,3,248,1,255,244,0,0,254,0,191,3,244,1,254,252,0,0,254,0,254,7,244,1,253,252,0,0,254,0,253,7,240,2,252,253,0,0,254,1,252,11,240,2,252,254,0,0,254,3,252,15,240,2,252,191,0,0,254,3,244,31,224,2,252,127,0,0,254,11,240,47,192,2,252,63,0,0,254,31,224,63,192,2,252,63,64,0,254,15,192,127,128,3,252,63,128,0,254,2,128,255,0,3,248,47,128,0,254,0,1,255,0,3,248,24,0,0,254,0,3,253,0,3,248,0,0,0,254,0,11,252,0,3,248,0,0,0,254,0,31,244,0,3,244,0,0,0,254,0,63,224,0,7,244,0,0,0,254,0,255,192,0,11,240,0,0,0,254,3,255,64,0,31,240,0,0,0,254,15,253,0,255,255,224,0,0,0,254,31,248,0,191,255,192,0,0,0,254,7,224,0,127,255,64,0,0,0,190,1,128,0,21,80,0,0,0, + // 0x5355 单 + 85,83,36,38,86,40,2,252,0,0,20,0,0,0,4,0,0,0,1,253,0,0,0,47,208,0,0,1,255,0,0,0,63,208,0,0,0,191,192,0,0,255,128,0,0,0,63,224,0,1,255,0,0,0,0,15,240,0,3,253,0,0,0,0,11,224,0,11,248,0,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,254,0,0,255,0,0,127,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,255,85,85,85,85,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,170,0,0,0,0, + // 0x5361 卡 + 97,83,36,38,86,40,2,252,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,254,170,170,169,0,0,0,0,3,255,255,255,254,0,0,0,0,3,255,255,255,254,0,0,0,0,3,255,255,255,254,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,171,254,170,170,170,170,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,64,0,0,0,0,0,0,3,255,249,0,0,0,0,0,0,3,255,255,228,0,0,0,0,0,3,255,255,255,144,0,0,0,0,3,252,111,255,253,0,0,0,0,3,252,1,255,255,192,0,0,0,3,252,0,11,255,128,0,0,0,3,252,0,0,127,0,0,0,0,3,252,0,0,5,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,252,0,0,0,0, + // 0x5370 印 + 112,83,33,38,86,40,4,252,0,0,1,64,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,127,255,248,63,255,255,255,192,251,255,255,128,63,255,255,255,192,255,255,228,0,63,255,255,255,192,255,249,0,0,63,234,170,191,192,255,64,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,170,170,160,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,129,255,255,128,255,255,255,244,63,128,255,255,128,255,170,170,164,63,128,191,255,0,255,0,0,0,63,128,63,228,0,255,0,0,0,63,128,0,0,0,255,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,42,64,0,0,0, + // 0x5371 危 + 113,83,37,38,124,40,1,252,0,0,3,148,0,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,0,15,248,0,0,0,0,0,0,0,0,47,255,255,255,208,0,0,0,0,0,63,255,255,255,248,0,0,0,0,0,255,255,255,255,244,0,0,0,0,2,255,0,0,47,240,0,0,0,0,7,253,0,0,63,192,0,0,0,0,31,248,0,0,255,128,0,0,0,0,127,245,85,86,255,85,85,85,0,1,255,255,255,255,255,255,255,255,64,11,255,255,255,255,255,255,255,255,64,47,255,255,255,255,255,255,255,255,64,127,255,208,0,0,0,0,0,0,0,31,223,208,0,0,0,0,0,0,0,7,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,63,255,255,255,253,0,0,0,31,208,63,255,255,255,253,0,0,0,31,208,63,255,255,255,253,0,0,0,31,208,63,128,0,1,253,0,0,0,31,192,63,128,0,1,252,0,0,0,47,192,63,128,0,2,252,0,0,0,47,192,63,128,0,2,252,0,0,0,63,192,63,128,0,3,252,0,0,0,63,128,63,128,0,7,248,0,0,0,63,64,63,128,31,255,244,0,0,0,127,64,63,128,15,255,240,0,0,0,191,0,63,128,15,255,128,8,0,0,255,0,63,128,0,0,0,31,192,2,253,0,63,128,0,0,0,31,192,3,252,0,63,128,0,0,0,47,192,11,248,0,63,128,0,0,0,63,192,15,240,0,63,208,0,0,0,191,128,63,224,0,47,255,255,255,255,255,64,127,192,0,15,255,255,255,255,255,0,15,64,0,7,255,255,255,255,248,0,1,0,0,0,21,85,85,85,64,0, + // 0x5374 却 + 116,83,36,38,86,40,1,252,0,0,42,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,10,170,170,169,0,0,63,64,0,31,255,255,254,0,0,63,64,0,31,255,255,254,0,0,63,64,0,31,255,255,254,5,85,127,149,84,31,192,0,254,15,255,255,255,252,31,192,0,254,15,255,255,255,252,31,192,0,254,15,255,255,255,252,31,192,0,254,0,0,63,64,0,31,192,0,254,0,0,63,64,0,31,192,0,254,0,0,63,64,0,31,192,0,254,0,0,63,64,0,31,192,0,254,0,0,63,64,0,31,192,0,254,0,0,63,64,0,31,192,0,254,127,255,255,255,255,95,192,0,254,127,255,255,255,255,95,192,0,254,127,255,255,255,255,95,192,0,254,21,91,253,85,85,31,192,0,254,0,11,248,0,0,31,192,0,254,0,15,240,0,0,31,192,0,254,0,15,240,0,0,31,192,0,254,0,31,224,27,0,31,192,0,254,0,47,192,127,64,31,192,0,254,0,63,192,63,192,31,192,0,254,0,127,64,31,224,31,192,0,254,0,191,0,11,240,31,193,255,254,0,254,0,3,248,31,192,255,253,1,254,106,255,252,31,192,255,252,127,255,255,255,254,31,192,191,208,63,255,255,255,255,31,192,0,0,63,255,255,165,191,95,192,0,0,62,165,0,0,63,159,192,0,0,0,0,0,0,46,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0,0,0,0,0,0,31,192,0,0, + // 0x5378 卸 + 120,83,36,38,86,40,1,252,0,10,64,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,47,192,0,0,5,85,85,85,0,63,128,0,0,15,255,255,255,0,127,149,85,84,15,255,255,255,0,255,255,255,254,15,255,255,255,1,255,255,255,254,15,208,0,191,3,255,255,255,254,15,208,0,191,11,244,31,192,0,15,208,0,191,31,240,31,192,0,15,208,0,191,63,208,31,192,0,15,208,0,191,11,128,31,192,0,15,208,0,191,1,0,31,192,0,15,208,0,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,21,85,111,213,85,15,208,0,191,0,0,31,192,0,15,208,0,191,0,0,31,192,0,15,208,0,191,2,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,255,3,244,31,192,0,15,208,255,255,3,244,31,192,26,79,208,191,254,3,244,31,255,255,79,208,127,252,3,255,255,255,255,79,208,62,144,127,255,255,255,255,79,208,0,0,127,255,255,249,64,15,208,0,0,127,255,148,0,0,15,208,0,0,57,64,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0, + // 0x538b 压 + 139,83,37,36,104,40,1,252,1,255,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,255,192,1,254,170,170,170,170,170,170,170,128,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,85,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,47,255,255,255,255,255,252,0,1,252,47,255,255,255,255,255,252,0,1,252,47,255,255,255,255,255,252,0,1,252,26,170,170,255,170,170,168,0,2,252,0,0,0,254,0,0,0,0,2,252,0,0,0,254,0,0,0,0,2,252,0,0,0,254,1,224,0,0,2,248,0,0,0,254,7,248,0,0,3,248,0,0,0,254,3,254,0,0,3,248,0,0,0,254,0,255,128,0,3,244,0,0,0,254,0,63,224,0,7,244,0,0,0,254,0,15,244,0,7,240,0,0,0,254,0,3,224,0,11,240,0,0,0,254,0,1,64,0,15,224,0,0,0,254,0,0,0,0,15,224,0,0,0,254,0,0,0,0,47,210,170,170,170,255,170,170,170,64,63,195,255,255,255,255,255,255,255,192,127,131,255,255,255,255,255,255,255,192,127,67,255,255,255,255,255,255,255,192,31,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, + // 0x539f 原 + 159,83,37,36,104,40,1,252,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,85,85,86,255,85,85,85,64,0,254,0,0,1,255,0,0,0,0,0,254,0,0,2,254,0,0,0,0,0,254,0,0,3,253,0,0,0,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,254,170,170,170,191,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,253,3,255,255,255,255,255,224,0,1,253,3,255,255,255,255,255,224,0,1,253,3,255,255,255,255,255,224,0,1,252,0,0,0,191,0,0,0,0,2,252,0,0,0,191,0,0,0,0,3,252,0,62,64,191,0,184,0,0,3,248,0,127,192,191,3,254,0,0,3,248,0,255,0,191,1,255,128,0,7,244,3,254,0,191,0,63,224,0,11,240,11,252,0,191,0,31,248,0,15,240,47,240,0,191,0,7,253,0,15,224,191,208,0,191,0,1,255,0,47,211,255,64,0,191,0,0,191,192,63,195,253,1,65,255,0,0,63,128,127,128,180,3,255,255,0,0,13,0,47,0,0,1,255,253,0,0,0,0,2,0,0,0,255,228,0,0,0,0, + // 0x53cc 双 + 204,83,37,35,94,40,1,252,10,170,170,169,2,170,170,170,164,0,31,255,255,255,199,255,255,255,255,0,31,255,255,255,199,255,255,255,254,0,31,255,255,255,199,255,255,255,253,0,0,0,0,63,194,252,0,1,253,0,0,0,0,63,129,252,0,2,252,0,0,0,0,63,128,253,0,2,252,0,0,0,0,127,64,254,0,3,252,0,1,192,0,191,0,255,0,3,248,0,11,240,0,191,0,191,0,7,244,0,15,248,0,255,0,127,0,11,240,0,3,254,0,254,0,63,64,15,240,0,1,255,65,253,0,63,128,15,224,0,0,127,195,252,0,63,192,47,208,0,0,47,243,252,0,47,192,63,192,0,0,15,255,248,0,15,208,127,128,0,0,3,255,244,0,15,240,191,64,0,0,1,255,240,0,11,240,255,0,0,0,0,255,224,0,7,250,254,0,0,0,0,63,224,0,3,255,252,0,0,0,0,127,240,0,2,255,248,0,0,0,0,191,252,0,0,255,240,0,0,0,0,255,254,0,0,191,224,0,0,0,2,255,255,0,0,191,192,0,0,0,7,252,255,128,1,255,224,0,0,0,15,248,63,208,7,255,244,0,0,0,47,240,47,240,31,255,252,0,0,0,127,208,15,192,127,247,255,0,0,1,255,128,11,1,255,208,255,192,0,3,255,0,0,11,255,64,127,240,0,15,253,0,0,127,253,0,47,254,0,127,244,0,2,255,244,0,11,255,192,63,224,0,0,255,128,0,1,255,64,15,64,0,0,125,0,0,0,62,0,1,0,0,0,32,0,0,0,8,0, + // 0x53cd 反 + 205,83,36,36,68,40,2,252,0,42,170,170,170,170,170,170,160,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,240,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,254,0,0,127,239,254,170,170,171,253,0,0,127,67,252,0,0,3,252,0,0,127,66,253,0,0,11,248,0,0,127,1,255,0,0,15,240,0,0,191,0,255,64,0,47,224,0,0,191,0,127,192,0,63,208,0,0,255,0,63,208,0,255,192,0,0,255,0,31,244,2,255,0,0,0,254,0,11,252,11,254,0,0,0,253,0,3,255,31,252,0,0,1,253,0,1,255,255,240,0,0,2,252,0,0,191,255,208,0,0,3,252,0,0,47,255,64,0,0,3,248,0,0,47,255,64,0,0,11,244,0,1,255,255,240,0,0,15,240,0,15,255,255,254,0,0,31,224,1,255,254,31,255,228,0,63,208,111,255,244,3,255,255,144,127,195,255,255,128,0,127,255,253,191,65,255,248,0,0,7,255,252,31,0,191,64,0,0,0,111,240,0,0,32,0,0,0,0,1,144, + // 0x53d6 取 + 214,83,38,36,104,40,1,252,21,85,85,85,85,64,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,234,170,170,169,0,0,254,0,11,241,255,255,255,255,64,0,254,0,11,241,255,255,255,255,0,0,254,0,11,241,255,255,255,255,0,0,254,0,11,240,26,0,0,255,0,0,254,0,11,240,255,0,0,254,0,0,255,255,255,240,191,0,0,254,0,0,255,255,255,240,127,64,1,253,0,0,255,255,255,240,63,128,2,252,0,0,254,85,95,240,63,192,3,252,0,0,254,0,11,240,47,192,3,248,0,0,254,0,11,240,31,208,7,244,0,0,254,0,11,240,15,224,11,240,0,0,254,0,11,240,15,240,15,240,0,0,254,85,95,240,11,244,31,224,0,0,255,255,255,240,3,248,47,192,0,0,255,255,255,240,3,252,63,192,0,0,255,255,255,240,1,253,191,128,0,0,254,0,11,240,0,255,255,0,0,0,254,0,11,240,0,191,254,0,0,0,254,0,11,240,0,63,252,0,0,0,254,0,11,240,0,47,248,0,0,0,254,0,111,240,0,47,244,0,0,0,255,255,255,240,0,127,253,0,0,191,255,255,255,240,0,255,255,0,0,191,255,255,255,240,3,255,255,192,0,127,255,229,11,240,15,252,127,240,0,62,80,0,11,240,127,240,31,252,0,0,0,0,11,242,255,192,11,255,128,0,0,0,11,255,255,64,2,255,224,0,0,0,11,243,248,0,0,127,192,0,0,0,11,241,208,0,0,15,0,0,0,0,11,224,0,0,0,0,0, + // 0x53d8 变 + 216,83,36,38,86,40,2,252,0,0,0,1,188,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,191,192,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,21,85,86,253,85,127,149,85,84,0,0,2,252,0,127,64,0,0,0,15,146,252,0,127,66,128,0,0,31,210,252,0,127,95,224,0,0,63,194,252,0,127,79,248,0,0,191,66,252,0,127,67,254,0,0,255,2,252,0,127,64,255,128,3,253,2,252,0,127,64,63,208,15,248,2,252,0,127,64,31,240,31,240,2,252,0,127,64,7,248,7,192,2,252,0,127,64,2,208,0,0,2,252,0,127,64,0,0,0,0,1,168,0,42,64,0,0,0,0,0,0,0,0,0,64,0,2,255,255,255,255,255,255,244,0,2,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,244,0,0,3,252,0,0,0,63,224,0,0,1,255,0,0,0,255,192,0,0,0,127,192,0,3,255,0,0,0,0,47,244,0,31,252,0,0,0,0,11,255,0,191,240,0,0,0,0,1,255,235,255,128,0,0,0,0,0,63,255,253,0,0,0,0,0,0,31,255,244,0,0,0,0,0,27,255,255,255,208,0,0,0,26,255,255,235,255,255,148,0,111,255,255,253,0,191,255,255,249,127,255,255,64,0,6,255,255,253,63,254,144,0,0,0,6,255,252,30,64,0,0,0,0,0,5,176, + // 0x53f0 台 + 240,83,36,38,86,40,2,252,0,0,0,120,0,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,16,0,0,0,0,11,252,0,0,184,0,0,0,0,15,244,0,3,254,0,0,0,0,47,224,0,2,255,192,0,0,0,63,192,0,0,191,240,0,0,0,255,64,0,0,31,252,0,0,1,255,0,0,0,7,255,0,0,3,254,86,170,191,255,255,128,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,244,63,255,255,255,255,255,234,175,252,63,250,169,85,0,0,0,3,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,164,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,234,170,170,170,171,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,42,128,0,0,0,2,168,0, + // 0x5403 吃 + 3,84,36,37,77,40,3,253,0,0,0,0,9,64,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,255,255,252,0,191,64,0,0,0,255,255,252,0,255,0,0,0,0,255,255,252,1,255,255,255,255,248,255,170,252,3,255,255,255,255,248,253,1,252,7,255,255,255,255,248,253,1,252,15,249,85,85,85,84,253,1,252,47,224,0,0,0,0,253,1,252,127,192,0,0,0,0,253,1,253,255,128,0,0,0,0,253,1,254,255,0,0,0,0,0,253,1,252,189,85,85,85,84,0,253,1,252,20,255,255,255,255,64,253,1,252,0,255,255,255,255,64,253,1,252,0,255,255,255,253,0,253,1,252,0,0,0,191,240,0,253,1,252,0,0,2,255,192,0,253,1,252,0,0,11,254,0,0,253,1,252,0,0,63,248,0,0,253,1,252,0,0,255,208,0,0,253,1,252,0,3,255,64,0,0,255,255,252,0,15,252,0,0,0,255,255,252,0,63,240,0,0,0,255,255,252,0,255,192,0,0,0,255,170,168,2,255,0,0,0,64,253,0,0,7,252,0,0,0,249,253,0,0,15,240,0,0,0,254,253,0,0,31,208,0,0,0,253,0,0,0,47,192,0,0,0,253,0,0,0,63,192,0,0,1,252,0,0,0,47,254,170,170,171,252,0,0,0,31,255,255,255,255,248,0,0,0,7,255,255,255,255,240,0,0,0,0,191,255,255,255,128, + // 0x5408 合 + 8,84,38,38,124,40,1,252,0,0,0,0,106,128,0,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,0,7,255,252,0,0,0,0,0,0,0,31,251,255,0,0,0,0,0,0,0,63,240,255,192,0,0,0,0,0,0,255,192,127,240,0,0,0,0,0,3,255,64,31,252,0,0,0,0,0,15,253,0,7,255,64,0,0,0,0,127,244,0,1,255,208,0,0,0,1,255,208,0,0,127,248,0,0,0,11,255,64,0,0,15,255,64,0,0,63,253,0,0,0,3,255,224,0,2,255,249,85,85,85,85,255,254,0,31,255,127,255,255,255,255,223,255,208,127,252,63,255,255,255,255,195,255,208,47,208,63,255,255,255,255,192,127,128,15,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,85,84,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,249,85,85,85,86,253,0,0,0,3,244,0,0,0,1,253,0,0, + // 0x540d 名 + 13,84,35,38,86,40,1,252,0,0,0,46,144,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,7,255,255,255,255,0,0,0,0,31,255,255,255,255,192,0,0,0,63,255,255,255,255,128,0,0,1,255,213,85,85,255,0,0,0,7,255,0,0,2,255,0,0,0,31,252,0,0,3,253,0,0,0,191,253,0,0,15,248,0,0,7,255,255,128,0,31,240,0,0,47,255,255,240,0,63,208,0,0,63,248,63,252,0,255,192,0,0,15,208,11,255,3,255,0,0,0,6,0,2,255,203,253,0,0,0,0,0,0,127,255,244,0,0,0,0,0,0,31,255,224,0,0,0,0,0,0,11,255,128,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,191,255,255,255,255,244,0,0,7,255,255,255,255,255,244,0,0,63,255,255,255,255,255,244,0,2,255,254,85,85,85,91,244,0,111,255,254,0,0,0,7,244,11,255,254,254,0,0,0,7,244,127,255,224,254,0,0,0,7,244,47,254,0,254,0,0,0,7,244,15,208,0,254,0,0,0,7,244,5,0,0,254,0,0,0,7,244,0,0,0,254,0,0,0,7,244,0,0,0,254,0,0,0,7,244,0,0,0,254,85,85,85,91,244,0,0,0,255,255,255,255,255,244,0,0,0,255,255,255,255,255,244,0,0,0,255,255,255,255,255,244,0,0,0,254,0,0,0,7,244,0,0,0,169,0,0,0,7,244, + // 0x540e 后 + 14,84,38,38,124,40,1,252,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,26,255,64,0,0,0,0,0,5,175,255,255,208,0,0,41,21,175,255,255,255,255,224,0,0,63,255,255,255,255,255,228,0,0,0,63,255,255,255,250,80,0,0,0,0,63,255,233,80,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,234,170,170,170,170,170,170,144,0,63,255,255,255,255,255,255,255,208,0,63,255,255,255,255,255,255,255,208,0,63,255,255,255,255,255,255,255,208,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,127,64,85,85,85,85,85,80,0,0,127,65,255,255,255,255,255,240,0,0,191,1,255,255,255,255,255,240,0,0,191,1,255,255,255,255,255,240,0,0,255,1,252,0,0,0,11,240,0,0,255,1,252,0,0,0,11,240,0,0,254,1,252,0,0,0,11,240,0,1,254,1,252,0,0,0,11,240,0,2,253,1,252,0,0,0,11,240,0,3,252,1,252,0,0,0,11,240,0,3,248,1,252,0,0,0,11,240,0,11,244,1,252,0,0,0,11,240,0,15,240,1,254,85,85,85,95,240,0,47,224,1,255,255,255,255,255,240,0,63,192,1,255,255,255,255,255,240,0,127,128,1,255,255,255,255,255,240,0,31,0,1,252,0,0,0,11,240,0,5,0,1,252,0,0,0,11,240,0, + // 0x5411 向 + 17,84,33,38,86,40,4,252,0,0,0,58,64,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,3,252,0,0,0,0,0,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,64,255,170,170,170,170,170,170,255,64,254,0,0,0,0,0,0,127,64,254,0,0,0,0,0,0,127,64,254,0,0,0,0,0,0,127,64,254,0,0,0,0,0,0,127,64,254,0,21,85,85,84,0,127,64,254,0,255,255,255,254,0,127,64,254,0,255,255,255,254,0,127,64,254,0,255,255,255,254,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,254,0,0,190,0,127,64,254,0,255,255,255,254,0,127,64,254,0,255,255,255,254,0,127,64,254,0,255,255,255,254,0,127,64,254,0,254,85,85,84,0,127,64,254,0,254,0,0,0,0,127,64,254,0,254,0,0,0,0,127,64,254,0,0,0,0,0,0,127,64,254,0,0,0,0,0,0,191,0,254,0,0,0,0,31,255,255,0,254,0,0,0,0,15,255,255,0,254,0,0,0,0,11,255,253,0,253,0,0,0,0,7,250,144,0, + // 0x5426 否 + 38,84,37,36,104,40,1,252,5,85,85,85,85,85,85,85,85,0,15,255,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,255,64,0,0,0,0,15,252,0,0,0,0,0,0,0,0,127,244,0,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,0,127,255,193,253,0,0,0,0,0,2,255,255,199,255,208,0,0,0,0,47,255,191,194,255,248,0,0,0,2,255,252,63,192,47,255,128,0,0,47,255,224,63,192,2,255,244,0,7,255,255,0,63,192,0,63,255,0,127,255,244,0,63,192,0,7,255,192,47,255,64,0,63,192,0,0,191,64,15,244,0,0,63,192,0,0,29,0,2,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,240,0,0,0,0,255,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,240,0,0,0,0,191,64,0,0,15,224,0,0,0,0,170,0,0, + // 0x542f 启 + 47,84,34,38,86,40,2,252,0,0,0,0,0,0,0,80,0,0,0,0,0,0,5,191,244,0,0,0,0,1,107,255,255,253,0,0,69,175,255,255,255,255,249,0,1,255,255,255,255,255,228,0,0,1,255,255,255,234,80,0,0,0,1,255,169,64,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,253,0,0,0,0,0,63,192,1,253,0,0,0,0,0,63,192,1,253,0,0,0,0,0,63,192,1,253,0,0,0,0,0,63,192,1,253,0,0,0,0,0,63,192,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,192,1,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,63,255,255,255,255,255,208,3,248,63,255,255,255,255,255,208,3,248,63,255,255,255,255,255,208,7,244,63,64,0,0,0,31,208,11,240,63,64,0,0,0,31,208,15,240,63,64,0,0,0,31,208,15,224,63,64,0,0,0,31,208,47,208,63,64,0,0,0,31,208,63,192,63,64,0,0,0,31,208,191,128,63,255,255,255,255,255,208,255,0,63,255,255,255,255,255,208,190,0,63,255,255,255,255,255,208,28,0,63,64,0,0,0,31,208,4,0,63,64,0,0,0,26,144, + // 0x544a 告 + 74,84,36,39,95,40,2,251,0,0,0,0,42,128,0,0,0,0,3,248,0,63,192,0,0,0,0,3,252,0,63,192,0,0,0,0,11,248,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,31,224,0,63,192,0,0,0,0,63,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,128,3,254,85,85,127,213,85,85,64,11,252,0,0,63,192,0,0,0,31,244,0,0,63,192,0,0,0,63,224,0,0,63,192,0,0,0,7,192,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,21,85,85,85,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,229,85,85,85,87,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,213,85,85,85,87,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,0,0,0,0,0,0,0,0, + // 0x5468 周 + 104,84,35,37,77,40,1,251,0,127,255,255,255,255,255,255,244,0,127,255,255,255,255,255,255,244,0,127,255,255,255,255,255,255,244,0,127,149,85,85,85,85,91,244,0,127,64,0,26,128,0,7,244,0,127,64,0,47,192,0,7,244,0,127,64,0,47,192,0,7,244,0,127,64,0,47,192,0,7,244,0,127,67,255,255,255,255,7,244,0,127,67,255,255,255,255,7,244,0,127,67,255,255,255,255,7,244,0,127,64,0,47,192,0,7,244,0,127,64,0,47,192,0,7,244,0,127,64,0,47,192,0,7,244,0,127,79,255,255,255,255,135,244,0,127,79,255,255,255,255,135,244,0,127,79,255,255,255,255,135,244,0,127,64,0,0,0,0,7,244,0,127,0,0,0,0,0,7,244,0,127,0,0,0,0,0,7,244,0,191,1,255,255,255,252,7,244,0,191,1,255,255,255,252,7,244,0,255,1,255,255,255,252,7,244,0,254,1,252,0,1,252,7,244,0,254,1,252,0,1,252,7,244,1,253,1,252,0,1,252,7,244,2,252,1,252,0,1,252,7,244,3,252,1,252,0,1,252,7,244,3,248,1,255,255,255,252,7,244,7,244,1,255,255,255,252,7,244,15,240,1,255,255,255,252,7,244,31,240,1,252,0,0,0,7,244,63,208,1,252,0,0,85,95,244,127,192,0,84,0,0,127,255,240,47,64,0,0,0,0,63,255,224,11,0,0,0,0,0,47,254,64,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,38,38,124,40,1,252,0,0,0,0,191,192,0,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,3,255,252,0,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,0,63,241,255,192,0,0,0,0,0,1,255,208,191,240,0,0,0,0,0,7,255,64,47,253,0,0,0,0,0,47,253,0,7,255,128,0,0,0,0,255,240,0,1,255,244,0,0,0,7,255,192,0,0,63,254,0,0,0,47,255,85,85,85,95,255,208,0,2,255,247,255,255,255,253,255,253,0,47,255,131,255,255,255,252,47,255,224,255,253,3,255,255,255,252,3,255,224,63,224,0,0,0,0,0,0,127,192,30,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,192,255,255,255,240,0,0,191,255,255,192,255,255,255,240,0,0,191,255,255,192,255,255,255,240,0,0,191,0,47,192,254,85,91,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,191,255,255,192,254,0,7,240,0,0,191,255,255,192,254,0,11,240,0,0,191,255,255,192,254,15,255,240,0,0,191,0,0,0,254,15,255,240,0,0,190,0,0,0,254,11,255,192,0,0,190,0,0,0,254,1,80,0,0,0,106,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x548c 和 + 140,84,35,37,77,40,1,252,0,0,0,31,192,0,0,0,0,0,0,27,255,240,0,0,0,0,1,175,255,255,244,0,0,0,0,31,255,255,254,64,255,255,255,252,15,255,255,64,0,255,255,255,252,11,164,191,64,0,255,255,255,252,0,0,127,64,0,255,170,171,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,63,255,255,255,248,254,0,2,252,63,255,255,255,248,254,0,2,252,63,255,255,255,248,254,0,2,252,21,86,255,149,84,254,0,2,252,0,3,255,64,0,254,0,2,252,0,3,255,208,0,254,0,2,252,0,11,255,240,0,254,0,2,252,0,15,255,252,0,254,0,2,252,0,31,255,255,0,254,0,2,252,0,63,255,191,128,254,0,2,252,0,127,127,111,208,254,0,2,252,0,253,127,79,240,254,0,2,252,2,252,127,71,244,254,0,2,252,7,248,127,66,224,254,0,2,252,15,240,127,64,192,254,0,2,252,47,208,127,64,0,254,0,2,252,191,192,127,64,0,254,0,2,252,127,64,127,64,0,255,255,255,252,62,0,127,64,0,255,255,255,252,28,0,127,64,0,255,255,255,252,0,0,127,64,0,255,170,171,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,1,168,0,0,127,64,0,0,0,0,0,0,0,106,0,0,0,0,0,0, + // 0x54cd 响 + 205,84,35,39,95,40,3,251,0,0,0,0,0,41,64,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,192,0,0,255,255,244,0,0,255,64,0,0,255,255,244,0,0,255,0,0,0,255,255,244,0,1,253,0,0,0,254,87,244,63,255,255,255,255,244,253,3,244,63,255,255,255,255,244,253,3,244,63,255,255,255,255,244,253,3,244,63,128,0,0,7,244,253,3,244,63,64,0,0,3,244,253,3,244,63,64,0,0,3,244,253,3,244,63,64,0,0,3,244,253,3,244,63,66,170,170,3,244,253,3,244,63,67,255,255,3,244,253,3,244,63,67,255,255,3,244,253,3,244,63,67,224,31,3,244,253,3,244,63,67,224,31,3,244,253,3,244,63,67,224,31,3,244,253,3,244,63,67,224,31,3,244,253,3,244,63,67,224,31,3,244,253,3,244,63,67,224,31,3,244,254,87,244,63,67,224,31,3,244,255,255,244,63,67,224,31,3,244,255,255,244,63,67,250,191,3,244,255,255,244,63,67,255,255,3,244,253,0,0,63,67,255,255,3,244,253,0,0,63,67,224,0,3,244,253,0,0,63,67,224,0,3,244,253,0,0,63,65,80,0,3,244,0,0,0,63,64,0,0,3,244,0,0,0,63,64,0,0,3,244,0,0,0,63,64,0,0,7,244,0,0,0,63,64,0,1,91,244,0,0,0,63,64,0,7,255,240,0,0,0,63,64,0,3,255,240,0,0,0,63,64,0,2,254,64,0,0,0,0,0,0,0,0,0, + // 0x55b7 喷 + 183,85,36,38,86,40,3,252,0,0,0,0,0,21,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,63,64,0,0,255,255,208,255,255,255,255,255,208,255,255,208,255,255,255,255,255,208,255,255,208,255,255,255,255,255,208,253,95,208,0,0,63,64,0,0,252,11,208,3,244,63,66,244,0,252,11,208,3,244,0,3,248,0,252,11,208,3,244,0,3,248,0,252,11,215,255,255,255,255,255,252,252,11,215,255,255,255,255,255,252,252,11,215,255,255,255,255,255,252,252,11,208,3,244,0,3,248,0,252,11,208,3,244,0,3,248,0,252,11,208,1,80,0,1,80,0,252,11,208,47,255,255,255,255,64,252,11,208,47,255,255,255,255,64,252,11,208,47,255,255,255,255,64,252,11,208,47,128,0,0,63,64,252,11,208,47,128,0,0,63,64,252,11,208,47,128,21,0,63,64,253,95,208,47,128,63,64,63,64,255,255,208,47,128,63,64,63,64,255,255,208,47,128,63,64,63,64,255,255,208,47,128,63,64,63,64,252,0,0,47,128,63,64,63,64,252,0,0,47,128,63,64,63,64,252,0,0,47,128,191,0,63,64,248,0,0,26,65,254,24,42,0,0,0,0,0,7,252,63,128,0,0,0,0,0,127,244,127,249,0,0,0,0,11,255,208,7,255,208,0,0,6,255,254,0,0,191,253,0,0,47,255,224,0,0,11,254,0,0,11,249,0,0,0,0,252,0,0,1,0,0,0,0,0,20, + // 0x5634 嘴 + 52,86,36,38,86,40,3,252,0,0,0,0,252,0,248,0,0,0,0,0,0,252,0,252,0,0,0,0,0,80,252,0,252,0,0,85,85,65,240,252,0,252,11,192,255,255,209,240,254,168,252,127,240,255,255,209,240,255,252,255,255,64,255,255,209,240,255,252,255,248,0,248,11,209,240,252,0,255,64,0,248,11,209,240,252,0,252,0,0,248,11,209,240,252,0,252,0,116,248,11,209,240,253,188,252,0,125,248,11,210,251,255,252,252,0,188,248,11,239,255,255,252,255,255,252,248,11,239,255,255,64,191,255,244,248,11,223,148,255,0,26,170,144,248,11,208,2,255,255,248,0,0,248,11,208,7,255,255,254,0,0,248,11,208,15,245,87,252,0,0,248,11,208,63,192,7,244,0,0,248,11,209,255,213,95,245,85,64,248,11,219,255,255,255,255,255,192,248,11,255,255,255,255,255,255,192,253,91,239,255,128,47,64,31,192,255,255,215,127,128,47,64,31,192,255,255,208,63,128,47,128,31,192,255,255,208,63,255,255,255,255,192,248,0,0,63,255,255,255,255,192,248,0,0,63,64,47,64,31,192,248,0,0,63,64,47,64,31,192,84,0,0,127,149,127,149,111,192,0,0,0,191,255,255,255,255,192,0,0,0,255,255,255,255,255,192,0,0,1,253,0,0,0,31,192,0,0,7,252,0,0,0,31,192,0,0,31,244,0,0,0,31,192,0,0,191,224,0,0,127,255,192,0,0,63,128,0,0,63,255,128,0,0,9,0,0,0,31,169,0, + // 0x5668 器 + 104,86,38,36,104,40,1,252,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,253,63,255,255,244,0,0,0,0,0,255,0,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,0,7,252,0,0,0,0,0,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,5,85,91,255,85,95,253,85,85,64,0,0,47,252,0,3,255,64,0,0,0,0,255,240,0,1,255,224,0,0,0,11,255,208,0,0,127,253,0,0,1,191,255,0,0,0,15,255,224,0,31,255,248,0,0,0,3,255,255,64,191,255,255,255,192,127,255,255,255,224,47,255,255,255,192,127,255,255,255,192,14,191,255,255,192,127,255,255,235,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,191,255,255,192,127,255,255,224,0,0,191,255,255,192,127,255,255,224,0,0,191,255,255,192,127,255,255,224,0,0,190,0,31,192,127,0,15,224,0,0,106,0,15,192,127,0,10,144,0, + // 0x5674 噴 + 116,86,36,38,86,40,3,252,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,191,255,255,255,255,224,85,85,80,191,255,255,255,255,224,255,255,240,106,170,191,234,170,144,255,255,240,0,0,47,128,0,0,255,255,240,2,248,47,130,244,0,252,3,240,2,248,47,130,244,0,252,3,246,171,254,170,171,254,168,252,3,247,255,255,255,255,255,253,252,3,247,255,255,255,255,255,253,252,3,240,2,248,0,2,244,0,252,3,240,2,248,0,2,244,0,252,3,240,0,0,0,0,0,0,252,3,240,63,255,255,255,255,128,252,3,240,63,255,255,255,255,128,252,3,240,63,128,0,0,63,128,252,3,240,63,128,0,0,63,128,252,3,240,63,128,0,0,63,128,252,3,240,63,255,255,255,255,128,252,3,240,63,255,255,255,255,128,252,3,240,63,128,0,0,63,128,255,255,240,63,128,0,0,63,128,255,255,240,63,128,0,0,63,128,255,255,240,63,255,255,255,255,128,253,85,80,63,255,255,255,255,128,252,0,0,63,128,0,0,63,128,252,0,0,63,128,0,0,63,128,168,0,0,63,255,255,255,255,128,0,0,0,63,255,255,255,255,128,0,0,0,0,185,0,31,144,0,0,0,0,2,255,64,63,244,0,0,0,0,111,253,0,31,255,0,0,0,27,255,240,0,1,255,224,0,0,127,255,64,0,0,47,253,0,0,31,228,0,0,0,7,248,0,0,10,0,0,0,0,0,128, + // 0x56de 回 + 222,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,149,85,127,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,149,85,85,85,85,85,111,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,15,224, + // 0x56e0 因 + 224,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,170,170,170,170,170,170,175,240,191,0,0,0,0,0,0,15,240,191,0,0,3,248,0,0,15,240,191,0,0,3,248,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,15,255,255,255,255,255,15,240,191,15,255,255,255,255,255,15,240,191,15,255,255,255,255,255,15,240,191,5,85,95,254,85,85,15,240,191,0,0,15,254,0,0,15,240,191,0,0,15,255,0,0,15,240,191,0,0,31,255,0,0,15,240,191,0,0,63,255,128,0,15,240,191,0,0,127,159,208,0,15,240,191,0,0,255,15,240,0,15,240,191,0,1,255,11,248,0,15,240,191,0,7,252,3,254,0,15,240,191,0,31,244,0,255,128,15,240,191,0,255,224,0,191,244,15,240,191,11,255,128,0,47,255,15,240,191,15,254,0,0,7,254,15,240,191,7,224,0,0,0,252,15,240,191,2,64,0,0,0,20,15,240,191,0,0,0,0,0,0,15,240,191,170,170,170,170,170,170,175,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,0,0,0,0,0,0,15,240,191,0,0,0,0,0,0,15,224, + // 0x56fa 固 + 250,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,149,85,85,85,85,85,111,224,191,0,0,0,0,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,11,255,255,255,255,255,15,224,191,11,255,255,255,255,255,15,224,191,11,255,255,255,255,255,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,149,85,85,85,85,85,111,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,0,0,0,0,0,0,15,224,127,0,0,0,0,0,0,15,224, + // 0x56fe 图 + 254,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,85,85,85,85,85,85,95,224,191,0,0,61,0,0,0,15,224,191,0,0,255,0,0,0,15,224,191,0,2,253,0,0,0,15,224,191,0,11,255,255,255,244,15,224,191,0,47,255,255,255,252,15,224,191,0,191,255,255,255,244,15,224,191,3,255,208,0,47,208,15,224,191,31,255,244,0,255,128,15,224,191,47,226,254,7,253,0,15,224,191,7,64,191,255,240,0,15,224,191,0,0,31,255,192,0,15,224,191,0,0,127,255,224,0,15,224,191,0,27,255,255,255,64,15,224,191,7,255,254,7,255,254,79,224,191,191,255,224,0,127,255,223,224,191,63,254,41,0,2,255,79,224,191,31,64,191,228,0,6,15,224,191,0,0,191,255,208,0,15,224,191,0,0,1,255,248,0,15,224,191,0,0,0,7,240,0,15,224,191,0,46,144,0,80,0,15,224,191,0,127,255,228,0,0,15,224,191,0,191,255,255,228,0,15,224,191,0,0,107,255,255,208,15,224,191,0,0,0,27,255,192,15,224,191,0,0,0,0,31,128,15,224,191,0,0,0,0,0,0,15,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,85,85,85,85,85,85,95,224,191,0,0,0,0,0,0,15,224, + // 0x5728 在 + 40,87,37,38,124,40,1,252,0,0,0,10,64,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,26,170,171,254,170,170,170,170,170,64,0,0,15,244,0,0,0,0,0,0,0,0,31,240,0,1,80,0,0,0,0,0,63,208,0,7,244,0,0,0,0,0,127,192,0,7,244,0,0,0,0,0,255,64,0,7,244,0,0,0,0,3,254,0,0,7,244,0,0,0,0,11,252,0,0,7,244,0,0,0,0,31,244,0,0,7,244,0,0,0,0,127,240,0,0,7,244,0,0,0,1,255,240,15,255,255,255,255,252,0,7,255,240,15,255,255,255,255,252,0,47,255,240,15,255,255,255,255,252,0,127,251,240,5,85,91,249,85,84,0,63,203,240,0,0,7,244,0,0,0,31,11,240,0,0,7,244,0,0,0,8,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,21,85,91,249,85,85,0,0,11,240,127,255,255,255,255,255,64,0,11,240,127,255,255,255,255,255,64,0,11,240,127,255,255,255,255,255,64,0,11,240,0,0,0,0,0,0,0, + // 0x574f 坏 + 79,87,38,38,124,40,1,252,0,5,64,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,26,170,170,170,170,170,128,0,15,208,63,255,255,255,255,255,192,0,15,208,63,255,255,255,255,255,192,0,15,208,63,255,255,255,255,255,192,0,15,208,0,0,0,127,192,0,0,0,15,208,0,0,0,255,64,0,0,0,15,208,0,0,2,255,0,0,0,0,15,208,0,0,3,253,0,0,0,63,255,255,208,0,11,252,0,0,0,63,255,255,208,0,47,244,0,0,0,63,255,255,208,0,127,244,64,0,0,26,175,234,128,0,255,246,240,0,0,0,15,208,0,3,255,255,253,0,0,0,15,208,0,31,255,251,255,128,0,0,15,208,0,127,251,244,191,224,0,0,15,208,2,255,195,244,47,248,0,0,15,208,15,255,3,244,7,255,0,0,15,208,191,252,3,244,1,255,192,0,15,209,255,240,3,244,0,127,224,0,15,208,127,128,3,244,0,31,192,0,15,208,29,0,3,244,0,7,0,0,15,208,80,0,3,244,0,0,0,0,15,219,240,0,3,244,0,0,0,0,15,255,240,0,3,244,0,0,0,0,127,255,240,0,3,244,0,0,0,31,255,255,128,0,3,244,0,0,0,127,255,244,0,0,3,244,0,0,0,63,254,0,0,0,3,244,0,0,0,63,144,0,0,0,3,244,0,0,0,20,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,2,164,0,0,0, + // 0x5757 块 + 87,87,37,38,124,40,1,252,0,0,0,0,0,5,64,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,0,0,31,208,0,0,0,0,31,192,3,255,255,255,255,240,0,0,31,192,3,255,255,255,255,240,0,0,31,192,3,255,255,255,255,240,0,63,255,255,209,85,111,229,91,240,0,63,255,255,208,0,31,208,7,240,0,63,255,255,208,0,31,208,7,240,0,26,175,234,128,0,31,208,7,240,0,0,31,192,0,0,31,208,7,240,0,0,31,192,0,0,31,208,7,240,0,0,31,192,0,0,31,192,7,240,0,0,31,192,0,0,31,192,7,240,0,0,31,192,10,170,175,234,171,250,64,0,31,192,15,255,255,255,255,255,192,0,31,192,15,255,255,255,255,255,192,0,31,192,15,255,255,255,255,255,192,0,31,193,208,0,63,253,0,0,0,0,31,239,224,0,127,255,0,0,0,0,31,255,240,0,255,127,64,0,0,0,127,255,208,0,255,63,128,0,0,11,255,253,0,2,253,47,192,0,0,127,255,208,0,7,252,15,240,0,0,63,253,0,0,15,248,11,248,0,0,47,208,0,0,47,240,3,252,0,0,13,0,0,0,127,208,2,255,0,0,0,0,0,2,255,192,0,255,192,0,0,0,0,11,255,0,0,127,244,0,0,0,0,127,252,0,0,31,255,0,0,0,2,255,240,0,0,7,255,192,0,0,3,255,128,0,0,1,255,128,0,0,0,253,0,0,0,0,63,0,0,0,0,80,0,0,0,0,8,0, + // 0x578b 型 + 139,87,36,37,77,40,2,253,0,0,0,0,0,0,0,5,80,5,85,85,85,85,0,0,11,240,15,255,255,255,255,2,160,11,240,15,255,255,255,255,3,244,11,240,15,255,255,255,255,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,127,255,255,255,255,195,244,11,240,127,255,255,255,255,195,244,11,240,127,255,255,255,255,195,244,11,240,21,127,149,127,213,67,244,11,240,0,63,64,63,128,3,244,11,240,0,191,0,63,128,3,244,11,240,0,255,0,63,128,0,0,11,240,2,253,0,63,128,0,0,11,240,11,252,0,63,128,0,0,15,240,47,244,0,63,128,0,63,255,224,191,224,0,63,128,0,31,255,208,47,64,0,63,234,0,15,255,64,9,0,0,0,255,0,5,64,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,85,85,85,255,85,85,85,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85,85, + // 0x57ab 垫 + 171,87,37,37,114,40,2,253,0,11,224,0,0,127,0,0,0,0,0,15,224,0,0,127,0,0,0,0,0,15,224,0,0,127,0,0,0,0,0,15,224,0,0,127,0,0,0,0,191,255,255,245,255,255,255,255,0,0,191,255,255,245,255,255,255,255,0,0,191,255,255,245,255,255,255,255,0,0,21,95,245,80,0,255,0,191,0,0,0,15,224,0,0,254,0,127,0,0,0,15,224,0,16,254,0,127,0,0,0,15,224,100,253,253,0,127,0,0,0,15,255,249,255,252,0,127,0,0,6,255,255,248,255,252,0,127,0,0,255,255,255,228,31,254,0,127,0,0,191,255,244,0,7,255,192,127,0,0,191,159,224,0,11,255,244,127,0,0,16,15,224,0,15,255,254,63,13,0,0,15,224,0,63,194,253,63,15,192,0,15,224,0,255,128,120,63,79,192,0,15,224,7,255,0,16,47,239,128,15,255,224,31,252,0,0,31,255,64,15,255,208,11,240,0,0,11,255,0,11,255,64,3,233,0,0,2,248,0,1,64,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,255,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,255,0,0,0,255,255,255,255,255,255,255,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,191,255,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,255,0,191,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0, + // 0x586b 填 + 107,88,38,38,124,40,1,252,0,0,0,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,63,255,255,255,255,255,192,0,31,192,63,255,255,255,255,255,192,0,31,192,63,255,255,255,255,255,192,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,255,255,255,255,240,0,63,255,255,192,255,255,255,255,240,0,63,255,255,192,254,85,85,95,240,0,63,255,255,192,253,0,0,11,240,0,26,175,234,128,253,85,85,91,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,254,85,85,95,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,254,85,85,95,240,0,0,31,199,208,255,255,255,255,240,0,0,31,255,224,255,255,255,255,240,0,0,47,255,240,0,0,0,0,0,0,2,255,255,128,0,0,0,0,0,0,127,255,249,255,255,255,255,255,255,208,127,255,64,255,255,255,255,255,255,208,63,244,0,255,255,255,255,255,255,208,46,64,0,0,1,0,0,96,0,0,0,0,0,0,15,228,1,252,0,0,0,0,0,0,127,240,3,255,128,0,0,0,0,7,255,128,0,191,244,0,0,0,0,191,253,0,0,15,254,0,0,0,3,255,224,0,0,2,255,192,0,0,0,255,64,0,0,0,127,128,0,0,0,36,0,0,0,0,8,0, + // 0x58f3 壳 + 243,88,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,63,128,0,0,0,0,0,3,248,63,128,0,0,0,0,0,3,248,63,130,170,170,170,170,170,131,248,63,135,255,255,255,255,255,195,248,0,7,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,248,0,0,0,0,255,255,255,255,248,0,0,0,0,255,255,255,255,248,0,0,0,0,255,0,0,3,248,0,0,0,0,255,0,0,3,248,0,0,0,0,254,0,0,3,248,0,0,0,1,254,0,0,3,248,0,64,0,3,252,0,0,3,248,0,185,0,15,252,0,0,3,248,0,190,0,127,240,0,0,3,248,0,253,6,255,208,0,0,3,253,86,253,127,255,64,0,0,3,255,255,252,63,252,0,0,0,1,255,255,248,31,208,0,0,0,0,127,255,224,9,0,0,0,0,0,0,0,0, + // 0x5907 备 + 7,89,38,38,124,40,1,252,0,0,0,41,64,0,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,255,64,0,0,64,0,0,0,0,15,255,255,255,255,248,0,0,0,0,63,255,255,255,255,253,0,0,0,0,255,255,255,255,255,248,0,0,0,7,255,128,0,0,63,240,0,0,0,63,255,240,0,1,255,192,0,0,2,255,255,252,0,11,255,0,0,0,11,255,67,255,128,127,248,0,0,0,2,252,0,255,250,255,208,0,0,0,0,144,0,47,255,255,0,0,0,0,0,0,0,11,255,254,0,0,0,0,0,0,1,255,255,255,249,0,0,0,0,1,191,255,251,255,255,249,64,0,6,191,255,255,128,47,255,255,255,144,191,255,255,228,0,1,191,255,255,192,63,255,249,0,0,0,6,255,255,64,47,249,0,0,0,0,0,1,191,0,5,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,224,0,63,192,0,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,208,0,63,192,0,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,0,31,224,0,0,0,0,255,0,0,0,26,144,0,0,0,0,106,0,0, + // 0x590d 复 + 13,89,27,38,10,40,6,252,0,1,144,0,0,0,0,0,3,252,0,0,0,0,0,7,248,0,0,0,0,0,15,240,0,0,0,0,0,47,255,255,255,255,192,0,63,255,255,255,255,192,0,255,255,255,255,255,192,2,255,0,0,0,0,0,11,252,0,0,0,0,0,47,253,85,85,85,84,0,127,255,255,255,255,252,0,47,239,255,255,255,252,0,10,47,192,0,2,252,0,0,47,192,0,2,252,0,0,47,255,255,255,252,0,0,47,255,255,255,252,0,0,47,213,85,86,252,0,0,47,192,0,2,252,0,0,47,192,0,2,252,0,0,47,255,255,255,252,0,0,47,255,255,255,252,0,0,21,127,229,85,84,0,0,0,127,192,0,0,0,0,0,255,234,170,160,0,0,7,255,255,255,253,0,0,31,255,255,255,248,0,0,255,240,0,15,240,0,7,255,252,0,63,208,0,63,253,255,64,255,192,0,31,224,63,227,255,0,0,7,64,15,255,248,0,0,0,0,3,255,240,0,0,0,0,47,255,254,0,0,0,7,255,255,255,245,0,6,255,255,146,255,255,248,47,255,248,0,31,255,240,15,254,64,0,1,191,224,6,64,0,0,0,1,128, + // 0x5916 外 + 22,89,38,38,124,40,1,252,0,0,25,0,0,0,26,144,0,0,0,0,63,192,0,0,31,208,0,0,0,0,63,192,0,0,31,208,0,0,0,0,127,64,0,0,31,208,0,0,0,0,191,0,0,0,31,208,0,0,0,0,255,0,0,0,31,208,0,0,0,1,255,170,169,0,31,208,0,0,0,3,255,255,255,192,31,208,0,0,0,7,255,255,255,192,31,208,0,0,0,11,255,255,255,192,31,208,0,0,0,15,240,0,63,228,31,208,0,0,0,63,208,0,127,252,31,208,0,0,0,127,192,0,127,254,31,208,0,0,0,255,64,0,191,191,95,208,0,0,2,255,0,0,255,63,239,208,0,0,7,255,0,0,253,31,255,208,0,0,15,255,208,2,252,11,255,208,0,0,63,255,252,3,252,3,255,208,0,0,191,223,255,71,248,0,255,208,0,0,47,66,255,235,240,0,127,240,0,0,6,0,63,255,240,0,31,252,0,0,0,0,11,255,208,0,31,255,64,0,0,0,2,255,192,0,31,255,224,0,0,0,0,255,64,0,31,255,252,0,0,0,1,255,0,0,31,239,255,128,0,0,3,253,0,0,31,211,255,240,0,0,11,252,0,0,31,208,191,192,0,0,31,244,0,0,31,208,15,64,0,0,63,224,0,0,31,208,1,0,0,0,255,192,0,0,31,208,0,0,0,3,255,0,0,0,31,208,0,0,0,31,253,0,0,0,31,208,0,0,0,127,244,0,0,0,31,208,0,0,3,255,208,0,0,0,31,208,0,0,31,255,64,0,0,0,31,208,0,0,15,252,0,0,0,0,31,208,0,0,3,224,0,0,0,0,31,208,0,0,0,64,0,0,0,0,26,144,0,0, + // 0x591a 多 + 26,89,34,38,86,40,3,252,0,0,0,6,64,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,11,255,255,255,254,0,0,0,0,63,255,255,255,255,128,0,0,2,255,255,255,255,255,0,0,0,47,255,0,0,3,252,0,0,2,255,252,0,0,15,248,0,0,127,255,255,128,0,63,224,0,0,127,249,191,244,1,255,128,0,0,31,128,31,255,11,254,0,0,0,4,0,2,255,255,248,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,47,255,121,0,0,0,0,0,7,255,244,255,192,0,0,0,0,191,255,131,255,0,0,0,0,111,255,248,31,253,0,0,0,111,255,255,128,191,255,255,255,208,255,255,228,7,255,255,255,255,240,127,249,0,63,255,255,255,255,224,62,64,2,255,224,0,0,127,192,0,0,111,255,64,0,0,255,128,0,7,255,255,128,0,2,255,0,0,191,255,255,244,0,11,252,0,0,63,248,31,254,0,47,244,0,0,31,128,3,255,192,191,224,0,0,4,0,0,127,247,255,128,0,0,0,0,0,15,255,253,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,31,255,192,0,0,0,0,0,2,255,253,0,0,0,0,0,1,191,255,224,0,0,0,0,1,191,255,254,0,0,0,0,3,255,255,255,208,0,0,0,0,2,255,255,248,0,0,0,0,0,0,255,249,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0, + // 0x5927 大 + 39,89,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,253,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,253,0,0,0,7,255,192,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,47,231,252,0,0,0,0,0,0,63,211,253,0,0,0,0,0,0,127,193,255,0,0,0,0,0,0,255,128,255,128,0,0,0,0,2,255,0,191,192,0,0,0,0,3,254,0,63,240,0,0,0,0,15,252,0,31,244,0,0,0,0,47,244,0,11,253,0,0,0,0,127,224,0,3,255,0,0,0,1,255,192,0,1,255,192,0,0,11,255,0,0,0,191,244,0,0,47,253,0,0,0,63,253,0,1,255,244,0,0,0,15,255,192,31,255,208,0,0,0,3,255,248,191,255,0,0,0,0,0,191,255,127,248,0,0,0,0,0,31,252,31,128,0,0,0,0,0,2,244,5,0,0,0,0,0,0,0,32, + // 0x5929 天 + 41,89,37,35,94,40,2,252,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,31,255,255,255,255,255,255,255,244,0,31,255,255,255,255,255,255,255,244,0,31,255,255,255,255,255,255,255,244,0,15,255,255,255,255,255,255,255,244,0,0,0,0,3,255,192,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,15,255,244,0,0,0,0,0,0,0,31,247,252,0,0,0,0,0,0,0,63,227,253,0,0,0,0,0,0,0,191,193,255,0,0,0,0,0,0,2,255,128,255,192,0,0,0,0,0,11,255,0,63,240,0,0,0,0,0,47,252,0,31,252,0,0,0,0,0,255,244,0,11,255,64,0,0,0,7,255,208,0,2,255,224,0,0,0,127,255,0,0,0,255,254,0,0,11,255,248,0,0,0,47,255,228,0,255,255,208,0,0,0,7,255,255,64,191,254,0,0,0,0,0,191,254,0,63,224,0,0,0,0,0,11,252,0,25,0,0,0,0,0,0,0,100,0, + // 0x592a 太 + 42,89,37,38,124,40,2,252,0,0,0,1,253,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,127,255,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,255,254,0,0,0,0,11,255,224,0,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,0,15,255,244,0,0,0,0,0,0,0,31,247,248,0,0,0,0,0,0,0,47,227,252,0,0,0,0,0,0,0,63,194,254,0,0,0,0,0,0,0,127,192,255,0,0,0,0,0,0,0,255,128,191,128,0,0,0,0,0,1,255,0,127,192,0,0,0,0,0,3,254,0,63,240,0,0,0,0,0,11,252,0,31,244,0,0,0,0,0,15,248,0,15,252,0,0,0,0,0,63,242,192,3,255,0,0,0,0,0,255,239,244,1,255,128,0,0,0,3,255,159,253,0,255,224,0,0,0,15,255,7,255,64,63,248,0,0,0,127,252,1,255,208,15,255,0,0,2,255,240,0,127,244,7,255,208,0,31,255,192,0,31,253,1,255,253,0,255,254,0,0,7,254,0,63,255,64,191,244,0,0,2,248,0,15,254,0,47,128,0,0,0,144,0,1,252,0,8,0,0,0,0,0,0,0,32,0, + // 0x5931 失 + 49,89,37,38,124,40,2,252,0,0,0,0,254,0,0,0,0,0,0,3,228,0,254,0,0,0,0,0,0,11,248,0,254,0,0,0,0,0,0,15,244,0,254,0,0,0,0,0,0,15,240,0,254,0,0,0,0,0,0,47,224,0,254,0,0,0,0,0,0,63,208,0,254,0,0,0,0,0,0,127,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,255,64,0,3,255,255,255,255,255,255,255,64,0,7,252,0,0,254,0,0,0,0,0,15,248,0,0,254,0,0,0,0,0,63,240,0,0,254,0,0,0,0,0,127,208,0,0,254,0,0,0,0,0,31,128,0,1,254,0,0,0,0,0,2,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,170,170,170,171,255,170,170,170,170,0,255,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,255,254,0,0,0,0,11,255,208,0,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,0,47,251,248,0,0,0,0,0,0,0,63,211,252,0,0,0,0,0,0,0,255,193,255,0,0,0,0,0,0,2,255,64,255,192,0,0,0,0,0,11,254,0,127,240,0,0,0,0,0,63,252,0,47,252,0,0,0,0,1,255,240,0,11,255,64,0,0,0,11,255,192,0,2,255,224,0,0,0,191,255,0,0,0,255,254,0,0,27,255,248,0,0,0,31,255,248,0,255,255,208,0,0,0,3,255,255,64,191,253,0,0,0,0,0,127,255,0,63,208,0,0,0,0,0,7,252,0,8,0,0,0,0,0,0,0,36,0, + // 0x5934 头 + 52,89,36,38,86,40,2,252,0,0,0,0,1,84,0,0,0,0,0,0,0,3,248,0,0,0,0,3,208,0,3,248,0,0,0,0,15,254,0,3,248,0,0,0,0,15,255,224,3,248,0,0,0,0,1,255,253,3,248,0,0,0,0,0,31,255,67,248,0,0,0,0,0,1,255,3,248,0,0,0,0,0,0,44,3,248,0,0,0,0,128,0,0,3,248,0,0,0,3,248,0,0,7,248,0,0,0,11,255,128,0,7,244,0,0,0,7,255,248,0,7,244,0,0,0,0,127,255,64,7,244,0,0,0,0,7,255,192,11,244,0,0,0,0,0,127,64,11,240,0,0,0,0,0,13,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,85,85,85,85,95,245,85,85,85,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,0,0,0,0,127,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,3,253,16,0,0,0,0,0,0,11,252,126,0,0,0,0,0,0,31,244,255,224,0,0,0,0,0,127,224,191,253,0,0,0,0,2,255,192,15,255,192,0,0,0,15,255,0,1,255,248,0,0,0,191,252,0,0,47,255,64,0,27,255,224,0,0,3,255,224,2,255,255,64,0,0,0,127,248,127,255,248,0,0,0,0,15,254,63,255,128,0,0,0,0,2,252,31,228,0,0,0,0,0,0,176,9,0,0,0,0,0,0,0,0, + // 0x597d 好 + 125,89,37,38,124,40,2,252,0,46,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,63,128,0,255,255,255,255,240,0,0,63,64,0,255,255,255,255,253,0,0,127,64,0,255,255,255,255,252,0,0,127,0,0,85,85,85,111,244,0,0,191,0,0,0,0,0,63,224,0,0,254,0,0,0,0,0,191,192,0,85,255,85,80,0,0,1,255,0,0,255,255,255,252,0,0,7,252,0,0,255,255,255,252,0,0,31,244,0,0,255,255,255,248,0,1,191,208,0,0,3,248,3,248,0,1,255,64,0,0,3,244,3,248,0,1,253,0,0,0,3,240,3,244,0,1,253,0,0,0,7,240,3,244,0,1,253,0,0,0,11,240,7,246,170,170,254,170,170,0,15,224,11,247,255,255,255,255,255,64,15,208,15,247,255,255,255,255,255,64,31,192,15,231,255,255,255,255,255,64,47,192,31,208,0,1,253,0,0,0,63,128,47,192,0,1,253,0,0,0,63,224,63,192,0,1,253,0,0,0,127,253,63,128,0,1,253,0,0,0,191,255,255,0,0,1,253,0,0,0,126,255,255,0,0,1,253,0,0,0,5,47,254,0,0,1,253,0,0,0,0,7,255,64,0,1,253,0,0,0,0,11,255,224,0,1,253,0,0,0,0,15,255,248,0,1,253,0,0,0,0,63,219,253,0,1,253,0,0,0,0,255,194,253,0,1,253,0,0,0,2,255,0,184,0,1,253,0,0,0,15,253,0,32,0,2,252,0,0,0,127,244,0,0,15,255,252,0,0,0,127,208,0,0,15,255,252,0,0,0,31,64,0,0,7,255,240,0,0,0,8,0,0,0,2,169,0,0,0,0, + // 0x59cb 始 + 203,89,37,38,124,40,2,252,0,26,64,0,0,10,64,0,0,0,0,47,192,0,0,15,240,0,0,0,0,63,128,0,0,31,240,0,0,0,0,63,128,0,0,47,224,0,0,0,0,63,64,0,0,63,192,0,0,0,0,127,0,0,0,63,192,0,0,0,0,191,0,0,0,127,128,0,0,0,0,254,0,0,0,191,0,125,0,0,85,254,85,144,0,255,0,255,0,0,255,255,255,252,1,253,0,127,192,0,255,255,255,252,2,252,0,47,208,0,255,255,255,248,3,248,0,15,240,0,3,248,3,248,7,244,0,7,248,0,3,244,3,244,11,245,170,255,252,0,7,240,3,247,255,255,255,255,254,0,11,240,7,243,255,255,255,255,255,0,15,224,7,243,255,255,255,234,191,128,15,208,11,241,165,64,0,0,63,128,31,192,15,224,0,0,0,0,44,0,47,192,15,208,0,0,0,0,0,0,63,128,31,192,0,0,0,0,0,0,63,128,47,192,31,255,255,255,248,0,127,240,63,192,31,255,255,255,248,0,191,253,127,64,31,255,255,255,248,0,255,255,255,0,31,213,85,87,248,0,45,191,255,0,31,192,0,3,248,0,4,31,254,0,31,192,0,3,248,0,0,7,255,128,31,192,0,3,248,0,0,11,255,224,31,192,0,3,248,0,0,31,255,248,31,192,0,3,248,0,0,63,219,253,31,192,0,3,248,0,0,255,194,253,31,192,0,3,248,0,3,255,0,184,31,213,85,87,248,0,15,253,0,32,31,255,255,255,248,0,127,244,0,0,31,255,255,255,248,0,127,208,0,0,31,255,255,255,248,0,47,64,0,0,31,192,0,3,248,0,8,0,0,0,31,192,0,2,164,0, + // 0x5b50 子 + 80,91,36,35,59,40,2,252,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,170,170,170,170,170,191,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,87,255,192,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,170,170,170,170,255,170,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,191,255,255,0,0,0,0,0,0,63,255,254,0,0,0,0,0,0,47,255,248,0,0,0,0,0,0,31,234,64,0,0,0,0, + // 0x5b58 存 + 88,91,37,38,124,40,1,252,0,0,0,10,64,0,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,26,170,170,255,234,170,170,170,170,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,0,0,7,252,0,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,191,192,255,255,255,255,208,0,0,0,255,64,255,255,255,255,248,0,0,3,254,0,255,255,255,255,240,0,0,11,252,0,85,85,85,255,192,0,0,31,244,0,0,0,2,255,0,0,0,127,240,0,0,0,11,252,0,0,0,255,240,0,0,0,63,240,0,0,7,255,240,0,0,2,255,128,0,0,31,255,240,0,0,2,254,0,0,0,127,255,240,0,0,2,252,0,0,0,63,219,240,42,170,171,254,170,170,128,47,75,240,127,255,255,255,255,255,192,12,11,240,127,255,255,255,255,255,192,0,11,240,127,255,255,255,255,255,192,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,47,255,252,0,0,0,0,11,240,0,31,255,252,0,0,0,0,11,240,0,15,255,240,0,0,0,0,5,80,0,5,85,0,0,0,0, + // 0x5b89 安 + 137,91,36,38,86,40,2,252,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,229,85,85,85,85,85,91,248,47,192,0,0,0,0,0,3,248,47,192,0,10,80,0,0,3,248,47,192,0,31,240,0,0,3,248,47,192,0,47,224,0,0,3,248,47,192,0,63,192,0,0,3,248,0,0,0,191,128,0,0,0,0,0,0,0,255,0,0,0,0,0,106,170,171,255,170,170,170,170,169,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,47,224,0,0,191,64,0,0,0,63,192,0,0,255,0,0,0,0,191,128,0,1,255,0,0,0,0,255,0,0,3,253,0,0,0,3,254,0,0,7,252,0,0,0,7,252,0,0,15,244,0,0,0,15,255,144,0,47,240,0,0,0,31,255,254,64,127,208,0,0,0,63,255,255,249,255,128,0,0,0,47,198,255,255,255,0,0,0,0,0,0,27,255,254,0,0,0,0,0,0,2,255,255,224,0,0,0,0,0,47,255,255,254,64,0,0,0,7,255,253,47,255,244,0,0,22,255,255,224,2,255,254,0,31,255,255,254,0,0,47,255,208,15,255,255,144,0,0,2,255,192,3,255,228,0,0,0,0,127,0,2,148,0,0,0,0,0,9,0, + // 0x5b8c 完 + 140,91,37,38,124,40,1,252,0,0,0,0,42,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,6,170,170,170,191,234,170,170,169,0,15,255,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,255,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,191,255,255,255,255,208,254,0,6,160,191,255,255,255,255,208,169,0,0,0,191,255,255,255,255,208,0,0,0,0,21,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,170,170,170,64,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,0,0,3,252,0,31,208,0,0,0,0,0,3,252,0,31,208,0,0,0,0,0,3,252,0,31,208,0,0,0,0,0,7,248,0,31,208,0,0,0,0,0,15,244,0,31,208,0,0,0,0,0,15,240,0,31,208,0,0,0,0,0,63,224,0,31,208,0,30,64,0,0,191,192,0,31,208,0,31,192,0,2,255,128,0,31,208,0,31,192,0,31,255,0,0,31,208,0,47,192,1,255,252,0,0,31,245,85,191,128,127,255,224,0,0,15,255,255,255,64,63,255,64,0,0,11,255,255,255,0,15,244,0,0,0,1,255,255,248,0,5,0,0,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,37,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,6,170,170,170,191,234,170,170,169,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,170,170,170,170,170,160,254,0,11,240,255,255,255,255,255,244,254,0,0,0,255,255,255,255,255,244,0,0,0,0,255,255,255,255,255,244,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,1,253,0,63,192,0,0,0,0,0,2,253,0,63,192,0,0,0,0,0,3,252,0,63,192,0,0,0,0,0,3,252,0,63,255,255,255,64,0,0,3,248,0,63,255,255,255,64,0,0,7,248,0,63,255,255,255,64,0,0,11,252,0,63,213,85,85,0,0,0,15,253,0,63,192,0,0,0,0,0,31,255,0,63,192,0,0,0,0,0,47,255,128,63,192,0,0,0,0,0,127,255,224,63,192,0,0,0,0,0,255,143,248,63,192,0,0,0,0,1,255,7,255,127,192,0,0,0,0,3,254,1,255,255,192,0,0,0,0,15,252,0,127,255,255,234,170,170,128,63,244,0,15,255,255,255,255,255,128,127,208,0,0,191,255,255,255,255,0,15,128,0,0,5,175,255,255,255,0,2,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,192,0,36,0,0,0,3,252,63,192,0,255,128,0,0,3,252,63,192,2,255,0,0,0,3,252,63,192,11,255,255,255,253,3,252,63,192,47,255,255,255,255,131,252,0,0,255,255,255,255,255,64,0,0,11,255,192,0,3,254,0,0,0,127,255,240,0,15,248,0,0,7,255,239,252,0,127,240,0,0,11,255,67,255,66,255,128,0,0,3,248,0,255,255,254,0,0,0,0,128,0,47,255,244,0,0,0,0,0,0,15,255,244,0,0,0,0,0,1,191,255,255,144,0,0,0,0,47,255,255,255,254,64,0,0,6,255,255,65,255,255,255,148,6,255,255,244,0,27,255,255,255,255,255,254,0,0,0,127,255,253,191,255,255,255,255,255,255,255,252,63,231,255,255,255,255,255,208,96,20,3,255,255,255,255,255,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,248,0,0,0,47,208,0,0,2,164,0,0,0,21,64,0, + // 0x5bab 宫 + 171,91,34,38,86,40,3,252,0,0,0,6,224,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,7,252,0,0,0,0,106,170,170,171,255,170,170,170,144,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,31,255,255,255,255,255,79,224,191,31,255,255,255,255,255,79,224,0,31,255,255,255,255,255,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,192,0,0,0,63,64,0,0,31,255,255,255,255,255,64,0,0,31,255,255,255,255,255,64,0,0,31,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,2,252,0,0,0,0,2,252,0,2,252,0,0,0,0,2,252,0,2,252,0,0,0,0,2,252,0,2,252,0,0,0,0,2,252,0,2,252,0,0,0,0,2,252,0,2,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,2,255,255,255,255,255,255,252,0,2,252,0,0,0,0,2,252,0,2,168,0,0,0,0,1,168,0, + // 0x5bf9 对 + 249,91,37,38,124,40,2,252,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,42,170,170,169,0,0,0,254,0,0,63,255,255,255,128,0,0,254,0,0,63,255,255,255,64,0,0,254,0,0,63,255,255,255,64,0,0,254,0,0,0,0,0,191,0,0,0,254,0,0,0,0,0,191,47,255,255,255,255,64,0,0,0,255,47,255,255,255,255,64,0,0,0,254,47,255,255,255,255,64,0,0,1,253,26,170,170,255,170,0,2,128,1,253,0,0,0,254,0,0,11,224,2,252,0,0,0,254,0,0,31,248,3,252,0,0,0,254,0,0,7,254,7,248,0,128,0,254,0,0,1,255,139,244,11,208,0,254,0,0,0,127,239,240,15,240,0,254,0,0,0,31,255,224,7,248,0,254,0,0,0,7,255,208,3,252,0,254,0,0,0,2,255,192,0,254,0,254,0,0,0,0,191,208,0,191,0,254,0,0,0,0,255,240,0,127,128,254,0,0,0,1,255,252,0,63,192,254,0,0,0,3,255,255,0,47,64,254,0,0,0,11,253,255,128,4,0,254,0,0,0,15,244,191,192,0,0,254,0,0,0,63,240,63,240,0,0,254,0,0,0,191,192,15,224,0,0,254,0,0,2,255,64,11,128,0,0,254,0,0,7,254,0,2,0,0,0,254,0,0,47,252,0,0,0,0,0,254,0,0,191,240,0,0,0,15,255,254,0,0,191,192,0,0,0,11,255,253,0,0,47,0,0,0,0,3,255,248,0,0,8,0,0,0,0,3,254,144,0,0, + // 0x5c06 将 + 6,92,38,38,124,40,1,252,0,0,253,0,0,0,0,2,128,0,0,1,253,0,0,0,6,191,224,0,0,1,253,0,0,90,255,255,248,0,0,1,253,22,255,255,255,255,228,0,0,1,253,63,255,255,255,164,0,0,1,1,253,63,255,250,80,0,0,0,63,1,253,30,80,0,0,0,36,0,63,193,253,0,0,31,192,0,191,0,47,209,253,6,192,31,192,0,255,0,15,241,253,15,208,15,224,2,254,0,11,245,253,11,240,11,240,7,252,0,3,253,253,3,244,7,240,15,240,0,2,254,253,3,252,3,244,47,224,0,0,255,253,1,252,3,244,127,192,0,0,245,253,0,253,2,64,255,0,0,0,1,253,0,249,0,3,253,0,0,0,1,253,0,64,0,2,253,0,0,0,1,253,0,0,0,0,191,0,0,0,1,253,0,0,0,0,191,0,0,0,1,253,21,85,85,85,255,85,64,0,1,253,63,255,255,255,255,255,208,0,1,253,63,255,255,255,255,255,208,0,7,253,63,255,255,255,255,255,208,0,47,253,0,0,0,0,191,0,0,1,255,253,0,24,0,0,191,0,0,15,255,253,0,191,0,0,191,0,0,191,254,253,0,191,128,0,191,0,0,127,241,253,0,63,224,0,191,0,0,63,129,253,0,15,244,0,191,0,0,45,1,253,0,7,252,0,191,0,0,0,1,253,0,2,254,0,191,0,0,0,1,253,0,0,253,0,191,0,0,0,1,253,0,0,144,0,191,0,0,0,1,253,0,0,0,0,191,0,0,0,1,253,0,0,7,255,255,0,0,0,1,253,0,0,3,255,254,0,0,0,1,253,0,0,3,255,252,0,0,0,0,168,0,0,1,170,64,0,0, + // 0x5c0f 小 + 15,92,38,37,114,40,1,252,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,6,80,0,63,192,0,120,0,0,0,11,252,0,63,192,3,252,0,0,0,11,248,0,63,192,2,254,0,0,0,15,244,0,63,192,0,255,0,0,0,15,240,0,63,192,0,191,192,0,0,31,240,0,63,192,0,63,192,0,0,63,224,0,63,192,0,47,224,0,0,63,192,0,63,192,0,31,240,0,0,127,192,0,63,192,0,15,248,0,0,191,128,0,63,192,0,7,252,0,0,255,64,0,63,192,0,3,253,0,2,255,0,0,63,192,0,2,255,0,3,253,0,0,63,192,0,1,255,0,7,252,0,0,63,192,0,0,255,128,15,248,0,0,63,192,0,0,191,192,47,240,0,0,63,192,0,0,63,192,127,208,0,0,63,192,0,0,63,224,47,192,0,0,63,192,0,0,47,240,3,64,0,0,63,192,0,0,31,144,0,0,0,0,63,192,0,0,8,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,31,255,255,192,0,0,0,0,0,0,15,255,255,128,0,0,0,0,0,0,7,255,255,0,0,0,0,0,0,0,3,255,164,0,0,0,0,0, + // 0x5c31 就 + 49,92,38,38,124,40,1,252,0,0,63,128,0,0,63,128,0,0,0,0,63,128,0,0,63,129,128,0,0,0,63,128,0,0,63,143,224,0,0,0,63,128,0,0,63,139,244,0,0,0,63,128,0,0,63,131,253,0,63,255,255,255,255,0,63,128,255,0,63,255,255,255,255,0,63,128,127,64,63,255,255,255,255,0,63,128,63,192,21,85,85,85,85,0,63,128,29,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,170,191,234,170,128,3,255,255,255,244,255,255,255,255,192,3,255,255,255,244,255,255,255,255,192,3,255,255,255,244,255,255,255,255,192,3,248,0,7,244,0,63,128,0,0,3,248,0,3,244,0,63,128,0,0,3,248,0,3,244,0,127,252,0,0,3,248,0,3,244,0,127,252,0,0,3,248,0,3,244,0,191,252,0,0,3,255,255,255,244,0,191,252,0,0,3,255,255,255,244,0,255,252,0,0,3,255,255,255,244,0,255,252,0,0,0,0,63,128,0,1,255,252,0,0,0,0,63,128,0,2,254,252,0,0,1,228,63,135,208,3,253,252,0,0,2,252,63,139,240,3,249,252,0,0,3,248,63,131,244,11,245,252,0,0,7,244,63,130,252,15,241,252,0,0,11,240,63,129,252,31,225,252,2,0,15,224,63,128,254,63,209,252,3,208,31,208,63,128,190,191,193,252,3,224,63,192,63,128,80,255,65,252,3,224,191,64,63,128,3,254,1,252,3,224,47,0,63,128,11,252,1,252,11,208,9,63,255,64,47,244,1,255,255,208,0,31,255,64,127,224,0,255,255,192,0,15,254,0,31,128,0,191,255,64,0,5,64,0,2,0,0,22,164,0, + // 0x5c4f 屏 + 79,92,37,36,104,40,1,252,0,127,255,255,255,255,255,255,244,0,0,127,255,255,255,255,255,255,244,0,0,127,255,255,255,255,255,255,244,0,0,127,64,0,0,0,0,7,244,0,0,127,64,0,0,0,0,7,244,0,0,127,64,0,0,0,0,7,244,0,0,127,64,0,0,0,0,7,244,0,0,127,255,255,255,255,255,255,244,0,0,127,255,255,255,255,255,255,244,0,0,127,255,255,255,255,255,255,244,0,0,127,64,27,128,0,1,253,0,0,0,127,64,47,208,0,2,253,0,0,0,127,64,15,240,0,7,252,0,0,0,127,64,7,244,0,15,240,0,0,0,127,64,3,248,0,15,208,0,0,0,127,31,255,255,255,255,255,254,0,0,191,31,255,255,255,255,255,254,0,0,191,31,255,255,255,255,255,254,0,0,191,0,3,252,0,31,208,0,0,0,191,0,3,252,0,31,208,0,0,0,255,0,3,252,0,31,208,0,0,0,255,0,3,252,0,31,208,0,0,0,254,0,3,252,0,31,208,0,0,0,254,191,255,255,255,255,255,255,192,1,253,191,255,255,255,255,255,255,192,2,252,191,255,255,255,255,255,255,192,3,252,0,11,244,0,31,208,0,0,3,248,0,15,240,0,31,208,0,0,7,244,0,31,240,0,31,208,0,0,11,240,0,63,208,0,31,208,0,0,15,240,0,255,128,0,31,208,0,0,47,224,7,255,0,0,31,208,0,0,63,192,127,252,0,0,31,208,0,0,127,192,127,240,0,0,31,208,0,0,31,64,47,192,0,0,31,208,0,0,2,0,9,0,0,0,31,192,0,0, + // 0x5de5 工 + 229,93,36,30,14,40,2,255,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170, + // 0x5dee 差 + 238,93,36,38,86,40,2,252,0,0,4,0,0,0,36,0,0,0,0,189,0,0,0,191,128,0,0,0,255,0,0,0,255,64,0,0,0,191,128,0,1,254,0,0,0,0,63,192,0,3,252,0,0,0,0,47,224,0,11,248,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,21,85,255,85,85,85,85,85,84,0,1,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,253,255,255,255,255,255,0,0,7,252,255,255,255,255,255,0,0,11,244,255,255,255,255,255,0,0,15,240,0,2,253,0,0,0,0,47,224,0,2,252,0,0,0,0,127,192,0,2,252,0,0,0,0,255,128,0,2,252,0,0,0,2,255,0,0,2,252,0,0,0,7,253,0,0,2,252,0,0,0,31,248,85,85,86,253,85,85,80,191,240,255,255,255,255,255,255,252,255,192,255,255,255,255,255,255,252,63,0,255,255,255,255,255,255,252,8,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,34,34,50,40,4,253,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,192,0,170,170,170,170,170,170,191,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,10,144,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,250,170,170,170,170,191,192,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,4,0,31,224,0,0,0,0,0,15,128,31,224,0,0,0,0,0,15,240,31,224,0,0,0,0,0,15,240,31,224,0,0,0,0,0,15,240,15,224,0,0,0,0,0,47,224,15,240,0,0,0,0,0,63,208,15,249,0,0,0,0,1,255,192,11,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,248,0,0,6,170,170,170,170,170,64,0, + // 0x5e73 平 + 115,94,36,35,59,40,2,252,11,255,255,255,255,255,255,255,224,11,255,255,255,255,255,255,255,224,11,255,255,255,255,255,255,255,224,6,170,170,170,255,170,170,170,144,0,0,0,0,255,0,0,0,0,0,1,64,0,255,0,1,144,0,0,63,192,0,255,0,3,253,0,0,47,192,0,255,0,7,252,0,0,15,224,0,255,0,11,248,0,0,15,240,0,255,0,15,240,0,0,7,248,0,255,0,31,224,0,0,3,252,0,255,0,63,192,0,0,2,253,0,255,0,127,128,0,0,1,254,0,255,0,255,0,0,0,0,248,0,255,0,189,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,254,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x5e76 并 + 118,94,36,39,95,40,2,251,0,0,96,0,0,0,29,0,0,0,3,252,0,0,0,63,240,0,0,2,253,0,0,0,127,208,0,0,0,255,0,0,0,255,128,0,0,0,191,128,0,1,255,0,0,0,0,63,208,0,3,253,0,0,0,0,31,224,0,11,248,0,0,0,0,15,208,0,7,240,0,0,10,170,175,170,170,170,170,170,164,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,106,170,191,234,170,171,254,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,127,128,0,3,252,0,0,0,0,191,64,0,3,252,0,0,0,0,255,0,0,3,252,0,0,0,0,255,0,0,3,252,0,0,0,2,254,0,0,3,252,0,0,0,3,252,0,0,3,252,0,0,0,15,252,0,0,3,252,0,0,0,47,240,0,0,3,252,0,0,0,191,224,0,0,3,252,0,0,3,255,128,0,0,3,252,0,0,31,255,0,0,0,3,252,0,0,127,248,0,0,0,3,252,0,0,47,208,0,0,0,3,252,0,0,10,0,0,0,0,2,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e8a 床 + 138,94,38,38,124,40,1,252,0,0,0,0,5,80,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,170,170,170,175,250,170,170,170,128,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,26,170,170,191,170,170,170,64,0,254,47,255,255,255,255,255,255,192,0,254,47,255,255,255,255,255,255,192,0,253,47,255,255,255,255,255,255,192,1,253,0,0,3,255,240,0,0,0,1,253,0,0,15,255,248,0,0,0,1,253,0,0,31,255,253,0,0,0,1,252,0,0,63,255,255,0,0,0,2,252,0,0,255,255,191,192,0,0,2,252,0,2,255,127,111,224,0,0,2,252,0,7,252,127,79,248,0,0,3,252,0,31,244,127,71,254,0,0,3,248,0,127,224,127,65,255,128,0,7,244,1,255,192,127,64,191,224,0,11,240,7,255,0,127,64,47,252,0,11,240,47,252,0,127,64,11,255,64,15,240,255,240,0,127,64,2,255,208,31,224,255,192,0,127,64,0,191,128,47,192,63,0,0,127,64,0,31,0,63,192,8,0,0,127,64,0,4,0,127,128,0,0,0,127,64,0,0,0,31,0,0,0,0,127,64,0,0,0,1,0,0,0,0,127,0,0,0,0, + // 0x5e94 应 + 148,94,37,39,134,40,1,251,0,0,0,0,11,224,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,0,3,253,0,0,0,0,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,170,170,170,170,170,170,170,64,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,2,208,0,3,144,0,0,254,0,0,15,224,0,3,252,0,0,254,1,192,11,240,0,7,248,0,0,254,31,208,7,240,0,11,244,0,0,254,15,224,3,244,0,15,240,0,0,254,11,240,3,252,0,31,240,0,0,254,7,244,2,252,0,47,208,0,1,253,3,252,1,253,0,63,192,0,1,253,2,252,0,254,0,127,128,0,1,253,1,253,0,254,0,191,64,0,1,253,0,254,0,255,0,255,0,0,1,253,0,255,0,191,1,254,0,0,2,252,0,127,64,127,66,252,0,0,2,252,0,63,128,63,131,248,0,0,2,252,0,63,192,57,11,244,0,0,3,252,0,47,192,0,15,240,0,0,3,252,0,31,64,0,31,208,0,0,3,248,0,4,0,0,63,192,0,0,7,244,0,0,0,0,127,64,0,0,11,240,0,0,0,0,255,0,0,0,15,240,0,0,0,2,253,0,0,0,15,240,170,170,170,171,254,170,170,128,47,225,255,255,255,255,255,255,255,192,63,193,255,255,255,255,255,255,255,192,127,193,255,255,255,255,255,255,255,192,47,64,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5e9f 废 + 159,94,37,39,134,40,1,251,0,0,0,0,6,224,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,0,3,252,0,0,0,0,1,255,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,255,192,1,255,255,255,255,255,255,255,255,192,1,254,170,170,170,170,170,170,170,128,1,253,0,0,0,164,0,0,0,0,1,253,0,255,0,254,0,240,0,0,1,253,0,255,1,253,3,252,0,0,1,253,2,253,2,252,2,255,0,0,1,253,3,252,3,252,0,191,128,0,1,253,7,248,3,248,0,63,208,0,1,253,15,244,7,244,0,15,0,0,1,253,47,255,255,255,255,255,255,0,1,253,31,255,255,255,255,255,255,0,1,253,15,255,255,255,255,255,255,0,2,253,10,85,127,213,85,85,85,0,2,252,0,0,63,192,0,0,0,0,2,252,0,0,191,64,0,0,0,0,2,252,0,0,255,0,0,0,0,0,2,252,0,1,255,255,255,255,64,0,3,252,0,3,255,255,255,255,192,0,3,252,0,11,255,255,255,255,128,0,3,252,0,31,253,0,2,255,0,0,3,248,0,63,255,0,3,253,0,0,7,248,0,255,255,192,15,252,0,0,7,244,3,255,47,240,63,240,0,0,11,240,15,252,11,254,255,192,0,0,15,240,127,240,2,255,255,0,0,0,15,242,255,208,0,255,253,0,0,0,31,231,255,0,7,255,255,208,0,0,47,210,248,0,127,255,255,254,64,0,63,192,224,111,255,248,47,255,254,64,127,128,0,255,255,128,2,255,255,64,31,64,0,63,244,0,0,27,254,0,2,0,0,46,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0, + // 0x5ea6 度 + 166,94,37,38,124,40,1,252,0,0,0,0,11,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,254,85,85,85,85,85,85,85,0,0,253,0,6,160,0,2,160,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,127,255,255,255,255,255,255,64,0,253,127,255,255,255,255,255,255,64,0,253,127,255,255,255,255,255,255,64,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,255,255,255,244,0,0,1,253,0,11,255,255,255,244,0,0,1,253,0,11,255,255,255,244,0,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,2,252,63,255,255,255,255,255,128,0,2,252,63,255,255,255,255,255,224,0,2,252,63,255,255,255,255,255,192,0,3,248,0,11,208,0,0,255,128,0,3,244,0,15,244,0,3,255,0,0,7,244,0,3,253,0,15,252,0,0,11,240,0,1,255,192,191,240,0,0,11,240,0,0,127,251,255,192,0,0,15,224,0,0,15,255,254,0,0,0,31,208,0,0,31,255,254,0,0,0,47,192,0,27,255,255,255,249,64,0,63,129,191,255,255,230,255,255,255,128,127,64,255,255,254,0,31,255,255,128,31,0,191,254,64,0,0,111,255,0,1,0,41,0,0,0,0,0,105,0, + // 0x5f00 开 + 0,95,36,35,59,40,2,252,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,10,170,191,234,170,171,254,170,164,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,0,0,47,192,0,2,253,0,0,106,170,191,234,170,171,254,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,63,192,0,2,253,0,0,0,0,63,128,0,2,253,0,0,0,0,127,128,0,2,253,0,0,0,0,191,64,0,2,253,0,0,0,0,255,0,0,2,253,0,0,0,1,255,0,0,2,253,0,0,0,3,254,0,0,2,253,0,0,0,3,252,0,0,2,253,0,0,0,15,252,0,0,2,253,0,0,0,47,244,0,0,2,253,0,0,0,127,224,0,0,2,253,0,0,1,255,192,0,0,2,253,0,0,11,255,64,0,0,2,253,0,0,47,253,0,0,0,2,253,0,0,127,244,0,0,0,2,253,0,0,31,208,0,0,0,2,253,0,0,6,0,0,0,0,1,253,0,0, + // 0x5f03 弃 + 3,95,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,21,85,85,85,255,85,85,85,84,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,1,255,0,0,0,0,0,0,0,3,253,0,0,244,0,0,0,0,11,248,0,7,254,0,0,0,0,15,240,0,1,255,208,0,0,0,63,192,0,0,47,248,0,26,170,191,234,255,255,255,255,0,47,255,255,255,255,255,255,255,208,47,255,255,255,255,255,255,255,244,31,255,254,170,169,85,80,11,252,0,0,0,0,0,1,84,2,244,0,0,63,128,0,3,248,0,128,0,0,63,128,0,3,248,0,0,0,0,63,128,0,3,248,0,0,0,0,63,128,0,3,248,0,0,0,0,63,128,0,3,248,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,191,149,85,87,253,85,85,0,0,255,0,0,3,248,0,0,0,0,255,0,0,3,248,0,0,0,3,254,0,0,3,248,0,0,0,11,252,0,0,3,248,0,0,0,47,248,0,0,3,248,0,0,0,191,240,0,0,3,248,0,0,7,255,192,0,0,3,248,0,0,191,254,0,0,0,3,248,0,0,255,248,0,0,0,3,248,0,0,63,128,0,0,0,3,248,0,0,24,0,0,0,0,2,168,0,0, + // 0x5f0f 式 + 15,95,37,38,124,40,2,252,0,0,0,0,0,170,0,64,0,0,0,0,0,0,0,255,2,244,0,0,0,0,0,0,0,255,7,254,0,0,0,0,0,0,0,191,1,255,192,0,0,0,0,0,0,191,0,63,240,0,0,0,0,0,0,191,0,15,240,0,0,0,0,0,0,191,64,3,128,0,106,170,170,170,170,255,170,171,169,0,191,255,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,254,0,191,255,255,255,255,255,255,255,254,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,15,255,255,255,252,63,192,0,0,0,15,255,255,255,252,47,208,0,0,0,15,255,255,255,252,47,208,0,0,0,10,170,255,170,168,31,224,0,0,0,0,0,191,0,0,15,224,0,0,0,0,0,191,0,0,15,240,0,0,0,0,0,191,0,0,15,240,0,0,0,0,0,191,0,0,11,244,0,0,0,0,0,191,0,0,7,248,0,0,0,0,0,191,0,0,3,252,0,0,0,0,0,191,0,0,3,252,0,40,0,0,0,191,0,0,2,253,0,63,64,0,0,191,0,27,1,255,0,63,128,0,0,191,111,255,64,255,0,63,64,0,1,255,255,255,64,191,192,63,64,6,255,255,255,254,0,63,208,127,0,127,255,255,254,64,0,47,244,191,0,63,255,254,64,0,0,15,255,254,0,63,249,0,0,0,0,3,255,252,0,25,0,0,0,0,0,0,255,248,0,0,0,0,0,0,0,0,47,144,0, + // 0x5f15 引 + 21,95,31,37,40,40,3,252,0,0,0,0,0,0,3,252,63,255,255,255,192,0,3,252,63,255,255,255,192,0,3,252,63,255,255,255,192,0,3,252,21,85,85,111,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,15,255,255,255,192,0,3,252,15,255,255,255,192,0,3,252,15,255,255,255,192,0,3,252,31,229,85,85,64,0,3,252,31,192,0,0,0,0,3,252,47,192,0,0,0,0,3,252,63,192,0,0,0,0,3,252,63,192,0,0,0,0,3,252,63,128,0,0,0,0,3,252,127,255,255,255,208,0,3,252,191,255,255,255,208,0,3,252,191,255,255,255,192,0,3,252,255,85,85,127,192,0,3,252,254,0,0,47,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,128,0,3,252,0,0,0,127,128,0,3,252,0,0,0,127,64,0,3,252,0,0,0,191,0,0,3,252,0,0,0,255,0,0,3,252,0,0,2,255,0,0,3,252,0,255,255,253,0,0,3,252,0,191,255,252,0,0,3,252,0,127,255,240,0,0,3,252,0,42,170,64,0,0,2,252, + // 0x5f39 弹 + 57,95,37,38,124,40,2,252,0,0,0,0,4,0,0,20,0,0,0,0,0,0,126,0,0,63,192,0,191,255,255,0,191,64,0,127,192,0,191,255,255,0,63,192,0,255,64,0,191,255,255,0,31,224,0,254,0,0,21,85,255,0,11,240,2,252,0,0,0,0,191,0,3,248,3,248,0,0,0,0,191,0,2,208,11,240,0,0,0,0,191,0,0,0,31,208,0,0,0,0,191,11,255,255,255,255,252,0,0,0,191,11,255,255,255,255,252,0,63,255,255,11,255,255,255,255,252,0,63,255,255,11,240,7,244,3,252,0,63,255,255,11,240,7,244,3,252,0,63,85,85,11,240,7,244,3,252,0,63,0,0,11,255,255,255,255,252,0,63,0,0,11,255,255,255,255,252,0,63,0,0,11,255,255,255,255,252,0,63,0,0,11,240,7,244,3,252,0,63,0,0,11,240,7,244,3,252,0,63,255,255,11,240,7,244,3,252,0,127,255,255,11,255,255,255,255,252,0,127,255,254,11,255,255,255,255,252,0,0,0,254,11,255,255,255,255,252,0,0,0,254,0,0,7,244,0,0,0,0,0,254,0,0,7,244,0,0,0,0,0,253,0,0,7,244,0,0,0,0,0,253,255,255,255,255,255,255,64,0,0,253,255,255,255,255,255,255,64,0,0,253,255,255,255,255,255,255,64,0,1,252,21,85,91,249,85,85,0,0,1,252,0,0,7,244,0,0,0,0,2,252,0,0,7,244,0,0,0,0,7,248,0,0,7,244,0,0,0,47,255,244,0,0,7,244,0,0,0,15,255,240,0,0,7,244,0,0,0,15,255,208,0,0,7,244,0,0,0,5,149,0,0,0,7,244,0,0,0, + // 0x5f52 归 + 82,95,34,39,95,40,3,251,0,0,170,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,191,2,170,170,170,170,144,0,0,191,3,255,255,255,255,224,191,0,191,3,255,255,255,255,224,191,0,191,3,255,255,255,255,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,0,0,0,15,224,191,0,191,0,255,255,255,255,224,191,0,255,0,255,255,255,255,224,191,0,255,0,255,255,255,255,224,191,0,255,0,170,170,170,191,224,191,0,255,0,0,0,0,15,224,191,0,255,0,0,0,0,15,224,191,0,254,0,0,0,0,15,224,191,1,254,0,0,0,0,15,224,85,1,253,0,0,0,0,15,224,0,2,252,0,0,0,0,15,224,0,3,252,0,0,0,0,15,224,0,7,248,0,0,0,0,15,224,0,15,244,0,0,0,0,15,224,0,31,240,0,0,0,0,15,224,0,63,224,15,255,255,255,255,224,0,191,192,15,255,255,255,255,224,2,255,64,15,255,255,255,255,224,11,254,0,10,170,170,170,175,224,31,252,0,0,0,0,0,15,224,7,240,0,0,0,0,0,15,224,1,192,0,0,0,0,0,5,64,0,0,0,0,0,0,0,0,0, + // 0x5f84 径 + 132,95,38,38,124,40,1,252,0,0,36,0,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,3,255,11,255,255,255,255,248,0,0,11,252,11,255,255,255,255,252,0,0,47,240,11,255,255,255,255,248,0,0,255,208,0,27,64,0,15,244,0,3,255,64,0,63,192,0,31,224,0,31,253,0,0,31,208,0,63,192,0,127,244,9,0,15,240,0,255,128,0,63,208,31,208,7,252,2,255,0,0,15,0,63,192,2,255,11,252,0,0,4,0,191,128,0,191,239,244,0,0,0,2,255,0,0,63,255,208,0,0,0,7,253,0,0,15,255,64,0,0,0,15,248,0,0,127,255,224,0,0,0,63,240,0,7,255,255,254,0,0,0,255,240,0,111,255,95,255,228,0,3,255,240,27,255,248,2,255,255,144,31,255,240,191,255,128,0,47,255,208,191,255,240,63,248,1,84,2,255,128,191,219,240,46,64,2,252,0,27,0,63,75,240,0,0,2,252,0,0,0,29,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,3,252,0,0,0,0,11,240,7,255,255,255,255,252,0,0,11,240,7,255,255,255,255,252,0,0,11,240,7,255,255,255,255,252,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,255,255,255,255,255,255,208,0,11,240,255,255,255,255,255,255,208,0,11,240,255,255,255,255,255,255,208,0,11,240,21,85,85,85,85,85,64,0,11,240,0,0,0,0,0,0,0, + // 0x5f85 待 + 133,95,38,38,124,40,1,252,0,0,96,0,0,2,164,0,0,0,0,0,254,0,0,3,248,0,0,0,0,2,255,0,0,3,248,0,0,0,0,11,252,0,0,3,248,0,0,0,0,47,244,0,0,3,248,0,0,0,0,191,208,11,255,255,255,255,253,0,3,255,64,11,255,255,255,255,253,0,31,253,0,11,255,255,255,255,253,0,63,244,0,1,85,87,253,85,84,0,31,192,41,0,0,3,248,0,0,0,15,0,63,128,0,3,248,0,0,0,0,0,255,64,0,3,248,0,0,0,0,2,254,0,0,3,248,0,0,0,0,7,252,255,255,255,255,255,255,208,0,15,244,255,255,255,255,255,255,208,0,63,240,255,255,255,255,255,255,208,0,255,240,85,85,85,85,255,85,64,3,255,240,0,0,0,0,191,0,0,15,255,240,0,0,0,0,191,0,0,127,255,240,0,0,0,0,191,0,0,191,239,240,21,85,85,85,255,85,64,63,143,240,127,255,255,255,255,255,192,46,15,240,127,255,255,255,255,255,192,4,15,240,127,255,255,255,255,255,192,0,15,240,0,0,0,0,191,0,0,0,15,240,0,124,0,0,191,0,0,0,15,240,1,254,0,0,191,0,0,0,15,240,0,255,64,0,191,0,0,0,15,240,0,63,192,0,191,0,0,0,15,240,0,31,240,0,191,0,0,0,15,240,0,15,244,0,191,0,0,0,15,240,0,3,252,0,191,0,0,0,15,240,0,2,224,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,3,255,255,0,0,0,15,240,0,0,3,255,254,0,0,0,15,240,0,0,2,255,252,0,0,0,6,144,0,0,0,169,64,0,0, + // 0x5faa 循 + 170,95,38,38,124,40,1,252,0,0,144,0,0,0,0,0,0,0,0,1,253,0,0,0,0,27,224,0,0,3,252,0,0,0,91,255,248,0,0,15,244,25,22,255,255,255,252,0,0,63,224,31,255,255,255,250,64,0,0,255,192,31,255,255,255,192,0,0,3,255,0,31,233,64,47,192,0,0,15,252,0,31,192,0,47,192,0,0,127,240,0,31,192,0,47,192,0,0,63,192,56,31,192,0,47,192,0,0,30,0,191,95,255,255,255,255,255,208,4,1,255,31,255,255,255,255,255,208,0,3,252,31,255,255,255,255,255,208,0,15,244,31,192,0,63,128,0,0,0,63,224,31,192,0,63,64,0,0,0,255,208,31,192,0,63,64,0,0,3,255,208,31,195,255,255,255,254,0,15,255,208,31,195,255,255,255,254,0,127,255,208,31,195,255,255,255,254,0,255,223,208,31,195,244,0,0,254,0,127,79,208,31,195,244,0,0,254,0,62,15,208,47,195,244,0,0,254,0,24,15,208,47,195,250,170,170,254,0,0,15,208,47,131,255,255,255,254,0,0,15,208,63,131,255,255,255,254,0,0,15,208,63,131,244,0,0,254,0,0,15,208,63,67,244,0,0,254,0,0,15,208,127,3,244,0,0,254,0,0,15,208,191,3,255,255,255,254,0,0,15,208,191,3,255,255,255,254,0,0,15,208,254,3,250,170,170,254,0,0,15,209,253,3,244,0,0,254,0,0,15,210,252,3,244,0,0,254,0,0,15,211,252,3,250,170,170,254,0,0,15,215,244,3,255,255,255,254,0,0,15,211,240,3,255,255,255,254,0,0,15,208,160,3,244,0,0,254,0,0,10,144,0,2,160,0,0,85,0, + // 0x5fae 微 + 174,95,38,38,124,40,1,252,0,6,64,1,244,0,2,144,0,0,0,15,240,1,244,0,3,244,0,0,0,47,208,1,244,0,7,240,0,0,0,191,193,65,244,20,7,240,0,0,1,255,3,209,244,62,11,240,0,0,7,252,3,209,244,62,15,224,0,0,31,244,3,209,244,62,15,208,0,0,127,224,3,209,244,62,15,192,0,0,127,129,67,209,244,62,47,255,255,208,46,3,251,209,244,62,63,255,255,208,4,11,247,209,244,62,63,255,255,208,0,15,227,255,255,254,127,64,190,0,0,47,195,255,255,254,255,64,190,0,0,127,131,255,255,255,255,64,253,0,0,255,0,0,0,3,255,128,253,0,2,255,0,0,0,7,255,128,252,0,7,255,0,0,0,15,255,192,252,0,31,255,0,0,0,3,235,193,252,0,63,255,15,255,255,255,199,210,248,0,255,255,15,255,255,255,7,227,244,0,191,127,15,255,255,255,3,243,240,0,60,63,0,127,11,224,3,247,240,0,20,63,0,126,7,224,2,255,224,0,0,63,0,126,7,224,1,255,208,0,0,63,0,126,7,224,0,255,192,0,0,63,0,126,7,224,0,255,192,0,0,63,0,189,7,224,0,191,64,0,0,63,0,253,7,224,64,191,0,0,0,63,0,252,7,251,192,255,128,0,0,63,1,252,11,255,211,255,192,0,0,63,2,248,63,255,139,255,240,0,0,63,3,244,47,248,15,247,248,0,0,63,11,240,14,64,63,195,253,0,0,63,31,208,0,1,255,64,255,64,0,63,47,192,0,11,254,0,191,224,0,63,11,0,0,11,244,0,47,208,0,63,1,0,0,3,208,0,11,128,0,63,0,0,0,1,64,0,1,0, + // 0x5fc3 心 + 195,95,38,38,124,40,1,252,0,0,0,20,0,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,255,248,0,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,0,0,191,255,64,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,0,255,252,0,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,3,252,0,0,0,4,0,0,0,0,3,252,0,0,0,189,0,0,0,249,3,252,0,0,1,255,0,0,0,255,3,252,0,0,0,255,128,0,0,254,3,252,0,0,0,63,208,0,0,254,3,252,0,0,0,47,240,0,1,253,3,252,0,0,0,15,244,0,2,252,3,252,0,0,0,11,252,0,3,252,3,252,0,0,0,3,253,0,3,252,3,252,0,0,0,1,255,0,7,248,3,252,0,0,0,0,255,64,11,244,3,252,0,0,0,0,191,192,15,240,3,252,0,0,0,0,63,192,31,224,3,252,0,0,6,0,63,208,63,208,3,252,0,0,7,240,47,224,127,192,3,252,0,0,7,240,15,224,191,128,3,252,0,0,7,240,14,0,31,0,3,252,0,0,11,240,0,0,0,0,3,252,0,0,11,240,0,0,0,0,3,252,0,0,15,224,0,0,0,0,2,254,0,0,47,208,0,0,0,0,2,255,255,255,255,192,0,0,0,0,0,255,255,255,255,128,0,0,0,0,0,127,255,255,254,0,0,0,0,0,0,1,85,85,80,0,0,0, + // 0x5ffd 忽 + 253,95,36,38,86,40,2,252,0,0,9,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,85,85,85,85,85,64,0,7,255,255,255,255,255,255,192,0,15,255,255,255,255,255,255,192,0,63,255,255,255,255,255,255,192,0,255,192,63,208,31,208,63,192,3,255,0,127,128,63,192,63,192,15,252,0,255,0,127,64,63,128,127,244,3,253,0,255,0,63,128,191,208,15,248,2,253,0,63,128,31,0,63,240,7,252,0,127,64,0,0,191,192,15,240,0,127,64,0,3,255,0,47,224,0,127,64,0,31,252,0,191,192,0,191,0,0,191,240,2,255,0,0,255,0,7,255,192,11,253,0,0,255,0,11,254,0,47,244,0,2,254,0,2,244,0,255,208,15,255,253,0,0,64,11,255,64,11,255,248,0,0,0,11,253,0,7,255,224,0,0,0,2,240,224,0,16,0,0,0,0,0,71,254,0,0,0,0,0,0,0,7,255,192,0,80,0,0,57,11,224,191,244,2,244,0,0,191,15,240,15,252,7,253,0,0,255,15,240,2,240,2,255,64,1,253,15,240,0,128,0,191,192,3,252,15,240,0,0,116,47,240,11,248,15,240,0,0,127,15,248,31,240,15,240,0,0,191,3,253,127,208,15,240,0,0,255,2,255,255,192,11,255,255,255,254,0,255,63,0,7,255,255,255,252,0,120,4,0,1,255,255,255,240,0,0,0,0,0,5,85,85,0,0,0, + // 0x6027 性 + 39,96,37,38,124,40,1,252,0,31,208,0,0,1,168,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,62,65,253,0,0,0,0,31,208,0,127,65,253,0,0,0,0,31,208,0,191,1,253,0,0,0,0,31,208,0,191,1,253,0,0,0,0,31,208,0,255,1,253,0,0,0,0,31,239,0,254,1,253,0,0,0,15,159,255,129,254,170,254,170,169,0,15,159,223,194,255,255,255,255,255,0,15,159,219,211,255,255,255,255,255,0,31,159,215,247,255,255,255,255,255,0,31,95,211,255,240,1,253,0,0,0,47,31,210,255,240,1,253,0,0,0,63,31,208,95,208,1,253,0,0,0,63,31,208,63,192,1,253,0,0,0,126,31,208,63,128,1,253,0,0,0,189,31,208,7,0,1,253,0,0,0,188,31,208,0,0,1,253,0,0,0,4,31,208,0,0,1,253,0,0,0,0,31,208,2,255,255,255,255,252,0,0,31,208,2,255,255,255,255,252,0,0,31,208,2,255,255,255,255,252,0,0,31,208,1,85,86,254,85,84,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,191,255,255,255,255,255,192,0,31,208,191,255,255,255,255,255,192,0,31,208,191,255,255,255,255,255,192,0,31,208,106,170,170,170,170,170,128,0,31,208,0,0,0,0,0,0,0, + // 0x603b 总 + 59,96,36,38,86,40,2,252,0,0,4,0,0,0,80,0,0,0,0,127,0,0,0,190,0,0,0,0,191,128,0,0,255,64,0,0,0,63,208,0,2,255,0,0,0,0,31,240,0,3,252,0,0,0,0,11,248,0,11,248,0,0,0,0,3,252,0,15,240,0,0,0,0,2,252,0,47,224,0,0,0,21,86,245,85,127,229,84,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,21,85,85,165,85,85,84,0,0,0,0,0,244,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,21,65,255,192,0,8,0,3,228,63,192,63,240,0,127,0,3,248,63,192,15,252,0,191,128,7,244,63,192,3,255,0,63,208,15,240,63,192,0,253,0,15,240,15,240,63,192,0,52,0,7,248,31,224,63,192,0,0,9,3,253,63,192,63,192,0,0,15,208,254,127,192,63,192,0,0,15,224,191,255,64,63,208,0,0,47,208,62,127,0,47,255,255,255,255,192,36,4,0,15,255,255,255,255,128,0,0,0,7,255,255,255,254,0,0,0,0,0,21,85,85,64,0,0, + // 0x6062 恢 + 98,96,38,38,124,40,1,252,0,10,128,1,160,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,87,249,85,85,85,85,64,0,31,192,255,255,255,255,255,255,192,0,31,192,255,255,255,255,255,255,192,0,31,233,255,255,255,255,255,255,192,10,95,255,3,244,0,0,0,0,0,15,159,239,3,244,0,15,192,0,0,15,95,207,131,244,0,15,192,0,0,15,95,203,195,244,0,15,192,0,0,31,95,199,211,244,0,15,192,0,0,31,31,195,227,244,0,15,192,9,0,47,31,195,227,244,184,15,192,31,192,63,31,194,67,244,252,15,192,47,128,62,31,192,3,244,248,15,192,63,64,125,31,192,3,240,248,15,192,63,0,188,31,192,3,240,244,15,192,190,0,20,31,192,3,241,244,31,192,252,0,0,31,192,3,242,240,31,193,248,0,0,31,192,7,243,240,31,210,244,0,0,31,192,7,251,208,47,211,240,0,0,31,192,11,225,192,63,224,0,0,0,31,192,11,224,0,63,240,0,0,0,31,192,15,208,0,127,244,0,0,0,31,192,15,208,0,254,248,0,0,0,31,192,31,192,1,252,252,0,0,0,31,192,47,192,3,248,190,0,0,0,31,192,63,128,11,240,63,64,0,0,31,192,127,64,31,224,63,192,0,0,31,192,191,0,127,192,31,240,0,0,31,192,254,1,255,64,11,252,0,0,31,194,252,11,254,0,3,255,0,0,31,199,248,63,248,0,1,255,208,0,31,203,240,127,224,0,0,127,208,0,31,193,224,47,64,0,0,31,128,0,31,192,64,8,0,0,0,2,0, + // 0x606f 息 + 111,96,37,39,134,40,2,252,0,0,0,0,64,0,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,250,170,170,170,171,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,250,170,170,170,175,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,254,0,0,16,0,0,0,228,10,129,255,128,0,248,0,0,1,253,15,208,127,224,3,254,0,0,3,252,15,208,31,244,1,255,128,0,3,248,15,208,7,240,0,127,224,0,15,244,15,208,2,128,64,31,244,0,31,240,15,208,0,0,185,11,252,0,63,208,15,208,0,0,254,3,255,0,255,128,15,224,0,1,254,0,255,64,255,0,15,255,255,255,252,0,127,0,28,0,11,255,255,255,252,0,56,0,0,0,2,255,255,255,224,0,0,0,0,0,0,5,85,84,0,0,0,0, + // 0x611f 感 + 31,97,38,38,124,40,1,252,0,0,0,0,0,127,2,224,0,0,0,0,0,0,0,127,11,254,0,0,0,0,0,0,0,127,2,255,208,0,0,0,0,0,0,63,64,47,192,0,0,255,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,255,64,0,253,0,0,0,47,192,0,0,0,0,253,0,0,0,31,192,4,0,0,0,253,21,85,85,79,208,31,192,0,0,253,127,255,255,143,224,63,192,0,0,253,127,255,255,139,240,127,64,0,0,253,0,0,0,7,240,255,0,0,0,253,0,0,0,3,249,254,0,0,0,252,26,170,170,3,255,252,0,0,1,252,63,255,255,1,255,248,0,0,2,252,63,255,255,0,255,240,0,0,2,248,63,0,63,0,191,208,5,0,3,248,63,0,63,0,255,192,11,192,7,240,63,0,63,3,255,224,11,208,11,240,63,170,191,15,255,244,15,192,15,224,63,255,255,127,251,254,31,192,47,208,63,255,255,255,193,255,255,192,127,192,0,0,128,127,0,127,255,64,63,64,0,2,248,24,0,15,253,0,14,0,0,7,255,64,0,0,80,0,0,0,0,1,255,208,0,4,0,0,0,29,3,248,47,248,0,126,0,0,0,63,195,248,7,248,0,255,128,0,0,63,131,248,1,224,0,63,224,0,0,255,3,248,0,0,36,15,244,0,1,255,3,248,0,0,47,135,253,0,3,253,3,248,0,0,63,130,255,0,15,248,3,252,0,0,127,64,255,128,63,240,3,255,255,255,255,0,63,192,47,208,2,255,255,255,255,0,47,64,3,64,0,191,255,255,248,0,4,0,0,0,0,1,85,85,0,0,0,0, + // 0x620f 戏 + 15,98,37,39,134,40,1,251,0,0,0,0,0,42,0,16,0,0,0,0,0,0,0,127,64,188,0,0,0,0,0,0,0,127,130,255,0,0,0,0,0,0,0,127,128,255,192,0,5,85,85,80,0,127,128,63,240,0,63,255,255,255,0,63,128,15,252,0,63,255,255,255,0,63,128,3,244,0,63,255,255,255,0,63,192,0,192,0,0,0,0,255,0,63,192,0,0,0,0,0,0,254,0,63,192,0,90,64,2,0,1,253,0,63,218,255,255,128,11,192,1,252,107,255,255,255,255,128,47,224,2,252,255,255,255,255,255,128,15,244,3,252,191,255,255,165,0,0,3,252,7,248,127,191,208,0,0,0,1,255,11,240,0,31,208,0,224,0,0,255,143,240,0,31,224,2,252,0,0,63,223,224,0,31,224,3,252,0,0,31,255,208,0,15,240,7,244,0,0,11,255,192,0,15,240,15,240,0,0,3,255,128,0,15,240,47,224,0,0,1,255,64,0,11,244,63,192,0,0,1,255,128,0,11,248,255,64,0,0,3,255,208,0,7,250,255,0,0,0,11,255,240,0,3,255,252,0,0,0,15,255,248,0,3,255,244,0,0,0,63,243,253,0,2,255,224,0,0,0,191,194,255,0,1,255,192,8,0,1,255,128,255,64,2,255,64,15,64,7,255,0,127,64,11,255,128,15,192,31,252,0,61,0,63,255,192,31,192,127,244,0,20,0,255,255,224,31,192,63,208,0,0,11,255,159,248,63,128,15,64,0,0,127,253,15,255,191,64,5,0,0,0,191,244,7,255,255,0,0,0,0,0,31,128,1,255,254,0,0,0,0,0,9,0,0,127,252,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,37,39,134,40,1,251,0,0,0,0,0,170,1,64,0,0,0,0,0,0,0,255,7,244,0,0,0,0,0,0,0,191,15,254,0,0,0,0,0,0,0,191,2,255,192,0,0,0,0,0,0,191,0,127,244,0,0,0,0,0,0,191,0,15,244,0,0,0,0,0,0,191,0,2,208,0,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,170,170,170,255,234,170,170,128,0,255,0,0,0,127,128,0,0,0,0,255,0,0,0,63,128,0,0,0,0,255,0,0,0,63,128,1,0,0,0,255,0,0,0,63,192,7,244,0,0,255,85,85,80,63,192,15,240,0,0,255,255,255,240,63,192,15,240,0,0,255,255,255,240,47,192,47,208,0,0,255,255,255,240,31,208,63,192,0,0,255,0,15,240,31,224,127,128,0,0,255,0,15,240,15,240,255,0,0,0,254,0,15,224,15,242,255,0,0,0,254,0,15,224,15,247,253,0,0,0,254,0,15,224,11,255,248,0,0,1,254,0,15,224,7,255,240,0,0,1,253,0,15,224,3,255,224,0,0,2,253,0,15,224,3,255,192,0,0,2,252,0,31,208,2,255,0,13,0,3,252,85,127,208,7,255,0,15,192,3,252,127,255,192,31,255,64,15,192,7,248,63,255,128,127,255,192,15,192,11,244,47,253,2,255,255,208,31,192,15,240,0,0,15,255,31,240,47,192,31,240,0,0,127,252,15,253,63,128,63,208,0,2,255,240,7,255,255,64,127,192,0,2,255,192,1,255,255,0,47,128,0,0,189,0,0,127,253,0,7,0,0,0,32,0,0,10,160,0,0,0,0,0,0,0,0,0,0,0, + // 0x6237 户 + 55,98,33,39,95,40,1,251,0,0,0,0,27,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,15,240,0,0,0,0,5,85,85,95,229,85,85,64,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,208,0,0,0,0,63,192,0,31,208,0,0,0,0,63,192,0,31,208,0,0,0,0,63,192,0,31,208,0,0,0,0,63,192,0,31,208,0,0,0,0,63,192,0,31,208,0,0,0,0,63,192,0,47,208,0,0,0,0,63,192,0,47,229,85,85,85,85,127,192,0,47,255,255,255,255,255,255,192,0,47,255,255,255,255,255,255,192,0,47,255,255,255,255,255,255,192,0,63,192,0,0,0,0,63,192,0,63,192,0,0,0,0,63,192,0,63,192,0,0,0,0,21,64,0,63,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,240,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,38,37,114,40,1,252,0,0,0,0,0,0,0,0,180,0,5,85,85,85,84,0,0,11,254,0,31,255,255,255,252,0,1,255,255,128,31,255,255,255,252,80,191,255,253,0,31,255,255,255,252,191,255,255,128,0,0,0,0,0,0,191,255,228,0,0,0,0,0,0,0,191,228,0,0,0,0,0,0,0,0,191,0,0,0,0,1,85,85,85,80,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,244,0,15,240,191,0,0,0,0,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,255,170,175,250,144,3,244,0,15,240,255,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,249,85,85,81,253,0,15,208,0,3,244,0,0,1,253,0,15,208,0,7,240,0,0,2,252,0,15,208,0,7,240,0,0,3,252,0,15,208,0,7,240,0,0,3,248,0,15,208,0,11,240,0,0,7,244,0,15,208,0,11,240,0,0,15,240,0,15,208,0,15,224,0,0,15,240,0,15,208,0,15,208,0,0,47,208,0,15,208,0,31,192,0,0,63,192,0,15,208,0,63,192,0,0,255,128,0,15,208,0,63,128,0,2,255,0,0,15,208,0,191,64,0,7,253,0,0,15,208,0,255,0,0,7,248,0,0,15,208,0,45,0,0,0,240,0,0,15,208,0,4,0,0,0,0,0,0,15,208,0, + // 0x6247 扇 + 71,98,36,36,68,40,1,252,15,255,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,224,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,127,255,255,15,255,255,244,0,127,127,255,255,15,255,255,244,0,191,63,255,255,15,255,255,244,0,191,1,0,127,0,80,3,244,0,255,15,192,127,3,244,3,244,0,254,15,224,127,3,253,3,244,0,254,7,248,127,0,255,3,244,1,253,1,252,127,0,63,67,244,2,252,0,240,127,0,28,3,244,3,252,0,0,127,0,0,99,244,3,248,0,47,127,0,11,243,244,7,244,7,255,127,1,191,243,244,15,241,191,254,127,47,255,131,244,31,241,255,224,127,47,248,3,244,63,208,253,0,127,31,128,3,244,127,192,144,0,127,4,0,3,244,191,64,0,63,255,0,3,255,244,31,0,0,47,254,0,2,255,240,0,0,0,31,228,0,1,255,128, + // 0x624b 手 + 75,98,36,38,86,40,2,252,0,0,0,0,0,0,0,96,0,0,0,0,0,0,1,175,248,0,0,0,0,1,90,255,255,253,0,1,86,175,255,255,255,255,254,0,3,255,255,255,255,255,254,64,0,3,255,255,255,255,165,0,0,0,2,255,170,85,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,2,170,170,170,255,170,170,170,144,3,255,255,255,255,255,255,255,224,3,255,255,255,255,255,255,255,224,3,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,255,170,170,170,170,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,255,255,255,0,0,0,0,0,0,191,255,253,0,0,0,0,0,0,63,255,248,0,0,0,0,0,0,42,169,0,0,0,0,0, + // 0x6253 打 + 83,98,37,38,124,40,2,252,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,2,170,170,170,170,170,64,0,31,208,3,255,255,255,255,255,64,0,31,208,3,255,255,255,255,255,64,0,31,208,3,255,255,255,255,255,64,0,31,208,0,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,170,175,234,160,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,20,0,0,31,224,0,0,0,31,235,248,0,0,31,224,0,0,0,47,255,248,0,0,31,224,0,0,27,255,255,252,0,0,31,224,0,0,255,255,255,144,0,0,31,224,0,0,255,255,224,0,0,0,31,224,0,0,191,255,208,0,0,0,31,224,0,0,120,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,47,208,0,0,0,47,224,0,0,63,255,208,0,11,255,255,208,0,0,31,255,192,0,3,255,255,192,0,0,15,255,64,0,3,255,255,64,0,0,5,80,0,0,2,255,228,0,0,0, + // 0x6267 执 + 103,98,38,38,124,40,1,252,0,15,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,0,31,192,0,1,252,0,0,0,0,21,111,229,69,86,254,85,85,0,0,63,255,255,207,255,255,255,255,0,0,63,255,255,207,255,255,255,255,0,0,63,255,255,207,255,255,255,255,0,0,0,31,192,0,1,252,0,191,0,0,0,31,192,0,1,252,0,191,0,0,0,31,192,0,2,252,0,191,0,0,0,31,192,0,2,252,0,191,0,0,0,31,192,0,2,252,0,191,0,0,0,31,192,67,195,248,0,191,0,0,0,31,235,219,251,248,0,255,0,0,0,31,255,239,255,244,0,255,0,0,1,191,255,226,255,244,0,191,0,0,127,255,254,64,47,254,0,191,0,0,127,255,224,0,15,255,208,191,0,0,63,255,192,0,15,255,248,191,0,0,57,31,192,0,31,239,255,255,0,0,0,31,192,0,47,195,255,255,0,0,0,31,192,0,63,192,188,191,0,0,0,31,192,0,191,64,20,191,0,0,0,31,192,0,255,0,0,191,0,0,0,31,192,2,254,0,0,127,4,0,0,31,192,7,252,0,0,127,11,128,0,31,192,15,248,0,0,127,11,208,0,31,192,63,240,0,0,63,75,208,0,31,193,255,192,0,0,63,143,192,31,255,199,255,64,0,0,47,239,192,15,255,195,253,0,0,0,15,255,128,11,255,1,244,0,0,0,11,255,0,6,144,0,64,0,0,0,2,252,0, + // 0x6279 批 + 121,98,38,38,124,40,1,252,0,31,128,1,80,0,21,64,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,63,255,255,199,240,0,47,192,0,0,63,255,255,199,240,0,47,192,4,0,63,255,255,199,240,0,47,192,45,0,21,127,213,71,240,0,47,192,191,64,0,47,192,7,240,0,47,194,255,128,0,47,192,7,255,255,47,207,254,0,0,47,192,7,255,255,47,255,244,0,0,47,192,7,255,255,47,255,192,0,0,47,192,7,250,169,47,253,0,0,0,47,193,71,240,0,47,240,0,0,0,47,255,135,240,0,47,192,0,0,0,127,255,199,240,0,47,192,0,0,27,255,255,199,240,0,47,192,0,0,191,255,249,7,240,0,47,192,0,0,127,255,192,7,240,0,47,192,0,0,63,175,192,7,240,0,47,192,0,0,16,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,9,0,0,47,192,7,240,0,47,192,15,208,0,47,192,7,240,0,47,192,15,208,0,47,192,7,240,27,47,192,15,208,0,47,192,7,255,255,47,192,15,192,0,47,194,255,255,255,47,192,31,192,21,127,195,255,255,254,31,255,255,192,31,255,130,255,249,0,15,255,255,64,15,255,1,249,0,0,7,255,254,0,15,248,0,0,0,0,0,21,80,0, + // 0x6296 抖 + 150,98,38,38,124,40,1,252,0,11,224,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,3,128,0,191,0,0,0,15,240,0,15,248,0,191,0,0,0,15,240,0,15,255,0,191,0,0,0,15,240,0,1,255,208,191,0,0,0,15,240,0,0,63,244,191,0,0,63,255,255,248,0,11,240,191,0,0,63,255,255,248,0,1,192,191,0,0,63,255,255,248,0,0,0,191,0,0,21,95,245,80,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,61,0,0,191,0,0,0,15,240,0,191,208,0,191,0,0,0,15,240,0,255,248,0,191,0,0,0,15,240,0,31,255,64,191,0,0,0,15,240,20,2,255,192,191,0,0,0,15,251,248,0,127,64,191,0,0,0,15,255,248,0,14,0,191,0,0,6,255,255,252,0,0,0,191,0,0,127,255,255,144,0,0,0,191,0,0,63,255,240,0,0,0,0,191,107,192,63,239,240,0,0,0,6,255,255,192,24,15,240,0,0,107,255,255,255,208,0,15,240,2,191,255,255,255,255,144,0,15,240,7,255,255,255,255,64,0,0,15,240,3,255,255,164,191,0,0,0,15,240,3,250,64,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,31,255,224,0,0,0,0,191,0,0,15,255,208,0,0,0,0,191,0,0,11,255,64,0,0,0,0,191,0,0,1,80,0,0,0,0,0,106,0,0, + // 0x62a5 报 + 165,98,37,38,124,40,1,252,0,11,240,0,0,0,0,0,0,0,0,11,240,0,85,85,85,85,84,0,0,11,240,0,255,255,255,255,252,0,0,11,240,0,255,255,255,255,252,0,0,11,240,0,255,255,255,255,252,0,0,11,240,0,253,0,0,3,252,0,0,11,240,0,253,0,0,3,252,0,0,11,240,0,253,0,0,3,248,0,42,175,250,160,253,0,0,3,248,0,63,255,255,244,253,0,0,11,244,0,63,255,255,244,253,3,255,255,240,0,63,255,255,244,253,1,255,255,224,0,0,11,240,0,253,0,255,255,128,0,0,11,240,0,253,0,0,0,0,0,0,11,240,0,253,0,0,0,0,0,0,11,240,0,254,85,85,85,84,0,0,11,240,0,255,255,255,255,255,0,0,11,240,0,255,255,255,255,255,0,0,11,246,244,255,255,255,255,254,0,0,15,255,244,253,191,0,1,253,0,1,191,255,248,253,63,64,2,252,0,127,255,255,228,253,47,192,3,252,0,127,255,249,0,253,31,208,7,244,0,63,255,240,0,253,15,240,15,240,0,62,75,240,0,253,11,248,31,224,0,0,11,240,0,253,3,252,63,192,0,0,11,240,0,253,1,255,127,128,0,0,11,240,0,253,0,255,255,0,0,0,11,240,0,253,0,63,254,0,0,0,11,240,0,253,0,47,252,0,0,0,11,240,0,253,0,31,253,0,0,0,11,240,0,253,0,191,255,128,0,0,11,240,0,253,2,255,255,224,0,0,15,240,0,253,31,254,63,254,0,41,111,240,0,254,191,248,15,255,192,63,255,240,0,255,255,208,2,255,128,47,255,208,0,253,127,0,0,127,0,15,254,0,0,169,36,0,0,4,0, + // 0x62ac 抬 + 172,98,38,39,134,40,1,251,0,11,224,0,0,25,0,0,0,0,0,15,240,0,0,63,224,0,0,0,0,15,240,0,0,63,208,0,0,0,0,15,240,0,0,127,192,0,0,0,0,15,240,0,0,191,64,0,0,0,0,15,240,0,0,255,0,0,0,0,0,15,240,0,1,254,0,8,0,0,0,15,240,0,2,253,0,190,0,0,63,255,255,240,3,252,0,255,64,0,63,255,255,240,7,244,0,127,192,0,63,255,255,240,15,240,0,47,224,0,21,95,245,80,15,224,0,15,244,0,0,15,240,0,47,192,0,7,252,0,0,15,240,0,63,214,171,255,254,0,0,15,240,31,255,255,255,255,255,64,0,15,240,15,255,255,255,255,255,192,0,15,240,15,255,255,255,169,127,208,0,15,240,30,149,64,0,0,31,224,0,15,247,244,0,0,0,0,15,64,0,15,255,248,0,0,0,0,0,0,6,255,255,248,0,0,0,0,0,0,191,255,255,64,255,255,255,255,248,0,127,255,240,0,255,255,255,255,248,0,63,223,240,0,255,255,255,255,248,0,36,15,240,0,255,85,85,91,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,254,0,0,3,248,0,0,15,240,0,255,85,85,87,248,0,0,15,240,0,255,255,255,255,248,0,5,95,240,0,255,255,255,255,248,0,15,255,224,0,255,255,255,255,248,0,11,255,208,0,254,0,0,3,248,0,7,254,0,0,190,0,0,2,164,0,0,0,0,0,0,0,0,0,0,0, + // 0x62bd 抽 + 189,98,37,39,134,40,1,251,0,15,208,0,0,0,168,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,63,255,255,224,0,0,253,0,0,0,63,255,255,226,170,170,254,170,170,64,63,255,255,227,255,255,255,255,255,128,21,95,245,83,255,255,255,255,255,128,0,15,224,3,255,255,255,255,255,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,231,243,244,0,253,0,63,128,0,15,255,243,244,0,253,0,63,128,1,191,255,243,255,255,255,255,255,128,127,255,255,147,255,255,255,255,255,128,127,255,244,3,255,255,255,255,255,128,127,255,224,3,249,86,254,85,191,128,61,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,250,170,254,170,191,128,0,15,224,3,255,255,255,255,255,128,0,15,224,3,255,255,255,255,255,128,5,95,224,3,255,255,255,255,255,128,31,255,208,3,244,0,0,0,63,128,15,255,192,3,244,0,0,0,63,128,11,254,0,3,244,0,0,0,42,64,0,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,38,39,134,40,1,251,0,15,208,0,0,253,0,0,0,0,0,15,224,0,1,253,0,244,0,0,0,15,224,0,1,253,3,254,0,0,0,15,224,0,1,253,2,255,208,0,0,15,224,0,1,253,0,127,244,0,0,15,224,0,1,252,0,11,254,0,0,15,224,0,1,252,0,1,252,0,0,15,224,0,1,252,0,0,116,0,63,255,255,224,1,252,0,0,0,0,63,255,255,235,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,0,15,224,0,2,252,0,0,0,0,0,15,224,0,2,252,0,0,0,0,0,15,224,0,3,253,0,0,0,0,0,15,224,0,3,254,0,6,160,0,0,15,224,0,3,255,0,11,240,0,0,15,224,0,3,255,0,15,240,0,0,15,225,160,3,255,64,15,224,0,0,15,255,240,7,255,128,31,208,0,0,111,255,240,11,255,192,31,192,0,111,255,255,224,15,239,224,47,192,0,191,255,248,0,15,231,240,63,128,0,127,255,224,0,31,211,244,127,64,0,62,79,224,0,47,194,252,255,0,0,0,15,224,0,63,192,254,254,0,0,0,15,224,0,127,64,191,252,0,0,0,15,224,0,191,0,63,248,0,0,0,15,224,0,254,0,47,240,0,0,0,15,224,2,253,0,47,244,0,0,0,15,224,3,252,0,127,253,0,0,0,15,224,15,244,1,255,255,64,0,0,15,224,31,240,3,254,255,208,0,0,15,224,127,192,31,248,63,248,0,5,95,224,255,128,191,240,11,255,64,31,255,211,255,3,255,192,2,255,224,15,255,193,252,1,254,0,0,127,128,11,254,0,112,0,116,0,0,7,0,0,0,0,0,0,0,0,0,0,0, + // 0x62e9 择 + 233,98,38,38,124,40,1,252,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,3,255,255,255,255,244,0,0,15,208,3,255,255,255,255,252,0,0,15,208,3,255,255,255,255,248,0,0,15,208,1,111,213,85,95,240,0,0,15,208,0,15,240,0,47,208,0,0,15,208,0,3,248,0,191,128,0,63,255,255,240,2,254,2,255,0,0,63,255,255,240,0,191,143,252,0,0,63,255,255,240,0,47,255,240,0,0,21,111,229,80,0,15,255,192,0,0,0,15,208,0,0,31,255,208,0,0,0,15,208,0,1,255,255,253,0,0,0,15,208,0,31,255,159,255,208,0,0,15,208,7,255,253,2,255,255,64,0,15,208,47,255,208,0,47,255,224,0,15,208,95,253,1,84,2,255,128,0,15,255,231,128,2,252,0,27,0,0,31,255,224,0,2,252,0,0,0,6,255,255,224,0,2,252,0,0,0,127,255,254,65,255,255,255,255,244,0,63,255,224,1,255,255,255,255,244,0,63,239,208,1,255,255,255,255,244,0,20,15,208,0,85,86,253,85,80,0,0,15,208,0,0,2,252,0,0,0,0,15,208,0,0,2,252,0,0,0,0,15,208,0,0,2,252,0,0,0,0,15,208,31,255,255,255,255,255,192,0,15,208,31,255,255,255,255,255,192,0,15,208,31,255,255,255,255,255,192,0,15,208,5,85,86,253,85,85,64,0,15,208,0,0,2,252,0,0,0,0,31,208,0,0,2,252,0,0,0,15,255,208,0,0,2,252,0,0,0,15,255,192,0,0,2,252,0,0,0,11,255,64,0,0,2,252,0,0,0,1,80,0,0,0,1,168,0,0,0, + // 0x6309 按 + 9,99,38,39,134,40,1,251,0,15,208,0,0,1,168,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,1,85,87,253,85,85,64,0,15,224,11,255,255,255,255,255,192,0,15,224,11,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,63,255,255,235,240,0,0,0,47,192,63,255,255,235,240,15,144,0,47,192,21,95,245,91,240,31,224,0,47,192,0,15,224,11,240,47,208,0,47,192,0,15,224,11,240,63,192,0,47,192,0,15,224,0,0,63,128,0,0,0,0,15,224,0,0,127,64,0,0,0,0,15,224,5,85,255,85,85,85,64,0,15,224,15,255,255,255,255,255,208,0,15,225,175,255,255,255,255,255,208,0,15,255,255,255,255,255,255,255,208,1,191,255,240,3,248,0,31,224,0,111,255,255,224,7,244,0,47,208,0,191,255,244,0,15,240,0,63,192,0,127,255,224,0,15,224,0,63,192,0,62,79,224,0,31,192,0,127,64,0,0,15,224,0,63,208,0,255,0,0,0,15,224,0,63,253,2,254,0,0,0,15,224,0,191,255,227,252,0,0,0,15,224,0,255,255,255,248,0,0,0,15,224,0,9,31,255,240,0,0,0,15,224,0,0,1,255,253,0,0,0,15,224,0,0,7,255,255,192,0,0,15,224,0,0,111,254,255,244,0,0,15,224,0,11,255,240,63,254,0,5,95,224,22,255,255,128,7,255,192,31,255,208,63,255,248,0,0,255,192,15,255,192,31,254,64,0,0,47,0,11,254,0,15,144,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0, + // 0x6321 挡 + 33,99,36,38,86,40,1,252,0,15,208,0,0,1,168,0,0,0,15,208,0,0,1,252,0,0,0,15,208,0,0,1,252,0,0,0,15,208,1,180,1,252,0,185,0,15,208,3,248,1,252,0,255,0,15,208,2,252,1,252,0,254,0,15,208,0,253,1,252,1,252,0,15,208,0,255,1,252,3,252,63,255,255,240,127,1,252,3,244,63,255,255,240,63,129,252,7,240,63,255,255,240,63,193,252,15,224,42,175,250,144,47,193,252,15,208,0,15,208,0,30,1,252,31,192,0,15,208,0,0,1,252,1,64,0,15,208,0,0,1,252,0,0,0,15,208,2,170,170,254,170,169,0,15,208,7,255,255,255,255,254,0,15,208,7,255,255,255,255,254,0,15,230,231,255,255,255,255,254,0,15,255,240,0,0,0,0,254,1,191,255,240,0,0,0,0,254,127,255,255,224,0,0,0,0,254,191,255,248,0,0,0,0,0,254,127,255,208,1,85,85,85,85,254,62,95,208,3,255,255,255,255,254,0,15,208,3,255,255,255,255,254,0,15,208,3,255,255,255,255,254,0,15,208,0,0,0,0,0,254,0,15,208,0,0,0,0,0,254,0,15,208,0,0,0,0,0,254,0,15,208,0,0,0,0,0,254,0,15,208,10,170,170,170,170,254,0,15,208,15,255,255,255,255,254,0,31,208,15,255,255,255,255,254,31,255,208,15,255,255,255,255,254,15,255,192,0,0,0,0,0,254,15,255,64,0,0,0,0,0,254,1,80,0,0,0,0,0,0,84, + // 0x6324 挤 + 36,99,38,38,124,40,1,252,0,47,128,0,0,6,192,0,0,0,0,63,128,0,0,31,208,0,0,0,0,63,128,0,0,15,240,0,0,0,0,63,128,0,0,11,244,0,0,0,0,63,128,21,85,87,253,85,85,0,0,63,128,63,255,255,255,255,255,128,0,63,128,63,255,255,255,255,255,128,0,63,128,63,255,255,255,255,255,128,63,255,255,64,63,64,0,63,192,0,63,255,255,64,47,192,0,191,128,0,63,255,255,64,15,224,0,255,0,0,21,127,213,0,11,244,2,253,0,0,0,63,128,0,3,253,11,252,0,0,0,63,128,0,0,255,175,240,0,0,0,63,128,0,0,127,255,192,0,0,0,63,128,0,0,31,255,64,0,0,0,63,128,0,1,255,255,244,0,0,0,63,129,1,111,255,255,255,164,0,0,63,239,127,255,254,31,255,255,208,0,63,255,63,255,208,1,191,255,192,6,255,255,47,249,0,0,6,255,64,127,255,248,9,31,192,0,190,5,0,127,255,192,0,31,192,0,254,0,0,63,255,128,0,31,192,0,254,0,0,41,63,128,0,31,192,0,254,0,0,0,63,128,0,31,192,0,254,0,0,0,63,128,0,31,192,0,254,0,0,0,63,128,0,47,192,0,254,0,0,0,63,128,0,47,192,0,254,0,0,0,63,128,0,63,192,0,254,0,0,0,63,128,0,127,128,0,254,0,0,0,63,128,0,255,0,0,254,0,0,0,63,128,3,255,0,0,254,0,0,0,63,128,15,252,0,0,254,0,0,47,255,128,127,244,0,0,254,0,0,31,255,65,255,208,0,0,254,0,0,15,254,0,126,0,0,0,254,0,0,10,144,0,0,0,0,0,105,0,0, + // 0x635f 损 + 95,99,38,39,134,40,1,251,0,31,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,255,255,255,255,224,0,0,47,192,0,255,255,255,255,224,0,0,47,192,0,255,255,255,255,224,0,0,47,192,0,255,0,0,15,224,0,0,47,192,0,255,0,0,15,224,0,0,47,192,0,255,0,0,15,224,0,63,255,255,224,255,0,0,15,224,0,63,255,255,224,255,255,255,255,224,0,63,255,255,224,255,255,255,255,224,0,21,111,229,64,255,255,255,255,224,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,3,255,255,255,255,252,0,0,47,192,3,255,255,255,255,252,0,0,47,192,3,255,255,255,255,252,0,0,47,192,67,248,0,0,3,252,0,0,47,219,227,248,0,0,3,252,0,0,47,255,227,248,1,84,3,252,0,6,255,255,243,248,3,252,3,252,0,191,255,254,67,248,3,252,3,252,0,191,255,208,3,248,3,252,3,252,0,127,255,192,3,248,3,252,3,252,0,36,47,192,3,248,3,248,3,252,0,0,47,192,3,248,3,248,3,252,0,0,47,192,3,248,7,244,3,252,0,0,47,192,3,248,15,240,3,252,0,0,47,192,2,164,47,240,65,84,0,0,47,192,0,0,191,193,244,0,0,0,47,192,0,2,255,71,254,0,0,0,47,192,0,47,254,2,255,208,0,0,47,192,6,255,244,0,127,252,0,47,255,192,191,255,192,0,11,255,64,31,255,192,191,253,0,0,1,255,208,15,255,0,63,144,0,0,0,47,128,10,164,0,20,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0, + // 0x6362 换 + 98,99,38,38,124,40,1,252,0,26,128,0,0,164,0,0,0,0,0,47,192,0,1,255,0,0,0,0,0,47,192,0,3,253,0,0,0,0,0,47,192,0,7,252,0,0,0,0,0,47,192,0,15,255,255,255,64,0,0,47,192,0,47,255,255,255,208,0,0,47,192,0,127,255,255,255,192,0,0,47,192,0,255,0,0,255,0,0,63,255,255,67,253,0,3,253,0,0,63,255,255,79,244,0,15,244,0,0,63,255,255,191,255,255,255,255,244,0,21,127,213,127,255,255,255,255,244,0,0,47,192,15,255,255,255,255,244,0,0,47,192,7,248,3,248,3,244,0,0,47,192,3,248,3,248,3,244,0,0,47,192,3,248,3,248,3,244,0,0,47,192,3,248,3,248,3,244,0,0,47,192,3,248,3,248,3,244,0,0,47,199,131,248,3,248,3,244,0,0,47,255,131,248,3,248,3,244,0,1,191,255,195,248,3,248,3,244,0,111,255,255,195,248,3,248,3,244,0,127,255,244,3,252,7,248,7,248,0,63,255,192,191,255,255,255,255,255,192,62,111,192,191,255,255,255,255,255,192,0,47,192,191,255,255,255,255,255,192,0,47,192,0,0,47,252,0,0,0,0,47,192,0,0,127,255,0,0,0,0,47,192,0,0,255,127,128,0,0,0,47,192,0,3,253,31,224,0,0,0,47,192,0,15,252,15,248,0,0,0,47,192,0,127,240,3,254,0,0,0,47,192,2,255,192,0,255,208,0,0,63,192,31,254,0,0,63,249,0,31,255,193,255,244,0,0,11,255,208,15,255,135,255,192,0,0,1,255,192,15,254,1,253,0,0,0,0,47,0,6,144,0,80,0,0,0,0,1,0, + // 0x6389 掉 + 137,99,38,38,124,40,1,252,0,26,128,0,0,2,160,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,244,0,0,0,63,255,255,192,0,3,244,0,0,0,63,255,255,192,0,3,244,0,0,0,63,255,255,203,255,255,255,255,252,0,21,127,229,75,255,255,255,255,252,0,0,47,192,11,255,255,255,255,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,255,255,255,255,252,0,0,47,192,11,255,255,255,255,252,0,0,47,219,203,255,255,255,255,252,0,0,47,255,203,240,0,0,3,252,0,1,255,255,219,240,0,0,3,252,0,127,255,255,139,240,0,0,3,252,0,63,255,224,11,255,255,255,255,252,0,63,255,192,11,255,255,255,255,252,0,41,47,192,11,255,255,255,255,252,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,255,255,255,255,255,255,208,0,47,192,255,255,255,255,255,255,208,0,47,192,255,255,255,255,255,255,208,0,47,192,85,85,87,249,85,85,64,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,63,255,192,0,0,3,244,0,0,0,47,255,128,0,0,3,244,0,0,0,31,254,0,0,0,3,244,0,0,0,5,64,0,0,0,2,164,0,0,0, + // 0x63a2 探 + 162,99,38,38,124,40,1,252,0,47,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,15,255,255,255,255,255,128,0,47,192,15,255,255,255,255,255,128,0,47,192,15,255,255,255,255,255,128,0,47,192,15,192,0,0,0,47,128,0,47,192,15,192,84,0,0,47,128,0,47,192,15,192,253,11,224,47,128,63,255,255,207,192,253,11,224,47,128,63,255,255,207,193,252,11,224,47,128,63,255,255,192,2,252,11,224,0,0,21,127,213,64,3,248,11,224,9,0,0,47,192,0,11,244,11,224,11,208,0,47,192,0,47,240,11,240,15,192,0,47,192,2,255,192,11,255,255,192,0,47,192,47,255,0,3,255,255,128,0,47,192,15,248,0,1,255,254,0,0,47,198,135,64,3,252,0,0,0,0,47,255,128,0,3,252,0,0,0,0,127,255,192,0,3,252,0,0,0,47,255,255,128,0,3,252,0,0,0,191,255,244,47,255,255,255,255,255,192,127,255,192,47,255,255,255,255,255,192,62,111,192,47,255,255,255,255,255,192,0,47,192,5,85,191,255,213,85,64,0,47,192,0,0,255,255,240,0,0,0,47,192,0,2,255,255,244,0,0,0,47,192,0,7,251,255,253,0,0,0,47,192,0,31,243,252,255,0,0,0,47,192,0,63,211,252,127,192,0,0,47,192,1,255,131,252,47,244,0,0,47,192,11,254,3,252,15,253,0,0,47,192,63,252,3,252,3,255,128,0,47,194,255,224,3,252,0,255,224,21,127,192,255,128,3,252,0,63,192,31,255,128,124,0,3,252,0,11,0,15,255,0,16,0,3,252,0,0,0,15,248,0,0,0,3,252,0,0,0, + // 0x63a5 接 + 165,99,37,38,124,40,1,252,0,15,208,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,15,255,255,255,255,255,0,0,15,224,15,255,255,255,255,255,0,0,15,224,15,255,255,255,255,255,0,0,15,224,0,11,208,0,63,128,0,63,255,255,192,15,208,0,127,64,0,63,255,255,192,15,224,0,191,0,0,63,255,255,192,11,240,0,254,0,0,21,95,245,64,7,240,0,253,0,0,0,15,224,0,3,244,1,252,0,0,0,15,224,0,7,248,3,248,0,0,0,15,224,127,255,255,255,255,255,192,0,15,224,127,255,255,255,255,255,192,0,15,224,127,255,255,255,255,255,192,0,15,224,0,0,63,192,0,0,0,0,15,226,192,0,127,128,0,0,0,0,15,255,192,0,255,0,0,0,0,0,111,255,208,1,255,0,0,0,0,27,255,255,255,255,255,255,255,255,192,191,255,249,127,255,255,255,255,255,192,127,255,224,63,255,255,255,255,255,192,62,79,224,0,15,240,0,127,64,0,16,15,224,0,47,208,0,191,0,0,0,15,224,0,63,192,0,254,0,0,0,15,224,0,191,64,2,253,0,0,0,15,224,0,255,249,7,252,0,0,0,15,224,2,255,255,239,240,0,0,0,15,224,1,186,255,255,224,0,0,0,15,224,0,0,27,255,244,0,0,0,15,224,0,0,47,255,255,128,0,0,15,224,0,27,255,251,255,244,0,31,255,208,175,255,255,128,127,255,0,15,255,192,255,255,244,0,7,255,0,11,255,64,127,249,0,0,0,188,0,6,148,0,36,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,38,38,124,40,1,252,0,31,128,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,63,65,253,11,240,31,192,63,255,255,191,64,252,11,240,31,192,63,255,255,191,65,252,11,240,31,192,63,255,255,191,65,252,11,240,31,192,21,127,213,64,2,252,11,240,0,0,0,47,192,0,3,248,11,240,4,0,0,47,192,0,7,244,11,240,15,64,0,47,192,0,15,240,11,240,15,192,0,47,192,0,63,208,11,240,15,192,0,47,192,1,255,192,11,255,255,128,0,47,199,175,255,0,3,255,255,64,0,47,255,143,248,0,1,255,253,0,0,127,255,203,128,0,0,0,0,0,27,255,255,64,0,0,0,0,0,0,191,255,224,0,0,0,0,0,0,0,127,255,192,7,255,255,255,255,253,0,62,111,192,7,255,255,255,255,253,0,16,47,192,7,255,255,255,255,253,0,0,47,192,1,85,87,253,85,84,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,255,255,255,255,255,255,208,21,127,192,255,255,255,255,255,255,208,31,255,128,255,255,255,255,255,255,208,15,255,0,85,85,85,85,85,85,64,15,248,0,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,38,38,124,40,1,252,0,47,128,0,0,0,0,0,0,0,0,47,128,1,170,170,170,170,164,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,255,255,255,255,244,0,127,255,255,194,255,255,255,255,244,0,127,255,255,194,254,170,170,171,244,0,127,255,255,194,252,0,0,3,244,0,21,127,213,66,252,0,0,3,244,0,0,47,128,2,254,170,170,175,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,134,95,255,255,255,255,255,128,0,47,255,223,255,255,255,255,255,128,1,191,255,223,255,255,255,255,255,128,111,255,255,128,0,3,248,0,0,0,191,255,224,0,80,3,248,0,0,0,127,255,128,0,253,3,248,0,0,0,57,47,128,1,252,3,248,0,0,0,0,47,128,1,252,3,255,255,248,0,0,47,128,2,248,3,255,255,248,0,0,47,128,3,252,3,255,255,248,0,0,47,128,7,253,3,248,0,0,0,0,47,128,11,255,3,248,0,0,0,0,47,128,15,255,67,248,0,0,0,0,47,128,47,223,211,248,0,0,0,0,47,128,63,139,251,248,0,0,0,0,63,128,255,2,255,248,0,0,0,47,255,131,254,0,191,255,255,255,224,31,255,71,252,0,31,255,255,255,192,15,253,1,240,0,1,191,255,255,192,5,64,0,64,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,37,38,124,40,1,252,0,31,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,91,240,0,0,47,192,0,5,106,255,255,252,0,0,47,192,15,255,255,255,255,253,0,0,47,192,11,255,255,255,233,64,0,0,47,192,7,254,171,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,63,255,255,192,0,3,248,0,0,0,63,255,255,213,85,87,253,85,85,64,63,255,255,255,255,255,255,255,255,192,21,127,213,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,67,248,0,0,0,0,47,192,0,7,243,248,0,0,0,0,47,192,15,191,255,248,255,255,0,0,47,223,143,255,251,248,255,255,0,0,47,255,143,254,3,248,255,255,0,6,255,255,207,208,3,248,0,127,0,191,255,253,15,208,3,248,0,127,0,127,255,192,15,208,3,248,0,127,0,63,175,192,15,208,3,248,0,127,0,16,47,192,15,255,227,248,191,255,0,0,47,192,15,255,227,248,191,255,0,0,47,192,15,255,227,248,191,255,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,255,255,255,255,255,0,21,127,192,15,255,255,255,255,255,0,31,255,128,15,255,255,255,255,255,0,15,255,0,15,208,0,0,0,127,0,15,248,0,15,208,0,0,0,127,0, + // 0x6536 收 + 54,101,38,38,124,40,1,252,0,0,2,164,0,41,0,0,0,0,0,0,3,248,0,63,192,0,0,0,0,0,3,248,0,63,192,0,0,0,0,0,3,248,0,127,128,0,0,0,0,0,3,248,0,191,0,0,0,0,3,248,3,248,0,255,0,0,0,0,3,248,3,248,1,254,0,0,0,0,3,248,3,248,2,254,170,170,170,144,3,248,3,248,3,255,255,255,255,208,3,248,3,248,7,255,255,255,255,208,3,248,3,248,15,255,255,255,255,208,3,248,3,248,31,244,0,3,252,0,3,248,3,248,63,252,0,3,252,0,3,248,3,248,127,252,0,3,248,0,3,248,3,248,255,253,0,7,244,0,3,248,3,251,255,254,0,15,240,0,3,248,3,255,253,255,0,15,240,0,3,248,3,255,248,127,0,31,208,0,3,248,3,249,240,63,128,63,192,0,3,248,3,248,144,63,192,63,192,0,3,248,3,248,0,31,208,191,64,0,3,248,3,248,0,15,240,255,0,0,3,248,3,248,0,11,246,254,0,0,3,248,27,248,0,3,255,252,0,0,3,254,255,248,0,3,255,248,0,0,7,255,255,248,0,1,255,240,0,0,127,255,255,248,0,0,255,208,0,0,63,255,211,248,0,0,255,208,0,0,63,228,3,248,0,3,255,240,0,0,25,0,3,248,0,15,255,252,0,0,0,0,3,248,0,63,251,255,0,0,0,0,3,248,1,255,209,255,192,0,0,0,3,248,11,255,64,127,244,0,0,0,3,248,191,253,0,47,254,0,0,0,3,251,255,244,0,11,255,224,0,0,3,250,255,128,0,1,255,192,0,0,3,248,253,0,0,0,63,64,0,0,3,244,96,0,0,0,6,0, + // 0x653e 放 + 62,101,38,38,124,40,1,252,0,0,253,0,0,3,144,0,0,0,0,1,253,0,0,7,248,0,0,0,0,1,253,0,0,11,244,0,0,0,0,1,253,0,0,15,240,0,0,0,0,1,253,0,0,15,240,0,0,0,0,1,253,0,0,15,224,0,0,0,21,86,254,85,80,31,208,0,0,0,63,255,255,255,244,47,229,85,85,64,63,255,255,255,244,63,255,255,255,208,63,255,255,255,244,127,255,255,255,208,0,63,128,0,0,191,255,255,255,208,0,63,128,0,0,255,0,7,244,0,0,63,128,0,1,255,64,7,240,0,0,63,128,0,3,255,64,11,240,0,0,63,128,0,7,255,128,15,240,0,0,63,255,255,207,255,192,15,224,0,0,63,255,255,223,255,192,31,208,0,0,63,255,255,255,239,208,47,192,0,0,63,213,127,255,207,240,63,192,0,0,63,128,63,203,71,240,63,128,0,0,63,128,63,129,3,248,127,64,0,0,63,128,63,128,3,252,255,0,0,0,63,128,63,128,2,254,254,0,0,0,63,64,63,128,0,255,252,0,0,0,127,64,63,128,0,191,248,0,0,0,127,0,63,128,0,63,240,0,0,0,191,0,63,128,0,63,240,0,0,0,255,0,63,128,0,127,240,0,0,0,254,0,63,64,0,255,252,0,0,2,253,0,63,64,3,255,254,0,0,3,252,0,63,64,15,254,255,128,0,11,248,0,127,0,127,240,191,224,0,15,240,0,191,2,255,208,47,252,0,63,224,0,255,47,255,0,15,255,128,191,192,255,255,191,252,0,3,255,208,127,64,255,253,63,224,0,0,191,64,13,0,191,244,47,0,0,0,30,0,0,0,21,0,4,0,0,0,0,0, + // 0x6570 数 + 112,101,38,38,124,40,1,252,0,0,63,0,0,0,228,0,0,0,1,192,63,64,228,1,253,0,0,0,11,240,63,66,252,2,252,0,0,0,3,244,63,67,244,3,252,0,0,0,1,252,63,75,224,3,252,0,0,0,0,253,63,95,192,3,248,0,0,0,0,164,63,70,0,7,244,0,0,0,63,255,255,255,255,11,250,170,170,128,63,255,255,255,255,15,255,255,255,208,63,255,255,255,255,31,255,255,255,208,0,2,255,208,0,47,255,255,255,208,0,7,255,248,0,63,208,3,252,0,0,31,255,255,64,127,208,3,248,0,0,127,255,191,224,255,224,7,248,0,2,255,127,95,252,255,240,7,244,0,31,252,63,67,250,255,240,11,240,0,127,240,63,64,247,255,244,15,240,0,63,128,63,64,15,251,248,15,240,0,13,0,191,64,31,243,252,31,224,0,0,2,252,0,11,226,252,47,208,0,0,3,252,0,2,192,253,63,192,0,0,7,244,0,0,0,255,127,128,0,127,255,255,255,255,64,191,191,64,0,127,255,255,255,255,64,127,255,0,0,127,255,255,255,255,64,63,254,0,0,0,127,64,47,192,0,47,252,0,0,0,255,0,63,128,0,15,248,0,0,1,253,0,127,64,0,31,248,0,0,3,255,128,255,0,0,63,252,0,0,11,255,250,253,0,0,255,255,0,0,11,255,255,252,0,3,255,255,128,0,0,65,255,252,0,15,253,127,224,0,0,0,255,255,128,127,248,47,248,0,0,31,255,255,247,255,224,11,255,0,27,255,252,63,255,255,64,3,255,208,63,255,208,7,255,252,0,0,191,192,15,249,0,0,139,224,0,0,47,0,10,64,0,0,3,0,0,0,5,0, + // 0x6572 敲 + 114,101,37,38,124,40,2,252,0,1,252,0,0,0,253,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,0,1,252,0,0,0,254,0,0,0,255,255,255,255,252,0,254,85,85,0,255,255,255,255,252,0,255,255,255,0,255,255,255,255,252,0,255,255,255,0,0,0,0,0,0,0,255,255,255,0,1,170,170,169,0,0,254,0,0,0,3,255,255,255,0,0,254,0,0,0,3,255,255,255,0,0,254,0,0,0,3,244,0,191,0,0,254,0,0,0,3,244,0,191,0,0,254,0,0,0,3,244,0,191,15,255,255,255,248,0,3,250,170,255,15,255,255,255,252,0,3,255,255,255,15,255,255,255,248,0,3,255,255,255,5,89,85,91,244,0,0,0,0,0,0,253,0,11,240,0,0,0,0,0,0,254,0,15,240,0,63,255,255,255,240,127,0,31,224,0,63,255,255,255,240,63,64,47,208,0,63,170,170,175,240,63,128,63,192,0,63,0,0,3,240,31,192,127,128,0,63,0,0,3,240,15,224,255,0,0,63,15,255,195,240,11,241,255,0,0,63,15,255,195,240,3,255,253,0,0,63,15,3,195,240,2,255,252,0,0,63,15,3,195,240,0,255,240,0,0,63,15,3,195,240,0,191,224,0,0,63,15,3,195,240,1,255,240,0,0,63,15,255,195,240,7,255,253,0,0,63,15,255,195,240,31,255,255,64,0,63,15,0,3,241,255,240,255,244,0,63,10,0,7,255,255,192,63,255,64,63,0,2,255,251,254,0,11,255,0,63,0,0,255,211,224,0,0,252,0,63,0,0,169,1,64,0,0,20,0, + // 0x6574 整 + 116,101,36,37,77,40,2,253,0,0,252,0,0,2,64,0,0,0,0,252,0,0,3,244,0,0,106,170,254,170,164,7,240,0,0,191,255,255,255,248,15,240,0,0,191,255,255,255,248,31,224,0,0,0,0,252,0,0,63,255,255,255,0,0,252,0,0,191,255,255,255,47,255,255,255,240,255,255,255,255,47,255,255,255,243,255,0,31,192,47,149,253,87,255,255,192,63,128,47,64,252,3,255,255,208,127,0,47,64,252,3,243,195,244,254,0,47,255,255,255,240,2,255,252,0,47,255,255,255,240,0,255,244,0,5,95,255,149,80,0,127,224,0,0,47,255,240,0,0,255,244,0,0,255,255,254,0,7,255,254,0,7,253,253,191,224,47,254,255,208,47,240,252,31,231,255,224,127,253,255,192,252,3,223,255,64,31,255,127,0,252,0,11,248,0,2,253,40,0,252,0,3,128,0,0,44,0,0,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,6,144,0,254,0,0,0,0,0,11,240,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,11,240,0,254,0,0,0,0,0,11,240,0,254,0,0,0,0,0,15,240,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6599 料 + 153,101,38,38,124,40,1,252,0,2,164,0,0,0,0,42,64,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,47,3,248,31,192,52,0,63,128,0,47,3,248,31,128,254,0,63,128,0,31,131,248,47,65,255,192,63,128,0,15,195,248,63,0,127,240,63,128,0,15,195,248,63,0,15,252,63,128,0,11,211,248,125,0,2,252,63,128,0,7,227,248,188,0,0,184,63,128,0,7,227,248,252,0,0,32,63,128,0,3,243,249,244,0,0,0,63,128,0,3,67,248,96,0,0,0,63,128,0,0,3,248,0,2,0,0,63,128,0,63,255,255,255,203,208,0,63,128,0,63,255,255,255,223,252,0,63,128,0,63,255,255,255,203,255,64,63,128,0,21,111,253,85,64,255,224,63,128,0,0,31,252,0,0,47,208,63,128,0,0,47,255,0,0,7,192,63,128,0,0,63,255,128,0,1,0,63,128,0,0,191,255,208,0,0,0,63,128,0,0,255,255,244,0,0,0,63,134,128,1,251,250,252,0,0,0,63,255,192,3,243,248,255,0,1,111,255,255,208,7,243,248,127,70,255,255,255,255,208,15,211,248,62,63,255,255,255,208,0,47,195,248,28,63,255,250,127,128,0,127,131,248,0,63,229,0,63,128,0,191,3,248,0,16,0,0,63,128,0,62,3,248,0,0,0,0,63,128,0,44,3,248,0,0,0,0,63,128,0,4,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,2,244,0,0,0,0,47,128,0, + // 0x659c 斜 + 156,101,38,38,124,40,1,252,0,0,127,64,0,0,0,11,224,0,0,0,255,224,0,0,0,15,224,0,0,1,255,248,0,0,0,15,224,0,0,3,255,254,0,2,64,15,224,0,0,11,250,255,128,15,208,15,224,0,0,31,240,191,224,31,248,15,224,0,0,63,208,47,248,7,254,15,224,0,0,191,128,15,253,0,255,143,224,0,2,255,0,3,255,0,63,223,224,0,7,252,0,0,252,0,15,207,224,0,31,244,0,0,112,0,7,15,224,0,127,255,255,255,224,0,0,15,224,0,255,255,255,255,224,0,0,15,224,0,62,255,255,255,224,8,0,15,224,0,8,21,127,213,64,127,64,15,224,0,0,0,63,128,0,191,224,15,224,0,0,0,63,128,0,31,248,15,224,0,0,0,63,128,0,7,255,15,224,0,63,255,255,255,254,0,255,143,224,0,63,255,255,255,254,0,62,15,224,0,63,255,255,255,254,0,8,15,224,0,21,85,127,213,84,0,0,15,224,0,0,0,63,128,0,0,0,15,251,192,0,64,63,128,128,0,0,95,255,208,2,252,63,139,224,0,111,255,255,224,3,248,63,135,240,111,255,255,255,144,3,244,63,131,244,255,255,255,240,0,7,240,63,130,252,255,255,159,224,0,11,240,63,128,252,254,64,15,224,0,15,208,63,128,254,0,0,15,224,0,47,192,63,128,191,0,0,15,224,0,63,128,63,128,63,0,0,15,224,0,127,0,63,128,52,0,0,15,224,0,30,0,63,128,0,0,0,15,224,0,0,21,127,128,0,0,0,15,224,0,0,63,255,128,0,0,0,15,224,0,0,31,255,0,0,0,0,15,224,0,0,15,248,0,0,0,0,15,224,0, + // 0x65ad 断 + 173,101,36,38,86,40,3,252,0,0,5,64,0,0,0,0,0,84,0,31,128,0,0,0,11,192,253,0,31,128,0,0,1,191,240,253,44,31,131,144,0,191,255,248,253,61,31,131,242,255,255,255,128,253,62,31,135,226,255,255,224,0,253,47,31,139,194,255,148,0,0,253,31,95,143,130,252,0,0,0,253,15,95,159,66,252,0,0,0,253,15,159,175,2,252,0,0,0,253,9,31,137,2,252,0,0,0,253,0,31,128,2,252,0,0,0,253,191,255,255,242,252,0,0,0,253,191,255,255,242,253,85,85,85,253,191,255,255,242,255,255,255,254,253,0,63,128,2,255,255,255,254,253,0,127,192,2,255,255,255,254,253,0,255,240,2,252,0,254,0,253,1,255,252,2,252,0,254,0,253,3,255,255,2,252,0,254,0,253,11,255,175,194,252,0,254,0,253,31,223,143,226,252,0,254,0,253,63,95,131,195,252,0,254,0,254,255,31,129,67,248,0,254,0,254,252,31,128,3,244,0,254,0,253,180,31,128,3,244,0,254,0,253,96,31,128,7,240,0,254,0,253,0,31,128,11,240,0,254,0,253,0,31,128,15,240,0,254,0,253,0,0,0,31,208,0,254,0,255,255,255,255,255,192,0,254,0,255,255,255,255,255,192,0,254,0,255,255,255,255,255,64,0,254,0,254,0,0,2,255,0,0,254,0,253,0,0,3,253,0,0,254,0,253,0,0,7,252,0,0,254,0,84,0,0,0,240,0,0,254,0,0,0,0,0,80,0,0,169,0, + // 0x65b0 新 + 176,101,38,38,124,40,1,252,0,0,106,0,0,0,0,0,16,0,0,0,127,0,0,0,0,1,252,0,0,0,127,0,0,0,0,127,255,64,0,0,127,0,0,36,111,255,254,64,31,255,255,255,252,63,255,255,144,0,31,255,255,255,252,63,255,228,0,0,31,255,255,255,252,63,208,0,0,0,0,104,0,30,64,63,64,0,0,0,0,252,0,47,192,63,64,0,0,0,0,253,0,63,64,63,64,0,0,0,0,190,0,63,0,63,64,0,0,0,0,127,0,191,0,63,64,0,0,0,0,63,0,253,0,63,64,0,0,0,0,62,0,108,0,63,64,0,0,0,63,255,255,255,254,63,255,255,255,208,63,255,255,255,254,63,255,255,255,208,63,255,255,255,254,63,255,255,255,208,0,0,127,0,0,63,149,111,229,64,0,0,127,0,0,63,64,31,192,0,0,0,127,0,0,63,64,31,192,0,0,0,191,0,0,127,64,31,192,0,63,255,255,255,252,127,0,31,192,0,63,255,255,255,252,127,0,31,192,0,63,255,255,255,252,191,0,31,192,0,0,2,255,0,0,191,0,31,192,0,0,3,255,208,0,255,0,31,192,0,0,15,255,244,0,254,0,31,192,0,0,47,255,254,0,253,0,31,192,0,0,191,255,191,193,252,0,31,192,0,1,254,127,47,243,252,0,31,192,0,7,252,127,11,211,248,0,31,192,0,47,240,127,2,139,240,0,31,192,0,191,208,127,0,31,240,0,31,192,0,63,64,127,0,63,208,0,31,192,0,13,0,127,0,191,192,0,31,192,0,0,0,127,0,255,0,0,31,192,0,0,0,127,0,61,0,0,31,192,0,0,0,127,0,24,0,0,26,128,0, + // 0x65b9 方 + 185,101,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,106,170,170,255,170,170,170,170,169,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,2,255,255,255,255,252,0,0,0,2,255,255,255,255,252,0,0,0,3,255,255,255,255,252,0,0,0,3,254,170,170,171,252,0,0,0,7,248,0,0,3,252,0,0,0,11,244,0,0,3,252,0,0,0,15,240,0,0,3,248,0,0,0,31,240,0,0,3,248,0,0,0,63,224,0,0,3,248,0,0,0,127,192,0,0,7,244,0,0,0,255,128,0,0,7,244,0,0,2,255,0,0,0,11,240,0,0,7,254,0,0,0,15,240,0,0,31,252,0,0,0,15,240,0,0,127,240,0,0,0,15,224,0,2,255,208,0,0,0,47,208,0,31,255,64,0,0,0,127,192,0,255,253,0,0,127,255,255,192,0,191,240,0,0,63,255,255,64,0,47,128,0,0,47,255,253,0,0,8,0,0,0,5,85,64,0,0, + // 0x65e0 无 + 224,101,37,36,104,40,2,251,7,255,255,255,255,255,255,255,224,0,7,255,255,255,255,255,255,255,224,0,7,255,255,255,255,255,255,255,224,0,2,170,170,171,254,170,170,170,144,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,106,170,170,171,254,170,170,170,169,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,0,0,0,7,244,0,0,0,0,0,0,0,0,11,245,80,0,0,0,0,0,0,0,15,251,240,0,0,0,0,0,0,0,15,235,240,0,0,0,0,0,0,0,47,219,240,0,0,0,0,0,0,0,63,203,240,0,0,0,0,0,0,0,127,203,240,0,0,0,0,0,0,0,255,75,240,0,0,0,0,0,0,1,255,11,240,0,0,0,0,0,0,3,254,11,240,0,0,0,0,0,0,15,252,11,240,0,0,56,0,0,0,63,244,11,240,0,0,63,64,0,0,255,224,11,240,0,0,63,64,0,7,255,128,11,240,0,0,127,64,0,47,255,0,11,244,0,0,191,0,2,255,248,0,11,248,0,0,255,0,127,255,208,0,7,255,255,255,254,0,255,254,0,0,3,255,255,255,253,0,63,224,0,0,1,255,255,255,248,0,30,0,0,0,0,26,170,170,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x65f6 时 + 246,101,36,38,86,40,3,252,0,0,0,0,0,0,1,168,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,85,85,85,64,0,0,3,252,0,255,255,255,192,0,0,3,252,0,255,255,255,192,0,0,3,252,0,255,255,255,192,0,0,3,252,0,254,0,31,192,0,0,3,252,0,254,0,31,195,255,255,255,255,253,254,0,31,195,255,255,255,255,253,254,0,31,195,255,255,255,255,253,254,0,31,194,170,170,171,254,169,254,0,31,192,0,0,3,252,0,254,0,31,192,0,0,3,252,0,254,0,31,192,0,0,3,252,0,255,255,255,192,44,0,3,252,0,255,255,255,192,255,0,3,252,0,255,255,255,192,191,128,3,252,0,255,85,111,192,63,208,3,252,0,254,0,31,192,31,240,3,252,0,254,0,31,192,11,248,3,252,0,254,0,31,192,3,252,3,252,0,254,0,31,192,1,255,3,252,0,254,0,31,192,0,255,67,252,0,254,0,31,192,0,127,67,252,0,254,0,31,192,0,56,3,252,0,254,0,31,192,0,0,3,252,0,255,255,255,192,0,0,3,252,0,255,255,255,192,0,0,3,252,0,255,255,255,192,0,0,3,252,0,255,85,85,64,0,0,3,252,0,254,0,0,0,0,0,3,252,0,254,0,0,0,0,0,3,252,0,84,0,0,0,1,170,175,252,0,0,0,0,0,0,255,255,248,0,0,0,0,0,0,255,255,240,0,0,0,0,0,0,191,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x660e 明 + 14,102,34,36,68,40,3,252,85,85,85,64,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,149,85,91,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,149,85,91,240,254,0,15,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,64,0,11,240,255,85,95,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,149,85,91,240,254,0,15,224,191,255,255,255,240,255,85,95,224,191,255,255,255,240,255,255,255,224,255,255,255,255,240,255,255,255,224,254,0,0,11,240,255,255,255,225,253,0,0,11,240,254,0,0,3,252,0,0,11,240,254,0,0,3,252,0,0,11,240,254,0,0,11,244,0,0,11,240,169,0,0,15,240,0,0,11,240,0,0,0,63,224,0,0,11,240,0,0,0,191,192,0,0,11,240,0,0,1,255,64,0,0,11,240,0,0,11,254,0,0,255,255,240,0,0,15,252,0,0,127,255,224,0,0,3,224,0,0,63,255,128,0,0,0,128,0,0,26,148,0, + // 0x662f 是 + 47,102,36,36,68,40,2,252,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,170,170,170,170,170,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,21,85,85,85,191,85,85,85,84,0,2,80,0,127,0,0,0,0,0,7,248,0,127,0,0,0,0,0,11,244,0,127,0,0,0,0,0,15,240,0,127,255,255,255,192,0,15,240,0,127,255,255,255,192,0,47,240,0,127,255,255,255,192,0,63,252,0,127,64,0,0,0,0,127,254,0,127,0,0,0,0,0,255,255,64,127,0,0,0,0,3,254,127,240,127,0,0,0,0,11,252,31,254,191,0,0,0,0,47,244,7,255,255,170,85,85,85,191,224,0,255,255,255,255,255,255,255,128,0,31,255,255,255,255,254,62,0,0,0,27,255,255,255,253,8,0,0,0,0,0,0,0,0, + // 0x6682 暂 + 130,102,36,39,95,40,2,251,0,2,64,0,0,0,0,0,0,0,7,248,0,0,0,0,6,224,0,15,240,0,0,1,107,255,244,255,255,255,255,248,127,255,255,252,255,255,255,255,248,127,255,254,64,191,255,255,255,248,127,148,0,0,0,254,0,0,0,127,0,0,0,3,252,26,128,0,127,0,0,0,11,240,47,192,0,127,0,0,0,31,208,47,192,0,191,255,255,255,127,255,255,255,252,191,255,255,255,63,255,255,255,252,191,255,255,255,47,255,255,255,252,190,0,254,0,0,0,47,192,0,253,0,254,0,0,0,47,192,0,253,0,254,0,0,1,111,255,245,252,0,254,0,127,255,255,255,246,252,0,254,0,191,255,255,255,167,248,0,254,0,191,250,175,192,11,240,0,254,0,16,0,47,192,15,224,0,254,0,0,0,47,192,2,192,0,254,0,0,0,26,128,0,0,0,20,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,64,0,0,0,1,252,0,0,63,64,0,0,0,1,252,0,0,63,64,0,0,0,1,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,234,170,170,170,171,252,0,0,63,64,0,0,0,1,252,0,0,63,64,0,0,0,1,252,0,0,63,64,0,0,0,1,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,64,0,0,0,1,252,0,0,0,0,0,0,0,0,0,0, + // 0x66ab 暫 + 171,102,36,38,86,40,2,252,0,0,252,0,0,0,0,1,64,0,0,252,0,0,0,0,111,208,21,85,253,85,80,229,175,255,244,127,255,255,255,244,255,255,255,144,127,255,255,255,244,255,255,144,0,0,0,252,0,0,254,64,0,0,26,171,255,170,144,252,0,0,0,31,255,255,255,224,252,0,0,0,31,64,252,7,224,252,0,0,0,31,64,252,7,224,255,255,255,255,31,255,255,255,224,255,255,255,255,31,234,254,175,225,255,255,255,255,31,64,252,7,225,252,0,253,0,31,255,255,255,226,252,0,253,0,31,255,255,255,227,248,0,253,0,0,0,252,0,3,244,0,253,0,0,1,253,0,11,240,0,253,0,255,255,255,255,255,224,0,253,0,255,255,255,255,255,192,0,253,0,0,0,252,0,191,64,0,253,0,0,0,252,0,62,0,0,253,0,0,0,168,0,8,0,0,84,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,234,170,170,170,175,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,208,0,0,0,7,244,0,0,10,128,0,0,0,2,164,0, + // 0x66f4 更 + 244,102,37,36,104,40,2,252,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,21,85,85,85,255,149,85,85,84,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,255,0,0,191,0,0,63,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,1,128,1,254,0,0,0,0,0,0,31,224,3,252,0,0,0,0,0,0,15,244,7,252,0,0,0,0,0,0,7,254,15,244,0,0,0,0,0,0,1,255,191,240,0,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,1,191,255,254,64,0,0,0,0,0,111,255,255,255,255,165,64,0,0,111,255,255,71,255,255,255,255,255,64,127,255,244,0,47,255,255,255,255,0,47,254,0,0,0,27,255,255,254,0,14,64,0,0,0,0,0,86,168,0, + // 0x6700 最 + 0,103,36,37,77,40,2,252,0,26,170,170,170,170,170,168,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,213,85,85,85,87,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,21,85,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,1,252,0,47,192,0,0,0,0,1,252,0,47,192,0,0,0,0,1,255,255,255,207,255,255,255,224,1,255,255,255,207,255,255,255,240,1,254,170,191,203,255,255,255,224,1,252,0,47,192,188,0,47,208,1,252,0,47,192,254,0,63,192,1,254,170,191,192,127,0,255,64,1,255,255,255,192,63,194,255,0,1,255,255,255,192,31,231,252,0,1,252,0,47,192,11,255,244,0,1,252,0,47,192,3,255,224,0,1,252,21,191,192,2,255,192,0,191,255,255,255,192,31,255,244,0,255,255,255,255,193,255,255,254,0,191,255,165,111,239,255,210,255,248,84,0,0,47,239,254,0,127,255,0,0,0,47,207,224,0,11,252,0,0,0,47,198,0,0,0,104, + // 0x6709 有 + 9,103,36,38,86,40,2,252,0,0,0,36,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,21,85,86,255,85,85,85,85,84,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,31,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,255,255,255,255,252,0,0,7,255,255,255,255,255,252,0,0,15,255,255,255,255,255,252,0,0,63,254,0,0,0,3,252,0,0,255,254,0,0,0,2,252,0,2,255,254,0,0,0,2,252,0,11,254,254,0,0,0,3,252,0,63,248,255,255,255,255,255,252,0,255,224,255,255,255,255,255,252,0,255,128,255,255,255,255,255,252,0,61,0,254,0,0,0,2,252,0,20,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,3,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,3,252,0,0,0,254,0,0,63,255,252,0,0,0,254,0,0,31,255,248,0,0,0,254,0,0,15,255,224,0,0,0,169,0,0,10,149,0,0, + // 0x671f 期 + 31,103,36,37,77,40,1,252,0,190,0,15,208,0,0,0,0,0,190,0,15,208,15,255,255,255,0,190,0,15,208,15,255,255,255,0,190,0,15,208,15,255,255,255,0,191,0,31,224,15,229,85,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,0,190,0,15,208,15,208,0,191,0,190,0,15,208,15,208,0,191,0,190,0,15,208,15,229,85,191,0,191,255,255,208,15,255,255,255,0,191,255,255,208,15,255,255,255,0,191,255,255,208,15,255,255,255,0,190,0,15,208,15,208,0,191,0,190,0,15,208,15,208,0,191,0,190,0,15,208,15,208,0,191,0,191,255,255,208,15,208,0,191,0,191,255,255,208,15,208,0,191,0,191,255,255,208,15,229,85,191,0,190,0,15,208,15,255,255,255,0,190,0,15,208,31,255,255,255,0,190,0,15,208,31,255,255,255,0,191,0,31,224,31,192,0,191,127,255,255,255,255,47,192,0,191,127,255,255,255,255,47,192,0,191,127,255,255,255,255,63,128,0,191,0,0,0,0,0,63,128,0,191,0,47,128,124,0,127,64,0,191,0,63,192,255,0,127,0,0,191,0,255,64,127,192,191,0,0,191,1,255,0,47,224,254,0,0,191,7,252,0,15,242,253,0,0,191,31,244,0,7,251,252,2,255,255,63,224,0,2,215,248,0,255,254,31,192,0,0,1,240,0,255,248,2,0,0,0,0,16,0,85,64, + // 0x673a 机 + 58,103,38,38,124,40,1,252,0,1,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,2,170,170,170,0,0,0,2,252,0,7,255,255,255,64,0,0,2,252,0,7,255,255,255,64,0,0,2,252,0,7,255,255,255,64,0,0,2,252,0,7,244,0,63,64,0,0,2,252,0,7,244,0,63,64,0,0,2,252,0,7,244,0,63,64,0,63,255,255,255,135,244,0,63,64,0,63,255,255,255,135,244,0,63,64,0,63,255,255,255,135,244,0,63,64,0,26,171,254,170,71,244,0,63,64,0,0,7,252,0,7,244,0,63,64,0,0,11,252,0,7,244,0,63,64,0,0,15,252,0,7,244,0,63,64,0,0,31,254,0,7,244,0,63,64,0,0,47,255,128,7,244,0,63,64,0,0,63,255,224,7,240,0,63,64,0,0,127,255,244,7,240,0,63,64,0,0,254,254,253,7,240,0,63,64,0,1,250,252,255,11,240,0,63,64,0,3,246,252,63,139,240,0,63,64,0,7,242,252,47,15,240,0,63,64,0,15,210,252,13,15,224,0,63,64,0,47,194,252,0,15,208,0,63,64,0,127,130,252,0,31,208,0,63,64,0,191,2,252,0,47,192,0,63,66,128,61,2,252,0,63,192,0,63,66,240,28,2,252,0,127,128,0,63,66,240,0,2,252,0,255,0,0,63,66,240,0,2,252,1,255,0,0,63,67,240,0,2,252,3,253,0,0,63,67,240,0,2,252,11,252,0,0,63,131,240,0,2,252,31,244,0,0,63,255,224,0,2,252,63,224,0,0,63,255,208,0,2,252,11,192,0,0,31,255,128,0,1,252,1,0,0,0,1,84,0, + // 0x6740 杀 + 64,103,36,38,86,40,2,252,0,0,0,0,0,0,2,128,0,0,20,0,0,0,0,15,244,0,0,127,128,0,0,0,127,248,0,0,255,253,0,0,2,255,224,0,0,47,255,224,0,31,255,64,0,0,2,255,254,0,191,248,0,0,0,0,31,255,235,255,208,0,0,0,0,1,191,255,254,0,0,0,0,0,0,15,255,248,0,0,0,0,0,0,191,255,255,64,0,0,0,0,11,255,251,255,244,0,0,0,1,255,255,128,191,255,64,0,0,111,255,244,0,11,255,244,0,27,255,255,64,0,0,191,255,0,127,255,228,0,0,0,31,255,128,31,254,0,0,191,0,1,254,0,7,144,0,0,255,0,0,44,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,228,0,255,0,29,0,0,0,3,254,0,255,0,191,128,0,0,11,252,0,255,0,127,224,0,0,47,240,0,255,0,31,248,0,0,191,208,0,255,0,7,255,0,2,255,64,0,255,0,1,255,192,11,254,0,0,255,0,0,127,224,63,248,0,0,255,0,0,31,248,255,224,0,0,255,0,0,7,253,127,128,2,170,255,0,0,2,248,29,0,2,255,255,0,0,0,144,0,0,1,255,253,0,0,0,0,0,0,0,255,224,0,0,0,0, + // 0x675f 束 + 95,103,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,85,85,85,255,85,85,85,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,253,0,0,255,0,0,127,64,0,253,0,0,255,0,0,127,64,0,253,0,0,255,0,0,127,64,0,253,0,0,255,0,0,127,64,0,253,0,0,255,0,0,127,64,0,254,85,85,255,85,85,191,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,0,0,31,255,244,0,0,0,0,0,0,191,255,254,0,0,0,0,0,2,255,255,255,128,0,0,0,0,11,253,255,127,240,0,0,0,0,127,244,255,31,253,0,0,0,2,255,208,255,7,255,128,0,0,31,255,0,255,0,255,244,0,1,255,252,0,255,0,63,255,64,31,255,224,0,255,0,11,255,248,255,255,0,0,255,0,0,255,255,127,244,0,0,255,0,0,31,253,47,128,0,0,255,0,0,2,248,4,0,0,0,255,0,0,0,32,0,0,0,0,254,0,0,0,0, + // 0x6761 条 + 97,103,36,38,86,40,2,252,0,0,0,105,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,11,253,0,0,4,0,0,0,0,47,255,255,255,255,64,0,0,0,127,255,255,255,255,192,0,0,2,255,255,255,255,255,128,0,0,15,255,128,0,2,255,0,0,0,127,255,224,0,11,253,0,0,3,255,239,248,0,47,244,0,0,47,255,3,255,0,255,208,0,0,15,248,1,255,215,255,64,0,0,3,208,0,63,255,253,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,47,255,253,0,0,0,0,0,6,255,255,255,228,0,0,0,1,191,255,210,255,255,229,0,1,191,255,253,0,47,255,255,250,127,255,255,144,0,1,255,255,254,63,255,248,0,255,0,6,255,252,31,249,0,0,255,0,0,6,244,9,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,127,255,253,0,0,0,0,0,2,255,255,255,128,0,0,0,0,11,252,255,63,224,0,0,0,0,127,240,255,15,253,0,0,0,2,255,192,255,3,255,192,0,0,47,254,0,255,0,191,248,0,1,255,244,0,255,0,31,255,144,111,255,192,0,255,0,3,255,254,255,253,0,0,255,0,0,127,255,63,224,0,0,255,0,0,7,252,30,0,0,0,255,0,0,0,116,0,0,0,0,254,0,0,0,0, + // 0x6765 来 + 101,103,36,38,86,40,2,252,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,6,170,170,170,255,170,170,170,160,0,2,128,0,255,0,1,224,0,0,47,208,0,255,0,3,253,0,0,15,240,0,255,0,7,252,0,0,11,244,0,255,0,15,244,0,0,3,252,0,255,0,15,240,0,0,2,253,0,255,0,47,208,0,0,0,255,0,255,0,127,128,0,0,0,254,0,255,0,255,0,0,0,0,96,0,255,0,25,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,106,170,170,191,255,254,170,170,169,0,0,0,63,255,252,0,0,0,0,0,0,255,255,255,0,0,0,0,0,3,254,255,191,192,0,0,0,0,15,248,255,47,240,0,0,0,0,63,240,255,15,252,0,0,0,0,255,192,255,3,255,0,0,0,7,255,0,255,0,255,208,0,0,47,252,0,255,0,63,248,0,0,255,240,0,255,0,15,255,0,11,255,192,0,255,0,3,255,224,191,254,0,0,255,0,0,191,254,255,244,0,0,255,0,0,31,255,63,128,0,0,255,0,0,3,253,29,0,0,0,255,0,0,0,120,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0, + // 0x677f 板 + 127,103,38,38,124,40,1,252,0,3,240,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,21,85,85,85,85,64,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,128,0,0,0,0,0,3,244,0,63,128,0,0,0,0,0,3,244,0,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,21,95,249,84,63,128,0,0,0,0,0,15,244,0,63,255,255,255,254,0,0,15,244,0,63,255,255,255,255,0,0,31,248,0,63,255,255,255,255,0,0,63,253,0,63,255,85,85,254,0,0,63,255,0,63,255,0,0,253,0,0,191,255,192,63,191,64,2,252,0,0,255,255,224,63,127,128,3,252,0,1,255,247,244,63,95,192,3,248,0,3,247,246,252,127,79,208,11,240,0,7,243,244,253,127,11,240,15,240,0,11,211,244,124,191,7,244,47,208,0,31,195,244,48,191,3,252,63,192,0,63,131,244,0,254,1,254,191,128,0,191,3,244,0,254,0,255,255,0,0,126,3,244,1,253,0,127,253,0,0,60,3,244,2,252,0,47,248,0,0,24,3,244,3,252,0,47,248,0,0,0,3,244,7,244,0,191,254,0,0,0,3,244,11,240,2,255,255,128,0,0,3,244,15,240,11,254,191,224,0,0,3,244,47,208,127,248,47,254,0,0,3,244,127,195,255,208,11,255,208,0,3,244,191,67,255,64,2,255,192,0,3,244,31,0,248,0,0,63,0,0,3,240,4,0,80,0,0,5,0, + // 0x6797 林 + 151,103,38,38,124,40,1,252,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,47,255,255,255,199,255,255,255,255,128,47,255,255,255,199,255,255,255,255,128,47,255,255,255,199,255,255,255,255,128,26,171,255,170,130,170,191,250,170,64,0,3,255,0,0,0,191,244,0,0,0,3,255,128,0,0,255,252,0,0,0,11,255,224,0,1,255,252,0,0,0,15,255,248,0,2,255,253,0,0,0,31,255,253,0,3,255,255,0,0,0,47,254,255,64,11,255,255,0,0,0,63,254,127,192,15,255,255,128,0,0,190,254,47,240,47,239,239,192,0,0,252,254,15,208,63,159,223,224,0,2,248,254,3,128,191,31,203,240,0,7,244,254,1,1,254,31,195,248,0,15,240,254,0,3,252,31,194,252,0,47,208,254,0,11,248,31,193,255,0,127,192,254,0,31,240,31,192,255,128,127,64,254,0,127,208,31,192,127,208,62,0,254,0,255,128,31,192,47,208,28,0,254,0,191,0,31,192,15,64,0,0,254,0,60,0,31,192,5,0,0,0,254,0,20,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,254,0,0,0,31,192,0,0,0,0,170,0,0,0,26,128,0,0, + // 0x67f1 柱 + 241,103,38,38,124,40,1,252,0,2,248,0,0,2,0,0,0,0,0,2,252,0,0,15,208,0,0,0,0,2,252,0,0,63,248,0,0,0,0,2,252,0,0,15,255,0,0,0,0,2,252,0,0,2,255,192,0,0,0,2,252,0,0,0,127,240,0,0,0,2,252,0,0,0,31,248,0,0,0,2,252,0,0,0,7,240,0,0,0,2,252,0,42,170,171,234,170,64,63,255,255,255,63,255,255,255,255,192,63,255,255,255,63,255,255,255,255,192,63,255,255,255,63,255,255,255,255,192,26,171,254,170,0,0,63,192,0,0,0,7,252,0,0,0,63,192,0,0,0,15,252,0,0,0,63,192,0,0,0,15,252,0,0,0,63,192,0,0,0,31,254,0,0,0,63,192,0,0,0,63,255,128,0,0,63,192,0,0,0,63,255,208,0,0,63,192,0,0,0,191,255,244,0,0,63,192,0,0,0,254,254,252,15,255,255,255,255,64,2,250,252,255,15,255,255,255,255,64,3,242,252,127,79,255,255,255,255,64,11,226,252,46,5,85,191,213,85,0,15,210,252,12,0,0,63,192,0,0,63,194,252,0,0,0,63,192,0,0,127,66,252,0,0,0,63,192,0,0,127,2,252,0,0,0,63,192,0,0,61,2,252,0,0,0,63,192,0,0,24,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,3,255,255,255,255,255,224,0,2,252,3,255,255,255,255,255,224,0,2,252,3,255,255,255,255,255,224,0,2,252,2,170,170,170,170,170,144,0,2,248,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,38,38,124,40,1,252,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,3,255,255,255,255,255,192,0,7,240,3,255,255,255,255,255,192,0,7,240,3,255,255,255,255,255,192,63,255,255,250,255,255,255,255,255,128,63,255,255,248,0,0,0,0,0,0,63,255,255,248,1,244,0,47,0,0,21,95,249,84,3,252,0,127,192,0,0,15,240,0,11,248,0,47,224,0,0,31,240,0,15,240,0,15,248,0,0,47,244,0,63,208,0,3,253,0,0,63,252,0,191,128,0,0,255,0,0,63,255,2,255,0,0,0,127,128,0,191,255,139,253,176,0,62,127,208,0,255,255,195,247,248,0,191,79,128,1,255,251,240,210,252,0,255,9,0,2,251,243,244,0,254,0,254,0,0,3,247,241,252,0,191,2,253,0,0,11,215,240,244,0,127,131,252,0,0,15,199,240,96,0,47,219,244,0,0,47,135,240,0,0,15,255,240,0,0,127,71,240,0,0,11,255,192,0,0,127,7,240,0,0,3,255,128,0,0,61,7,240,0,0,2,255,128,0,0,24,7,240,0,0,11,255,224,0,0,0,7,240,0,0,47,255,248,0,0,0,7,240,0,0,255,223,255,0,0,0,7,240,0,11,255,66,255,208,0,0,7,240,0,127,253,0,191,253,0,0,7,240,11,255,224,0,47,255,208,0,7,240,15,255,64,0,7,255,192,0,7,240,7,248,0,0,0,191,0,0,7,240,3,64,0,0,0,9,0, + // 0x683c 格 + 60,104,38,38,124,40,1,252,0,2,160,0,0,9,0,0,0,0,0,3,244,0,0,31,208,0,0,0,0,3,244,0,0,63,192,0,0,0,0,3,244,0,0,127,128,0,0,0,0,3,244,0,0,255,64,0,64,0,0,3,244,0,1,255,255,255,244,0,0,3,244,0,3,255,255,255,244,0,0,3,244,0,15,255,255,255,240,0,0,3,244,0,31,240,0,31,224,0,63,255,255,252,127,244,0,63,192,0,63,255,255,253,255,252,0,127,128,0,63,255,255,255,255,255,0,255,0,0,21,95,249,111,252,127,131,253,0,0,0,15,244,11,240,63,219,248,0,0,0,15,252,1,192,15,255,240,0,0,0,31,254,0,0,3,255,192,0,0,0,47,255,128,0,3,255,192,0,0,0,63,255,208,0,31,255,244,0,0,0,127,251,240,0,191,255,254,0,0,0,255,247,252,3,255,195,255,208,0,0,255,244,248,127,254,0,191,254,64,2,247,244,183,255,244,0,31,255,224,3,243,244,63,255,208,0,3,255,192,11,211,244,31,255,255,255,255,255,64,15,195,244,15,175,255,255,255,245,0,63,131,244,0,47,255,255,255,244,0,127,3,244,0,47,192,0,3,244,0,127,3,244,0,47,192,0,3,244,0,60,3,244,0,47,192,0,3,244,0,24,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,192,0,7,244,0,0,3,240,0,31,128,0,2,160,0, + // 0x68af 梯 + 175,104,37,38,124,40,1,252,0,7,240,0,0,64,0,5,0,0,0,7,240,0,15,208,0,15,240,0,0,7,240,0,15,240,0,15,240,0,0,7,240,0,7,244,0,47,208,0,0,7,240,0,3,248,0,63,192,0,0,7,240,0,2,252,0,127,0,0,0,7,240,0,1,244,0,110,0,0,0,7,240,1,255,255,255,255,254,0,0,7,240,1,255,255,255,255,254,0,63,255,255,249,255,255,255,255,254,0,63,255,255,248,0,1,253,0,254,0,63,255,255,248,0,0,253,0,190,0,21,95,249,84,0,0,253,0,190,0,0,15,240,0,0,0,253,0,190,0,0,15,240,0,21,85,253,85,254,0,0,47,248,0,191,255,255,255,254,0,0,63,253,0,255,255,255,255,254,0,0,63,255,0,255,255,255,255,254,0,0,191,255,128,253,0,253,0,0,0,0,255,255,209,252,0,253,0,0,0,1,255,247,242,252,0,253,0,0,0,2,251,242,250,252,1,253,0,0,0,3,247,240,247,255,255,255,255,255,192,11,215,240,163,255,255,255,255,255,192,15,199,240,7,255,255,255,255,255,192,63,135,240,11,240,15,253,0,63,128,127,7,240,0,0,47,253,0,63,128,126,7,240,0,0,127,253,0,63,128,60,7,240,0,1,255,253,0,63,64,24,7,240,0,11,253,253,0,63,64,0,7,240,0,47,240,253,0,127,64,0,7,240,1,255,192,253,17,255,0,0,7,240,11,255,0,253,63,255,0,0,7,240,63,252,0,253,63,253,0,0,7,240,31,224,0,253,47,244,0,0,7,240,11,64,0,253,0,0,0,0,7,240,0,0,0,253,0,0,0,0,7,240,0,0,0,252,0,0,0, + // 0x68c0 检 + 192,104,38,38,124,40,1,252,0,10,128,0,0,2,208,0,0,0,0,15,208,0,0,7,248,0,0,0,0,15,208,0,0,15,244,0,0,0,0,15,208,0,0,47,252,0,0,0,0,15,208,0,0,127,254,0,0,0,0,15,208,0,0,255,255,128,0,0,0,15,208,0,3,254,63,224,0,0,0,15,208,0,11,252,15,248,0,0,63,255,255,192,47,240,7,254,0,0,63,255,255,192,191,208,1,255,192,0,63,255,255,195,255,64,0,127,244,0,21,111,229,79,253,0,0,15,254,0,0,47,208,127,248,0,0,7,255,208,0,63,225,255,239,255,255,253,191,192,0,63,244,255,31,255,255,253,31,128,0,127,252,56,31,255,255,253,3,0,0,191,254,16,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,1,255,239,192,0,0,64,0,0,0,2,255,223,208,16,7,224,0,248,0,3,255,215,211,240,3,240,1,252,0,11,239,211,131,244,3,240,2,248,0,15,207,209,2,248,3,240,3,244,0,31,207,208,0,252,2,244,7,240,0,63,79,208,0,252,2,248,15,208,0,127,15,208,0,189,1,248,15,192,0,62,15,208,0,126,0,252,47,128,0,44,15,208,0,63,0,252,63,0,0,8,15,208,0,63,0,144,126,0,0,0,15,208,0,57,0,0,252,0,0,0,15,208,0,0,0,1,248,0,0,0,15,208,0,0,0,3,240,0,0,0,15,208,21,85,85,87,245,85,0,0,15,208,63,255,255,255,255,255,64,0,15,208,63,255,255,255,255,255,64,0,15,208,63,255,255,255,255,255,64,0,15,208,0,0,0,0,0,0,0,0,15,192,0,0,0,0,0,0,0, + // 0x69fd 槽 + 253,105,38,38,124,40,1,252,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,31,255,255,255,255,255,208,0,15,224,31,255,255,255,255,255,208,0,15,224,31,255,255,255,255,255,208,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,2,170,191,171,250,170,0,63,255,255,227,255,255,255,255,255,0,63,255,255,227,255,255,255,255,255,0,63,255,255,227,240,63,3,224,63,0,21,111,245,83,240,63,3,224,63,0,0,31,224,3,240,63,3,224,63,0,0,47,224,3,255,255,255,255,255,0,0,63,240,3,255,255,255,255,255,0,0,63,244,3,245,127,87,245,127,0,0,191,252,3,240,63,3,224,63,0,0,255,255,3,240,63,3,224,63,0,0,255,255,67,255,255,255,255,255,0,2,255,239,195,255,255,255,255,255,0,3,255,231,226,170,170,170,170,170,0,7,223,227,240,0,0,0,0,0,0,15,207,225,192,127,255,255,255,248,0,31,207,224,64,191,255,255,255,248,0,63,79,224,0,191,255,255,255,248,0,127,15,224,0,191,0,0,3,248,0,126,15,224,0,191,0,0,3,248,0,60,15,224,0,191,170,170,171,248,0,20,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,208,0,191,0,0,3,248,0, + // 0x6a21 模 + 33,106,38,38,124,40,1,252,0,15,192,0,3,244,0,253,0,0,0,15,208,0,3,248,0,254,0,0,0,15,208,0,3,248,0,254,0,0,0,15,208,31,255,255,255,255,255,128,0,15,208,31,255,255,255,255,255,128,0,15,208,31,255,255,255,255,255,128,0,15,208,0,3,248,0,254,0,0,0,15,208,0,3,248,0,254,0,0,63,255,255,192,3,248,0,254,0,0,63,255,255,192,0,0,0,0,0,0,63,255,255,195,255,255,255,255,248,0,21,111,229,67,255,255,255,255,248,0,0,31,208,3,254,170,170,171,248,0,0,47,224,3,248,0,0,3,248,0,0,63,240,3,248,0,0,3,248,0,0,63,252,3,255,255,255,255,248,0,0,127,253,3,255,255,255,255,248,0,0,255,255,3,254,170,170,171,248,0,0,255,239,131,248,0,0,3,248,0,1,255,223,195,248,0,0,3,248,0,3,255,219,243,254,170,170,171,248,0,7,255,211,227,255,255,255,255,248,0,11,239,210,131,255,255,255,255,248,0,15,223,208,0,0,3,248,0,0,0,47,143,208,0,0,7,244,0,0,0,127,79,208,0,0,11,244,0,0,0,191,15,208,63,255,255,255,255,255,128,61,15,208,63,255,255,255,255,255,128,28,15,208,63,255,255,255,255,255,128,4,15,208,0,0,63,255,192,0,0,0,15,208,0,0,191,143,240,0,0,0,15,208,0,2,255,11,252,0,0,0,15,208,0,31,253,3,255,64,0,0,15,208,1,255,244,0,255,244,0,0,15,208,111,255,208,0,63,255,144,0,15,208,255,254,0,0,11,255,192,0,15,208,63,224,0,0,0,191,0,0,15,192,41,0,0,0,0,5,0, + // 0x6a59 橙 + 89,106,38,38,124,40,1,252,0,6,160,0,0,0,0,0,0,0,0,11,240,0,0,0,11,192,0,0,0,11,240,3,255,254,15,192,208,0,0,11,240,3,255,255,75,227,240,0,0,11,240,3,255,255,7,255,244,0,0,11,240,0,0,190,3,255,128,0,0,11,240,1,0,253,2,253,2,0,0,11,240,7,226,252,1,252,15,128,0,11,240,15,255,244,0,255,127,192,63,255,255,242,255,240,0,127,254,0,63,255,255,240,127,224,0,63,244,0,63,255,255,240,63,255,255,255,240,0,21,95,245,80,255,255,255,255,252,0,0,15,240,3,254,191,255,247,255,0,0,31,240,15,248,0,0,0,255,208,0,47,240,127,240,0,0,0,63,224,0,63,252,63,192,0,0,0,15,128,0,127,254,30,127,255,255,255,242,0,0,191,255,68,127,255,255,255,240,0,0,255,255,192,127,234,170,175,240,0,1,255,251,240,127,0,0,7,240,0,3,251,243,248,127,0,0,7,240,0,3,251,241,240,127,0,0,7,240,0,11,219,240,208,127,0,0,7,240,0,15,203,240,0,127,255,255,255,240,0,47,139,240,0,127,255,255,255,240,0,127,75,240,0,63,255,255,255,240,0,191,11,240,0,1,144,0,61,0,0,61,11,240,0,15,224,0,127,128,0,28,11,240,0,7,240,0,191,0,0,0,11,240,0,3,244,0,254,0,0,0,11,240,0,3,248,1,252,0,0,0,11,240,0,2,252,2,248,0,0,0,11,240,0,1,228,1,244,0,0,0,11,240,47,255,255,255,255,255,208,0,11,240,47,255,255,255,255,255,208,0,11,240,47,255,255,255,255,255,208,0,11,240,0,0,0,0,0,0,0, + // 0x6b62 止 + 98,107,36,36,68,40,2,254,0,0,0,0,26,144,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,250,170,170,160,0,47,192,0,31,255,255,255,240,0,47,192,0,31,255,255,255,240,0,47,192,0,31,255,255,255,240,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170, + // 0x6b63 正 + 99,107,36,33,41,40,2,254,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,26,170,170,170,191,234,170,170,164,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,255,255,255,192,0,47,192,0,63,255,255,255,192,0,47,192,0,63,255,255,255,192,0,47,192,0,63,234,170,170,128,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,170,191,234,170,191,234,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6b65 步 + 101,107,36,38,86,40,2,252,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,170,170,169,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,254,106,170,170,170,255,170,170,170,169,0,0,0,0,255,0,0,0,0,0,1,248,0,255,0,0,0,0,0,3,254,0,255,0,0,228,0,0,15,252,0,255,0,2,254,0,0,63,240,0,255,0,3,253,0,0,255,208,0,255,0,7,252,0,3,255,64,0,255,0,15,244,0,31,254,0,0,255,0,47,240,0,191,248,0,0,255,0,127,208,0,63,208,3,255,255,0,255,128,0,11,64,1,255,254,3,255,0,0,0,0,0,255,248,15,253,0,0,0,0,0,85,0,127,244,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,47,255,64,0,0,0,0,0,6,255,252,0,0,0,0,0,1,191,255,224,0,0,0,0,5,191,255,254,0,0,0,0,2,255,255,255,224,0,0,0,0,0,255,255,249,0,0,0,0,0,0,191,254,64,0,0,0,0,0,0,57,0,0,0,0,0,0,0, + // 0x6bd4 比 + 212,107,37,37,114,40,2,253,0,21,64,0,0,85,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,192,0,0,63,128,0,0,254,0,11,240,0,0,63,128,0,0,254,0,127,252,0,0,63,234,170,128,254,7,255,248,0,0,63,255,255,192,254,63,255,208,0,0,63,255,255,192,255,255,253,0,0,0,63,255,255,192,255,255,144,0,0,0,63,128,0,0,255,248,0,0,0,0,63,128,0,0,255,128,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,32,0,0,63,128,0,0,254,0,0,62,0,0,63,128,0,0,254,0,0,63,128,0,63,128,1,176,254,0,0,63,128,0,63,134,255,240,254,0,0,63,64,0,63,255,255,244,254,0,0,127,64,27,255,255,255,244,255,0,0,191,0,255,255,255,249,0,255,234,170,255,0,255,255,249,0,0,191,255,255,254,0,191,249,0,0,0,63,255,255,252,0,101,0,0,0,0,11,255,255,224,0, + // 0x6ca1 没 + 161,108,37,38,124,40,2,252,0,64,0,0,0,0,0,0,0,0,3,244,0,1,85,85,85,80,0,0,11,255,0,3,255,255,255,224,0,0,11,255,224,3,255,255,255,224,0,0,0,191,252,3,255,255,255,224,0,0,0,15,248,3,248,0,15,224,0,0,0,2,240,3,248,0,15,224,0,0,0,0,80,3,248,0,15,224,0,0,0,0,0,3,244,0,15,224,36,0,0,0,0,7,244,0,15,224,47,64,0,0,0,15,240,0,15,224,47,64,16,0,0,31,224,0,15,224,47,64,126,0,0,63,208,0,15,240,127,64,255,224,0,255,192,0,15,255,255,0,191,254,7,255,0,0,11,255,254,0,15,255,139,253,0,0,1,255,248,0,1,255,66,244,0,0,0,0,0,0,0,46,0,128,0,0,0,0,0,0,0,4,0,255,255,255,255,255,64,0,0,0,0,255,255,255,255,255,192,0,0,0,0,255,255,255,255,255,192,0,0,0,0,86,249,85,85,255,64,0,0,1,128,3,248,0,1,255,0,0,0,3,240,3,253,0,3,253,0,0,0,7,248,0,255,0,11,252,0,0,0,15,240,0,191,128,31,244,0,0,0,31,224,0,63,224,127,224,0,0,0,63,192,0,15,249,255,192,0,0,0,127,128,0,7,255,255,0,0,0,0,255,0,0,2,255,252,0,0,0,2,254,0,0,2,255,248,0,0,0,3,252,0,0,31,255,255,128,0,0,11,248,0,2,255,255,255,248,0,0,31,240,1,191,255,224,191,255,228,0,63,224,63,255,254,0,15,255,255,64,31,192,47,255,224,0,1,255,255,0,3,128,15,249,0,0,0,11,252,0,0,0,6,64,0,0,0,0,36,0, + // 0x6ce2 波 + 226,108,36,38,86,40,2,252,0,0,0,0,0,31,192,0,0,3,208,0,0,0,31,192,0,0,11,253,0,0,0,31,192,0,0,15,255,128,0,0,31,192,0,0,1,255,244,0,0,31,192,0,0,0,47,244,0,0,31,192,0,0,0,7,224,255,255,255,255,255,254,0,0,128,255,255,255,255,255,255,0,0,0,255,255,255,255,255,254,0,0,0,255,85,111,229,87,252,0,0,0,254,0,31,192,3,252,0,0,0,254,0,31,192,3,244,61,0,0,254,0,31,192,11,240,255,208,0,254,0,31,192,15,224,255,253,0,254,0,31,192,1,192,31,255,64,254,0,31,192,0,0,2,255,0,255,255,255,255,255,128,0,61,0,255,255,255,255,255,208,0,4,0,255,255,255,255,255,192,0,0,0,254,255,85,85,127,192,0,0,0,254,127,0,0,127,128,0,0,0,253,63,128,0,255,0,0,6,0,253,31,192,1,254,0,0,11,129,253,15,224,3,252,0,0,15,225,252,11,244,7,248,0,0,47,210,252,3,252,15,240,0,0,63,194,252,1,255,63,224,0,0,191,67,248,0,191,255,192,0,0,255,3,248,0,63,255,0,0,2,254,7,244,0,15,253,0,0,3,252,15,240,0,63,255,64,0,11,248,15,224,1,255,255,224,0,15,240,47,208,15,255,191,253,0,47,224,63,193,191,252,15,255,224,127,192,191,159,255,224,1,255,255,63,128,255,15,255,64,0,63,254,7,0,125,7,244,0,0,2,252,0,0,8,2,64,0,0,0,36, + // 0x6ce8 注 + 232,108,37,38,124,40,2,252,0,64,0,0,6,0,0,0,0,0,3,244,0,0,15,224,0,0,0,0,7,255,64,0,63,253,0,0,0,0,7,255,240,0,47,255,128,0,0,0,0,191,253,0,3,255,240,0,0,0,0,11,252,0,0,127,253,0,0,0,0,1,244,0,0,15,255,0,0,0,0,0,16,0,0,2,253,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,255,255,255,255,255,254,0,0,0,0,255,255,255,255,255,254,0,16,0,0,255,255,255,255,255,254,0,127,64,0,170,170,175,234,170,169,0,255,244,0,0,0,31,208,0,0,0,191,255,64,0,0,31,208,0,0,0,11,255,192,0,0,31,208,0,0,0,0,191,64,0,0,31,208,0,0,0,0,30,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,26,170,175,234,170,160,0,0,0,0,47,255,255,255,255,240,0,0,0,208,47,255,255,255,255,240,0,0,1,248,47,255,255,255,255,240,0,0,3,252,0,0,31,208,0,0,0,0,7,248,0,0,31,208,0,0,0,0,15,240,0,0,31,208,0,0,0,0,31,224,0,0,31,208,0,0,0,0,63,192,0,0,31,208,0,0,0,0,191,128,0,0,31,208,0,0,0,0,255,0,0,0,31,208,0,0,0,3,254,0,0,0,31,208,0,0,0,7,252,0,0,0,31,208,0,0,0,15,248,7,255,255,255,255,255,255,64,47,240,7,255,255,255,255,255,255,64,15,208,7,255,255,255,255,255,255,64,2,128,6,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0, + // 0x6d17 洗 + 23,109,37,38,124,40,2,252,0,0,0,0,0,15,208,0,0,0,3,208,0,3,248,15,208,0,0,0,15,248,0,3,248,15,208,0,0,0,15,255,64,7,244,15,208,0,0,0,1,255,224,11,240,15,208,0,0,0,0,63,240,15,240,15,208,0,0,0,0,11,208,15,245,111,229,85,84,0,0,1,128,47,255,255,255,255,248,0,0,0,0,63,255,255,255,255,248,0,0,0,0,127,255,255,255,255,248,0,0,0,0,191,64,15,208,0,0,0,20,0,0,255,0,15,208,0,0,0,126,0,3,254,0,15,208,0,0,0,255,224,7,252,0,15,208,0,0,0,191,252,3,248,0,15,208,0,0,0,31,255,64,176,0,15,208,0,0,0,2,255,64,0,0,15,208,0,0,0,0,126,7,255,255,255,255,255,255,64,0,8,7,255,255,255,255,255,255,64,0,0,7,255,255,255,255,255,255,64,0,0,6,170,191,234,191,234,170,0,0,0,0,0,63,128,63,192,0,0,0,2,0,0,63,128,63,192,0,0,0,11,192,0,63,64,63,192,0,0,0,15,224,0,127,64,63,192,0,0,0,47,208,0,127,0,63,192,0,0,0,63,192,0,191,0,63,192,0,0,0,127,64,0,255,0,63,192,0,0,0,255,0,1,254,0,63,192,24,0,1,254,0,3,252,0,63,192,31,128,3,252,0,7,252,0,63,192,31,192,7,248,0,31,244,0,63,192,31,192,15,244,0,127,224,0,63,192,47,128,31,240,2,255,192,0,47,192,63,128,63,208,47,255,0,0,47,255,255,64,47,192,63,248,0,0,31,255,255,0,7,64,15,208,0,0,11,255,253,0,0,0,5,0,0,0,0,21,64,0, + // 0x6d3b 活 + 59,109,36,38,86,40,2,252,0,0,0,0,0,0,0,6,0,3,208,0,0,0,0,1,191,192,11,253,0,0,0,22,255,255,240,15,255,128,1,175,255,255,255,224,2,255,248,63,255,255,255,248,0,0,47,248,47,255,255,244,0,0,0,7,240,31,250,95,224,0,0,0,0,144,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,45,0,3,255,255,255,255,255,255,127,208,3,255,255,255,255,255,255,255,252,3,255,255,255,255,255,255,47,255,130,170,170,175,250,170,170,2,255,128,0,0,15,224,0,0,0,127,0,0,0,15,224,0,0,0,9,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,128,31,255,255,255,255,240,0,3,224,31,255,255,255,255,240,0,7,248,31,255,255,255,255,240,0,15,240,31,213,85,85,95,240,0,31,224,31,192,0,0,11,240,0,63,192,31,192,0,0,11,240,0,191,128,31,192,0,0,11,240,0,255,0,31,192,0,0,11,240,2,254,0,31,192,0,0,11,240,7,252,0,31,192,0,0,11,240,15,244,0,31,213,85,85,95,240,47,240,0,31,255,255,255,255,240,63,208,0,31,255,255,255,255,240,47,128,0,31,255,255,255,255,240,7,0,0,31,192,0,0,11,240,0,0,0,10,128,0,0,6,144, + // 0x6d41 流 + 65,109,37,38,124,40,2,252,0,0,0,0,0,42,128,0,0,0,3,224,0,0,0,63,192,0,0,0,11,253,0,0,0,63,192,0,0,0,15,255,192,0,0,63,192,0,0,0,1,255,244,0,0,63,192,0,0,0,0,47,249,85,85,127,213,85,85,0,0,7,243,255,255,255,255,255,255,0,0,0,195,255,255,255,255,255,255,0,0,0,3,255,255,255,255,255,255,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,15,240,1,240,0,0,16,0,0,0,47,208,7,252,0,0,62,0,0,0,63,128,1,255,0,0,255,240,0,0,191,0,0,127,192,0,191,254,1,170,255,175,255,255,240,0,11,255,130,255,255,255,255,255,248,0,0,255,2,255,255,255,255,255,253,0,0,45,1,255,250,170,85,64,255,0,0,0,0,0,0,0,0,0,190,0,0,0,0,6,144,0,0,168,32,0,0,0,0,15,224,63,64,253,0,0,0,0,0,15,224,63,64,253,0,0,0,2,128,15,224,63,64,253,0,0,0,3,240,15,224,63,64,253,0,0,0,11,244,15,224,63,64,253,0,0,0,15,240,15,208,63,64,253,0,0,0,47,208,15,208,63,64,253,0,0,0,63,192,15,208,63,64,253,0,0,0,191,64,31,192,63,64,253,0,0,0,255,0,47,192,63,64,253,13,0,3,253,0,63,128,63,64,253,15,128,7,252,0,191,64,63,64,253,15,128,15,244,1,255,0,63,64,253,15,128,31,240,3,253,0,63,64,253,15,64,63,208,15,248,0,63,64,255,255,64,31,192,47,240,0,63,64,191,255,0,3,64,7,192,0,0,0,47,248,0,0,0,1,0,0,0,0,0,0,0, + // 0x6d4b 测 + 75,109,35,39,95,40,2,251,0,0,0,0,0,0,0,0,84,3,128,0,0,0,0,0,0,252,15,244,6,170,170,170,0,0,252,47,254,11,255,255,255,1,64,252,7,255,219,255,255,255,7,224,252,0,191,235,208,0,63,7,224,252,0,31,203,208,0,63,7,224,252,0,3,11,208,80,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,60,0,11,209,244,63,7,224,252,191,128,11,209,244,63,7,224,252,255,248,11,209,244,63,7,224,252,47,255,11,209,244,63,7,224,252,3,254,11,209,244,63,7,224,252,0,188,11,209,244,63,7,224,252,0,16,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,0,11,209,244,63,7,224,252,0,60,11,209,244,63,7,224,252,0,63,75,209,244,63,7,224,252,0,191,11,209,244,63,7,224,252,0,255,11,210,240,63,7,224,252,1,253,11,210,240,63,7,224,252,2,252,6,131,240,26,3,208,252,3,252,0,7,224,0,0,0,252,11,244,0,15,215,64,0,0,252,15,240,0,31,223,192,0,0,252,31,224,0,63,75,240,0,0,252,63,192,0,254,2,252,0,0,252,127,192,7,252,0,254,0,0,252,127,64,63,240,0,63,67,255,252,11,0,63,128,0,31,130,255,248,0,0,13,0,0,9,0,255,144,0,0,0,0,0,0,0,0,0, + // 0x6d88 消 + 136,109,35,38,86,40,2,252,0,0,0,0,0,15,208,0,0,3,208,0,0,0,15,224,0,128,15,248,0,127,0,15,224,2,252,15,255,64,191,64,15,224,3,252,2,255,224,63,192,15,224,7,248,0,63,244,31,224,15,224,15,240,0,11,224,15,240,15,224,47,224,0,1,128,7,248,15,224,63,192,0,0,0,3,252,15,224,191,64,0,0,0,2,224,15,224,30,0,0,0,0,0,0,15,224,0,0,20,0,0,21,85,111,245,85,80,127,0,0,63,255,255,255,255,240,255,224,0,63,255,255,255,255,240,127,253,0,63,255,255,255,255,240,11,255,64,63,192,0,0,11,240,1,255,64,63,192,0,0,11,240,0,62,0,63,192,0,0,11,240,0,8,0,63,192,0,0,11,240,0,0,0,63,255,255,255,255,240,0,0,0,63,255,255,255,255,240,0,0,0,63,255,255,255,255,240,0,2,64,63,192,0,0,11,240,0,7,208,63,192,0,0,11,240,0,11,240,63,192,0,0,11,240,0,15,224,63,192,0,0,11,240,0,47,192,63,255,255,255,255,240,0,63,192,63,255,255,255,255,240,0,191,64,63,255,255,255,255,240,0,255,0,63,192,0,0,11,240,2,253,0,63,192,0,0,11,240,7,252,0,63,192,0,0,11,240,15,244,0,63,192,0,0,11,240,31,240,0,63,192,0,0,15,240,63,224,0,63,192,0,63,255,240,47,192,0,63,192,0,47,255,224,7,64,0,63,192,0,31,255,128,0,0,0,42,128,0,10,84,0, + // 0x6de1 淡 + 225,109,37,37,114,40,2,253,0,0,0,0,0,26,128,0,0,0,2,128,0,0,0,47,192,0,0,0,11,248,0,0,0,47,192,0,0,0,15,255,64,11,224,47,192,11,208,0,2,255,224,15,224,47,192,15,240,0,0,127,248,31,192,63,192,47,224,0,0,11,240,47,192,63,128,63,192,0,0,1,192,127,64,63,128,191,0,0,0,0,0,255,0,127,65,254,0,0,0,0,1,253,0,191,131,252,0,0,0,0,0,40,0,255,244,96,0,0,0,0,0,0,2,255,255,0,0,0,61,0,0,0,11,255,255,224,0,0,255,208,0,0,47,244,127,253,0,0,255,248,0,1,255,224,11,255,192,0,31,255,64,111,255,128,0,255,244,0,2,255,67,255,253,0,0,31,252,0,0,126,0,255,208,47,192,3,244,0,0,4,0,185,0,47,192,0,144,0,0,0,0,0,0,63,192,0,0,0,0,0,0,14,64,63,192,3,208,0,0,1,0,15,208,63,128,11,252,0,0,11,128,47,192,63,128,15,240,0,0,15,224,63,128,63,192,47,224,0,0,47,224,127,64,127,208,63,192,0,0,63,192,255,0,191,240,255,64,0,0,191,130,253,0,255,241,254,0,0,0,255,3,252,1,255,253,252,0,0,2,255,0,116,3,255,254,0,0,0,3,253,0,0,15,248,255,64,0,0,11,252,0,0,63,240,127,208,0,0,15,244,0,1,255,208,47,248,0,0,63,240,0,47,255,64,11,255,128,0,127,208,27,255,253,0,2,255,254,64,47,128,31,255,224,0,0,127,255,0,7,0,11,254,0,0,0,11,253,0,0,0,3,144,0,0,0,0,40,0, + // 0x6df7 混 + 247,109,37,37,114,40,2,252,3,224,0,0,0,0,0,0,0,0,15,253,0,255,255,255,255,255,208,0,15,255,192,255,255,255,255,255,208,0,1,255,240,255,255,255,255,255,208,0,0,47,240,254,0,0,0,15,208,0,0,7,192,254,0,0,0,15,208,0,0,0,64,254,0,0,0,15,208,0,0,0,0,255,255,255,255,255,208,0,0,0,0,255,255,255,255,255,208,0,0,0,0,255,255,255,255,255,208,0,20,0,0,254,0,0,0,15,208,0,127,64,0,254,0,0,0,15,208,0,255,240,0,254,0,0,0,15,208,0,191,254,0,255,255,255,255,255,208,0,11,255,0,255,255,255,255,255,208,0,0,254,0,255,255,255,255,255,208,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,1,253,0,0,0,0,0,0,191,0,1,253,0,0,0,0,0,0,191,0,1,253,0,0,0,0,7,0,191,0,1,253,1,240,0,0,11,192,191,85,81,253,11,252,0,0,15,224,191,255,249,253,191,253,0,0,47,208,191,255,249,255,255,224,0,0,63,192,191,255,249,255,254,0,0,0,191,64,191,0,1,255,208,0,0,0,255,0,191,0,1,253,0,0,0,1,254,0,191,0,1,253,0,16,0,3,252,0,191,0,1,253,0,46,0,11,248,0,191,1,101,253,0,47,64,15,240,0,191,255,249,253,0,63,64,47,240,47,255,255,248,254,85,127,0,63,208,63,255,255,228,255,255,255,0,47,192,63,255,148,0,191,255,253,0,7,64,26,64,0,0,47,255,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e05 清 + 5,110,37,38,124,40,2,252,0,0,0,0,0,47,192,0,0,0,3,208,0,0,0,47,192,0,0,0,11,253,0,170,170,191,234,170,168,0,15,255,128,255,255,255,255,255,252,0,2,255,240,255,255,255,255,255,252,0,0,47,244,0,0,47,192,0,0,0,0,3,224,0,0,47,192,0,0,0,0,0,64,42,170,191,234,170,160,0,0,0,0,63,255,255,255,255,240,0,0,0,0,63,255,255,255,255,240,0,0,0,0,0,0,47,192,0,0,0,36,0,0,0,0,47,192,0,0,0,127,64,6,170,170,191,234,170,170,64,255,244,7,255,255,255,255,255,255,64,127,255,7,255,255,255,255,255,255,64,11,255,128,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,45,0,11,255,255,255,255,208,0,0,0,0,15,255,255,255,255,208,0,0,0,0,15,255,255,255,255,208,0,0,0,0,15,224,0,0,15,208,0,0,0,0,15,224,0,0,15,208,0,0,2,192,15,229,85,85,111,208,0,0,3,240,15,255,255,255,255,208,0,0,11,244,15,255,255,255,255,208,0,0,15,240,15,224,0,0,15,208,0,0,47,208,15,224,0,0,15,208,0,0,63,192,15,224,0,0,15,208,0,0,191,64,15,255,255,255,255,208,0,0,255,0,15,255,255,255,255,208,0,3,253,0,15,250,170,170,175,208,0,7,252,0,15,224,0,0,15,208,0,15,244,0,15,224,0,0,15,208,0,47,240,0,15,224,0,0,15,208,0,63,208,0,15,224,0,63,255,192,0,15,128,0,15,224,0,47,255,192,0,2,0,0,15,224,0,31,254,0,0,0,0,0,5,64,0,0,0,0,0, + // 0x6e29 温 + 41,110,37,37,114,40,2,252,2,224,0,0,0,0,0,0,0,0,7,254,0,63,255,255,255,255,128,0,11,255,208,63,255,255,255,255,128,0,0,191,252,63,255,255,255,255,128,0,0,15,248,63,128,0,0,63,128,0,0,1,240,63,128,0,0,63,128,0,0,0,0,63,128,0,0,63,128,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,128,0,16,0,0,63,128,0,0,63,128,0,61,0,0,63,128,0,0,63,128,0,191,208,0,63,128,0,0,63,128,0,255,248,0,63,128,0,0,63,128,0,47,255,64,63,255,255,255,255,128,0,3,255,128,63,255,255,255,255,128,0,0,127,0,63,255,255,255,255,128,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,240,0,0,3,64,255,255,255,255,255,240,0,0,7,224,255,255,255,255,255,240,0,0,15,240,252,11,192,188,11,240,0,0,31,208,252,11,192,188,11,240,0,0,63,192,252,11,192,188,11,240,0,0,127,128,252,11,192,188,11,240,0,0,255,0,252,11,192,188,11,240,0,2,254,0,252,11,192,188,11,240,0,3,252,0,252,11,192,188,11,240,0,11,248,0,252,11,192,188,11,240,0,15,240,0,252,11,192,188,11,240,0,63,224,127,255,255,255,255,255,255,64,127,192,127,255,255,255,255,255,255,64,31,128,127,255,255,255,255,255,255,64,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e38 游 + 56,110,37,39,134,40,2,251,0,0,0,15,208,0,37,0,0,0,7,128,0,15,208,0,127,64,0,0,15,248,0,15,208,0,191,0,0,0,47,255,0,15,208,0,191,0,0,0,7,255,192,15,208,0,255,0,0,0,0,191,192,15,208,0,255,170,170,0,0,47,170,175,234,162,255,255,255,64,0,6,191,255,255,247,255,255,255,64,0,0,191,255,255,251,255,255,255,64,0,0,191,255,255,255,240,0,0,0,0,0,1,252,0,15,224,0,0,0,0,0,1,252,0,63,208,0,0,0,62,0,1,252,0,63,192,0,16,0,255,224,1,252,0,11,255,255,253,0,191,253,1,252,0,1,255,255,255,0,15,255,1,253,85,64,255,255,253,0,1,252,1,255,255,224,0,7,248,0,0,52,2,255,255,224,0,15,240,0,0,0,2,255,255,208,0,63,208,0,0,0,2,248,15,208,1,255,64,0,0,0,3,248,15,208,1,254,0,0,0,0,3,244,15,208,1,252,0,0,0,0,3,244,15,213,86,253,85,0,0,120,3,240,15,223,255,255,255,64,0,191,7,240,15,223,255,255,255,64,0,254,11,240,15,207,255,255,255,64,1,253,11,224,15,192,1,252,0,0,2,252,15,208,15,192,1,252,0,0,3,248,15,192,31,192,1,252,0,0,7,244,47,192,31,192,1,252,0,0,15,240,63,128,31,192,1,252,0,0,15,224,127,0,47,192,1,252,0,0,47,208,255,0,47,192,1,252,0,0,63,193,253,0,63,128,1,252,0,0,127,131,252,16,191,65,86,252,0,0,191,11,244,63,255,3,255,252,0,0,31,2,224,63,254,2,255,248,0,0,0,0,128,47,248,1,255,144,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e90 源 + 144,110,37,39,134,40,2,251,1,0,0,0,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,0,15,254,2,255,255,255,255,255,255,0,11,255,194,255,255,255,255,255,255,0,0,255,242,255,255,255,255,255,255,0,0,47,226,253,85,86,255,85,85,0,0,7,194,252,0,1,254,0,0,0,0,1,2,252,0,2,253,0,0,0,0,0,2,252,0,2,252,0,0,0,0,0,2,252,0,3,252,0,0,0,0,0,2,252,63,255,255,255,248,0,0,0,2,252,63,255,255,255,248,0,61,0,2,252,63,255,255,255,248,0,255,208,2,252,63,64,0,3,248,0,255,252,2,252,63,64,0,3,248,0,31,255,2,252,63,170,170,171,248,0,1,253,2,252,63,255,255,255,248,0,0,56,2,252,63,255,255,255,248,0,0,0,2,252,63,64,0,3,248,0,0,0,2,252,63,64,0,3,248,0,0,0,3,252,63,64,0,3,248,0,0,0,3,248,63,234,170,171,248,0,0,8,3,248,63,255,255,255,248,0,0,31,3,244,63,255,255,255,248,0,0,63,199,244,0,0,253,0,0,0,0,127,135,240,0,0,253,0,0,0,0,191,11,240,14,64,253,11,192,0,0,255,15,240,47,192,253,31,224,0,2,253,15,224,63,128,253,15,240,0,3,252,31,208,191,0,253,7,252,0,7,248,47,192,254,0,253,2,253,0,15,240,63,131,252,0,253,0,255,0,31,224,191,75,248,0,253,0,191,64,63,208,255,15,240,0,253,0,127,128,127,194,254,7,208,1,253,0,61,0,127,67,252,0,65,255,252,0,0,0,11,1,248,0,0,255,252,0,0,0,0,0,32,0,0,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6ea2 溢 + 162,110,37,37,114,40,2,253,1,0,0,0,0,0,0,0,0,0,7,224,0,0,3,255,255,192,0,0,31,254,0,1,67,255,255,208,0,0,11,255,192,3,247,255,255,240,0,0,1,255,240,11,240,0,11,244,0,0,0,47,208,31,240,0,3,252,0,0,0,11,128,63,208,0,2,255,0,0,0,2,0,191,128,0,0,255,192,0,0,0,1,255,0,0,0,127,244,0,0,0,7,254,255,255,255,223,254,0,0,0,31,249,255,255,255,199,253,0,0,0,11,225,255,255,255,192,244,0,61,0,2,128,0,0,0,0,0,0,191,208,0,0,0,0,0,0,0,0,255,252,0,0,3,255,255,224,0,0,31,255,0,1,3,255,255,240,0,0,2,253,0,7,247,255,255,244,0,0,0,56,0,15,240,0,3,252,0,0,0,0,0,47,224,0,1,254,0,0,0,0,0,127,192,0,0,255,64,0,0,0,0,255,64,0,0,127,192,0,0,0,3,254,0,0,0,31,244,0,0,0,15,252,0,0,0,11,254,0,0,45,63,255,255,255,255,255,255,64,0,63,175,255,255,255,255,255,254,0,0,127,75,191,255,255,255,255,216,0,0,255,0,126,11,192,248,47,128,0,1,254,0,126,11,192,248,31,128,0,2,253,0,126,11,192,248,31,128,0,3,252,0,126,11,192,248,31,128,0,11,244,0,126,11,192,248,31,128,0,15,240,0,126,11,192,248,31,128,0,31,224,0,126,11,192,248,31,128,0,63,192,127,255,255,255,255,255,255,64,127,192,127,255,255,255,255,255,255,64,47,64,127,255,255,255,255,255,255,64,2,0,21,85,85,85,85,85,85,0, + // 0x6ed1 滑 + 209,110,36,37,77,40,2,252,3,208,0,0,0,0,0,0,0,11,253,0,15,255,255,255,255,0,15,255,128,15,255,255,255,255,0,1,255,244,15,255,255,255,255,0,0,47,248,15,224,0,0,127,0,0,3,240,15,224,0,0,127,0,0,0,64,15,224,63,255,255,0,0,0,0,15,224,63,255,255,0,0,0,0,15,224,63,85,191,0,0,0,0,15,224,63,0,127,0,0,0,0,15,224,63,0,127,0,61,0,0,15,224,63,0,127,0,191,208,11,255,255,255,255,255,255,255,252,11,255,255,255,255,255,255,47,255,75,255,255,255,255,255,255,2,255,75,224,0,0,0,0,191,0,46,11,224,0,0,0,0,191,0,4,11,239,255,255,255,255,191,0,0,6,159,255,255,255,255,106,0,0,0,15,255,255,255,255,0,0,0,0,15,224,0,0,127,0,0,2,128,15,224,0,0,127,0,0,3,240,15,250,170,170,255,0,0,11,244,15,255,255,255,255,0,0,15,240,15,255,255,255,255,0,0,47,208,15,224,0,0,127,0,0,63,192,15,224,0,0,127,0,0,191,64,15,250,170,170,255,0,1,255,0,15,255,255,255,255,0,3,253,0,15,255,255,255,255,0,7,252,0,15,224,0,0,127,0,15,244,0,15,224,0,0,127,0,31,240,0,15,224,0,0,127,0,63,208,0,15,224,0,0,127,0,47,192,0,15,224,0,255,255,0,7,64,0,15,224,0,191,254,0,0,0,0,15,208,0,127,228,0, + // 0x6f0f 漏 + 15,111,36,37,77,40,2,252,7,64,0,0,0,0,0,0,0,15,240,3,255,255,255,255,255,248,47,254,3,255,255,255,255,255,248,7,255,211,255,255,255,255,255,248,0,191,195,240,0,0,0,3,248,0,31,67,240,0,0,0,3,248,0,1,3,240,0,0,0,3,248,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,240,0,0,0,0,0,61,0,3,240,0,0,0,0,0,191,208,3,240,0,0,0,0,0,255,248,3,255,255,255,255,255,254,47,255,67,255,255,255,255,255,254,2,255,3,255,255,255,255,255,254,0,124,7,240,0,3,240,0,0,0,0,7,240,0,3,240,0,0,0,0,7,255,255,255,255,255,252,0,0,7,255,255,255,255,255,252,0,0,11,255,255,255,255,255,252,0,52,11,255,192,3,240,0,252,0,126,11,239,193,3,241,64,252,0,191,15,223,207,131,243,224,252,0,255,15,223,223,243,243,248,252,1,253,31,207,195,247,240,189,252,2,252,31,207,192,179,240,40,252,3,252,47,207,192,3,240,0,252,7,244,63,143,197,3,243,64,252,15,240,63,79,223,131,251,224,252,31,224,191,15,223,227,243,252,252,47,208,254,15,195,247,240,188,252,63,193,253,15,192,243,240,32,252,191,131,252,15,192,3,240,0,252,255,3,244,15,192,3,240,42,252,30,0,240,15,192,3,240,63,252,0,0,16,15,192,2,240,63,224, + // 0x6fc0 激 + 192,111,37,38,124,40,2,252,1,0,0,6,144,0,25,64,0,0,7,208,0,11,244,0,47,192,0,0,31,248,0,15,240,0,63,128,0,0,31,255,64,15,224,0,63,128,0,0,2,255,218,175,250,164,63,64,0,0,0,63,207,255,255,244,127,0,0,0,0,11,15,255,255,244,127,0,0,0,0,0,15,192,2,244,191,0,0,0,0,0,15,192,2,244,255,255,255,64,0,0,15,234,171,244,255,255,255,64,0,0,15,255,255,245,255,255,255,64,40,0,15,255,255,246,253,87,249,0,127,64,15,192,2,247,252,3,244,0,255,244,15,192,2,255,252,3,244,0,127,253,15,192,2,255,252,3,240,0,7,254,15,255,255,255,253,7,240,0,0,252,15,255,255,255,254,7,240,0,0,32,10,175,250,191,190,11,224,0,0,0,0,11,224,15,47,11,224,0,0,0,0,11,224,1,31,15,208,0,0,0,191,255,255,255,31,143,192,0,0,0,191,255,255,255,15,223,192,0,0,36,191,255,255,255,15,239,128,0,0,62,0,190,0,0,7,255,64,0,0,63,64,126,0,0,3,255,0,0,0,191,0,190,0,0,3,254,0,0,0,255,0,191,255,240,2,253,0,0,1,253,0,191,255,240,2,252,0,0,2,252,0,255,255,240,3,254,0,0,3,252,1,252,3,240,11,255,64,0,11,244,2,252,7,240,31,255,192,0,15,240,3,248,7,240,63,223,224,0,31,224,15,240,7,240,255,11,248,0,63,192,47,224,11,227,253,3,254,0,127,192,191,203,255,239,248,1,255,128,127,66,255,3,255,239,224,0,127,0,11,0,252,3,255,75,128,0,28,0,0,0,32,0,0,1,0,0,0,0, + // 0x706f 灯 + 111,112,37,39,134,40,2,251,0,2,160,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,170,170,170,170,170,0,0,7,240,0,255,255,255,255,255,64,0,7,240,0,255,255,255,255,255,64,0,7,240,0,255,255,255,255,255,64,0,7,240,0,0,0,15,240,0,0,4,7,240,57,0,0,15,240,0,0,31,71,240,127,0,0,15,240,0,0,31,71,240,189,0,0,15,240,0,0,47,71,240,252,0,0,15,240,0,0,47,71,241,248,0,0,15,240,0,0,63,7,242,244,0,0,15,240,0,0,63,11,243,240,0,0,15,240,0,0,63,11,247,208,0,0,15,240,0,0,126,11,247,192,0,0,15,240,0,0,190,11,240,0,0,0,15,240,0,0,253,11,240,0,0,0,15,240,0,0,28,11,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,240,0,0,0,15,224,0,0,0,15,240,0,0,0,15,224,0,0,0,15,240,0,0,0,31,240,0,0,0,15,240,0,0,0,31,252,0,0,0,15,240,0,0,0,47,255,0,0,0,15,240,0,0,0,63,255,192,0,0,15,240,0,0,0,127,175,240,0,0,15,240,0,0,0,191,79,248,0,0,15,240,0,0,0,255,3,254,0,0,15,240,0,0,2,254,1,254,0,0,15,240,0,0,7,252,0,124,0,0,15,240,0,0,15,248,0,32,0,0,15,240,0,0,47,240,0,0,0,0,31,224,0,0,191,208,0,0,7,255,255,224,0,0,255,128,0,0,3,255,255,208,0,0,63,0,0,0,2,255,255,128,0,0,12,0,0,0,1,255,232,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x70b9 点 + 185,112,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,255,255,255,255,244,0,0,0,0,255,255,255,255,244,0,0,0,0,255,255,255,255,244,0,0,0,0,255,85,85,85,80,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,21,85,86,255,85,85,84,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,127,0,0,0,0,1,253,0,0,127,0,0,0,0,1,253,0,0,127,0,0,0,0,1,253,0,0,127,0,0,0,0,1,253,0,0,127,0,0,0,0,1,253,0,0,127,0,0,0,0,1,253,0,0,127,85,85,85,85,86,253,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,4,0,109,0,0,255,1,252,1,252,0,255,0,1,254,2,252,0,254,0,127,192,3,252,1,253,0,191,0,63,208,7,248,0,253,0,127,128,15,240,15,240,0,254,0,63,192,11,248,63,224,0,254,0,47,208,3,253,255,192,0,255,0,15,224,1,255,127,0,0,255,0,15,208,0,249,5,0,0,80,0,0,0,0,64, + // 0x70ed 热 + 237,112,37,39,134,40,2,251,0,6,160,0,0,190,0,0,0,0,0,11,224,0,0,254,0,0,0,0,0,11,224,0,0,254,0,0,0,0,0,11,224,0,0,254,0,0,0,0,0,11,224,0,0,254,0,0,0,0,0,11,224,0,0,254,0,0,0,0,127,255,255,243,255,255,255,254,0,0,127,255,255,243,255,255,255,254,0,0,127,255,255,243,255,255,255,254,0,0,21,95,245,80,0,254,0,254,0,0,0,11,224,0,0,253,0,253,0,0,0,11,224,0,0,252,0,253,0,0,0,11,224,0,1,252,0,253,0,0,0,11,246,244,1,252,0,253,0,0,0,11,255,244,226,252,0,253,0,0,6,255,255,251,255,248,0,253,0,0,255,255,255,147,255,248,0,253,0,0,255,255,240,0,191,248,0,253,0,0,191,239,224,0,15,255,64,253,0,0,100,11,224,0,15,255,224,253,0,0,0,11,224,0,47,255,252,190,4,0,0,11,224,0,127,203,252,190,14,0,0,11,224,0,255,65,244,190,15,128,0,15,224,3,254,0,32,127,31,128,15,255,224,31,252,0,0,63,175,64,11,255,208,63,240,0,0,47,255,0,7,255,64,15,192,0,0,15,254,0,1,64,0,6,0,0,0,3,248,0,0,16,0,0,0,0,0,8,0,0,0,255,0,104,0,173,0,191,0,0,1,254,1,252,0,254,0,191,128,0,3,252,0,253,0,191,0,63,208,0,7,248,0,253,0,127,64,31,240,0,15,240,0,254,0,63,128,11,248,0,63,224,0,255,0,63,192,3,252,0,191,192,0,255,0,47,208,2,255,0,191,64,0,191,0,31,208,0,254,0,10,0,0,80,0,4,0,0,96,0,0,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,34,38,86,40,2,252,0,0,0,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,2,254,0,0,0,0,191,64,0,3,253,0,0,0,0,191,64,0,7,252,0,0,0,0,191,64,0,11,248,0,0,0,0,191,64,0,15,244,0,0,0,0,191,64,0,63,240,0,0,0,0,191,64,0,191,208,0,0,0,0,191,64,0,255,192,0,0,0,0,191,64,0,191,0,0,0,0,0,191,64,0,45,0,0,0,0,0,191,64,0,8,0,0,0,0,0,191,64,0, + // 0x7269 物 + 105,114,37,38,124,40,1,252,0,0,252,0,0,148,0,0,0,0,0,0,252,0,1,253,0,0,0,0,1,0,252,0,2,252,0,0,0,0,7,240,252,0,3,248,0,0,0,0,11,224,252,0,3,244,0,0,0,0,11,224,252,0,7,240,0,0,0,0,15,208,252,0,11,240,0,0,0,0,15,208,252,0,15,255,255,255,255,192,15,234,254,164,31,255,255,255,255,192,15,255,255,252,63,255,255,255,255,192,31,255,255,252,127,151,249,127,191,192,47,255,255,252,255,3,240,63,47,192,47,64,252,1,253,7,224,127,47,192,63,0,252,3,252,15,208,190,47,192,127,0,252,15,244,15,192,253,63,128,190,0,252,31,240,47,193,252,63,128,45,0,252,11,192,63,66,252,63,128,4,0,252,2,64,127,3,248,63,128,0,0,252,5,0,254,3,244,63,64,0,0,254,254,1,252,11,240,63,64,0,1,255,254,3,248,15,224,63,64,0,127,255,254,11,240,31,192,63,64,47,255,255,144,31,224,47,192,127,0,63,255,252,0,63,192,63,64,127,0,63,250,252,0,255,64,191,0,127,0,46,64,252,3,254,0,254,0,191,0,0,0,252,11,252,2,252,0,191,0,0,0,252,2,240,3,248,0,255,0,0,0,252,0,64,15,240,0,254,0,0,0,252,0,0,31,224,0,254,0,0,0,252,0,0,63,192,1,253,0,0,0,252,0,0,255,64,2,252,0,0,0,252,0,3,254,0,3,252,0,0,0,252,0,15,252,0,11,252,0,0,0,252,0,63,240,31,255,244,0,0,0,252,0,47,208,15,255,240,0,0,0,252,0,7,0,15,255,192,0,0,0,252,0,0,0,6,164,0,0, + // 0x7279 特 + 121,114,38,38,124,40,1,252,0,0,252,0,0,0,254,0,0,0,0,0,252,0,0,0,255,0,0,0,6,144,252,0,0,0,255,0,0,0,7,240,252,0,0,0,255,0,0,0,11,224,252,0,127,255,255,255,253,0,11,208,252,0,127,255,255,255,253,0,15,208,252,0,127,255,255,255,253,0,15,192,252,0,21,85,255,85,84,0,15,255,255,252,0,0,255,0,0,0,15,255,255,252,0,0,255,0,0,0,31,255,255,252,0,0,255,0,0,0,47,170,254,164,0,0,255,0,0,0,63,64,252,11,255,255,255,255,255,208,63,0,252,11,255,255,255,255,255,208,191,0,252,11,255,255,255,255,255,208,189,0,252,5,85,85,85,127,213,64,28,0,252,0,0,0,0,63,128,0,0,0,252,0,0,0,0,63,128,0,0,0,253,126,0,0,0,63,128,0,0,1,255,254,0,0,0,63,128,0,0,27,255,255,255,255,255,255,255,192,27,255,255,247,255,255,255,255,255,192,127,255,254,3,255,255,255,255,255,192,63,255,252,1,85,85,85,127,213,64,63,144,252,0,2,0,0,63,128,0,20,0,252,0,47,192,0,63,128,0,0,0,252,0,47,224,0,63,128,0,0,0,252,0,15,248,0,63,128,0,0,0,252,0,3,253,0,63,128,0,0,0,252,0,1,255,0,63,128,0,0,0,252,0,0,191,64,63,128,0,0,0,252,0,0,60,0,63,128,0,0,0,252,0,0,0,0,63,128,0,0,0,252,0,0,0,0,63,128,0,0,0,252,0,0,2,255,255,128,0,0,0,252,0,0,1,255,255,64,0,0,0,252,0,0,0,255,254,0,0,0,0,168,0,0,0,170,144,0,0, + // 0x7387 率 + 135,115,36,38,86,40,2,252,0,0,0,0,169,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,5,85,85,85,255,85,85,85,80,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,0,0,0,7,244,0,0,0,0,1,0,0,15,224,0,0,7,64,11,224,0,47,192,36,0,31,240,31,252,2,127,0,191,0,127,208,7,255,75,253,1,253,2,255,64,0,191,239,252,7,244,15,252,0,0,31,210,255,79,224,31,224,0,0,7,0,127,255,128,1,64,0,0,0,0,31,255,28,0,0,0,0,0,0,3,252,191,11,64,0,0,1,240,7,240,63,191,240,0,0,31,244,31,192,31,255,254,0,6,255,248,127,255,255,242,255,208,191,255,175,255,255,255,244,127,248,127,248,31,255,255,234,252,11,253,63,64,30,149,64,0,252,1,244,4,0,0,0,255,0,80,0,16,0,0,0,0,255,0,0,0,0,85,85,85,85,255,85,85,85,85,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x73af 环 + 175,115,37,36,104,40,1,252,0,0,0,2,170,170,170,170,170,64,127,255,255,199,255,255,255,255,255,192,127,255,255,199,255,255,255,255,255,192,127,255,255,199,255,255,255,255,255,192,21,127,213,64,0,0,255,0,0,0,0,63,128,0,0,1,255,0,0,0,0,63,128,0,0,2,253,0,0,0,0,63,128,0,0,3,252,0,0,0,0,63,128,0,0,11,248,0,0,0,0,63,128,0,0,15,244,0,0,0,0,63,128,0,0,47,244,0,0,0,0,63,128,0,0,63,244,208,0,0,21,127,213,0,0,191,255,240,0,0,47,255,255,0,0,255,255,252,0,0,47,255,255,0,3,255,246,255,0,0,47,255,255,0,11,255,244,255,128,0,0,63,128,0,31,251,244,63,208,0,0,63,128,0,63,231,244,31,240,0,0,63,128,0,255,195,244,11,252,0,0,63,128,3,255,67,244,3,254,0,0,63,128,15,254,3,244,1,255,64,0,63,128,47,248,3,244,0,191,128,0,63,128,11,224,3,244,0,62,0,0,63,128,3,192,3,244,0,20,0,0,63,139,128,0,3,244,0,0,0,0,63,255,128,0,3,244,0,0,0,0,127,255,192,0,3,244,0,0,0,31,255,255,64,0,3,244,0,0,0,127,255,224,0,0,3,244,0,0,0,63,249,0,0,0,3,244,0,0,0,62,64,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,2,164,0,0,0, + // 0x7528 用 + 40,117,35,35,59,40,1,252,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,234,170,191,234,170,171,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,213,85,127,229,85,91,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,127,255,255,255,255,255,255,248,0,127,170,170,191,234,170,171,248,0,191,0,0,47,192,0,3,248,0,255,0,0,47,192,0,3,248,0,254,0,0,47,192,0,3,248,1,253,0,0,47,192,0,3,248,3,252,0,0,47,192,0,3,248,3,252,0,0,47,192,0,3,248,11,244,0,0,47,192,0,3,248,15,240,0,0,47,192,0,7,248,63,224,0,0,47,192,255,255,244,127,192,0,0,47,192,127,255,240,31,64,0,0,47,192,63,255,208,6,0,0,0,5,64,42,84,0, + // 0x7535 电 + 53,117,34,37,77,40,5,253,0,0,0,42,64,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,127,128,0,0,0,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,170,170,191,234,170,175,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,85,85,191,213,85,111,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,0,0,127,128,0,15,224,0,255,170,170,191,234,170,175,224,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,255,255,255,255,255,255,224,0,255,0,0,127,128,0,0,8,0,255,0,0,127,128,0,0,31,128,85,0,0,127,128,0,0,31,208,0,0,0,127,128,0,0,47,208,0,0,0,127,128,0,0,63,192,0,0,0,63,192,0,0,127,192,0,0,0,63,254,170,171,255,128,0,0,0,47,255,255,255,255,0,0,0,0,15,255,255,255,254,0,0,0,0,2,255,255,255,228,0, + // 0x7565 略 + 101,117,36,38,86,40,3,252,0,0,0,0,0,121,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,255,255,255,224,3,252,0,0,0,255,255,255,224,7,255,255,255,128,255,255,255,224,15,255,255,255,224,252,31,7,224,63,255,255,255,192,252,31,7,224,191,192,0,127,128,252,31,7,226,255,192,0,255,0,252,31,7,235,255,240,2,254,0,252,31,7,255,255,248,3,252,0,252,31,7,255,243,253,15,244,0,252,31,7,255,193,255,127,224,0,252,31,7,235,0,191,255,192,0,255,255,255,224,0,47,255,0,0,255,255,255,224,0,15,253,0,0,255,255,255,224,0,47,255,64,0,252,47,7,224,0,255,255,224,0,252,31,7,224,7,255,191,252,0,252,31,7,224,47,253,15,255,128,252,31,7,226,255,240,2,255,248,252,31,7,255,255,128,0,127,255,252,31,7,255,253,0,0,15,252,252,31,7,239,255,255,255,255,244,252,31,7,229,255,255,255,255,192,252,31,7,224,255,255,255,255,192,255,255,255,224,255,85,85,111,192,255,255,255,224,254,0,0,47,192,255,255,255,224,254,0,0,47,192,252,0,0,0,254,0,0,47,192,252,0,0,0,254,0,0,47,192,252,0,0,0,254,0,0,47,192,252,0,0,0,254,0,0,47,192,0,0,0,0,255,255,255,255,192,0,0,0,0,255,255,255,255,192,0,0,0,0,255,255,255,255,192,0,0,0,0,255,85,85,111,192,0,0,0,0,169,0,0,26,128, + // 0x767d 白 + 125,118,30,38,48,40,5,252,0,0,0,249,64,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,7,252,0,0,0,0,106,170,175,254,170,170,170,144,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,234,170,170,170,170,191,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,234,170,170,170,170,191,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,0,0,0,0,0,26,144, + // 0x7684 的 + 132,118,34,38,86,40,3,252,0,10,144,0,0,100,0,0,0,0,15,240,0,0,191,0,0,0,0,15,240,0,0,255,0,0,0,0,31,208,0,1,253,0,0,0,0,47,192,0,2,252,0,0,0,0,63,128,0,3,252,0,0,0,0,127,128,0,7,253,85,85,80,191,255,255,248,11,255,255,255,240,191,255,255,248,15,255,255,255,240,191,255,255,248,31,255,255,255,240,191,0,2,248,63,192,0,7,240,191,0,2,248,127,128,0,7,240,191,0,2,248,255,0,0,7,240,191,0,2,250,254,0,0,7,240,191,0,2,255,252,0,0,7,240,191,0,2,249,244,0,0,11,240,191,0,2,248,48,112,0,11,240,191,0,2,248,2,248,0,11,240,191,255,255,248,2,253,0,11,240,191,255,255,248,0,255,0,11,224,191,255,255,248,0,127,192,15,224,191,0,3,248,0,47,224,15,224,191,0,2,248,0,15,240,15,224,191,0,2,248,0,7,252,15,224,191,0,2,248,0,3,253,15,208,191,0,2,248,0,1,253,15,208,191,0,2,248,0,0,224,15,208,191,0,2,248,0,0,0,31,208,191,0,2,248,0,0,0,31,192,191,0,2,248,0,0,0,47,192,191,255,255,248,0,0,0,47,192,191,255,255,248,0,0,0,63,192,191,255,255,248,0,0,0,63,128,191,85,85,80,0,0,0,255,64,191,0,0,0,0,63,255,255,0,191,0,0,0,0,31,255,253,0,105,0,0,0,0,15,255,244,0,0,0,0,0,0,5,85,0,0, + // 0x76d1 监 + 209,118,36,37,77,40,2,253,0,0,6,160,0,5,0,0,0,0,0,7,240,0,15,224,0,0,3,244,7,240,0,31,208,0,0,3,244,7,240,0,47,192,0,0,3,244,7,240,0,63,192,0,0,3,244,7,240,0,127,128,0,0,3,244,7,240,0,191,255,255,254,3,244,7,240,0,255,255,255,254,3,244,7,240,1,255,255,255,254,3,244,7,240,3,253,85,85,85,3,244,7,240,11,244,0,0,0,3,244,7,240,15,240,4,0,0,3,244,7,240,47,208,125,0,0,3,244,7,240,127,193,255,128,0,3,244,7,240,255,64,127,240,0,3,244,7,241,254,0,31,252,0,3,244,7,240,124,0,3,255,64,3,244,7,240,0,0,0,255,192,2,164,7,240,0,0,0,63,192,0,0,7,240,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,191,0,191,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,0,191,0,190,0,190,0,191,0,85,255,85,255,85,255,85,191,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x76f4 直 + 244,118,36,38,86,40,2,252,0,0,0,0,127,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,127,128,0,0,0,21,85,85,85,191,213,85,85,84,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,250,170,170,171,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,250,170,170,171,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,250,170,170,170,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,250,170,170,171,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,249,85,85,85,85,85,85,85,7,255,255,255,255,255,255,255,255,7,255,255,255,255,255,255,255,255,7,255,255,255,255,255,255,255,255,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0, + // 0x7701 省 + 1,119,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,160,0,255,0,11,64,0,0,2,255,0,255,0,63,224,0,0,7,253,0,255,0,31,252,0,0,31,248,0,255,0,7,255,0,0,127,224,0,255,0,0,255,208,2,255,192,0,255,0,0,63,244,11,255,0,0,255,0,126,15,253,127,248,0,0,255,1,255,131,255,63,224,7,255,254,11,254,0,248,15,64,3,255,253,127,248,0,16,0,0,2,255,231,255,208,0,0,0,0,0,0,127,255,0,0,0,0,0,0,27,255,244,0,0,0,0,0,6,255,255,128,0,0,0,0,22,255,255,244,0,0,0,0,107,255,255,255,255,255,255,252,0,255,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,252,0,46,145,252,0,0,0,2,252,0,0,1,252,0,0,0,2,252,0,0,1,254,170,170,170,171,252,0,0,1,255,255,255,255,255,252,0,0,1,255,255,255,255,255,252,0,0,1,252,0,0,0,2,252,0,0,1,252,0,0,0,2,252,0,0,1,252,0,0,0,2,252,0,0,1,255,255,255,255,255,252,0,0,1,255,255,255,255,255,252,0,0,1,254,170,170,170,171,252,0,0,1,252,0,0,0,2,252,0,0,1,252,0,0,0,2,252,0,0,1,255,255,255,255,255,252,0,0,1,255,255,255,255,255,252,0,0,1,255,255,255,255,255,252,0,0,1,252,0,0,0,2,252,0,0,0,168,0,0,0,0,84,0, + // 0x7720 眠 + 32,119,36,36,68,40,3,252,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,254,85,254,3,249,85,85,91,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,249,85,85,91,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,253,0,254,3,244,1,252,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,255,255,254,3,255,255,255,255,252,255,255,254,3,255,255,255,255,252,255,255,254,3,255,255,255,255,252,253,0,254,3,249,85,255,85,84,253,0,254,3,244,0,127,0,0,253,0,254,3,244,0,127,0,0,253,0,254,3,244,0,63,64,0,253,0,254,3,244,0,63,128,0,254,85,254,3,244,0,63,192,0,255,255,254,3,244,0,47,192,16,255,255,254,3,244,0,31,208,61,255,255,254,3,244,0,15,224,63,253,0,0,3,244,22,219,240,63,253,0,0,3,255,255,211,244,63,253,0,1,191,255,255,227,253,126,84,0,2,255,255,255,144,255,253,0,0,1,255,254,64,0,191,252,0,0,0,249,64,0,0,47,244,0,0,0,0,0,0,0,1,64, + // 0x786e 确 + 110,120,36,39,95,40,1,251,0,0,0,0,0,20,0,0,0,0,0,0,0,0,63,192,0,0,21,85,85,85,0,127,128,0,0,63,255,255,255,0,191,64,0,0,63,255,255,255,0,255,255,252,0,63,255,255,255,2,255,255,255,0,0,31,192,0,3,255,255,255,0,0,47,192,0,11,244,2,252,0,0,47,192,0,31,224,3,248,0,0,63,128,0,63,192,15,240,0,0,63,64,0,191,128,31,224,0,0,127,0,2,255,255,255,255,255,0,191,0,7,255,255,255,255,255,0,255,0,1,255,255,255,255,255,0,254,85,80,127,192,63,0,127,1,255,255,252,47,192,63,0,127,2,255,255,252,47,192,63,0,127,3,255,255,252,47,192,63,0,127,7,253,2,252,47,255,255,255,255,11,253,2,252,47,255,255,255,255,15,253,2,252,47,255,255,255,255,63,253,2,252,47,192,63,0,127,127,253,2,252,47,192,63,0,127,191,253,2,252,47,192,63,0,127,63,253,2,252,47,192,63,64,191,28,253,2,252,63,255,255,255,255,4,253,2,252,63,255,255,255,255,0,253,2,252,63,255,255,255,255,0,253,2,252,63,0,0,0,127,0,255,255,252,191,0,0,0,127,0,255,255,252,255,0,0,0,127,0,255,255,252,254,0,0,0,127,0,253,0,2,252,0,0,0,127,0,253,0,3,252,0,0,0,191,0,253,0,15,244,0,0,85,255,0,168,0,31,240,0,0,255,255,0,0,0,11,192,0,0,255,253,0,0,0,2,64,0,0,191,228,0,0,0,0,0,0,0,0,0, + // 0x79bb 离 + 187,121,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,0,16,0,0,0,0,42,64,100,0,191,1,168,0,0,63,128,255,130,253,2,252,0,0,63,128,191,255,240,2,252,0,0,63,128,7,255,224,2,252,0,0,63,128,31,255,253,2,252,0,0,63,134,255,210,255,66,252,0,0,63,139,253,0,63,2,252,0,0,63,129,128,0,4,2,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,0,0,7,252,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,11,244,0,0,0,0,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,244,0,47,192,11,0,47,208,7,244,0,63,192,63,128,31,208,7,244,0,63,128,31,208,31,208,7,244,0,127,0,11,240,31,208,7,244,1,191,171,255,248,31,208,7,245,255,255,255,255,252,31,208,7,244,255,255,255,255,254,31,208,7,244,254,165,80,0,127,31,208,7,244,0,0,0,0,32,31,208,7,244,0,0,0,0,20,111,208,7,244,0,0,0,0,63,255,208,7,244,0,0,0,0,47,255,192,7,244,0,0,0,0,31,254,0, + // 0x79fb 移 + 251,121,37,38,124,40,1,252,0,0,0,0,0,0,148,0,0,0,0,0,2,224,0,2,254,0,0,0,0,1,191,248,0,3,252,0,0,0,1,191,255,253,0,15,244,0,0,0,63,255,255,228,0,63,255,255,248,0,63,255,252,0,0,255,255,255,252,0,31,151,248,0,7,255,255,255,248,0,0,3,248,0,47,248,0,15,240,0,0,3,248,1,255,248,0,47,224,0,0,3,248,7,255,255,64,127,192,0,0,3,248,2,252,191,209,255,64,0,42,171,254,168,144,31,255,253,0,0,63,255,255,253,0,3,255,244,0,0,63,255,255,253,0,1,255,208,0,0,63,255,255,253,0,11,255,64,0,0,0,11,248,0,0,191,253,0,0,0,0,15,252,0,111,255,255,224,0,0,0,31,253,2,255,253,63,192,0,0,0,63,255,128,255,208,255,64,0,0,0,127,255,224,120,2,255,255,255,64,0,255,255,244,0,11,255,255,255,192,1,255,250,253,0,63,255,255,255,192,3,247,248,255,1,255,192,0,191,64,7,243,248,60,11,255,0,0,255,0,15,211,248,36,127,255,64,3,253,0,63,195,248,2,255,255,224,11,252,0,127,131,248,0,255,31,252,31,240,0,127,3,248,0,52,3,255,127,224,0,61,3,248,0,0,0,255,255,128,0,24,3,248,0,0,0,47,255,0,0,0,3,248,0,0,0,63,248,0,0,0,3,248,0,0,2,255,224,0,0,0,3,248,0,0,111,255,64,0,0,0,3,248,0,27,255,252,0,0,0,0,3,248,7,255,255,208,0,0,0,0,3,248,3,255,253,0,0,0,0,0,3,248,1,255,128,0,0,0,0,0,2,168,0,144,0,0,0,0,0, + // 0x7a7a 空 + 122,122,36,37,77,40,2,253,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,213,86,254,85,191,85,87,252,63,192,2,253,0,191,0,3,252,63,192,3,252,0,191,0,3,252,63,192,3,252,0,191,0,3,252,63,192,7,248,0,191,0,3,252,21,64,15,244,0,191,0,0,0,0,0,47,240,0,191,0,1,128,0,0,127,208,0,191,0,2,248,0,2,255,128,0,191,64,3,248,0,111,255,0,0,127,255,255,244,47,255,248,0,0,63,255,255,240,47,255,208,0,0,31,255,255,192,15,253,0,0,0,0,0,0,0,11,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,85,85,85,85,85,85,0,0,63,255,255,255,255,255,255,0,0,63,255,255,255,255,255,255,0,0,63,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,21,85,85,85,85,85,85,85,84, + // 0x7aef 端 + 239,122,38,38,124,40,1,252,0,5,64,0,0,0,169,0,0,0,0,15,192,0,0,0,253,0,0,0,0,15,192,0,168,0,253,0,106,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,63,255,255,225,253,1,253,0,191,0,63,255,255,225,255,255,255,255,255,0,63,255,255,225,255,255,255,255,255,0,21,85,85,81,255,255,255,255,255,0,0,0,4,0,0,0,0,0,0,0,15,128,31,192,0,0,0,0,0,0,15,192,47,193,85,85,85,85,85,64,15,192,47,143,255,255,255,255,255,208,11,208,63,143,255,255,255,255,255,208,11,208,63,79,255,255,255,255,255,208,7,224,63,0,0,2,253,0,0,0,7,224,63,0,0,3,252,0,0,0,3,240,127,0,0,3,248,0,0,0,3,240,126,0,0,7,248,0,0,0,3,240,189,3,255,255,255,255,255,64,3,240,253,3,255,255,255,255,255,64,3,240,252,3,255,255,255,255,255,64,3,240,252,3,248,47,2,240,63,64,0,1,248,99,248,47,2,240,63,64,0,1,255,247,248,47,2,240,63,64,1,175,255,251,248,47,2,240,63,64,127,255,255,247,248,47,2,240,63,64,127,255,249,3,248,47,2,240,63,64,63,249,0,3,248,47,2,240,63,64,57,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,247,255,64,0,0,0,3,248,47,2,243,255,0,0,0,0,2,244,21,1,82,248,0, + // 0x7b2c 第 + 44,123,37,38,124,40,1,252,0,10,64,0,0,14,64,0,0,0,0,31,224,0,0,31,224,0,0,0,0,47,208,0,0,63,192,0,0,0,0,63,192,0,0,127,128,0,0,0,0,191,255,255,244,255,255,255,255,192,1,255,255,255,246,255,255,255,255,192,3,255,255,255,251,255,255,255,255,192,15,248,191,0,31,244,47,208,0,0,63,224,63,128,127,208,15,240,0,0,127,192,47,192,127,64,3,252,0,0,11,0,9,0,9,0,1,144,0,0,0,191,255,255,255,255,255,255,208,0,0,191,255,255,255,255,255,255,208,0,0,191,255,255,255,255,255,255,208,0,0,0,0,0,63,192,0,31,208,0,0,0,0,0,63,128,0,15,208,0,0,0,0,0,63,128,0,15,208,0,0,0,0,0,63,192,0,31,208,0,0,15,255,255,255,255,255,255,208,0,0,31,255,255,255,255,255,255,208,0,0,47,255,255,255,255,255,255,208,0,0,63,192,0,63,128,0,0,0,0,0,63,128,0,63,128,0,0,0,0,0,63,128,0,63,128,0,0,0,0,0,127,255,255,255,255,255,255,254,0,0,255,255,255,255,255,255,255,254,0,0,255,255,255,255,255,255,255,254,0,1,254,0,47,255,192,0,1,253,0,0,4,0,191,255,128,0,1,253,0,0,0,3,255,127,128,0,2,252,0,0,0,47,252,63,128,0,2,252,0,0,1,255,240,63,128,0,3,252,0,0,31,255,128,63,128,20,11,248,0,2,255,252,0,63,128,63,255,244,0,47,255,208,0,63,128,31,255,240,0,15,253,0,0,63,128,15,255,128,0,3,208,0,0,63,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0, + // 0x7b49 等 + 73,123,37,38,124,40,1,252,0,15,144,0,0,15,144,0,0,0,0,31,224,0,0,47,208,0,0,0,0,63,192,0,0,63,192,0,0,0,0,127,255,255,248,191,255,255,255,128,0,255,255,255,249,255,255,255,255,128,3,255,255,255,251,255,255,255,255,128,11,252,191,0,15,248,47,208,0,0,31,240,63,64,63,240,15,240,0,0,127,224,63,192,63,192,7,244,0,0,63,192,31,192,47,192,3,248,0,0,11,0,8,0,63,192,1,128,0,0,0,0,0,0,63,192,0,0,0,0,0,63,255,255,255,255,255,255,208,0,0,63,255,255,255,255,255,255,208,0,0,63,255,255,255,255,255,255,208,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,11,255,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,255,0,0,0,47,0,0,0,63,192,0,0,0,0,191,192,0,0,63,192,0,0,0,0,127,244,0,0,63,192,0,0,0,0,15,253,0,0,63,192,0,0,0,0,3,255,0,0,63,192,0,0,0,0,0,255,192,0,63,192,0,0,0,0,0,63,65,85,191,192,0,0,0,0,0,28,3,255,255,128,0,0,0,0,0,0,1,255,255,0,0,0,0,0,0,0,0,255,232,0,0,0, + // 0x7bb1 箱 + 177,123,37,38,124,40,1,252,0,10,64,0,0,14,64,0,0,0,0,15,240,0,0,31,224,0,0,0,0,31,208,0,0,63,192,0,0,0,0,63,192,0,0,63,192,0,0,0,0,127,255,255,248,191,255,255,255,192,0,255,255,255,249,255,255,255,255,192,1,255,255,255,251,255,255,255,255,192,3,252,191,64,11,252,63,208,0,0,15,244,63,128,31,240,15,240,0,0,47,240,47,192,127,208,7,244,0,0,127,192,15,208,63,128,3,252,0,0,15,64,15,64,11,0,1,224,0,0,1,0,191,0,0,0,0,0,0,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,31,255,255,255,227,249,85,85,254,0,31,255,255,255,227,244,0,0,254,0,31,255,255,255,227,244,0,0,254,0,5,87,255,85,83,244,0,0,254,0,0,3,255,0,3,255,255,255,254,0,0,7,255,128,3,255,255,255,254,0,0,15,255,240,3,255,255,255,254,0,0,47,255,252,3,244,0,0,254,0,0,63,255,255,3,244,0,0,254,0,0,191,255,191,195,244,0,0,254,0,1,254,191,47,243,255,255,255,254,0,3,252,191,15,211,255,255,255,254,0,15,244,191,3,131,255,255,255,254,0,63,224,191,1,3,244,0,0,254,0,127,192,191,0,3,244,0,0,254,0,47,64,191,0,3,244,0,0,254,0,13,0,191,0,3,244,0,0,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,244,0,0,254,0,0,0,190,0,2,164,0,0,85,0, + // 0x7c7b 类 + 123,124,36,38,86,40,2,252,0,0,0,0,190,0,0,0,0,0,1,64,0,255,0,3,144,0,0,31,208,0,255,0,11,252,0,0,31,244,0,255,0,15,244,0,0,7,252,0,255,0,63,224,0,0,2,255,0,255,0,191,192,0,0,0,255,64,255,1,255,0,0,0,0,126,0,255,1,252,0,0,63,255,255,255,255,255,255,255,253,63,255,255,255,255,255,255,255,253,63,255,255,255,255,255,255,255,253,21,85,85,191,255,254,85,85,84,0,0,1,255,255,255,64,0,0,0,0,11,254,255,191,224,0,0,0,0,127,244,255,31,253,0,0,0,7,255,208,255,7,255,208,0,0,127,255,0,255,0,191,254,64,31,255,248,0,255,0,31,255,254,191,255,128,0,255,0,1,255,253,47,248,0,0,0,1,64,31,248,15,64,0,0,255,7,248,0,96,0,0,0,0,255,7,255,128,0,0,0,0,0,254,0,127,244,0,0,0,0,1,254,0,7,224,0,63,255,255,255,255,255,255,255,254,63,255,255,255,255,255,255,255,254,63,255,255,255,255,255,255,255,254,21,85,85,95,255,245,85,85,84,0,0,0,47,255,244,0,0,0,0,0,0,127,231,253,0,0,0,0,0,2,255,194,255,128,0,0,0,0,31,255,0,255,244,0,0,0,1,255,252,0,63,255,128,0,1,191,255,240,0,11,255,254,80,255,255,255,64,0,1,255,255,255,127,255,244,0,0,0,31,255,253,63,253,0,0,0,0,0,191,252,25,64,0,0,0,0,0,1,164, + // 0x7d22 索 + 34,125,35,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,5,85,85,85,255,85,85,85,80,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,128,0,47,224,0,0,2,252,63,128,0,127,208,0,0,2,252,63,128,1,255,64,7,64,2,252,63,129,11,253,0,47,240,2,252,63,139,239,240,0,191,224,2,252,0,47,255,192,3,255,64,0,0,0,11,255,64,31,253,0,0,0,0,1,255,224,191,240,36,0,0,0,0,47,254,255,128,254,0,0,0,0,7,255,253,1,255,192,0,0,0,1,255,224,0,63,244,0,0,0,11,255,64,0,11,254,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,252,21,85,16,0,255,0,0,2,244,0,0,121,0,254,0,56,0,64,0,2,255,64,254,2,255,64,0,0,15,253,0,254,1,255,244,0,0,191,244,0,254,0,31,254,0,11,255,192,0,254,0,2,255,208,191,254,0,0,254,0,0,127,248,127,240,0,0,254,0,0,11,252,15,64,0,0,254,0,0,1,224,0,0,0,0,254,0,0,0,0, + // 0x7d2b 紫 + 43,125,36,38,86,40,2,252,0,0,127,0,1,168,0,0,0,0,0,127,0,1,252,0,0,0,0,0,127,0,1,252,0,2,64,11,208,127,0,1,252,0,111,208,11,224,127,255,241,252,27,255,244,11,224,127,255,241,255,255,255,208,11,224,127,255,241,255,255,244,0,11,224,127,0,1,255,249,0,0,11,224,127,0,1,253,0,0,0,11,224,127,0,1,252,0,0,120,11,224,127,0,81,252,0,0,127,11,224,191,255,241,253,0,0,255,95,255,255,255,241,255,255,255,254,255,255,255,255,160,255,255,255,252,255,255,233,79,144,47,255,255,244,250,80,0,63,240,0,0,0,0,0,0,0,255,192,2,64,0,0,0,1,3,254,0,31,244,0,0,0,31,239,248,0,127,240,0,0,0,127,255,208,2,255,128,0,0,0,31,255,192,15,253,0,0,0,0,1,255,244,127,240,31,64,0,0,0,31,255,255,128,127,224,0,0,0,2,255,252,0,15,252,0,0,0,1,255,224,0,3,255,0,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,253,85,85,80,0,255,0,0,2,255,0,0,0,0,255,0,4,0,248,0,1,253,0,255,0,127,0,0,0,7,255,0,255,1,255,224,0,0,63,248,0,255,0,63,253,0,2,255,224,0,255,0,7,255,128,47,255,64,0,255,0,0,191,244,127,248,0,0,255,0,0,31,253,31,192,0,0,255,0,0,3,240,1,0,0,0,254,0,0,0,64, + // 0x7ea2 红 + 162,126,37,36,104,40,1,254,0,0,144,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,7,248,0,255,255,255,255,255,64,0,15,240,0,255,255,255,255,255,64,0,31,224,0,255,255,255,255,255,64,0,63,192,0,170,170,255,234,170,0,0,191,128,0,0,0,255,0,0,0,0,255,0,244,0,0,255,0,0,0,3,253,2,254,0,0,255,0,0,0,7,248,3,253,0,0,255,0,0,0,15,240,11,248,0,0,255,0,0,0,127,255,255,240,0,0,255,0,0,0,127,255,255,208,0,0,255,0,0,0,63,255,255,128,0,0,255,0,0,0,47,167,255,0,0,0,255,0,0,0,0,7,252,0,0,0,255,0,0,0,0,15,244,0,0,0,255,0,0,0,0,63,224,0,0,0,255,0,0,0,0,191,128,0,0,0,255,0,0,0,2,255,0,88,0,0,255,0,0,0,11,254,191,252,0,0,255,0,0,0,63,255,255,252,0,0,255,0,0,0,63,255,255,252,0,0,255,0,0,0,63,255,233,0,0,0,255,0,0,0,31,144,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,20,0,0,255,0,0,0,0,0,107,248,0,0,255,0,0,0,0,111,255,253,170,170,255,234,170,128,127,255,255,254,255,255,255,255,255,192,127,255,255,146,255,255,255,255,255,192,63,254,64,2,255,255,255,255,255,192,58,64,0,0,0,0,0,0,0,0, + // 0x7ea7 级 + 167,126,38,38,124,40,1,252,0,0,128,0,0,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,3,248,3,255,255,255,255,128,0,0,11,240,3,255,255,255,255,64,0,0,15,224,3,255,255,255,255,0,0,0,47,192,1,87,253,85,255,0,0,0,63,128,0,3,252,0,254,0,0,0,191,0,0,3,252,1,253,0,0,0,254,1,208,3,252,2,252,0,0,2,252,3,248,3,248,3,252,0,0,7,244,11,248,3,248,3,248,0,0,15,224,15,240,3,248,7,244,0,0,63,234,191,208,3,244,11,240,16,0,191,255,255,128,7,244,15,255,254,0,63,255,255,0,7,248,15,255,255,0,63,235,253,0,7,252,47,255,254,0,16,7,248,0,11,253,0,0,253,0,0,15,240,0,11,254,0,2,252,0,0,47,192,0,15,255,0,3,252,0,0,127,64,180,15,255,128,3,248,0,1,255,111,244,15,255,192,11,240,0,7,255,255,244,31,223,224,15,240,0,31,255,255,224,47,203,240,47,208,0,127,255,228,0,63,195,252,63,192,0,63,249,0,0,63,130,253,191,64,0,46,64,0,0,127,64,255,255,0,0,0,0,0,116,191,0,127,253,0,0,0,0,27,248,255,0,63,248,0,0,0,2,255,253,253,0,47,248,0,0,0,127,255,247,252,0,191,254,0,0,27,255,254,7,248,2,255,255,192,0,63,255,208,15,244,15,254,191,240,0,63,249,0,47,240,127,248,47,254,0,47,64,0,63,211,255,208,7,255,208,4,0,0,255,199,255,64,1,255,192,0,0,0,47,1,248,0,0,47,0,0,0,0,5,0,144,0,0,5,0, + // 0x7ebf 线 + 191,126,37,38,124,40,2,252,0,1,0,0,0,63,128,0,0,0,0,3,224,0,0,63,193,208,0,0,0,7,248,0,0,63,203,253,0,0,0,15,240,0,0,63,194,255,128,0,0,15,224,0,0,63,192,127,208,0,0,47,192,0,0,63,192,15,128,0,0,63,128,0,0,63,192,1,0,0,0,191,0,0,0,47,192,90,240,0,0,254,0,0,0,47,255,255,244,0,2,252,3,128,107,255,255,255,244,0,3,244,11,242,255,255,255,255,144,0,15,240,15,241,255,255,233,0,0,0,47,192,47,208,254,111,192,0,0,0,191,239,255,128,0,31,208,0,0,0,255,255,255,0,0,31,208,0,4,0,191,255,253,0,0,15,224,26,253,0,63,171,252,0,0,15,251,255,253,0,0,15,240,0,1,191,255,255,254,0,0,47,208,2,255,255,255,254,144,0,0,127,128,7,255,255,250,64,0,0,0,255,0,3,255,239,240,0,80,0,3,252,6,211,148,7,244,0,253,0,15,255,255,208,0,3,248,3,253,0,127,255,255,208,0,3,248,11,248,0,191,255,254,64,0,3,252,47,240,0,63,254,64,0,0,2,252,191,192,0,57,0,0,0,0,1,255,255,0,0,0,0,0,0,0,0,255,252,0,0,0,0,1,160,0,0,255,240,0,0,0,0,127,240,0,3,255,192,0,0,0,111,255,240,0,47,255,192,24,0,27,255,255,144,2,255,255,208,31,0,191,255,228,0,111,255,159,240,47,64,127,249,0,11,255,253,11,252,63,0,62,64,0,31,255,208,3,255,255,0,16,0,0,11,253,0,1,255,254,0,0,0,0,3,128,0,0,127,252,0,0,0,0,0,0,0,0,6,144,0, + // 0x7ec6 细 + 198,126,36,38,86,40,1,252,0,0,96,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,1,255,0,170,170,170,170,170,0,3,253,0,255,255,255,255,255,0,7,252,0,255,255,255,255,255,0,15,244,0,255,255,255,255,255,0,31,240,0,254,0,191,0,127,0,63,192,0,254,0,191,0,127,0,127,128,0,254,0,191,0,127,0,255,0,16,254,0,191,0,127,2,253,0,248,254,0,191,0,127,7,248,1,255,254,0,191,0,127,15,240,3,253,254,0,191,0,127,127,255,255,248,254,0,191,0,127,127,255,255,240,254,0,191,0,127,63,255,255,192,254,0,191,0,127,47,165,255,64,254,0,191,0,127,0,2,254,0,255,255,255,255,255,0,11,248,0,255,255,255,255,255,0,31,224,0,255,255,255,255,255,0,127,192,0,255,85,255,85,191,1,255,1,104,254,0,191,0,127,7,255,255,252,254,0,191,0,127,63,255,255,252,254,0,191,0,127,63,255,255,232,254,0,191,0,127,47,254,144,0,254,0,191,0,127,30,64,0,0,254,0,191,0,127,0,0,0,0,254,0,191,0,127,0,0,0,0,254,0,191,0,127,0,0,0,24,254,0,191,0,127,0,1,111,252,254,0,191,0,127,22,255,255,253,255,255,255,255,255,127,255,255,252,255,255,255,255,255,63,255,249,0,255,255,255,255,255,63,228,0,0,255,85,85,85,191,16,0,0,0,254,0,0,0,127,0,0,0,0,254,0,0,0,106,0,0,0,0,0,0,0,0,0, + // 0x7ec8 终 + 200,126,38,38,124,40,1,252,0,1,144,0,0,14,80,0,0,0,0,3,252,0,0,47,208,0,0,0,0,3,252,0,0,63,192,0,0,0,0,11,244,0,0,255,64,0,0,0,0,15,240,0,1,255,255,255,240,0,0,31,208,0,3,255,255,255,252,0,0,63,192,0,15,255,255,255,248,0,0,127,64,0,47,249,85,95,240,0,0,255,0,0,191,252,0,47,224,0,2,253,2,209,255,254,0,63,192,0,3,252,7,255,254,191,64,255,64,0,15,240,15,255,248,63,195,254,0,0,47,224,31,227,224,15,251,252,0,0,127,255,255,192,128,7,255,240,0,0,127,255,255,64,0,2,255,192,0,0,63,255,254,0,0,7,255,224,0,0,42,67,252,0,0,47,255,252,0,0,0,11,244,0,1,255,251,255,128,0,0,31,224,0,31,255,129,255,244,0,0,63,128,1,255,253,0,63,255,64,0,255,0,11,255,224,0,11,255,224,3,252,5,179,255,65,0,0,255,192,15,255,255,240,244,7,228,0,31,0,63,255,255,240,0,31,255,64,0,0,63,255,255,224,0,7,255,240,0,0,47,254,80,0,0,0,127,254,0,0,25,0,0,0,0,0,7,253,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,1,0,0,16,0,0,0,0,1,108,11,248,0,0,0,0,0,5,191,252,31,255,208,0,0,0,26,255,255,252,27,255,254,64,0,0,127,255,255,248,0,111,255,244,0,0,127,255,229,0,0,1,255,255,64,0,63,228,0,0,0,0,11,255,244,0,16,0,0,0,0,0,0,191,240,0,0,0,0,0,0,0,0,11,208,0,0,0,0,0,0,0,0,0,64,0, + // 0x7ed3 结 + 211,126,37,38,124,40,1,252,0,1,64,0,0,0,191,0,0,0,0,2,244,0,0,0,255,0,0,0,0,3,252,0,0,0,255,0,0,0,0,11,248,0,0,0,255,0,0,0,0,15,240,0,0,0,255,0,0,0,0,31,224,1,170,170,255,170,170,64,0,63,192,2,255,255,255,255,255,128,0,127,128,2,255,255,255,255,255,128,0,255,0,66,255,255,255,255,255,128,2,254,1,240,0,0,255,0,0,0,3,252,3,253,0,0,255,0,0,0,15,244,11,252,0,0,255,0,0,0,47,224,95,244,0,0,255,0,0,0,191,255,255,224,0,0,255,0,0,0,127,255,255,192,106,170,255,170,169,0,63,255,255,64,191,255,255,255,255,0,42,83,254,0,191,255,255,255,255,0,0,11,252,0,191,255,255,255,255,0,0,31,240,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,254,5,188,0,0,0,0,0,0,11,255,255,252,47,255,255,255,252,0,63,255,255,252,47,255,255,255,252,0,63,255,255,228,47,255,255,255,252,0,63,255,144,0,47,213,85,87,252,0,30,64,0,0,47,192,0,2,252,0,0,0,0,0,47,192,0,2,252,0,0,0,0,0,47,192,0,2,252,0,0,0,0,105,47,192,0,2,252,0,0,1,175,253,47,192,0,2,252,0,6,191,255,253,47,192,0,2,252,0,127,255,255,253,47,213,85,87,252,0,127,255,254,64,47,255,255,255,252,0,63,249,0,0,47,255,255,255,252,0,41,0,0,0,47,255,255,255,252,0,0,0,0,0,47,192,0,2,252,0,0,0,0,0,31,192,0,1,168,0, + // 0x7ed9 给 + 217,126,37,38,124,40,1,252,0,1,64,0,0,0,144,0,0,0,0,2,244,0,0,2,253,0,0,0,0,3,252,0,0,3,252,0,0,0,0,7,248,0,0,7,254,0,0,0,0,15,240,0,0,15,255,0,0,0,0,31,224,0,0,31,255,128,0,0,0,63,192,0,0,63,239,208,0,0,0,63,128,0,0,191,143,240,0,0,0,191,0,0,1,255,7,248,0,0,0,254,2,208,3,254,2,254,0,0,3,252,3,248,15,252,0,255,128,0,7,244,11,244,63,240,0,127,224,0,15,240,31,240,255,208,0,31,248,0,63,234,255,195,255,213,85,95,255,0,127,255,255,159,255,255,255,255,255,192,63,255,255,15,247,255,255,254,191,64,47,235,253,3,211,255,255,254,46,0,0,11,248,0,0,0,0,0,4,0,0,15,240,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,0,0,2,254,1,176,63,255,255,255,208,0,11,255,255,240,63,255,255,255,208,0,47,255,255,240,63,255,255,255,208,0,63,255,255,144,63,149,85,111,208,0,47,254,64,0,63,64,0,31,208,0,30,64,0,0,63,64,0,31,208,0,0,0,0,0,63,64,0,31,208,0,0,0,0,0,63,64,0,31,208,0,0,0,0,100,63,64,0,31,208,0,0,1,111,244,63,64,0,31,208,0,1,191,255,248,63,64,0,31,208,0,63,255,255,244,63,149,85,111,208,0,63,255,249,0,63,255,255,255,208,0,63,249,0,0,63,255,255,255,208,0,41,0,0,0,63,255,255,255,208,0,0,0,0,0,63,64,0,31,208,0,0,0,0,0,63,64,0,31,208,0, + // 0x7edf 统 + 223,126,38,38,124,40,1,252,0,1,128,0,0,0,96,0,0,0,0,2,248,0,0,7,248,0,0,0,0,3,253,0,0,3,252,0,0,0,0,7,252,0,0,2,253,0,0,0,0,15,244,0,0,0,255,0,0,0,0,31,240,0,0,0,249,0,0,0,0,63,208,3,255,255,255,255,255,192,0,127,192,3,255,255,255,255,255,192,0,255,64,3,255,255,255,255,255,192,1,254,3,209,85,111,245,85,85,64,3,252,7,248,0,63,208,0,0,0,11,244,15,244,0,191,128,31,0,0,31,240,31,240,1,255,0,127,128,0,127,255,255,192,3,253,0,63,192,0,127,255,255,128,15,248,0,15,240,0,63,255,255,0,63,240,0,27,248,0,47,235,253,1,255,235,255,255,252,0,0,11,248,11,255,255,255,255,255,0,0,31,240,3,255,255,255,254,255,64,0,63,192,3,255,233,80,0,63,192,0,255,64,1,66,164,6,160,46,0,2,254,27,240,3,248,7,240,0,0,11,255,255,240,3,248,7,240,0,0,47,255,255,240,3,248,7,240,0,0,63,255,254,64,3,244,7,240,0,0,47,254,64,0,7,244,7,240,0,0,30,64,0,0,7,240,7,240,0,0,0,0,0,0,11,240,7,240,0,0,0,0,1,176,15,240,7,240,8,0,0,0,111,240,31,224,7,240,15,192,0,27,255,244,63,192,7,240,15,208,11,255,255,208,191,192,7,240,15,192,63,255,248,2,255,64,7,240,15,192,63,254,64,11,254,0,7,244,31,192,47,208,0,191,252,0,7,255,255,128,20,0,0,127,224,0,3,255,255,64,0,0,0,47,128,0,0,191,253,0,0,0,0,8,0,0,0,0,0,0, + // 0x7ee7 继 + 231,126,37,36,104,40,1,254,0,2,64,0,0,0,1,80,0,0,0,3,244,0,80,0,7,224,0,0,0,7,244,2,248,0,7,224,0,0,0,15,240,2,248,40,7,224,41,0,0,15,224,2,248,188,7,224,63,0,0,47,192,2,248,125,7,224,126,0,0,63,128,2,248,63,7,224,188,0,0,127,64,2,248,47,7,224,252,0,0,254,0,2,248,31,71,225,244,0,1,252,3,210,248,15,135,227,240,0,3,248,7,246,248,15,135,227,208,0,11,240,15,242,248,0,7,224,64,0,31,208,47,210,248,0,11,224,0,0,127,239,255,130,249,255,255,255,255,128,127,255,255,2,249,255,255,255,255,128,63,255,254,2,249,255,255,255,255,128,46,83,252,2,248,0,63,244,0,0,0,11,240,2,248,0,127,252,0,0,0,31,208,2,248,0,255,255,0,0,0,63,128,2,248,1,255,255,128,0,0,255,0,2,248,3,251,239,224,0,2,253,6,162,248,7,231,227,244,0,7,255,255,226,248,15,199,225,252,0,47,255,255,226,248,63,135,224,255,0,63,255,255,146,248,191,7,224,63,64,47,254,64,2,248,254,7,224,47,0,30,64,0,2,248,188,7,224,13,0,0,0,0,2,248,112,7,224,0,0,0,0,0,2,248,0,7,224,0,0,0,0,1,178,248,0,7,224,0,0,0,6,255,242,248,0,7,224,0,0,6,255,255,242,248,0,1,80,0,0,63,255,255,146,252,0,0,0,0,0,63,255,144,2,255,255,255,255,255,192,63,144,0,2,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192, + // 0x7eea 绪 + 234,126,38,38,124,40,1,252,0,1,64,0,0,11,224,0,0,0,0,3,244,0,0,15,224,0,0,0,0,3,248,0,0,15,224,0,36,0,0,7,244,0,0,15,224,0,127,64,0,15,240,0,0,15,240,0,255,0,0,31,208,0,255,255,255,254,253,0,0,47,192,0,255,255,255,255,252,0,0,63,64,0,255,255,255,255,244,0,0,191,0,0,0,15,224,31,240,0,0,253,1,208,0,15,224,63,192,0,2,248,3,248,0,15,224,255,64,0,7,240,11,244,0,15,226,255,0,0,15,224,15,229,85,95,247,253,85,64,47,234,255,207,255,255,255,255,255,208,127,255,255,79,255,255,255,255,255,208,63,255,255,15,255,255,255,255,255,208,47,167,253,0,0,11,254,0,0,0,0,3,248,0,0,47,248,0,0,0,0,15,240,0,0,255,224,0,0,0,0,47,192,0,7,255,192,0,0,0,0,127,64,0,47,255,255,255,252,0,0,254,0,66,255,255,255,255,252,0,3,254,191,239,255,255,255,255,252,0,31,255,255,239,255,240,0,1,252,0,63,255,254,135,215,240,0,1,252,0,47,249,64,1,7,240,0,1,252,0,25,0,0,0,7,255,255,255,252,0,0,0,0,0,7,255,255,255,252,0,0,0,0,16,7,255,255,255,252,0,0,0,6,248,7,240,0,1,252,0,0,6,255,248,7,240,0,1,252,0,6,255,255,252,7,240,0,1,252,0,63,255,255,144,7,240,0,1,252,0,63,255,208,0,7,255,255,255,252,0,47,228,0,0,7,255,255,255,252,0,20,0,0,0,7,255,255,255,252,0,0,0,0,0,7,244,0,2,252,0,0,0,0,0,2,160,0,0,84,0, + // 0x7eed 续 + 237,126,37,38,124,40,1,252,0,0,64,0,0,1,168,0,0,0,0,2,248,0,0,2,252,0,0,0,0,3,252,0,0,2,252,0,0,0,0,7,244,0,0,2,252,0,0,0,0,11,240,0,127,255,255,255,244,0,0,15,208,0,127,255,255,255,244,0,0,47,192,0,127,255,255,255,244,0,0,63,128,0,0,2,252,0,0,0,0,191,0,0,0,2,252,0,0,0,0,253,3,128,0,2,252,0,0,0,2,252,11,243,255,255,255,255,255,64,3,240,15,227,255,255,255,255,255,0,15,224,47,195,255,255,255,255,255,0,47,234,255,64,0,0,0,0,254,0,127,255,255,0,2,0,21,0,253,0,63,255,253,0,11,208,127,1,252,0,47,235,248,0,11,248,127,2,248,0,0,11,240,0,1,255,191,3,244,0,0,15,208,0,224,62,127,0,16,0,0,63,128,3,253,4,127,0,0,0,0,191,0,64,255,64,191,0,0,0,1,254,191,192,47,208,191,0,0,0,3,255,255,192,7,192,190,0,0,0,15,255,255,192,1,0,254,0,0,0,63,255,228,15,255,255,255,255,255,64,47,249,0,15,255,255,255,255,255,64,29,0,0,15,255,255,255,255,255,64,0,0,0,64,0,11,248,0,0,0,0,0,27,208,0,15,240,64,0,0,0,6,255,208,0,47,226,244,0,0,0,191,255,208,0,191,199,253,0,0,31,255,249,0,2,255,1,255,128,0,63,255,128,0,15,253,0,63,240,0,63,228,0,0,191,244,0,11,252,0,46,0,0,7,255,208,0,2,255,0,0,0,0,31,255,0,0,0,191,192,0,0,0,7,244,0,0,0,31,64,0,0,0,2,64,0,0,0,9,0, + // 0x7eff 绿 + 255,126,38,38,124,40,1,252,0,1,0,0,0,0,0,0,0,0,0,3,224,0,0,0,0,0,64,0,0,11,248,0,127,255,255,255,248,0,0,15,240,0,127,255,255,255,248,0,0,31,224,0,127,255,255,255,248,0,0,47,192,0,0,0,0,3,248,0,0,63,192,0,0,0,0,3,248,0,0,191,64,0,0,0,0,3,244,0,0,255,0,0,47,255,255,255,244,0,1,253,7,64,47,255,255,255,244,0,3,248,15,224,47,255,255,255,244,0,11,240,31,224,0,0,0,3,244,0,31,208,63,192,0,0,0,7,240,0,127,255,255,64,0,0,0,7,240,0,127,255,255,2,255,255,255,255,255,208,63,255,253,2,255,255,255,255,255,208,46,87,248,2,255,255,255,255,255,208,0,15,240,0,85,85,255,85,85,64,0,47,208,0,0,0,254,0,0,0,0,127,128,0,60,0,254,0,45,0,0,255,0,0,255,0,254,0,191,128,2,253,6,128,191,192,254,2,255,0,11,255,255,192,47,240,255,11,252,0,47,255,255,192,11,244,255,111,240,0,63,255,255,128,3,240,255,255,128,0,47,254,64,0,0,131,255,253,0,0,30,64,0,0,0,31,255,248,0,0,0,0,0,0,0,255,255,253,0,0,0,0,0,64,7,255,254,255,64,0,0,0,31,192,63,248,254,63,224,0,0,11,255,210,255,208,254,15,252,0,6,255,255,223,255,0,254,7,255,128,63,255,253,7,248,0,254,0,255,208,63,255,128,3,208,0,254,0,47,128,63,224,0,0,0,0,254,0,6,0,41,0,0,0,0,191,254,0,0,0,0,0,0,0,0,63,252,0,0,0,0,0,0,0,0,63,224,0,0,0, + // 0x7f16 编 + 22,127,36,38,86,40,1,252,0,2,64,0,0,0,104,0,0,0,3,244,0,0,3,252,0,0,0,7,244,0,0,2,254,0,0,0,15,240,0,0,0,255,0,0,0,15,208,0,0,0,255,64,0,0,47,192,2,255,255,255,255,254,0,63,128,2,255,255,255,255,254,0,127,0,2,255,255,255,255,254,0,254,0,2,252,0,0,0,190,1,252,11,66,252,0,0,0,190,3,244,15,226,252,0,0,0,190,11,240,47,194,255,255,255,255,254,31,208,127,130,255,255,255,255,254,127,255,255,2,255,255,255,255,254,127,255,254,2,252,0,0,0,0,63,255,252,2,252,0,0,0,0,47,251,244,2,248,0,0,0,0,20,11,240,2,248,0,0,0,0,0,31,208,2,255,255,255,255,255,0,63,128,3,255,255,255,255,255,0,191,0,3,255,255,255,255,255,1,253,1,3,255,208,244,124,47,3,254,191,67,255,208,244,124,47,15,255,255,131,255,208,244,124,47,63,255,254,71,251,208,244,124,47,47,254,64,11,251,208,244,124,47,30,64,0,11,235,255,255,255,255,0,0,0,15,235,255,255,255,255,0,0,31,79,219,255,255,255,255,0,2,255,159,203,208,244,124,47,0,127,255,175,203,208,244,124,47,27,255,248,63,139,208,244,124,47,127,255,64,127,11,208,244,124,47,63,228,0,255,11,208,244,124,47,62,0,1,254,11,208,244,124,47,0,0,0,252,11,208,244,125,255,0,0,0,40,11,208,240,104,255,0,0,0,0,6,128,0,0,164, + // 0x7f3a 缺 + 58,127,38,38,124,40,1,252,1,228,0,0,0,0,253,0,0,0,2,252,0,0,0,0,253,0,0,0,3,252,0,0,0,0,253,0,0,0,3,252,0,0,0,0,253,0,0,0,3,248,0,0,0,0,253,0,0,0,7,255,255,255,192,0,253,0,0,0,11,255,255,255,197,86,254,85,84,0,15,255,255,255,203,255,255,255,248,0,15,230,253,85,75,255,255,255,248,0,47,193,252,0,11,255,255,255,248,0,63,193,252,0,0,0,253,3,248,0,127,65,252,0,0,0,253,3,248,0,47,1,252,0,0,0,253,3,248,0,6,1,252,0,0,0,253,3,248,0,127,255,255,255,224,0,253,3,248,0,127,255,255,255,224,0,253,3,248,0,127,255,255,255,224,0,253,3,248,0,21,86,253,85,64,0,253,3,248,0,0,1,252,0,15,255,255,255,255,208,5,65,252,0,15,255,255,255,255,208,15,193,252,15,207,255,255,255,255,208,15,193,252,15,197,87,255,213,85,64,15,193,252,15,192,3,255,208,0,0,15,193,252,15,192,3,255,224,0,0,15,193,252,15,192,7,255,240,0,0,15,193,252,15,192,11,251,244,0,0,15,193,252,15,192,15,243,252,0,0,15,193,252,15,192,31,226,253,0,0,15,214,253,95,192,63,192,255,0,0,15,255,255,255,192,191,128,191,128,0,15,255,255,255,193,255,0,63,208,0,15,255,255,255,195,254,0,47,240,0,15,192,0,15,207,252,0,15,252,0,15,192,0,15,255,240,0,7,255,64,15,192,0,1,255,208,0,1,255,208,5,64,0,3,255,64,0,0,191,192,0,0,0,0,189,0,0,0,31,0,0,0,0,0,32,0,0,0,5,0, + // 0x7f51 网 + 81,127,34,36,68,40,3,252,42,170,170,170,170,170,170,170,144,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,224,127,0,3,244,0,47,192,15,224,127,0,3,244,0,47,192,15,224,127,0,3,244,0,47,128,15,224,127,0,3,244,0,47,128,15,224,127,0,3,240,0,47,128,15,224,127,0,3,240,0,63,128,15,224,127,9,3,240,120,63,64,15,224,127,31,135,240,254,63,64,15,224,127,47,231,240,191,255,64,15,224,127,11,255,224,47,255,0,15,224,127,2,255,224,11,255,0,15,224,127,0,255,224,3,255,0,15,224,127,0,63,224,0,255,128,15,224,127,0,15,244,0,191,208,15,224,127,0,31,252,0,255,244,15,224,127,0,31,255,0,255,252,15,224,127,0,47,255,129,254,255,15,224,127,0,63,111,194,252,191,79,224,127,0,127,15,131,248,63,15,224,127,0,191,3,3,244,13,15,224,127,0,254,0,11,240,4,15,224,127,1,252,0,15,224,0,15,224,127,3,252,0,47,208,0,15,224,127,11,244,0,63,192,0,15,224,127,15,240,0,255,64,0,15,224,127,63,208,2,255,0,0,15,224,127,15,128,0,252,0,0,15,224,127,2,0,0,36,0,0,15,224,127,0,0,0,0,0,255,255,224,127,0,0,0,0,0,127,255,208,127,0,0,0,0,0,63,255,64,106,0,0,0,0,0,42,84,0, + // 0x7f6e 置 + 110,127,35,36,68,40,3,252,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,31,234,175,250,170,254,170,191,128,31,192,7,240,0,252,0,63,128,31,192,7,240,0,252,0,63,128,31,234,171,250,170,254,170,191,128,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,0,0,0,2,253,0,0,0,0,0,0,0,2,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,5,80,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,2,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,1,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,1,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,252,15,255,255,255,255,255,255,255,252,15,255,255,255,255,255,255,255,252,15,224,0,0,0,0,0,0,0,10,144,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,37,36,104,40,1,252,1,255,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,255,248,0,1,254,170,255,170,175,234,171,248,0,1,252,0,127,0,15,192,3,248,0,1,252,0,127,0,15,192,3,248,0,1,252,0,127,0,15,192,3,248,0,1,255,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,255,248,0,1,170,170,170,255,170,170,170,164,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,2,208,0,0,47,255,255,255,255,255,15,248,0,0,47,255,255,255,255,255,127,240,0,0,31,255,255,255,255,255,255,192,0,0,0,0,0,254,0,15,254,0,0,0,0,0,0,254,0,191,240,0,0,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,0,0,0,1,255,254,0,0,0,0,0,0,0,111,255,240,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,6,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,255,192,0,127,255,255,234,170,170,170,191,192,0,63,255,255,192,0,0,0,31,192,0,31,248,31,192,0,0,0,31,192,0,9,0,31,255,255,255,255,255,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,213,85,85,85,111,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,234,170,170,170,191,192,0,0,0,31,192,0,0,0,26,128,0, + // 0x8005 者 + 5,128,37,38,124,40,1,252,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,0,3,224,0,0,0,0,7,240,0,0,11,252,0,0,0,0,7,240,0,0,31,240,0,0,63,255,255,255,255,253,127,192,0,0,63,255,255,255,255,255,255,64,0,0,63,255,255,255,255,255,254,0,0,0,0,0,11,244,0,47,248,0,0,0,0,0,7,240,0,127,224,0,0,0,0,0,7,240,1,255,128,0,0,0,0,0,7,240,11,254,0,0,0,0,0,0,7,240,47,248,0,0,0,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,5,85,85,87,255,229,85,85,85,0,0,0,0,31,255,64,0,0,0,0,0,0,1,255,248,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,191,255,255,255,255,255,0,0,0,31,255,255,255,255,255,255,0,0,2,255,255,255,255,255,255,255,0,0,127,255,255,192,0,0,0,255,0,0,63,255,111,192,0,0,0,255,0,0,47,244,47,192,0,0,0,255,0,0,15,64,47,192,0,0,0,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,192,0,0,0,255,0,0,0,0,47,192,0,0,0,255,0,0,0,0,47,192,0,0,0,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,255,255,255,255,255,0,0,0,0,47,192,0,0,0,255,0,0,0,0,26,128,0,0,0,85,0,0, + // 0x806a 聪 + 106,128,38,38,124,40,1,252,0,0,0,0,0,80,0,6,0,0,0,0,0,0,3,244,0,15,224,0,63,255,255,255,3,252,0,31,224,0,63,255,255,255,1,253,0,47,192,0,63,255,255,255,0,191,0,63,128,0,7,244,11,224,0,63,64,191,0,0,3,240,11,224,0,63,192,254,0,0,3,240,11,224,0,29,1,252,0,0,3,240,11,224,47,255,255,255,253,0,3,240,11,224,47,255,255,255,253,0,3,255,255,224,47,255,255,255,253,0,3,255,255,224,47,128,0,0,253,0,3,255,255,224,47,128,0,0,253,0,3,240,11,224,47,128,0,0,253,0,3,240,11,224,47,128,0,0,253,0,3,240,11,224,47,128,0,0,253,0,3,240,11,224,47,128,0,0,253,0,3,240,11,224,47,128,0,0,253,0,3,240,11,224,47,255,255,255,253,0,3,255,255,224,47,255,255,255,253,0,3,255,255,224,47,255,255,255,253,0,3,255,255,224,0,0,16,0,0,0,3,240,11,224,0,1,248,0,0,0,3,240,11,224,0,0,253,0,0,0,3,240,11,224,0,126,127,64,16,0,3,240,11,249,57,126,47,193,248,0,3,240,31,254,62,126,15,224,252,0,3,251,255,254,125,126,3,240,189,0,47,255,255,253,189,126,2,208,63,0,127,255,255,224,252,126,0,0,63,64,63,254,75,224,252,126,0,14,31,192,62,64,11,225,248,126,0,15,207,192,0,0,11,226,244,126,0,15,203,208,0,0,11,227,240,127,0,31,135,208,0,0,11,225,224,63,255,255,130,0,0,0,11,224,0,63,255,255,0,0,0,0,11,224,0,11,255,248,0,0,0,0,7,224,0,0,0,0,0,0, + // 0x80fd 能 + 253,128,38,38,124,40,1,252,0,3,144,0,0,42,64,0,0,0,0,11,248,0,0,63,128,0,0,0,0,15,240,0,0,63,128,0,0,0,0,15,224,30,0,63,128,0,144,0,0,47,208,191,0,63,128,31,244,0,0,63,192,63,192,63,129,255,252,0,0,191,64,31,224,63,239,255,224,0,0,255,0,15,240,63,255,253,0,0,42,255,255,255,248,63,255,64,0,0,127,255,255,255,252,63,208,0,0,0,63,255,255,255,254,63,128,0,4,0,63,234,149,64,255,63,128,0,15,128,0,0,0,0,121,63,128,0,31,192,0,0,0,0,0,63,128,0,31,192,0,0,0,0,0,63,213,85,127,192,3,255,255,255,224,63,255,255,255,128,3,255,255,255,224,31,255,255,255,0,3,255,255,255,224,6,255,255,248,0,3,244,0,15,224,0,0,0,0,0,3,244,0,15,224,63,128,0,0,0,3,244,0,15,224,63,128,0,0,0,3,255,255,255,224,63,128,0,96,0,3,255,255,255,224,63,128,7,248,0,3,255,255,255,224,63,128,127,253,0,3,244,0,15,224,63,139,255,244,0,3,244,0,15,224,63,255,255,64,0,3,244,0,15,224,63,255,228,0,0,3,255,255,255,224,63,249,0,0,0,3,255,255,255,224,63,128,0,0,0,3,255,255,255,224,63,128,0,10,0,3,244,0,15,224,63,128,0,11,224,3,244,0,15,224,63,128,0,15,224,3,244,0,15,224,63,128,0,15,208,3,244,0,31,224,63,192,0,47,192,3,244,31,255,208,63,255,255,255,192,3,244,15,255,192,31,255,255,255,64,3,244,11,255,64,7,255,255,253,0,1,80,1,64,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,28,38,10,40,6,252,0,0,1,233,0,0,0,0,0,2,255,0,0,0,0,0,3,253,0,0,0,0,0,3,252,0,0,0,0,0,7,248,0,0,0,106,170,175,250,170,170,170,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,85,85,85,85,85,255,191,0,0,0,0,0,191,191,0,0,0,0,0,106, + // 0x81f3 至 + 243,129,36,34,50,40,2,254,21,85,85,85,85,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,2,255,0,0,0,0,0,0,0,3,253,0,2,224,0,0,0,0,11,252,0,15,248,0,0,0,0,15,244,0,11,255,0,0,0,0,47,240,0,1,255,208,0,0,0,63,208,0,0,127,244,0,0,0,191,192,0,0,31,254,0,15,255,255,255,255,255,255,255,128,15,255,255,255,255,255,255,255,224,15,255,255,255,255,255,255,255,248,15,255,255,170,165,85,0,15,252,0,0,0,0,0,0,0,3,240,0,0,0,0,254,0,0,1,128,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,85,85,85,255,85,85,85,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,85,85,85,85,255,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x83dc 菜 + 220,131,36,38,86,40,2,252,0,0,26,128,0,2,164,0,0,0,0,31,208,0,3,244,0,0,0,0,31,208,0,3,244,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,21,85,111,213,85,87,249,85,84,0,0,31,208,0,3,244,0,0,0,0,31,208,0,2,165,100,0,0,0,0,0,0,90,255,253,0,0,85,90,175,255,255,255,255,64,15,255,255,255,255,255,255,254,64,15,255,255,255,255,255,165,0,0,11,255,254,169,84,0,0,20,0,0,0,0,1,176,0,0,63,192,0,124,0,7,244,0,0,127,192,1,254,0,3,252,0,0,255,64,0,191,64,1,253,0,1,254,0,0,63,192,0,254,0,3,252,0,0,31,224,0,254,0,11,244,0,0,15,240,0,165,0,15,224,0,0,11,64,0,255,0,7,192,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,255,255,254,0,0,0,0,0,7,255,255,255,192,0,0,0,0,47,252,255,63,244,0,0,0,2,255,224,255,11,255,64,0,0,47,255,64,255,2,255,244,0,6,255,252,0,255,0,63,255,144,191,255,208,0,255,0,11,255,254,255,254,0,0,255,0,0,191,254,63,224,0,0,255,0,0,11,252,29,0,0,0,255,0,0,0,96,0,0,0,0,254,0,0,0,0, + // 0x84dd 蓝 + 221,132,36,37,77,40,2,253,0,0,47,128,0,2,248,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,5,64,0,17,84,0,0,0,0,6,160,0,127,64,0,0,1,84,7,240,0,191,0,0,0,3,248,7,240,0,255,0,0,0,3,248,7,240,1,255,255,255,240,3,248,7,240,2,255,255,255,240,3,248,7,240,3,255,255,255,240,3,248,7,240,11,244,8,0,0,3,248,7,240,15,240,126,0,0,3,248,7,240,47,208,191,64,0,3,248,7,240,127,192,63,192,0,3,248,7,240,255,0,15,240,0,3,248,7,240,46,0,7,244,0,3,248,7,240,4,0,3,252,0,0,0,7,240,0,0,1,248,0,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,190,0,126,0,190,0,191,0,0,190,0,126,0,190,0,191,0,0,190,0,126,0,190,0,191,0,0,190,0,126,0,190,0,191,0,0,190,0,126,0,190,0,191,0,0,191,0,190,0,190,0,191,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x86c7 蛇 + 199,134,37,37,114,40,1,253,0,0,80,0,0,0,42,64,0,0,0,3,244,0,0,0,63,64,0,0,0,3,244,0,0,0,63,64,0,0,0,3,244,0,0,0,63,64,0,0,0,3,244,0,0,0,63,64,0,0,0,3,244,0,0,0,63,64,0,0,0,3,244,0,63,255,255,255,255,192,0,3,244,0,63,255,255,255,255,192,15,255,255,254,63,255,255,255,255,192,15,255,255,254,63,64,0,0,47,192,15,255,255,254,63,0,0,0,47,192,15,130,240,62,63,0,0,0,47,192,15,130,240,62,63,0,0,0,47,192,15,130,240,62,63,253,0,0,47,192,15,130,240,62,0,253,0,0,0,0,15,130,240,62,0,253,0,0,0,0,15,130,240,62,0,253,0,0,224,0,15,130,240,62,0,253,0,7,244,0,15,130,240,62,0,253,0,63,252,0,15,130,240,126,0,253,2,255,248,0,15,255,255,254,0,253,111,255,192,0,15,255,255,254,0,255,255,248,0,0,15,255,255,254,0,255,255,128,0,0,15,131,244,0,0,255,228,0,0,0,15,131,244,0,0,254,0,0,0,0,0,3,244,44,0,253,0,0,0,0,0,3,244,189,0,253,0,0,0,0,0,3,244,126,0,253,0,0,0,0,0,3,244,63,0,253,0,0,8,0,0,3,244,47,64,253,0,0,15,128,0,3,250,191,128,253,0,0,15,192,5,175,255,255,192,253,0,0,31,192,127,255,255,255,192,253,0,0,47,192,63,255,254,155,208,255,85,85,127,128,63,249,0,7,224,255,255,255,255,0,20,0,0,7,128,127,255,255,254,0,0,0,0,0,0,11,255,255,248,0, + // 0x884c 行 + 76,136,37,38,124,40,1,252,0,0,40,0,0,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,1,255,64,42,170,170,170,170,0,0,7,254,0,127,255,255,255,255,0,0,31,248,0,127,255,255,255,255,0,0,127,224,0,127,255,255,255,255,0,2,255,192,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,0,63,224,7,128,0,0,0,0,0,0,31,128,15,244,0,0,0,0,0,0,13,0,47,240,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,255,3,255,255,255,255,255,192,0,11,252,3,255,255,255,255,255,192,0,47,244,3,255,255,255,255,255,192,0,191,244,2,170,170,171,254,170,128,2,255,244,0,0,0,1,253,0,0,11,255,244,0,0,0,1,253,0,0,63,255,244,0,0,0,1,253,0,0,191,251,244,0,0,0,1,253,0,0,63,199,244,0,0,0,1,253,0,0,14,7,244,0,0,0,1,253,0,0,4,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,2,253,0,0,0,7,244,0,0,63,255,252,0,0,0,7,244,0,0,63,255,252,0,0,0,7,244,0,0,47,255,244,0,0,0,7,240,0,0,10,169,64,0,0, + // 0x88ab 被 + 171,136,38,38,124,40,1,252,0,10,144,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,127,255,255,255,255,128,21,95,245,64,127,255,255,255,255,192,63,255,255,244,127,255,255,255,255,192,63,255,255,248,127,85,127,149,127,128,63,255,255,240,127,0,63,64,63,64,0,0,15,224,127,0,63,64,127,0,0,0,31,192,127,0,63,64,191,0,0,0,63,128,127,0,63,64,253,0,0,0,191,0,127,0,63,64,108,0,0,1,253,24,127,0,63,64,0,0,0,3,252,63,191,255,255,255,253,0,0,15,244,189,191,255,255,255,254,0,0,63,253,248,191,255,255,255,253,0,0,191,255,240,191,254,85,87,252,0,2,255,255,192,191,254,0,3,252,0,15,255,255,208,190,127,0,11,244,0,63,255,231,244,254,63,128,15,240,0,191,223,226,252,254,47,192,31,224,0,63,79,224,248,253,31,224,63,192,0,45,15,224,96,253,15,244,191,128,0,0,15,224,1,252,3,253,255,0,0,0,15,224,2,252,2,255,254,0,0,0,15,224,3,248,0,255,252,0,0,0,15,224,3,244,0,127,240,0,0,0,15,224,7,240,0,191,248,0,0,0,15,224,15,240,3,255,255,0,0,0,15,224,31,224,31,255,255,208,0,0,15,224,63,193,255,244,191,254,0,0,15,224,127,143,255,192,31,255,208,0,15,224,255,15,254,0,3,255,192,0,15,224,62,3,240,0,0,127,64,0,11,224,4,1,64,0,0,6,0, + // 0x88c5 装 + 197,136,36,38,86,40,2,252,0,0,191,0,0,3,244,0,0,0,0,191,0,0,3,244,0,0,9,0,191,0,0,3,244,0,0,47,128,191,0,0,3,244,0,0,63,240,191,0,0,3,244,0,0,11,252,191,0,0,7,248,0,0,2,253,191,15,255,255,255,255,255,0,116,191,15,255,255,255,255,255,0,0,191,15,255,255,255,255,255,0,0,191,0,0,3,244,0,0,0,0,191,0,0,3,244,0,0,0,10,191,0,0,3,244,0,0,0,191,191,0,0,3,244,0,0,11,255,191,0,0,3,244,0,0,255,254,191,0,0,7,248,0,0,255,224,191,3,255,255,255,255,248,190,0,191,3,255,255,255,255,248,80,0,191,3,255,255,255,255,248,0,0,191,0,0,0,0,0,0,0,0,106,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,1,255,207,224,0,6,0,0,0,31,254,7,244,0,47,192,0,2,255,240,2,252,1,255,208,1,191,255,128,0,255,15,254,0,191,255,255,64,0,127,255,244,0,191,254,127,64,0,31,255,64,0,63,128,63,64,0,11,254,0,0,0,0,63,64,90,194,255,224,0,0,0,127,255,255,192,127,254,64,0,191,255,255,255,192,11,255,249,0,191,255,255,249,64,1,255,255,0,127,254,80,0,0,0,27,253,0,20,0,0,0,0,0,0,104, + // 0x8981 要 + 129,137,36,38,86,40,2,251,21,85,85,85,85,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,0,0,2,252,0,127,0,0,0,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,7,240,2,252,0,127,0,15,224,7,240,2,252,0,127,0,15,224,7,240,2,252,0,127,0,15,224,7,240,2,252,0,127,0,15,224,7,240,2,252,0,127,0,15,224,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,0,0,0,127,192,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,191,192,0,0,255,0,0,0,0,255,0,0,3,254,0,0,0,3,254,0,0,11,252,0,0,0,7,255,144,0,31,244,0,0,0,15,255,255,144,191,224,0,0,0,63,255,255,255,255,128,0,0,0,6,198,255,255,255,64,0,0,0,0,0,15,255,255,253,0,0,0,0,6,255,255,255,255,244,0,21,171,255,255,249,27,255,255,208,63,255,255,255,128,0,111,255,244,47,255,255,144,0,0,1,191,240,15,169,64,0,0,0,0,6,192,0,0,0,0,0,0,0,0,0, + // 0x89d2 角 + 210,137,34,39,95,40,1,251,0,0,0,164,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,255,255,255,224,0,0,0,0,31,255,255,255,252,0,0,0,0,63,255,255,255,244,0,0,0,0,255,128,0,31,240,0,0,0,3,255,0,0,63,192,0,0,0,15,252,0,0,191,64,0,0,0,47,249,85,85,255,85,85,80,0,255,255,255,255,255,255,255,240,7,255,255,255,255,255,255,255,240,31,255,255,255,255,255,255,255,240,15,251,240,0,15,224,0,11,240,3,199,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,7,244,0,15,240,0,15,240,0,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,7,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,11,240,0,15,224,0,11,240,0,11,240,0,15,224,0,11,240,0,15,245,85,95,245,85,95,240,0,15,255,255,255,255,255,255,240,0,31,255,255,255,255,255,255,240,0,47,255,255,255,255,255,255,240,0,63,192,0,0,0,0,11,240,0,127,64,0,0,0,0,11,240,0,255,0,0,0,0,0,11,240,2,254,0,0,0,0,0,11,240,11,252,0,0,0,0,0,15,240,47,244,0,0,0,6,149,111,240,127,224,0,0,0,7,255,255,224,47,192,0,0,0,3,255,255,192,10,0,0,0,0,2,255,249,0,0,0,0,0,0,0,0,0,0, + // 0x8ba1 计 + 161,139,37,38,124,40,2,252,0,0,0,0,0,2,164,0,0,0,0,56,0,0,0,7,248,0,0,0,0,254,0,0,0,7,248,0,0,0,1,255,192,0,0,7,248,0,0,0,0,127,240,0,0,7,248,0,0,0,0,15,252,0,0,7,248,0,0,0,0,3,255,0,0,7,248,0,0,0,0,0,253,0,0,7,248,0,0,0,0,0,52,0,0,7,248,0,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,0,7,248,0,0,0,255,255,224,63,255,255,255,255,255,64,255,255,224,63,255,255,255,255,255,64,255,255,224,63,255,255,255,255,255,64,170,175,224,63,255,255,255,255,255,64,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,0,0,7,248,0,0,0,0,15,224,120,0,7,248,0,0,0,0,15,227,252,0,7,248,0,0,0,0,15,255,253,0,7,248,0,0,0,0,15,255,244,0,7,248,0,0,0,0,31,255,192,0,7,248,0,0,0,0,63,254,0,0,7,248,0,0,0,0,191,244,0,0,7,248,0,0,0,0,191,192,0,0,7,248,0,0,0,0,62,0,0,0,7,248,0,0,0,0,40,0,0,0,7,248,0,0,0,0,0,0,0,0,7,244,0,0,0, + // 0x8bae 议 + 174,139,37,38,124,40,2,251,0,80,0,0,0,124,0,0,0,0,2,240,0,0,1,253,0,0,0,0,7,252,0,22,0,255,0,7,224,0,2,255,0,63,64,127,64,11,244,0,0,255,128,63,128,63,192,15,240,0,0,63,192,63,128,47,208,15,240,0,0,31,224,47,192,15,224,15,224,0,0,15,128,31,192,15,240,31,208,0,0,2,0,15,208,7,240,47,208,0,0,0,0,15,224,3,64,63,192,0,0,0,0,11,240,0,0,63,192,0,0,0,0,7,240,0,0,127,128,0,255,255,128,3,248,0,0,191,0,0,255,255,128,3,252,0,0,255,0,0,255,255,128,2,252,0,1,254,0,0,170,191,128,0,254,0,2,253,0,0,0,63,128,0,255,0,3,252,0,0,0,63,128,0,127,64,7,248,0,0,0,63,128,0,63,192,15,240,0,0,0,63,128,0,47,208,31,224,0,0,0,63,128,0,15,240,63,208,0,0,0,63,128,0,15,248,127,192,0,0,0,63,128,0,7,252,255,64,0,0,0,63,128,0,2,255,254,0,0,0,0,63,128,0,0,255,252,0,0,0,0,63,128,0,0,127,244,0,0,0,0,63,128,224,0,63,240,0,0,0,0,63,135,240,0,255,252,0,0,0,0,63,255,240,3,255,255,64,0,0,0,63,255,208,15,254,255,208,0,0,0,63,255,0,127,244,191,248,0,0,0,127,248,2,255,208,31,255,64,0,0,255,208,31,255,64,7,255,244,0,1,255,1,255,252,0,0,255,255,64,0,188,3,255,208,0,0,31,255,64,0,32,1,255,0,0,0,2,253,0,0,0,0,180,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0, + // 0x8bbe 设 + 190,139,36,37,77,40,2,252,0,176,0,0,21,85,85,80,0,2,252,0,0,47,255,255,248,0,3,255,0,0,47,255,255,248,0,0,255,192,0,47,255,255,248,0,0,47,240,0,47,128,3,248,0,0,11,252,0,63,128,3,248,0,0,2,248,0,63,128,3,248,0,0,0,224,0,63,64,3,248,0,0,0,0,0,191,0,3,248,0,0,0,0,0,255,0,3,248,0,0,0,0,3,254,0,3,248,0,0,0,0,15,252,0,3,255,254,255,255,128,191,244,0,1,255,255,255,255,128,255,208,0,0,191,255,255,255,128,127,64,0,0,0,0,170,191,128,40,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,47,255,255,255,255,208,0,63,128,47,255,255,255,255,240,0,63,128,47,255,255,255,255,208,0,63,128,27,249,85,85,127,192,0,63,128,3,252,0,0,127,128,0,63,128,1,253,0,0,255,0,0,63,128,0,255,0,2,254,0,0,63,128,0,127,128,3,252,0,0,63,128,64,47,224,15,244,0,0,63,131,192,15,248,63,224,0,0,63,159,208,3,254,255,192,0,0,63,255,224,0,255,255,0,0,0,63,255,128,0,127,252,0,0,0,63,253,0,2,255,255,64,0,0,191,244,0,47,255,255,244,0,2,255,192,7,255,253,191,255,144,2,254,1,255,255,208,15,255,254,0,248,0,255,253,0,1,255,254,0,96,0,191,144,0,0,27,252,0,0,0,36,0,0,0,0,100, + // 0x8bd5 试 + 213,139,37,38,124,40,2,252,0,0,0,0,0,0,106,1,0,0,0,240,0,0,0,0,127,79,64,0,3,252,0,0,0,0,127,95,208,0,3,255,0,0,0,0,127,79,240,0,0,255,192,0,0,0,127,67,252,0,0,63,240,0,0,0,127,65,253,0,0,15,252,0,0,0,127,64,189,0,0,3,244,0,0,0,127,64,48,0,0,1,208,170,170,170,191,170,170,0,0,0,0,255,255,255,255,255,255,64,0,0,0,255,255,255,255,255,255,64,0,0,0,255,255,255,255,255,255,64,0,0,0,0,0,0,63,128,0,0,255,255,192,0,0,0,63,128,0,0,255,255,192,0,0,0,63,128,0,0,255,255,192,0,0,0,63,192,0,0,106,191,192,0,0,0,63,192,0,0,0,47,192,21,85,85,63,192,0,0,0,47,192,63,255,255,47,192,0,0,0,47,192,63,255,255,47,192,0,0,0,47,192,63,255,255,47,192,0,0,0,47,192,0,63,64,31,208,0,0,0,47,192,0,63,64,31,208,0,0,0,47,192,0,63,64,15,208,0,0,0,47,192,0,63,64,15,224,0,0,0,47,192,0,63,64,15,240,0,0,0,47,192,0,63,64,15,240,0,0,0,47,192,64,63,64,11,240,20,0,0,47,194,192,63,65,71,244,30,0,0,47,223,208,63,175,199,248,47,128,0,47,255,224,127,255,195,252,47,64,0,63,255,239,255,255,195,252,63,64,0,191,253,127,255,248,1,255,63,0,1,255,224,63,249,0,0,255,255,0,0,255,64,46,64,0,0,191,253,0,0,124,0,0,0,0,0,63,252,0,0,32,0,0,0,0,0,31,248,0,0,0,0,0,0,0,0,6,224,0, + // 0x8bef 误 + 239,139,37,37,114,40,2,252,0,128,0,0,0,0,0,0,0,0,3,240,0,3,255,255,255,255,240,0,11,253,0,3,255,255,255,255,240,0,3,255,64,3,255,255,255,255,240,0,0,191,208,3,244,0,0,15,240,0,0,47,244,3,244,0,0,15,240,0,0,15,244,3,244,0,0,15,240,0,0,3,208,3,244,0,0,15,240,0,0,0,64,3,244,0,0,15,240,0,0,0,0,3,255,255,255,255,240,0,0,0,0,3,255,255,255,255,240,0,0,0,0,3,255,255,255,255,240,0,255,255,128,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,170,191,128,5,85,85,85,85,80,0,0,63,128,15,255,255,255,255,252,0,0,63,128,15,255,255,255,255,252,0,0,63,128,15,255,255,255,255,252,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,0,0,15,224,0,0,0,0,63,128,127,255,255,255,255,255,64,0,63,128,127,255,255,255,255,255,64,0,63,128,127,255,255,255,255,255,64,0,63,128,85,85,127,253,85,85,0,0,63,130,192,0,127,253,0,0,0,0,63,223,192,0,255,255,0,0,0,0,63,255,208,3,254,127,192,0,0,0,63,255,128,11,252,47,240,0,0,0,191,253,0,127,244,15,254,0,0,1,255,224,2,255,208,3,255,208,0,0,255,64,191,255,64,0,255,254,64,0,60,0,255,248,0,0,47,255,0,0,32,0,63,208,0,0,3,252,0,0,0,0,40,0,0,0,0,40,0, + // 0x8bf7 请 + 247,139,37,39,134,40,2,251,0,0,0,0,0,11,224,0,0,0,0,192,0,0,0,15,240,0,0,0,3,240,0,0,0,15,240,0,0,0,11,252,0,42,170,175,250,170,168,0,2,255,64,47,255,255,255,255,252,0,0,191,192,47,255,255,255,255,252,0,0,47,240,0,0,15,240,0,0,0,0,15,240,0,0,15,240,0,0,0,0,3,208,6,170,175,250,170,160,0,0,1,64,11,255,255,255,255,240,0,0,0,0,11,255,255,255,255,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,255,255,192,170,170,175,250,170,170,0,255,255,192,255,255,255,255,255,255,64,255,255,192,255,255,255,255,255,255,64,170,191,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,3,255,255,255,255,208,0,0,63,192,3,255,255,255,255,208,0,0,63,192,3,255,255,255,255,208,0,0,63,192,3,244,0,0,15,208,0,0,63,192,3,244,0,0,15,208,0,0,63,192,3,250,170,170,175,208,0,0,63,192,3,255,255,255,255,208,0,0,63,192,3,255,255,255,255,208,0,0,63,192,3,244,0,0,15,208,0,0,63,194,195,244,0,0,15,208,0,0,63,207,195,244,0,0,15,208,0,0,63,255,227,255,255,255,255,208,0,0,63,255,195,255,255,255,255,208,0,0,63,255,3,250,170,170,175,208,0,0,127,248,3,244,0,0,15,208,0,0,255,224,3,244,0,0,15,208,0,2,255,64,3,244,0,0,31,208,0,0,253,0,3,244,0,63,255,192,0,0,112,0,3,244,0,47,255,192,0,0,0,0,3,244,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8bfb 读 + 251,139,37,39,134,40,1,251,0,0,0,0,0,2,164,0,0,0,0,32,0,0,0,3,248,0,0,0,0,252,0,0,0,3,248,0,0,0,3,255,0,0,0,3,248,0,0,0,0,255,208,3,255,255,255,255,248,0,0,63,244,3,255,255,255,255,248,0,0,15,253,3,255,255,255,255,248,0,0,3,253,0,0,3,248,0,0,0,0,0,244,0,0,3,248,0,0,0,0,0,16,0,0,3,248,0,0,0,0,0,0,31,255,255,255,255,255,64,0,0,0,31,255,255,255,255,255,0,0,0,0,31,255,255,255,255,255,0,127,255,224,0,0,0,0,0,254,0,127,255,224,0,4,0,0,0,253,0,127,255,224,0,63,64,254,1,252,0,42,175,224,0,63,224,254,2,248,0,0,15,224,0,11,252,254,3,244,0,0,15,224,2,0,254,254,0,80,0,0,15,224,15,224,44,254,0,0,0,0,15,224,11,252,0,254,0,0,0,0,15,224,1,255,64,253,0,0,0,0,15,224,0,47,192,253,0,0,0,0,15,224,0,7,1,253,0,0,0,0,15,224,63,255,255,255,255,255,128,0,15,224,63,255,255,255,255,255,128,0,15,224,127,255,255,255,255,255,128,0,15,225,192,0,31,244,0,0,0,0,15,235,208,0,47,224,128,0,0,0,15,255,240,0,127,195,244,0,0,0,15,255,208,1,255,139,254,0,0,0,15,255,64,7,254,1,255,192,0,0,31,252,0,63,252,0,63,240,0,0,63,240,2,255,240,0,11,253,0,0,191,128,47,255,128,0,2,255,64,0,62,0,191,253,0,0,0,127,192,0,24,0,47,224,0,0,0,31,64,0,0,0,14,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0, + // 0x8c03 调 + 3,140,35,38,86,40,2,251,0,128,0,0,0,0,0,0,0,3,240,0,63,255,255,255,255,252,11,252,0,63,255,255,255,255,252,2,255,0,63,255,255,255,255,252,0,191,192,63,128,0,0,2,252,0,47,240,63,64,6,144,1,252,0,11,240,63,64,11,208,1,252,0,3,192,63,64,11,208,1,252,0,0,0,63,66,175,250,145,252,0,0,0,63,71,255,255,209,252,0,0,0,63,71,255,255,209,252,0,0,0,63,64,11,208,1,252,255,255,128,63,64,11,208,1,252,255,255,128,63,64,11,208,1,252,255,255,128,63,64,11,208,1,252,170,191,128,63,79,255,255,245,252,0,63,128,63,79,255,255,245,252,0,63,128,63,79,255,255,245,252,0,63,128,63,64,0,0,1,252,0,63,128,63,64,0,0,1,252,0,63,128,63,70,170,170,129,252,0,63,128,63,75,255,255,193,252,0,63,128,63,11,255,255,193,252,0,63,128,63,11,208,11,193,252,0,63,128,127,11,208,11,193,252,0,63,128,127,11,208,11,193,252,0,63,137,190,11,208,11,193,252,0,63,191,254,11,250,175,193,252,0,63,255,253,11,255,255,193,252,0,63,255,252,11,255,255,193,252,0,127,250,252,11,208,0,1,252,0,255,227,248,11,208,0,1,252,1,255,135,244,0,0,0,1,252,3,254,15,240,0,0,1,86,252,2,248,31,208,0,0,3,255,248,0,160,15,192,0,0,2,255,244,0,0,2,64,0,0,1,255,128,0,0,0,0,0,0,0,0,0, + // 0x8d25 败 + 37,141,36,38,86,40,2,252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,11,240,0,0,31,255,255,255,0,15,224,0,0,31,255,255,255,0,15,208,0,0,31,255,255,255,0,31,192,0,0,31,149,85,127,0,47,192,0,0,31,128,0,63,0,63,128,0,0,31,128,0,63,0,63,149,85,84,31,130,164,63,0,127,255,255,255,31,131,244,63,0,255,255,255,255,31,131,244,63,0,255,255,255,255,31,131,244,63,2,252,0,15,192,31,131,244,63,3,248,0,15,192,31,131,244,63,7,244,0,31,192,31,131,244,63,15,240,0,31,128,31,131,244,63,47,244,0,47,128,31,131,244,63,127,252,0,63,64,31,131,244,63,127,252,0,63,0,31,131,244,63,31,253,0,63,0,31,131,244,63,12,127,0,126,0,31,131,244,63,0,63,0,253,0,31,131,244,63,0,47,128,252,0,31,131,244,63,0,31,193,252,0,31,131,240,63,0,15,227,248,0,31,131,240,63,0,7,247,240,0,31,135,240,63,0,3,255,240,0,31,139,224,63,0,1,255,208,0,0,15,208,0,0,0,255,192,0,0,31,194,128,0,0,191,192,0,0,47,207,208,0,0,255,240,0,0,127,75,240,0,3,255,248,0,0,255,3,252,0,15,251,254,0,3,252,1,253,0,63,224,255,128,15,248,0,191,1,255,192,63,240,127,224,0,63,203,255,0,31,254,255,192,0,31,95,248,0,3,255,62,0,0,8,11,208,0,0,188,20,0,0,0,2,0,0,0,20, + // 0x8d2a 贪 + 42,141,37,38,124,40,2,252,0,0,0,0,29,0,0,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,7,255,208,0,0,0,0,0,0,0,127,255,252,0,0,0,0,0,0,3,255,231,255,208,0,0,0,0,0,127,255,0,191,254,0,0,0,0,11,255,244,176,11,255,248,0,0,6,255,255,131,253,0,191,255,228,0,191,255,248,1,255,64,11,255,255,64,255,255,64,0,63,192,0,127,254,0,63,224,0,0,31,128,0,2,252,0,24,47,255,255,255,255,255,192,0,0,0,47,255,255,255,255,255,240,0,0,0,47,255,255,255,255,255,208,0,0,0,0,0,0,0,1,255,64,0,0,0,0,0,0,0,7,254,0,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,0,31,224,0,0,0,0,63,255,255,255,255,255,248,0,0,0,63,255,255,255,255,255,248,0,0,0,63,255,255,255,255,255,248,0,0,0,63,213,85,85,85,87,248,0,0,0,63,128,0,85,0,3,248,0,0,0,63,128,0,255,0,3,248,0,0,0,63,128,0,255,0,3,248,0,0,0,63,128,0,255,0,3,248,0,0,0,63,128,0,255,0,3,248,0,0,0,63,128,1,254,0,3,248,0,0,0,63,128,3,253,0,3,248,0,0,0,63,128,11,252,80,3,248,0,0,0,21,64,47,244,254,64,0,0,0,0,0,1,255,226,255,249,0,0,0,0,0,31,255,65,191,255,224,0,0,0,6,255,253,0,6,255,254,64,0,6,255,255,208,0,0,47,255,244,0,31,255,253,0,0,0,1,255,240,0,7,255,144,0,0,0,0,11,224,0,2,224,0,0,0,0,0,0,128,0, + // 0x8d77 起 + 119,141,38,39,134,40,1,251,0,0,85,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,191,255,255,252,0,0,0,191,0,0,191,255,255,252,0,1,85,191,85,80,191,255,255,252,0,15,255,255,255,240,21,85,86,252,0,15,255,255,255,240,0,0,1,252,0,15,255,255,255,240,0,0,1,252,0,0,0,191,0,0,0,0,1,252,0,0,0,191,0,0,0,0,1,252,0,0,0,191,0,0,0,0,1,252,0,0,0,191,0,0,0,0,1,252,0,21,85,191,85,84,0,0,1,252,0,63,255,255,255,252,63,255,255,252,0,63,255,255,255,252,63,255,255,252,0,63,255,255,255,252,63,255,255,252,0,0,0,63,128,0,63,149,86,252,0,0,0,63,128,0,63,64,0,84,0,1,0,63,128,0,63,64,0,0,0,7,240,63,128,0,63,64,0,0,0,7,240,63,128,0,63,64,0,0,0,7,240,63,255,248,63,64,0,0,0,7,240,63,255,248,63,64,0,14,0,7,240,63,255,248,63,64,0,15,208,7,240,63,128,0,63,64,0,15,208,11,244,63,128,0,63,64,0,15,192,11,252,63,128,0,63,64,0,31,192,11,252,63,128,0,63,213,85,127,192,15,255,63,128,0,63,255,255,255,128,15,255,127,128,0,31,255,255,255,0,15,255,255,128,0,6,255,255,248,0,31,223,255,128,0,0,0,0,0,0,47,199,255,233,0,0,0,0,0,0,63,128,255,255,255,255,255,255,255,208,63,64,47,255,255,255,255,255,255,192,191,0,1,255,255,255,255,255,255,128,191,0,0,1,106,170,170,170,170,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8d85 超 + 133,141,38,38,124,40,1,252,0,0,189,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,3,255,255,255,255,0,0,0,254,0,3,255,255,255,255,0,0,0,254,0,3,255,255,255,255,0,15,255,255,255,224,1,252,0,191,0,15,255,255,255,224,2,252,0,191,0,15,255,255,255,224,3,248,0,191,0,0,0,254,0,0,3,244,0,255,0,0,0,254,0,0,11,240,0,254,0,0,0,254,0,0,15,224,0,254,0,0,0,254,0,0,63,192,2,253,0,21,85,254,85,80,191,67,255,252,0,63,255,255,255,247,254,2,255,248,0,63,255,255,255,255,252,1,255,224,0,63,255,255,255,251,240,0,0,0,0,0,0,127,0,1,128,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,255,255,255,253,0,7,240,127,0,0,255,255,255,253,0,7,240,127,0,0,255,255,255,253,0,7,240,127,64,0,253,0,1,253,0,7,240,127,255,240,253,0,1,253,0,7,240,127,255,240,253,0,1,253,0,11,240,127,255,240,253,0,1,253,0,11,240,127,0,0,253,0,1,253,0,11,248,127,0,0,253,0,1,253,0,15,252,127,0,0,255,255,255,253,0,15,255,127,0,0,255,255,255,253,0,15,255,255,0,0,255,255,255,253,0,15,255,255,0,0,0,0,0,0,0,31,207,255,0,0,0,0,0,0,0,47,135,255,249,0,0,0,0,0,0,63,129,255,255,255,255,255,255,255,208,127,64,47,255,255,255,255,255,255,192,255,0,1,255,255,255,255,255,255,128,46,0,0,1,106,170,170,170,170,0,4,0,0,0,0,0,0,0,0,0, + // 0x8ddd 距 + 221,141,38,36,104,40,1,252,7,255,255,255,7,255,255,255,255,192,7,255,255,255,7,255,255,255,255,192,7,255,255,255,7,255,255,255,255,192,7,240,0,127,7,249,85,85,85,64,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,191,7,249,85,85,84,0,7,255,255,255,7,255,255,255,253,0,7,255,255,255,7,255,255,255,253,0,7,255,255,255,7,255,255,255,253,0,0,0,253,0,7,240,0,1,253,0,0,0,253,0,7,240,0,1,253,0,0,0,253,0,7,240,0,1,253,0,7,208,253,0,7,240,0,1,253,0,11,224,253,0,7,240,0,1,253,0,11,224,255,255,135,240,0,1,253,0,11,224,255,255,135,240,0,1,253,0,11,224,255,255,135,249,85,86,253,0,11,224,253,85,7,255,255,255,253,0,11,224,253,0,7,255,255,255,253,0,11,224,253,0,7,255,255,255,253,0,11,224,253,0,7,240,0,0,0,0,11,224,253,0,7,240,0,0,0,0,11,224,253,0,71,240,0,0,0,0,11,224,253,111,199,240,0,0,0,0,11,224,255,255,199,240,0,0,0,0,11,255,255,255,199,240,0,0,0,0,111,255,255,254,71,249,85,85,85,64,191,255,254,64,7,255,255,255,255,208,127,254,64,0,7,255,255,255,255,208,62,64,0,0,7,255,255,255,255,208,0,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x8f6c 转 + 108,143,36,38,86,40,2,252,0,10,64,0,0,0,101,0,0,0,31,208,0,0,0,255,0,0,0,31,192,0,0,0,255,0,0,0,47,192,0,0,0,254,0,0,85,127,213,84,0,1,253,0,0,255,255,255,252,127,255,255,255,252,255,255,255,252,127,255,255,255,252,255,255,255,252,127,255,255,255,252,0,253,0,0,21,91,249,85,84,0,252,0,0,0,11,240,0,0,1,252,0,0,0,15,224,0,0,2,249,168,0,0,31,208,0,0,3,241,252,1,85,111,229,85,85,7,241,252,3,255,255,255,255,255,11,209,252,3,255,255,255,255,255,15,193,252,3,255,255,255,255,255,31,129,252,0,0,191,0,0,0,63,150,253,80,0,255,0,0,0,191,255,255,248,1,254,0,0,0,127,255,255,248,2,253,0,0,0,63,255,255,248,3,255,255,255,224,16,1,252,0,7,255,255,255,252,0,1,252,0,11,255,255,255,240,0,1,252,0,5,85,85,191,208,0,1,252,1,0,0,0,191,128,0,1,254,255,0,0,1,255,0,0,27,255,255,0,0,3,253,0,191,255,255,255,0,180,15,248,0,255,255,255,229,2,254,31,224,0,255,255,252,0,3,255,255,192,0,250,65,252,0,0,127,255,64,0,0,1,252,0,0,15,255,64,0,0,1,252,0,0,2,255,224,0,0,1,252,0,0,0,127,252,0,0,1,252,0,0,0,15,255,0,0,1,252,0,0,0,2,255,0,0,1,252,0,0,0,0,189,0,0,1,252,0,0,0,0,20,0, + // 0x8f6f 软 + 111,143,37,38,124,40,2,252,0,1,64,0,0,42,64,0,0,0,0,3,252,0,0,63,128,0,0,0,0,3,248,0,0,63,64,0,0,0,0,7,244,0,0,127,64,0,0,0,0,11,240,0,0,127,0,0,0,0,255,255,255,255,192,191,0,0,0,0,255,255,255,255,192,255,255,255,254,0,255,255,255,255,192,255,255,255,255,0,170,191,234,170,129,255,255,255,255,0,0,63,64,0,2,253,85,85,254,0,0,127,0,0,3,248,0,0,254,0,0,254,42,0,7,244,0,0,253,0,0,253,63,64,15,240,0,1,252,0,2,252,63,64,31,224,20,1,252,0,3,248,63,64,63,208,254,2,248,0,7,240,63,64,127,192,254,3,244,0,15,240,63,64,191,64,254,3,240,0,31,229,127,149,95,0,254,2,240,0,63,255,255,255,192,0,254,0,0,0,63,255,255,255,192,0,254,0,0,0,47,255,255,255,192,0,255,0,0,0,4,0,63,64,0,1,255,0,0,0,0,0,63,64,0,1,255,64,0,0,0,0,63,64,0,2,255,128,0,0,0,0,63,64,0,3,255,192,0,0,0,0,63,171,192,7,255,208,0,0,0,26,255,255,192,11,255,240,0,0,191,255,255,255,208,15,247,240,0,0,255,255,255,254,128,47,211,248,0,0,255,255,255,64,0,63,194,253,0,0,254,144,63,64,0,255,64,255,0,0,0,0,63,64,2,255,0,191,192,0,0,0,63,64,11,253,0,63,224,0,0,0,63,64,47,244,0,31,248,0,0,0,63,64,191,224,0,11,255,64,0,0,63,65,255,128,0,2,255,0,0,0,63,64,62,0,0,0,188,0,0,0,42,0,8,0,0,0,20,0, + // 0x8f74 轴 + 116,143,35,38,86,40,2,252,0,26,64,0,0,0,253,0,0,0,31,192,0,0,0,254,0,0,0,47,192,0,0,0,254,0,0,0,63,128,0,0,0,254,0,0,85,127,213,84,0,0,254,0,0,255,255,255,248,0,0,254,0,0,255,255,255,248,0,0,254,0,0,255,255,255,248,0,0,254,0,0,0,253,0,0,0,0,254,0,0,0,252,0,0,191,255,255,255,252,1,252,0,0,191,255,255,255,252,3,248,252,0,191,255,255,255,252,3,244,252,0,191,85,254,86,252,7,240,252,0,190,0,253,0,252,11,224,252,0,190,0,253,0,252,15,208,252,0,190,0,253,0,252,31,192,252,0,190,0,253,0,252,63,213,254,84,190,0,253,0,252,191,255,255,248,190,0,253,0,252,127,255,255,248,190,0,253,0,252,63,255,255,248,191,255,255,255,252,16,0,252,0,191,255,255,255,252,0,0,252,0,191,255,255,255,252,0,0,252,0,191,85,254,85,252,0,0,252,4,190,0,253,0,252,0,0,255,252,190,0,253,0,252,0,107,255,252,190,0,253,0,252,255,255,255,252,190,0,253,0,252,255,255,255,148,190,0,253,0,252,255,254,252,0,190,0,253,0,252,185,0,252,0,190,0,253,0,252,0,0,252,0,190,0,253,0,252,0,0,252,0,191,255,255,255,252,0,0,252,0,191,255,255,255,252,0,0,252,0,191,255,255,255,252,0,0,252,0,191,85,85,85,252,0,0,252,0,190,0,0,0,252,0,0,168,0,190,0,0,0,84, + // 0x8f7d 载 + 125,143,37,39,134,40,2,251,0,0,47,192,0,15,224,0,0,0,0,0,47,192,0,15,224,120,0,0,0,0,47,192,0,15,225,255,0,0,11,255,255,255,254,15,224,191,192,0,15,255,255,255,254,15,224,47,224,0,15,255,255,255,254,15,224,15,248,0,0,0,47,192,0,15,240,3,240,0,0,0,47,192,0,15,240,1,128,0,0,0,47,192,0,15,240,0,0,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,0,2,228,0,0,11,240,0,0,0,0,3,252,0,0,11,240,0,0,0,0,7,248,0,0,7,240,2,64,0,0,11,244,0,0,7,240,7,240,0,63,255,255,255,255,199,240,11,240,0,63,255,255,255,255,195,244,15,224,0,63,255,255,255,255,195,244,31,192,0,0,127,0,0,0,3,248,47,192,0,0,254,3,244,0,3,248,63,128,0,2,252,3,244,0,3,252,191,0,0,7,244,3,244,0,2,252,255,0,0,31,255,255,255,255,65,254,253,0,0,15,255,255,255,255,65,255,252,0,0,11,255,255,255,255,64,255,244,0,0,5,0,3,244,0,0,255,240,0,0,0,0,3,244,0,0,191,208,0,0,0,0,3,244,0,0,127,192,24,0,0,0,3,255,255,192,255,128,47,64,21,106,255,255,255,195,255,192,47,64,127,255,255,255,255,203,255,208,63,0,63,255,255,249,0,47,255,240,63,0,63,234,87,244,0,191,199,252,127,0,0,0,3,244,2,255,67,255,254,0,0,0,3,244,11,254,0,255,252,0,0,0,3,244,2,244,0,63,248,0,0,0,3,244,0,208,0,6,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x8f91 辑 + 145,143,38,38,124,40,1,252,0,6,64,0,0,0,0,0,0,0,0,11,240,0,10,170,170,170,164,0,0,15,240,0,15,255,255,255,248,0,0,15,224,0,15,255,255,255,248,0,0,15,224,0,15,208,0,3,248,0,63,255,255,254,15,208,0,3,248,0,63,255,255,254,15,208,0,3,248,0,63,255,255,254,15,250,170,171,248,0,42,191,170,169,15,255,255,255,248,0,0,127,0,0,15,255,255,255,248,0,0,191,0,0,0,0,0,0,0,0,0,254,127,0,0,0,0,0,0,0,0,253,127,0,0,0,0,0,0,0,1,252,127,0,255,255,255,255,255,192,2,248,127,0,255,255,255,255,255,192,3,244,127,0,255,255,255,255,255,192,7,240,127,0,15,224,0,3,244,0,15,229,191,84,15,224,0,3,244,0,47,255,255,252,15,250,170,175,244,0,31,255,255,252,15,255,255,255,244,0,15,255,255,252,15,255,255,255,244,0,4,0,127,0,15,224,0,3,244,0,0,0,127,0,15,224,0,3,244,0,0,0,127,0,15,224,0,3,244,0,0,0,127,0,15,250,170,171,244,0,0,0,127,111,15,255,255,255,244,0,0,91,255,255,15,255,255,255,244,0,127,255,255,255,15,224,0,3,244,0,63,255,255,229,15,224,0,3,244,0,63,255,255,0,15,224,0,3,244,0,46,80,127,0,15,246,175,255,255,208,0,0,127,3,255,255,255,255,255,208,0,0,127,3,255,255,255,255,255,192,0,0,127,2,255,250,149,3,244,0,0,0,127,0,64,0,0,3,244,0,0,0,127,0,0,0,0,3,244,0,0,0,127,0,0,0,0,3,244,0,0,0,106,0,0,0,0,3,240,0, + // 0x8f93 输 + 147,143,37,39,134,40,2,251,0,100,0,0,0,0,208,0,0,0,0,254,0,0,0,3,252,0,0,0,0,254,0,0,0,11,248,0,0,0,0,253,0,0,0,47,252,0,0,0,0,252,0,0,0,191,255,64,0,0,255,255,255,128,3,255,127,208,0,0,255,255,255,128,31,252,15,248,0,0,255,255,255,128,191,240,3,255,128,0,87,249,85,7,255,192,0,191,248,0,3,240,0,63,254,0,0,47,255,64,7,240,0,255,255,255,255,255,255,64,11,225,80,63,255,255,255,255,125,0,11,215,240,12,63,255,255,255,4,0,15,199,240,0,0,0,0,0,0,0,15,135,240,0,0,0,0,0,84,0,47,71,240,11,255,255,192,0,252,0,63,7,240,11,255,255,194,224,252,0,127,91,245,11,255,255,195,240,252,0,255,255,255,139,208,15,195,240,252,0,255,255,255,139,208,15,195,240,252,0,127,255,255,139,208,15,195,240,252,0,16,7,240,11,250,175,195,240,252,0,0,7,240,11,255,255,195,240,252,0,0,7,240,11,255,255,195,240,252,0,0,7,240,11,208,15,195,240,252,0,0,7,255,139,208,15,195,240,252,0,0,111,255,203,208,15,195,240,252,0,175,255,255,203,255,255,195,240,252,0,255,255,249,11,255,255,195,240,252,0,255,255,240,11,255,255,195,240,252,0,185,7,240,11,208,15,195,224,252,0,0,7,240,11,208,15,192,0,252,0,0,7,240,11,208,15,192,0,252,0,0,7,240,11,208,15,192,0,252,0,0,7,240,11,208,15,192,255,252,0,0,7,240,11,210,255,192,255,248,0,0,7,240,11,209,255,192,191,144,0,0,7,224,11,208,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x8fb9 边 + 185,143,38,38,124,40,1,251,0,240,0,0,0,127,128,0,0,0,7,252,0,0,0,127,128,0,0,0,3,255,0,0,0,127,128,0,0,0,0,255,192,0,0,127,128,0,0,0,0,127,224,0,0,127,128,0,0,0,0,31,244,0,0,127,64,0,0,0,0,11,252,42,170,255,234,170,170,0,0,3,240,127,255,255,255,255,255,0,0,0,128,127,255,255,255,255,255,0,0,0,0,127,255,255,255,255,255,0,0,0,0,0,0,255,0,0,254,0,0,0,0,0,0,255,0,0,254,0,0,0,0,0,0,255,0,0,254,0,127,255,208,0,1,254,0,0,254,0,127,255,208,0,1,253,0,0,254,0,127,255,208,0,2,253,0,1,254,0,42,191,208,0,3,252,0,1,253,0,0,31,208,0,7,252,0,1,253,0,0,31,208,0,11,248,0,1,253,0,0,31,208,0,15,240,0,2,253,0,0,31,208,0,31,240,0,2,252,0,0,31,208,0,63,208,0,2,252,0,0,31,208,0,127,192,0,3,252,0,0,31,208,0,255,64,0,3,252,0,0,31,208,3,255,0,0,3,252,0,0,31,208,15,252,0,0,11,248,0,0,31,208,127,244,1,170,175,244,0,0,31,208,255,208,0,255,255,240,0,0,47,208,127,64,0,255,255,208,0,0,191,244,28,0,0,191,254,0,0,3,255,254,0,0,0,0,0,0,0,15,255,255,208,0,0,0,0,0,0,63,244,127,254,80,0,0,5,106,224,255,208,15,255,255,255,255,255,255,208,127,128,2,255,255,255,255,255,255,192,47,0,0,31,255,255,255,255,255,192,12,0,0,0,90,170,170,169,85,0,0,0,0,0,0,0,0,0,0,0, + // 0x8fc1 迁 + 193,143,38,37,114,40,1,252,0,184,0,0,0,0,0,111,192,0,2,255,64,0,0,1,175,255,240,0,1,255,224,0,91,255,255,255,244,0,0,63,248,63,255,255,255,249,0,0,0,11,254,63,255,255,245,0,0,0,0,1,248,47,250,95,240,0,0,0,0,0,96,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,3,192,0,0,0,15,240,0,0,0,15,248,0,0,0,15,240,0,0,0,15,255,64,0,0,15,240,0,0,0,1,255,224,0,0,15,240,0,0,0,0,63,244,0,0,15,240,0,0,0,0,11,225,255,255,255,255,255,255,192,0,1,129,255,255,255,255,255,255,192,0,0,1,255,255,255,255,255,255,192,0,0,0,85,85,95,245,85,85,64,0,0,0,0,0,15,240,0,0,0,63,255,240,0,0,15,240,0,0,0,63,255,240,0,0,15,240,0,0,0,63,255,240,0,0,15,240,0,0,0,21,95,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,11,240,0,0,15,240,0,0,0,0,15,244,0,0,15,240,0,0,0,0,63,252,0,0,15,240,0,0,0,1,255,255,64,0,15,240,0,0,0,11,255,191,244,0,0,0,0,0,0,127,252,47,255,234,85,85,90,170,144,63,240,7,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,2,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fd0 运 + 208,143,38,37,114,40,1,252,0,180,0,0,0,0,0,0,0,0,2,255,0,1,85,85,85,85,84,0,2,255,208,7,255,255,255,255,248,0,0,127,248,7,255,255,255,255,248,0,0,11,253,7,255,255,255,255,248,0,0,2,248,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,47,254,0,85,85,85,85,85,85,64,7,255,192,255,255,255,255,255,255,208,0,191,240,255,255,255,255,255,255,208,0,31,224,255,255,255,255,255,255,208,0,3,128,0,3,254,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,7,248,0,32,0,0,0,0,0,0,11,244,2,252,0,0,63,255,224,0,15,240,2,254,0,0,63,255,224,0,31,224,0,255,64,0,63,255,224,0,47,192,0,63,192,0,21,111,224,0,63,128,0,31,224,0,0,15,224,0,127,64,0,15,244,0,0,15,224,0,255,0,0,27,252,0,0,15,224,0,254,107,255,255,253,0,0,15,224,191,255,255,255,255,255,0,0,15,224,191,255,255,255,255,255,64,0,15,224,127,255,255,233,80,63,192,0,15,224,122,148,0,0,0,47,128,0,127,248,0,0,0,0,0,24,0,1,255,254,0,0,0,0,0,0,0,15,255,255,224,0,0,0,0,0,0,127,248,63,255,169,85,85,85,170,144,63,224,11,255,255,255,255,255,255,192,47,64,1,255,255,255,255,255,255,128,13,0,0,6,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fd1 近 + 209,143,38,38,124,40,1,252,0,0,0,0,0,0,0,2,0,0,1,64,0,0,0,0,1,191,208,0,11,224,0,0,0,5,191,255,244,0,31,252,0,2,234,255,255,255,228,0,7,255,0,2,255,255,255,249,0,0,1,255,192,2,255,255,229,0,0,0,0,63,240,2,254,80,0,0,0,0,0,15,248,2,252,0,0,0,0,0,0,3,224,2,252,0,0,0,0,0,0,1,128,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192,0,0,0,2,253,85,95,245,85,64,63,255,240,3,252,0,15,240,0,0,63,255,240,3,248,0,15,240,0,0,63,255,240,3,248,0,15,240,0,0,21,95,240,3,244,0,15,240,0,0,0,15,240,7,240,0,15,240,0,0,0,15,240,11,240,0,15,240,0,0,0,15,240,15,224,0,15,240,0,0,0,15,240,31,208,0,15,240,0,0,0,15,240,63,192,0,15,240,0,0,0,15,240,127,128,0,15,240,0,0,0,15,240,255,0,0,15,240,0,0,0,15,243,254,0,0,15,240,0,0,0,15,242,252,0,0,15,240,0,0,0,15,240,180,0,0,15,240,0,0,0,127,252,16,0,0,15,240,0,0,2,255,255,64,0,0,6,144,0,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,38,37,114,40,1,252,1,64,0,0,0,0,0,0,0,0,11,224,0,11,255,255,255,255,255,0,31,252,0,11,255,255,255,255,255,0,7,255,0,11,255,255,255,255,255,0,1,255,192,11,245,85,85,85,85,0,0,127,224,11,240,0,0,0,0,0,0,31,244,11,240,0,0,0,0,0,0,11,224,11,240,0,0,0,0,0,0,3,64,11,240,0,0,0,0,0,0,0,0,11,245,85,85,85,64,0,0,0,0,11,255,255,255,255,248,0,0,0,0,15,255,255,255,255,244,0,0,0,0,15,255,255,255,255,240,0,0,0,0,15,251,240,0,15,240,0,0,0,0,15,243,248,0,31,208,0,63,255,208,15,226,252,0,63,192,0,63,255,208,15,225,253,0,127,128,0,63,255,208,15,208,255,0,255,0,0,21,111,208,31,208,127,194,254,0,0,0,15,208,31,192,47,215,252,0,0,0,15,208,63,192,15,255,244,0,0,0,15,208,63,192,7,255,224,0,0,0,15,208,127,64,3,255,192,0,0,0,15,208,191,0,7,255,208,0,0,0,15,208,255,0,47,255,248,0,0,0,15,209,253,0,255,255,255,64,0,0,15,211,252,27,255,195,255,248,0,0,15,219,244,255,254,0,191,255,128,0,31,242,240,127,244,0,31,255,128,0,191,248,80,47,64,0,1,255,0,2,255,255,0,4,0,0,0,29,0,15,254,255,228,0,0,0,0,0,0,127,248,63,255,234,149,86,170,170,208,63,224,11,255,255,255,255,255,255,192,47,64,1,255,255,255,255,255,255,128,13,0,0,6,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fd8 还 + 216,143,38,38,124,40,1,251,0,240,0,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,0,3,255,0,255,255,255,255,255,255,0,1,255,192,255,255,255,255,255,255,0,0,127,224,255,255,255,255,255,255,0,0,31,248,170,170,171,255,170,170,0,0,11,252,0,0,3,252,0,0,0,0,3,240,0,0,11,248,0,0,0,0,0,128,0,0,15,240,0,0,0,0,0,0,0,0,63,224,0,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,3,255,208,128,0,0,127,255,208,0,15,255,211,240,0,0,127,255,208,0,47,255,223,252,0,0,127,255,208,0,191,255,211,255,0,0,42,191,208,2,255,159,208,255,192,0,0,31,208,11,254,31,208,127,240,0,0,31,208,63,248,31,208,31,252,0,0,31,209,255,240,31,208,7,254,0,0,31,219,255,128,31,208,2,255,128,0,31,211,254,0,31,208,0,191,64,0,31,208,244,0,31,208,0,61,0,0,31,208,80,0,31,208,0,4,0,0,31,208,0,0,31,208,0,0,0,0,31,208,0,0,31,208,0,0,0,0,31,208,0,0,31,208,0,0,0,0,31,208,0,0,31,208,0,0,0,0,31,208,0,0,31,208,0,0,0,0,191,240,0,0,31,208,0,0,0,3,255,253,0,0,31,208,0,0,0,15,255,255,208,0,0,0,0,0,0,63,244,127,254,80,0,0,1,90,224,255,208,15,255,255,255,255,255,255,208,127,128,2,255,255,255,255,255,255,192,47,0,0,31,255,255,255,255,255,192,12,0,0,0,90,170,170,170,85,0,0,0,0,0,0,0,0,0,0,0, + // 0x8fdb 进 + 219,143,36,37,77,40,2,252,2,64,0,0,63,128,11,240,0,15,208,0,0,63,128,11,240,0,47,244,0,0,63,128,11,240,0,11,253,0,0,63,128,11,240,0,2,255,0,0,63,128,11,240,0,0,191,192,0,63,128,11,240,0,0,63,224,170,191,234,175,250,164,0,15,193,255,255,255,255,255,252,0,2,1,255,255,255,255,255,252,0,0,1,255,255,255,255,255,252,0,0,0,0,63,128,11,240,0,0,0,0,0,63,128,11,240,0,0,0,0,0,63,128,11,240,0,0,0,0,0,63,128,11,240,0,255,255,192,0,63,128,11,240,0,255,255,192,0,63,128,11,240,0,255,255,193,170,191,234,175,250,169,85,127,194,255,255,255,255,255,254,0,63,194,255,255,255,255,255,254,0,63,194,255,255,255,255,255,254,0,63,192,0,191,0,11,240,0,0,63,192,0,255,0,11,240,0,0,63,192,1,254,0,11,240,0,0,63,192,3,253,0,11,240,0,0,63,192,7,252,0,11,240,0,0,63,192,15,248,0,11,240,0,0,63,192,47,240,0,11,240,0,0,63,192,191,208,0,11,240,0,0,63,192,127,128,0,11,240,0,1,255,224,31,0,0,11,240,0,11,255,253,4,0,0,1,80,0,63,250,255,208,0,0,0,0,0,255,208,127,255,234,85,170,175,255,255,64,11,255,255,255,255,255,255,125,0,0,191,255,255,255,255,254,56,0,0,6,191,255,255,255,169,0,0,0,0,0,0,0,0,0, + // 0x8fde 连 + 222,143,38,39,134,40,1,251,0,0,0,0,2,144,0,0,0,0,1,240,0,0,3,253,0,0,0,0,7,252,0,0,3,252,0,0,0,0,2,255,0,0,11,248,0,0,0,0,0,255,128,255,255,255,255,255,255,0,0,63,208,255,255,255,255,255,255,0,0,31,240,255,255,255,255,255,255,0,0,11,244,0,127,192,0,0,0,0,0,3,208,0,127,64,0,0,0,0,0,1,0,0,255,1,253,0,0,0,0,0,0,1,254,1,253,0,0,0,0,0,0,3,252,1,253,0,0,0,0,0,0,7,248,1,253,0,0,0,0,0,0,15,240,1,253,0,0,0,63,255,208,63,255,255,255,255,248,0,63,255,208,63,255,255,255,255,248,0,63,255,208,31,255,255,255,255,248,0,21,111,208,14,149,86,254,85,84,0,0,15,208,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,15,208,170,170,170,254,170,170,64,0,15,209,255,255,255,255,255,255,64,0,15,209,255,255,255,255,255,255,64,0,15,209,255,255,255,255,255,255,64,0,15,208,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,191,240,0,0,1,253,0,0,0,3,255,253,0,0,1,253,0,0,0,15,255,255,208,0,1,253,0,0,0,63,244,127,254,80,0,0,5,90,224,191,208,15,255,255,255,255,255,255,208,127,128,2,255,255,255,255,255,255,192,31,0,0,31,255,255,255,255,255,192,9,0,0,0,90,170,170,170,85,0,0,0,0,0,0,0,0,0,0,0, + // 0x8ff7 迷 + 247,143,38,37,114,40,1,252,1,64,0,0,0,15,224,0,0,0,7,224,0,6,0,15,224,0,224,0,31,252,0,63,128,15,224,2,253,0,11,255,0,47,192,15,224,3,252,0,1,255,192,15,224,15,224,7,244,0,0,63,240,11,240,15,224,15,240,0,0,15,248,3,248,15,224,31,208,0,0,7,224,3,252,15,224,63,192,0,0,1,128,1,253,15,224,127,64,0,0,0,0,0,244,15,224,126,0,0,0,0,0,0,64,15,224,0,0,0,0,0,0,0,0,15,224,0,0,0,0,0,2,255,255,255,255,255,255,128,0,0,2,255,255,255,255,255,255,128,0,0,2,255,255,255,255,255,255,128,63,255,240,85,86,255,255,85,85,0,63,255,240,0,2,255,255,64,0,0,63,255,240,0,3,255,255,192,0,0,21,95,240,0,15,255,255,224,0,0,0,15,240,0,47,223,231,244,0,0,0,15,240,0,127,143,227,253,0,0,0,15,240,1,255,15,224,255,0,0,0,15,240,7,253,15,224,127,208,0,0,15,240,31,248,15,224,47,244,0,0,15,240,191,240,15,224,15,254,0,0,15,243,255,192,15,224,3,255,192,0,15,242,255,0,15,224,0,255,64,0,15,240,184,0,15,224,0,45,0,0,15,240,32,0,15,224,0,4,0,0,127,252,0,0,15,224,0,0,0,2,255,255,64,0,15,224,0,0,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,38,37,114,40,1,252,0,64,0,0,0,0,0,0,0,0,3,224,0,3,255,255,255,255,208,0,15,252,0,3,255,255,255,255,208,0,7,255,64,3,255,255,255,255,208,0,0,255,208,3,248,0,0,15,208,0,0,63,244,3,248,0,0,15,208,0,0,15,252,3,248,0,0,15,208,0,0,3,240,3,255,255,255,255,208,0,0,0,128,3,255,255,255,255,208,0,0,0,0,3,255,255,255,255,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,255,255,255,255,208,0,0,0,0,3,255,255,255,255,208,0,63,255,240,3,255,255,255,255,224,0,63,255,240,3,248,7,244,0,120,0,63,255,240,3,248,3,248,1,255,0,21,95,240,3,248,1,252,11,255,0,0,15,240,3,248,0,254,63,244,0,0,15,240,3,248,0,191,255,192,0,0,15,240,3,248,0,63,253,0,0,0,15,240,3,248,0,47,240,0,0,0,15,240,3,248,0,15,248,0,0,0,15,240,3,248,27,231,255,0,0,0,15,240,3,255,255,241,255,208,0,0,15,240,111,255,255,240,127,253,0,0,15,240,191,255,254,64,31,255,192,0,15,240,127,254,64,0,7,255,0,0,127,252,62,64,0,0,0,125,0,2,255,255,64,0,0,0,0,4,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9009 选 + 9,144,37,39,134,40,2,251,0,0,0,0,0,10,144,0,0,0,0,0,0,0,0,15,224,0,0,0,15,0,0,3,248,15,224,0,0,0,127,208,0,3,248,15,224,0,0,0,63,244,0,7,244,15,224,0,0,0,15,253,0,15,240,31,224,0,0,0,3,255,0,31,255,255,255,255,244,0,0,255,192,63,255,255,255,255,244,0,0,63,192,127,255,255,255,255,244,0,0,30,0,255,0,15,224,0,0,0,0,0,3,253,0,15,224,0,0,0,0,0,1,252,0,15,224,0,0,0,0,0,0,32,0,15,224,0,0,0,0,0,0,0,0,15,224,0,0,0,0,0,3,255,255,255,255,255,255,0,0,0,3,255,255,255,255,255,255,0,255,255,67,255,255,255,255,255,255,0,255,255,64,0,47,224,127,128,0,0,255,255,64,0,47,192,63,128,0,0,85,191,64,0,63,192,63,128,0,0,0,63,64,0,63,192,63,128,0,0,0,63,64,0,127,128,63,128,0,0,0,63,64,0,191,64,63,128,0,0,0,63,64,0,255,0,63,128,52,0,0,63,64,3,254,0,63,128,63,64,0,63,64,11,252,0,63,128,63,64,0,63,64,47,244,0,63,128,63,0,0,63,65,255,224,0,63,213,191,0,0,63,79,255,128,0,63,255,254,0,0,63,67,253,0,0,47,255,253,0,0,63,225,224,0,0,11,255,244,0,0,255,253,0,0,0,0,0,0,0,11,255,255,128,0,0,0,0,0,0,47,253,127,254,64,0,0,5,90,64,255,224,11,255,255,255,255,255,255,0,191,128,1,255,255,255,255,255,255,0,62,0,0,27,255,255,255,255,254,0,8,0,0,0,5,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,38,38,124,40,1,252,0,0,0,0,0,11,224,0,0,0,1,128,0,0,0,15,224,0,0,0,11,240,0,0,0,15,224,0,0,0,31,253,0,0,0,15,224,0,0,0,7,255,64,255,255,255,255,255,255,128,0,255,208,255,255,255,255,255,255,128,0,63,244,255,255,255,255,255,255,128,0,15,248,0,0,15,240,0,0,0,0,3,208,0,0,15,224,0,0,0,0,1,64,0,0,15,224,0,0,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,128,15,224,2,252,0,0,0,0,47,128,15,224,2,252,0,0,0,0,47,128,15,224,2,252,0,63,255,240,47,128,15,224,2,252,0,63,255,240,47,128,15,224,2,252,0,63,255,240,47,255,255,255,255,252,0,21,95,240,47,255,255,255,255,252,0,0,15,240,47,255,255,255,255,252,0,0,15,240,0,0,255,254,0,0,0,0,15,240,0,3,255,255,128,0,0,0,15,240,0,15,255,255,224,0,0,0,15,240,0,63,223,231,252,0,0,0,15,240,1,255,79,225,255,64,0,0,15,240,11,253,15,224,127,240,0,0,15,240,127,244,15,224,31,254,0,0,15,242,255,208,15,224,7,255,128,0,15,240,255,0,15,224,0,254,0,0,127,252,52,0,15,224,0,28,0,2,255,255,64,0,15,224,0,0,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,38,38,124,40,1,252,0,0,21,64,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,1,85,85,88,0,0,0,47,192,0,7,255,255,255,128,0,0,47,192,0,7,255,255,255,208,31,255,255,255,255,135,255,255,255,192,31,255,255,255,255,135,244,0,191,64,31,255,255,255,255,135,244,0,255,0,0,4,0,1,64,7,244,1,254,0,0,189,0,3,244,7,244,2,252,0,0,191,0,7,240,7,244,3,252,0,0,63,0,15,224,7,244,7,244,0,0,63,64,15,208,7,244,15,240,0,0,47,128,31,192,7,244,15,224,0,0,47,128,47,64,7,244,47,192,0,21,105,85,86,85,71,244,63,128,0,127,255,255,255,255,199,244,127,128,0,127,255,255,255,255,199,244,63,208,0,127,255,255,255,255,199,244,15,240,0,0,0,0,0,0,7,244,3,252,0,0,0,0,0,0,7,244,1,253,0,0,0,0,0,0,7,244,0,255,0,0,85,85,85,84,7,244,0,127,0,3,255,255,255,252,7,244,0,63,128,3,255,255,255,252,7,244,0,63,128,3,255,255,255,252,7,244,0,63,192,3,248,0,1,252,7,244,0,63,192,3,248,0,1,252,7,244,0,63,128,3,248,0,1,252,7,244,0,255,128,3,248,0,1,252,7,244,255,255,64,3,248,0,1,252,7,244,191,255,0,3,248,0,1,252,7,244,127,252,0,3,255,255,255,252,7,244,42,144,0,3,255,255,255,252,7,244,0,0,0,3,255,255,255,252,7,244,0,0,0,3,252,0,2,252,7,244,0,0,0,3,248,0,1,252,7,244,0,0,0,2,164,0,0,84,7,240,0,0,0, + // 0x914d 配 + 77,145,37,37,114,40,2,252,21,85,85,85,80,0,0,0,0,0,255,255,255,255,240,255,255,255,252,0,255,255,255,255,240,255,255,255,252,0,255,255,255,255,240,255,255,255,252,0,0,15,75,192,0,170,170,171,252,0,0,15,75,192,0,0,0,1,252,0,0,15,75,192,0,0,0,1,252,0,0,15,75,192,0,0,0,1,252,0,63,255,255,255,208,0,0,1,252,0,63,255,255,255,208,0,0,1,252,0,63,255,255,255,208,0,0,1,252,0,63,11,79,15,208,0,0,1,252,0,63,11,15,11,208,0,0,1,252,0,63,11,15,11,208,170,170,171,252,0,63,11,15,11,208,255,255,255,252,0,63,11,15,11,208,255,255,255,252,0,63,15,15,11,208,255,255,255,252,0,63,15,15,11,208,254,0,1,252,0,63,30,15,11,208,254,0,1,252,0,63,60,15,255,208,254,0,1,252,0,63,184,7,255,208,254,0,0,0,0,63,112,0,11,208,254,0,0,0,0,63,0,0,11,208,254,0,0,0,0,63,0,0,11,208,254,0,0,0,0,63,170,170,175,208,254,0,0,0,0,63,255,255,255,208,254,0,0,0,0,63,255,255,255,208,254,0,0,16,0,63,0,0,11,208,254,0,0,62,0,63,0,0,11,208,254,0,0,63,128,63,0,0,11,208,254,0,0,63,64,63,0,0,11,208,254,0,0,63,64,63,255,255,255,208,254,0,0,127,0,63,255,255,255,208,255,0,0,255,0,63,255,255,255,208,255,255,255,254,0,63,0,0,11,208,127,255,255,253,0,63,0,0,11,208,47,255,255,248,0,42,0,0,0,0,1,85,85,64,0, + // 0x91ca 释 + 202,145,38,37,114,40,1,252,0,0,5,189,0,0,0,0,0,0,1,107,255,255,47,255,255,255,254,0,63,255,255,254,47,255,255,255,255,128,63,255,253,0,47,255,255,255,255,0,26,151,248,0,6,253,85,86,254,0,0,3,248,0,0,253,0,7,252,0,11,3,248,31,64,127,0,15,240,0,31,131,248,63,64,63,192,63,208,0,15,195,248,63,0,15,241,255,64,0,7,227,248,189,0,7,255,253,0,0,3,243,248,252,0,2,255,248,0,0,2,243,249,240,0,1,255,240,0,0,0,3,248,0,0,31,255,253,0,0,0,3,248,0,1,255,255,255,208,0,63,255,255,254,111,255,208,255,254,64,63,255,255,255,255,253,0,31,255,224,63,255,255,254,255,208,0,2,255,192,0,11,252,0,56,0,127,64,27,64,0,15,255,0,0,0,127,64,0,0,0,47,255,192,0,0,127,64,0,0,0,63,255,240,15,255,255,255,252,0,0,191,251,252,15,255,255,255,252,0,1,255,249,255,15,255,255,255,252,0,3,247,248,127,5,85,127,149,84,0,11,243,248,44,0,0,127,64,0,0,31,211,248,4,0,0,127,64,0,0,63,195,248,0,0,0,127,64,0,0,127,67,248,0,255,255,255,255,255,192,63,3,248,0,255,255,255,255,255,192,28,3,248,0,255,255,255,255,255,192,4,3,248,0,85,85,191,149,85,64,0,3,248,0,0,0,127,64,0,0,0,3,248,0,0,0,127,64,0,0,0,3,248,0,0,0,127,64,0,0,0,3,248,0,0,0,127,64,0,0,0,3,248,0,0,0,127,64,0,0,0,2,248,0,0,0,127,64,0,0, + // 0x91cd 重 + 205,145,36,37,77,40,2,253,0,0,0,0,0,0,21,180,0,0,0,0,85,170,255,255,252,0,1,255,255,255,255,255,255,254,0,0,255,255,255,255,255,250,80,0,0,255,255,255,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,106,170,170,255,170,170,169,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,85,85,255,85,85,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,170,170,255,170,170,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x91cf 量 + 207,145,36,36,68,40,2,253,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,63,128,0,0,0,3,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,3,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,1,170,170,170,255,170,170,170,64,2,255,255,255,255,255,255,255,128,2,255,255,255,255,255,255,255,128,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x9488 针 + 136,148,37,38,124,40,1,252,0,9,0,0,0,0,42,64,0,0,0,15,208,0,0,0,63,128,0,0,0,47,192,0,0,0,63,128,0,0,0,63,128,0,0,0,63,128,0,0,0,191,149,85,0,0,63,128,0,0,1,255,255,255,0,0,63,128,0,0,3,255,255,255,0,0,63,128,0,0,15,255,255,255,0,0,63,128,0,0,47,240,0,0,0,0,63,128,0,0,127,192,0,0,0,0,63,128,0,0,127,128,0,0,0,0,63,128,0,0,63,0,0,0,0,0,63,128,0,0,30,255,255,252,0,0,63,128,0,0,2,255,255,252,255,255,255,255,255,192,2,255,255,252,255,255,255,255,255,192,0,3,248,0,255,255,255,255,255,192,0,3,248,0,255,255,255,255,255,192,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,31,255,255,254,0,0,63,128,0,0,31,255,255,254,0,0,63,128,0,0,31,255,255,254,0,0,63,128,0,0,5,87,253,84,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,0,0,0,63,128,0,0,0,3,248,7,64,0,63,128,0,0,0,3,248,127,64,0,63,128,0,0,0,3,255,255,128,0,63,128,0,0,0,3,255,255,0,0,63,128,0,0,0,15,255,244,0,0,63,128,0,0,0,47,255,64,0,0,63,128,0,0,0,15,244,0,0,0,63,128,0,0,0,11,128,0,0,0,63,128,0,0,0,1,0,0,0,0,42,128,0,0, + // 0x94ae 钮 + 174,148,38,38,124,40,1,252,0,36,0,0,0,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,191,0,0,191,255,255,255,254,0,0,255,0,0,191,255,255,255,254,0,1,253,0,0,191,255,255,255,254,0,2,255,255,253,85,91,249,85,253,0,3,255,255,253,0,7,244,0,253,0,11,255,255,253,0,7,240,0,253,0,31,208,0,0,0,11,240,1,253,0,63,192,0,0,0,11,240,1,252,0,191,64,0,0,0,15,240,1,252,0,127,0,0,0,0,15,240,2,252,0,63,255,255,244,0,15,224,2,252,0,23,255,255,244,0,15,224,2,252,0,3,255,255,244,0,15,208,2,252,0,1,91,245,80,0,15,208,3,252,0,0,7,240,0,127,255,255,255,248,0,0,7,240,0,127,255,255,255,248,0,0,7,240,0,127,255,255,255,248,0,0,7,240,0,106,191,234,171,248,0,63,255,255,253,0,63,192,3,244,0,63,255,255,253,0,63,128,3,244,0,63,255,255,253,0,63,128,7,244,0,21,91,245,84,0,63,64,7,240,0,0,7,240,0,0,127,64,11,240,0,0,7,240,0,0,127,0,11,240,0,0,7,240,0,0,191,0,11,240,0,0,7,240,0,0,191,0,15,240,0,0,7,240,4,0,255,0,15,224,0,0,7,240,184,0,254,0,15,224,0,0,7,247,252,0,253,0,15,224,0,0,7,255,252,1,253,0,15,208,0,0,11,255,224,1,252,0,31,208,0,0,15,255,95,255,255,255,255,255,208,0,63,248,31,255,255,255,255,255,208,0,127,192,31,255,255,255,255,255,208,0,30,0,26,170,170,170,170,170,128,0,4,0,0,0,0,0,0,0,0, + // 0x9519 错 + 25,149,37,38,124,40,1,252,0,8,0,0,0,190,0,127,0,0,0,31,192,0,0,190,0,127,0,0,0,63,128,0,0,190,0,127,0,0,0,127,64,0,0,190,0,127,0,0,0,255,0,0,0,190,0,127,0,0,1,255,255,252,127,255,255,255,255,64,3,255,255,252,127,255,255,255,255,64,11,255,255,252,127,255,255,255,255,64,31,250,170,168,0,191,0,191,0,0,127,192,0,0,0,190,0,127,0,0,127,64,0,0,0,190,0,127,0,0,47,0,0,0,0,190,0,127,0,0,30,255,255,248,0,190,0,127,0,0,2,255,255,248,85,255,85,191,85,64,2,255,255,249,255,255,255,255,255,192,0,91,245,81,255,255,255,255,255,192,0,3,240,1,255,255,255,255,255,192,0,3,240,0,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,0,3,240,0,0,0,0,0,0,0,31,255,255,253,15,255,255,255,248,0,31,255,255,253,15,255,255,255,248,0,31,255,255,253,15,255,255,255,248,0,5,87,245,84,15,208,0,2,248,0,0,3,240,0,15,208,0,2,248,0,0,3,240,0,15,208,0,2,248,0,0,3,240,0,15,255,255,255,248,0,0,3,240,0,15,255,255,255,248,0,0,3,240,0,15,255,255,255,248,0,0,3,240,40,15,208,0,2,248,0,0,3,246,252,15,208,0,2,248,0,0,7,255,252,15,208,0,2,248,0,0,11,255,248,15,208,0,2,248,0,0,31,255,128,15,255,255,255,248,0,0,63,252,0,15,255,255,255,248,0,0,31,208,0,15,255,255,255,248,0,0,14,0,0,15,208,0,2,248,0,0,0,0,0,10,144,0,1,84,0, + // 0x955c 镜 + 92,149,38,38,124,40,1,252,0,4,0,0,0,0,109,0,0,0,0,47,192,0,0,0,255,0,0,0,0,63,192,0,0,0,127,64,0,0,0,127,64,0,63,255,255,255,255,0,0,255,85,80,63,255,255,255,255,0,1,255,255,248,63,255,255,255,255,0,3,255,255,248,0,108,0,10,64,0,11,255,255,248,0,253,0,47,192,0,31,240,0,0,0,191,0,63,128,0,127,192,0,0,0,63,0,127,0,0,127,128,0,1,255,255,255,255,255,192,63,0,0,1,255,255,255,255,255,192,31,255,255,241,255,255,255,255,255,192,2,255,255,240,0,0,0,0,0,0,2,255,255,240,0,0,0,0,0,0,0,91,245,80,47,255,255,255,253,0,0,11,240,0,47,255,255,255,253,0,0,11,240,0,47,213,85,85,253,0,0,11,240,0,47,128,0,0,253,0,0,11,240,0,47,128,0,0,253,0,47,255,255,252,47,255,255,255,253,0,47,255,255,252,47,255,255,255,253,0,47,255,255,252,47,213,85,85,253,0,5,91,245,84,47,128,0,0,253,0,0,11,240,0,47,213,85,85,253,0,0,11,240,0,47,255,255,255,253,0,0,11,240,0,47,255,255,255,253,0,0,11,240,0,0,63,65,252,0,0,0,11,240,24,0,127,1,252,0,0,0,11,241,252,0,127,1,252,0,0,0,11,251,252,0,255,1,252,0,0,0,15,255,252,1,254,1,252,7,208,0,31,255,208,7,252,1,252,7,224,0,63,254,0,47,244,1,252,11,208,0,127,244,11,255,224,1,255,191,192,0,63,128,15,255,64,0,255,255,192,0,29,0,7,248,0,0,127,255,0,0,0,0,2,64,0,0,0,0,0, + // 0x957f 长 + 127,149,36,38,86,40,2,252,0,0,169,0,0,0,0,0,0,0,1,253,0,0,0,0,208,0,0,1,253,0,0,0,3,253,0,0,1,253,0,0,0,15,253,0,0,1,253,0,0,0,127,244,0,0,1,253,0,0,2,255,208,0,0,1,253,0,0,15,255,64,0,0,1,253,0,0,191,252,0,0,0,1,253,0,7,255,224,0,0,0,1,253,0,127,255,64,0,0,0,1,253,7,255,252,0,0,0,0,1,253,11,255,208,0,0,0,0,1,253,2,254,0,0,0,0,0,1,253,0,160,0,0,0,0,0,1,253,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,106,171,255,170,191,234,170,170,169,0,1,253,0,31,208,0,0,0,0,1,253,0,15,240,0,0,0,0,1,253,0,7,248,0,0,0,0,1,253,0,3,252,0,0,0,0,1,253,0,1,255,0,0,0,0,1,253,0,0,255,128,0,0,0,1,253,0,0,127,224,0,0,0,1,253,0,0,47,248,0,0,0,1,253,0,0,15,254,0,0,0,1,253,0,0,3,255,208,0,0,1,253,0,27,128,255,248,0,0,1,253,27,255,128,63,255,128,0,2,255,255,255,192,11,255,253,0,7,255,255,255,128,1,255,255,0,15,255,255,144,0,0,47,253,0,7,255,144,0,0,0,2,248,0,3,228,0,0,0,0,0,16,0,1,0,0,0,0,0,0,0, + // 0x95ed 闭 + 237,149,34,37,77,40,3,252,7,128,0,0,0,0,0,0,0,47,224,1,85,85,85,85,85,80,15,248,3,255,255,255,255,255,224,7,253,3,255,255,255,255,255,224,1,255,3,255,255,255,255,255,224,0,191,128,0,0,0,0,15,224,0,62,0,0,0,0,0,15,224,0,4,0,0,2,252,0,15,224,21,0,0,0,3,252,0,15,224,191,0,0,0,3,252,0,15,224,191,0,0,0,3,252,0,15,224,191,0,0,0,3,252,0,15,224,191,2,170,170,171,254,170,15,224,191,3,255,255,255,255,255,15,224,191,3,255,255,255,255,255,15,224,191,3,255,255,255,255,255,15,224,191,0,0,0,127,252,0,15,224,191,0,0,0,255,252,0,15,224,191,0,0,3,255,252,0,15,224,191,0,0,15,255,252,0,15,224,191,0,0,63,243,252,0,15,224,191,0,0,255,195,252,0,15,224,191,0,3,255,67,252,0,15,224,191,0,31,253,3,252,0,15,224,191,0,191,244,3,252,0,15,224,191,7,255,192,3,252,0,15,224,191,47,254,0,3,252,0,15,224,191,15,244,0,3,252,0,15,224,191,3,128,0,3,252,0,15,224,191,0,0,26,171,252,0,15,224,191,0,0,31,255,248,0,15,224,191,0,0,15,255,244,0,15,224,191,0,0,11,254,128,0,15,224,191,0,0,0,0,0,47,255,224,191,0,0,0,0,0,31,255,208,191,0,0,0,0,0,15,255,64,106,0,0,0,0,0,5,80,0, + // 0x95f2 闲 + 242,149,34,37,77,40,3,252,3,208,0,0,0,0,0,0,0,15,240,2,255,255,255,255,255,224,7,252,2,255,255,255,255,255,224,2,255,2,255,255,255,255,255,224,0,191,193,85,85,85,85,95,224,0,63,224,0,0,0,0,15,224,0,15,240,0,0,0,0,15,224,0,7,208,0,0,0,0,15,224,170,2,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,7,255,255,255,255,255,15,224,254,7,255,255,255,255,255,15,224,254,7,255,255,255,255,255,15,224,254,0,0,31,255,64,0,15,224,254,0,0,63,255,192,0,15,224,254,0,0,127,255,240,0,15,224,254,0,0,255,255,252,0,15,224,254,0,2,255,250,254,0,15,224,254,0,7,246,248,255,128,15,224,254,0,31,226,248,63,208,15,224,254,0,127,194,248,15,240,15,224,254,1,255,66,248,7,252,15,224,254,7,254,2,248,2,254,15,224,254,31,248,2,248,0,252,15,224,254,11,224,2,248,0,112,15,224,254,3,128,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,2,248,0,0,15,224,254,0,0,1,84,2,255,255,224,254,0,0,0,0,1,255,255,192,254,0,0,0,0,0,255,255,64,254,0,0,0,0,0,106,148,0, + // 0x95f4 间 + 244,149,34,37,77,40,3,252,7,128,0,0,0,0,0,0,0,47,224,1,85,85,85,85,85,80,15,248,3,255,255,255,255,255,224,7,253,3,255,255,255,255,255,224,1,255,3,255,255,255,255,255,224,0,191,128,0,0,0,0,15,224,0,62,0,0,0,0,0,15,224,0,20,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,191,64,0,0,0,0,0,15,224,191,64,0,0,0,0,0,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,128,0,47,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,47,255,255,255,192,15,224,191,64,0,0,0,0,0,15,224,191,64,0,0,0,0,0,15,224,191,64,0,0,0,0,0,15,224,191,64,0,0,0,0,15,255,224,191,64,0,0,0,0,11,255,208,191,64,0,0,0,0,7,255,64,106,0,0,0,0,0,1,64,0, + // 0x9608 阈 + 8,150,34,38,86,40,3,252,0,144,0,0,0,0,0,0,0,3,240,0,85,85,85,85,85,64,7,252,2,255,255,255,255,255,208,2,255,2,255,255,255,255,255,208,0,255,130,255,255,255,255,255,208,0,63,208,0,0,0,0,15,208,0,31,240,0,0,0,0,15,208,0,11,244,0,31,130,0,15,208,0,3,192,0,31,143,192,15,208,191,0,0,0,31,139,240,15,208,191,0,0,0,31,130,244,15,208,191,0,0,0,15,128,128,15,208,191,15,255,255,255,255,255,15,208,191,15,255,255,255,255,255,15,208,191,15,255,255,255,255,255,15,208,191,0,0,0,15,192,0,15,208,191,0,0,0,15,192,144,15,208,191,3,255,255,15,192,252,15,208,191,3,255,255,11,193,248,15,208,191,3,224,31,11,210,240,15,208,191,3,224,31,7,211,240,15,208,191,3,224,31,7,231,224,15,208,191,3,224,31,3,255,192,15,208,191,3,255,255,3,255,128,15,208,191,3,255,255,3,255,0,15,208,191,0,0,0,2,254,0,15,208,191,0,0,0,1,253,11,15,208,191,0,0,107,194,252,11,143,208,191,6,255,255,199,254,15,143,208,191,15,255,255,223,255,79,79,208,191,15,255,144,127,175,255,15,208,191,10,64,1,254,15,254,15,208,191,0,0,3,248,3,252,15,208,191,0,0,0,224,0,80,31,208,191,0,0,0,0,1,255,255,208,191,0,0,0,0,0,255,255,192,191,0,0,0,0,0,191,254,0,106,0,0,0,0,0,20,0,0, + // 0x964d 降 + 77,150,36,38,86,40,3,252,0,0,0,0,0,148,0,0,0,0,0,0,0,1,254,0,0,0,191,255,248,0,3,252,0,0,0,191,255,255,0,7,248,0,0,0,191,255,254,0,15,255,255,254,0,190,86,253,0,63,255,255,255,64,190,1,252,0,255,255,255,255,0,190,3,248,3,255,64,1,253,0,190,3,244,15,255,192,3,252,0,190,7,240,127,255,240,15,244,0,190,11,224,255,135,248,63,208,0,190,15,208,61,1,255,255,128,0,190,31,192,4,0,191,254,0,0,190,47,128,0,0,63,252,0,0,190,63,64,0,1,255,255,128,0,190,31,192,0,31,255,255,248,0,190,11,240,6,255,248,47,255,228,190,3,244,191,255,192,7,255,253,190,2,252,191,253,0,254,111,248,190,0,252,63,128,0,254,1,176,190,0,253,20,0,0,254,0,0,190,0,253,31,255,255,255,255,224,190,0,254,31,255,255,255,255,224,190,0,253,31,255,255,255,255,224,190,1,253,0,254,0,254,0,0,190,191,252,0,254,0,254,0,0,190,63,248,0,254,0,254,0,0,190,63,208,0,254,0,254,0,0,190,0,0,0,254,0,254,0,0,190,0,1,255,255,255,255,255,252,190,0,1,255,255,255,255,255,252,190,0,1,255,255,255,255,255,252,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,189,0,0,0,0,0,254,0,0, + // 0x9650 限 + 80,150,35,36,68,40,3,252,191,255,254,7,255,255,255,255,192,191,255,255,199,255,255,255,255,192,191,255,255,135,255,255,255,255,192,191,85,191,7,244,0,0,63,192,191,0,191,7,244,0,0,63,192,191,0,254,7,244,0,0,63,192,191,1,252,7,244,0,0,63,192,191,2,252,7,244,0,0,63,192,191,3,244,7,255,255,255,255,192,191,3,240,7,255,255,255,255,192,191,11,224,7,255,255,255,255,192,191,15,208,7,244,0,0,63,192,191,31,192,7,244,0,0,63,192,191,15,240,7,244,0,0,63,192,191,3,248,7,244,0,0,63,192,191,1,252,7,255,255,255,255,192,191,0,254,7,255,255,255,255,192,191,0,127,7,255,255,255,255,192,191,0,63,7,244,15,208,0,0,191,0,63,71,244,11,224,3,64,191,0,63,71,244,7,240,15,224,191,0,63,71,244,3,244,47,240,191,0,127,71,244,2,248,255,192,191,21,255,7,244,1,255,255,0,191,63,255,7,244,0,255,248,0,191,47,253,7,244,0,191,208,0,191,31,224,7,244,0,63,192,0,191,0,0,7,244,0,47,224,0,191,0,0,7,244,0,15,248,0,191,0,0,7,245,111,199,253,0,191,0,0,11,255,255,195,255,64,191,0,6,255,255,255,208,255,224,191,0,7,255,255,249,0,63,252,191,0,3,255,249,0,0,15,248,191,0,2,249,0,0,0,2,240,190,0,0,0,0,0,0,0,64, + // 0x9664 除 + 100,150,36,38,86,40,3,252,0,0,0,0,0,42,64,0,0,0,0,0,0,0,191,208,0,0,191,255,248,0,1,255,240,0,0,191,255,255,0,3,255,252,0,0,191,255,254,0,15,246,254,0,0,190,86,253,0,47,224,255,128,0,190,1,252,0,191,192,63,224,0,190,3,248,2,255,0,15,248,0,190,3,244,11,252,0,7,255,0,190,7,240,47,240,0,0,255,208,190,11,225,255,192,0,0,63,248,190,15,219,255,0,0,0,15,254,190,31,195,255,255,255,255,255,252,190,47,129,226,255,255,255,248,116,190,63,128,66,255,255,255,248,0,190,31,192,0,0,63,128,0,0,190,11,240,0,0,63,128,0,0,190,3,244,0,0,63,128,0,0,190,2,252,0,0,63,128,0,0,190,0,252,0,0,63,192,0,0,190,0,253,63,255,255,255,255,224,190,0,253,63,255,255,255,255,224,190,0,254,63,255,255,255,255,224,190,0,253,0,0,63,128,0,0,190,1,253,0,0,63,128,0,0,190,191,252,7,224,63,129,244,0,190,63,248,15,240,63,130,252,0,190,63,208,15,208,63,128,255,0,190,0,0,63,192,63,128,127,64,190,0,0,127,64,63,128,63,192,190,0,0,255,0,63,128,31,224,190,0,2,253,0,63,128,11,240,190,0,7,252,0,63,128,3,248,190,0,15,240,0,63,128,3,252,190,0,3,208,21,127,128,1,224,190,0,0,64,63,255,128,0,0,190,0,0,0,31,255,0,0,0,190,0,0,0,15,248,0,0,0, + // 0x9669 险 + 105,150,36,38,86,40,3,252,0,0,0,0,0,14,0,0,0,0,0,0,0,0,47,192,0,0,191,255,248,0,0,127,192,0,0,191,255,255,0,0,255,208,0,0,191,255,254,0,2,255,244,0,0,190,86,253,0,7,255,253,0,0,190,1,252,0,15,241,255,64,0,190,3,248,0,63,208,127,208,0,190,3,244,0,255,128,47,244,0,190,7,240,2,255,0,11,254,0,190,11,224,11,252,0,2,255,128,190,15,208,63,240,0,0,191,244,190,31,193,255,208,0,0,47,254,190,47,135,255,255,255,255,231,254,190,47,131,252,255,255,255,224,252,190,15,209,240,255,255,255,224,40,190,7,240,64,0,0,0,0,0,190,3,248,0,0,0,0,0,0,190,1,252,0,0,0,0,0,0,190,0,252,0,64,47,64,11,208,190,0,253,15,192,31,128,15,224,190,0,190,15,192,31,128,31,192,190,0,190,11,224,15,192,47,128,190,0,254,7,240,15,192,63,64,190,1,253,3,240,11,208,127,0,190,127,252,2,244,11,208,253,0,190,63,248,2,248,7,224,252,0,190,63,224,1,252,7,242,248,0,190,0,0,0,252,2,67,240,0,190,0,0,0,224,0,7,224,0,190,0,0,0,0,0,15,192,0,190,0,0,0,0,0,31,128,0,190,0,0,85,85,85,127,85,84,190,0,0,255,255,255,255,255,252,190,0,0,255,255,255,255,255,252,190,0,0,255,255,255,255,255,252,190,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0, + // 0x96f6 零 + 246,150,37,36,104,40,2,252,2,255,255,255,255,255,255,255,64,0,2,255,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,255,64,0,0,0,0,0,254,0,0,0,0,0,21,85,85,85,255,85,85,85,84,0,63,255,255,255,255,255,255,255,252,0,63,255,255,255,255,255,255,255,252,0,63,64,0,0,254,0,0,1,252,0,63,64,0,0,254,0,0,1,252,0,63,79,255,244,254,47,255,241,252,0,63,79,255,244,254,47,255,241,252,0,63,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,0,0,0,0,63,255,244,84,47,255,252,0,0,0,63,255,251,255,111,255,252,0,0,0,0,0,31,255,224,0,0,0,0,0,0,0,191,255,253,0,0,0,0,0,0,7,255,131,255,208,0,0,0,0,0,127,253,0,191,253,0,0,0,0,11,255,240,0,15,255,228,0,0,1,255,255,234,170,171,255,255,144,0,191,255,231,255,255,255,219,255,255,64,255,253,3,255,255,255,208,127,255,0,127,144,0,0,0,0,0,1,253,0,36,0,0,0,0,0,0,0,4,0,0,255,255,255,255,255,255,248,0,0,0,255,255,255,255,255,255,248,0,0,0,106,170,191,234,170,171,248,0,0,0,0,0,31,192,0,3,248,0,0,0,0,0,31,192,0,3,248,0,0,0,0,0,31,192,0,3,248,0,0,0,0,0,31,192,11,255,244,0,0,0,0,0,31,192,7,255,240,0,0,0,0,0,31,192,3,254,64,0,0,0,0,0,31,192,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0, + // 0x9700 需 + 0,151,36,36,68,40,2,252,2,255,255,255,255,255,255,255,64,2,255,255,255,255,255,255,255,64,2,255,255,255,255,255,255,255,64,0,0,0,0,254,0,0,0,0,42,170,170,170,255,170,170,170,168,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,64,0,0,254,0,0,1,252,63,64,0,0,254,0,0,1,252,63,79,255,244,254,47,255,241,252,63,79,255,244,254,47,255,241,252,63,69,85,80,254,5,85,81,252,21,0,0,0,254,0,0,0,84,0,21,85,80,254,5,85,84,0,0,63,255,244,254,47,255,252,0,0,63,255,244,254,47,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,1,253,0,0,0,0,0,0,0,2,252,0,0,0,0,1,255,255,255,255,255,255,255,208,1,255,255,255,255,255,255,255,208,1,255,255,255,255,255,255,255,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,64,31,208,1,252,0,254,0,63,79,255,192,1,252,0,254,0,63,71,255,192,1,252,0,169,0,42,3,254,0, + // 0x9752 青 + 82,151,36,39,95,40,2,251,0,0,0,0,170,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,191,255,255,255,255,255,254,0,0,191,255,255,255,255,255,254,0,0,106,170,170,255,170,170,170,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,250,170,170,170,171,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,171,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,127,255,244,0,0,15,224,0,0,63,255,240,0,0,15,224,0,0,47,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x975e 非 + 94,151,38,39,134,40,1,251,0,0,0,170,0,10,144,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,15,255,255,255,0,31,255,255,255,128,15,255,255,255,0,31,255,255,255,128,15,255,255,255,0,31,255,255,255,128,5,85,85,255,0,31,229,85,85,64,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,7,255,255,255,0,31,255,255,254,0,7,255,255,255,0,31,255,255,254,0,7,255,255,255,0,31,255,255,254,0,1,85,85,255,0,31,229,85,85,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,254,0,31,208,0,0,0,0,0,0,254,84,31,208,0,0,0,0,0,6,255,252,31,208,0,0,0,0,107,255,255,252,31,229,85,85,64,127,255,255,255,252,31,255,255,255,208,63,255,255,253,0,31,255,255,255,208,63,255,159,244,0,31,255,255,255,208,41,64,31,240,0,31,208,0,0,0,0,0,63,208,0,31,208,0,0,0,0,0,191,192,0,31,208,0,0,0,0,2,255,0,0,31,208,0,0,0,0,11,254,0,0,31,208,0,0,0,0,63,248,0,0,31,208,0,0,0,2,255,224,0,0,31,208,0,0,0,15,255,128,0,0,31,208,0,0,0,3,253,0,0,0,31,208,0,0,0,0,224,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9760 靠 + 96,151,36,39,95,40,2,251,0,2,80,0,254,0,0,0,0,0,11,240,0,254,0,0,0,0,0,31,245,85,255,85,85,85,0,0,63,255,255,255,255,255,255,64,0,191,255,255,255,255,255,255,64,2,254,0,0,254,0,0,0,0,3,252,0,0,254,0,0,0,0,42,254,170,170,255,170,170,170,168,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,0,0,63,255,255,255,255,255,255,0,0,63,149,85,85,85,85,255,0,0,63,64,0,0,0,0,255,0,0,63,64,0,0,0,0,255,0,0,63,255,255,255,255,255,255,0,0,63,255,255,255,255,255,255,0,0,21,86,253,85,191,149,85,0,0,0,1,252,0,63,64,0,0,63,255,255,252,0,63,255,255,252,63,255,255,252,0,63,255,255,252,21,85,86,252,0,63,149,85,84,0,0,1,252,0,63,64,0,0,5,85,86,252,0,63,149,85,80,15,255,255,252,0,63,255,255,244,15,255,255,252,0,63,255,255,244,0,0,2,252,0,63,64,0,0,0,0,6,252,0,63,64,0,0,255,255,255,248,0,63,255,255,255,255,255,255,244,0,63,255,255,255,169,84,31,240,0,63,234,170,170,0,0,191,192,0,63,64,0,0,0,31,255,64,0,63,64,0,0,3,255,252,0,0,63,64,0,0,1,255,208,0,0,63,64,0,0,0,184,0,0,0,42,64,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,36,35,59,40,2,252,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,106,170,170,171,255,170,170,170,169,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,244,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,245,91,245,85,111,213,95,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,245,85,85,85,85,85,95,240,15,224,0,0,0,0,0,15,240,10,160,0,0,0,0,0,10,160, + // 0x9875 页 + 117,152,36,36,68,40,2,252,21,85,85,85,85,85,85,85,84,63,255,255,255,255,255,255,255,253,63,255,255,255,255,255,255,255,253,63,255,255,255,255,255,255,255,253,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,15,240,0,0,0,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,255,0,0,127,149,85,85,85,86,255,0,0,127,64,0,0,0,0,255,0,0,127,64,0,85,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,0,255,0,0,255,0,0,127,64,1,254,0,0,255,0,0,127,64,3,253,0,0,255,0,0,127,64,15,252,62,0,255,0,0,0,0,47,244,255,240,0,0,0,0,0,255,224,191,254,0,0,0,0,11,255,128,11,255,224,0,0,1,191,253,0,0,191,254,0,0,111,255,244,0,0,11,255,208,111,255,255,64,0,0,1,255,248,127,255,244,0,0,0,0,31,252,47,253,0,0,0,0,0,3,240,10,64,0,0,0,0,0,0,80, + // 0x9879 项 + 121,152,37,36,104,40,1,252,0,0,0,11,255,255,255,255,255,192,0,0,0,11,255,255,255,255,255,192,0,0,0,11,255,255,255,255,255,192,63,255,255,230,170,171,253,85,85,64,63,255,255,224,0,7,252,0,0,0,63,255,255,224,0,15,244,0,0,0,0,31,208,0,0,15,240,0,0,0,0,31,208,1,255,255,255,255,252,0,0,31,208,1,255,255,255,255,252,0,0,31,208,1,255,255,255,255,252,0,0,31,208,1,253,85,85,87,252,0,0,31,208,1,252,0,0,3,252,0,0,31,208,1,252,1,168,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,1,252,2,252,3,252,0,0,31,208,17,252,2,252,3,252,0,0,31,231,241,252,2,252,3,252,0,0,31,255,241,252,3,252,3,252,0,1,191,255,245,252,3,252,3,252,0,127,255,255,65,252,3,248,3,252,0,191,255,224,1,252,11,244,3,252,0,127,248,0,0,0,15,240,0,0,0,62,64,0,0,0,47,224,240,0,0,16,0,0,0,0,191,195,253,0,0,0,0,0,0,3,255,67,255,192,0,0,0,0,0,47,253,0,191,244,0,0,0,0,2,255,244,0,15,254,0,0,0,0,127,255,192,0,2,255,192,0,0,0,255,253,0,0,0,127,192,0,0,0,63,208,0,0,0,31,0,0,0,0,24,0,0,0,0,0,0, + // 0x9884 预 + 132,152,38,36,104,40,1,252,47,255,255,253,47,255,255,255,255,208,47,255,255,255,111,255,255,255,255,208,47,255,255,255,47,255,255,255,255,208,0,0,7,253,5,85,111,229,85,64,0,0,7,248,0,0,47,192,0,0,0,0,15,240,0,0,63,192,0,0,0,208,63,192,0,0,63,128,0,0,3,248,255,64,3,255,255,255,254,0,7,255,253,0,3,255,255,255,254,0,0,191,248,0,3,255,255,255,254,0,0,31,253,0,3,245,85,85,254,0,0,2,255,192,3,240,0,0,254,0,0,0,127,192,3,240,26,64,254,0,127,255,255,255,211,240,47,192,254,0,127,255,255,255,211,240,47,192,254,0,127,255,255,255,195,240,47,192,254,0,21,87,249,111,195,240,47,192,254,0,0,3,244,47,131,240,47,192,254,0,0,3,244,63,3,240,47,192,254,0,0,3,244,63,3,240,47,192,254,0,0,3,244,190,3,240,47,192,254,0,0,3,244,252,3,240,47,192,254,0,0,3,244,20,3,240,63,128,254,0,0,3,244,0,3,240,63,128,254,0,0,3,244,0,3,240,63,64,254,0,0,3,244,0,3,240,191,0,254,0,0,3,244,0,0,0,255,0,0,0,0,3,244,0,0,2,253,44,0,0,0,3,244,0,0,11,252,191,64,0,0,3,244,0,0,47,240,191,224,0,0,3,244,0,0,255,208,31,248,0,0,7,244,0,11,255,64,7,254,0,15,255,244,0,191,252,0,1,255,192,11,255,240,0,255,224,0,0,127,192,7,255,208,0,62,0,0,0,31,0,2,149,0,0,0,0,0,0,4,0, + // 0x9891 频 + 145,152,38,38,124,40,1,252,0,0,31,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,128,1,255,255,255,255,192,2,244,47,128,1,255,255,255,255,192,2,244,47,255,241,255,255,255,255,192,2,244,47,255,240,0,3,240,0,0,2,244,47,255,240,0,11,240,0,0,2,244,47,128,0,0,15,208,0,0,2,244,47,128,0,0,31,192,0,0,2,244,47,128,0,127,255,255,255,0,2,244,47,128,0,127,255,255,255,0,22,245,111,213,84,127,255,255,255,0,127,255,255,255,252,126,0,0,127,0,127,255,255,255,252,126,1,80,127,0,127,255,255,255,252,126,7,224,127,0,0,0,127,0,0,126,7,224,127,0,0,0,127,0,0,126,7,224,127,0,0,144,127,0,0,126,7,224,127,0,1,252,127,2,248,126,7,224,127,0,3,248,127,3,248,126,7,224,127,0,3,240,127,3,244,126,7,224,127,0,7,240,127,7,240,126,11,224,127,0,15,208,127,15,224,126,11,208,127,0,47,192,127,31,208,126,11,208,127,0,63,128,127,63,192,126,15,192,127,0,47,0,127,191,64,126,15,192,127,0,5,0,127,255,0,126,31,192,127,0,0,0,3,253,0,105,47,128,42,0,0,0,15,248,0,0,63,104,0,0,0,0,63,240,0,0,191,191,0,0,0,1,255,192,0,1,254,191,192,0,0,11,255,0,0,7,252,31,244,0,0,191,248,0,0,47,244,7,254,0,27,255,208,0,6,255,208,0,255,128,63,254,0,0,63,255,0,0,63,208,15,244,0,0,15,244,0,0,15,128,10,0,0,0,10,64,0,0,2,0, + // 0x989d 额 + 157,152,37,38,124,40,2,252,0,0,96,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,2,253,0,7,255,255,255,255,0,191,255,255,255,247,255,255,255,255,0,191,255,255,255,247,255,255,255,255,0,191,255,255,255,240,0,47,128,0,0,190,0,0,7,240,0,63,64,0,0,190,10,64,7,240,0,127,0,0,0,190,31,208,7,240,0,190,0,0,0,189,63,128,7,243,255,255,255,248,0,0,191,255,254,3,255,255,255,248,0,2,255,255,255,131,255,255,255,248,0,7,255,255,255,3,240,0,1,248,0,47,240,1,254,3,240,5,1,248,0,191,192,3,252,3,240,47,129,248,0,255,46,15,244,3,240,47,129,248,0,56,191,255,208,3,240,47,129,248,0,0,127,255,128,3,240,47,65,248,0,0,15,255,224,3,240,47,65,248,0,0,191,255,253,3,240,63,65,248,0,11,255,219,255,195,240,63,65,248,0,255,254,1,255,243,240,63,1,248,0,255,244,0,31,211,240,63,1,248,0,191,64,0,3,67,240,63,1,248,0,55,255,255,255,3,240,127,1,248,0,3,255,255,255,3,240,190,1,248,0,3,255,255,255,3,240,253,1,248,0,3,244,0,191,2,240,252,1,168,0,3,244,0,191,0,2,252,48,0,0,3,244,0,191,0,3,244,253,0,0,3,244,0,191,0,15,241,255,128,0,3,244,0,191,0,63,208,63,240,0,3,255,255,255,2,255,128,11,253,0,3,255,255,255,47,254,0,1,255,64,3,255,255,255,127,244,0,0,127,0,3,244,0,191,47,128,0,0,29,0,1,80,0,0,8,0,0,0,0,0, + // 0x98ce 风 + 206,152,37,36,104,40,2,252,0,191,255,255,255,255,255,253,0,0,0,191,255,255,255,255,255,253,0,0,0,191,255,255,255,255,255,253,0,0,0,191,170,170,170,170,170,253,0,0,0,191,0,0,0,0,1,253,0,0,0,191,0,0,0,0,1,253,0,0,0,191,0,0,0,9,1,253,0,0,0,191,0,0,0,47,193,253,0,0,0,191,7,192,0,63,129,253,0,0,0,191,31,240,0,127,65,253,0,0,0,191,11,248,0,191,1,253,0,0,0,191,3,253,0,254,1,253,0,0,0,255,0,255,66,252,1,253,0,0,0,255,0,127,195,248,1,253,0,0,0,255,0,47,251,244,1,253,0,0,0,255,0,15,255,240,0,253,0,0,0,255,0,3,255,208,0,253,0,0,0,255,0,1,255,192,0,253,0,0,0,255,0,0,255,192,0,253,0,0,0,254,0,2,255,224,0,253,0,0,1,254,0,3,255,240,0,253,0,0,1,253,0,15,255,252,0,253,0,0,1,253,0,47,243,254,0,254,0,0,2,252,0,191,193,255,64,254,0,0,3,252,1,255,64,191,192,254,0,0,3,252,7,254,0,63,224,190,4,0,7,248,31,252,0,31,240,191,10,0,11,244,191,240,0,15,252,127,11,64,15,240,191,192,0,3,248,127,11,192,31,224,47,0,0,2,128,63,79,128,63,208,8,0,0,0,0,63,207,128,191,192,0,0,0,0,0,31,255,64,255,64,0,0,0,0,0,15,255,0,191,0,0,0,0,0,0,7,254,0,29,0,0,0,0,0,0,1,248,0,4,0,0,0,0,0,0,0,0,0, + // 0x9971 饱 + 113,153,37,38,124,40,1,252,0,37,0,0,0,144,0,0,0,0,0,127,0,0,1,252,0,0,0,0,0,191,0,0,2,252,0,0,0,0,0,190,0,0,3,244,0,0,0,0,0,253,0,0,11,244,0,0,0,0,0,253,0,0,15,255,255,255,252,0,1,255,255,248,31,255,255,255,252,0,2,255,255,252,63,255,255,255,252,0,3,255,255,248,191,0,0,1,252,0,3,244,3,244,254,0,0,1,252,0,11,240,7,243,252,0,0,1,252,0,15,224,11,235,248,0,0,1,252,0,15,208,15,239,255,255,255,129,252,0,47,192,31,207,255,255,255,129,252,0,63,133,111,75,191,255,255,129,252,0,191,31,193,2,63,128,47,129,252,0,62,31,192,0,63,128,47,129,252,0,12,31,192,0,63,128,47,129,252,0,0,31,192,0,63,128,47,129,252,0,0,31,192,0,63,128,47,129,252,0,0,31,192,0,63,128,47,129,252,0,0,31,192,0,63,128,47,129,252,0,0,31,192,0,63,255,255,130,252,0,0,31,192,0,63,255,255,130,252,0,0,31,192,0,63,255,255,135,252,0,0,31,192,0,63,128,11,255,248,0,0,31,192,0,63,128,3,255,240,0,0,31,192,64,63,128,3,255,128,0,0,31,193,224,63,128,0,0,0,0,0,31,203,240,63,128,0,0,8,0,0,31,255,240,63,128,0,0,15,128,0,31,255,192,63,128,0,0,15,192,0,47,254,0,63,128,0,0,31,192,0,63,244,0,63,212,0,1,127,192,0,191,208,0,47,255,255,255,255,128,0,191,0,0,15,255,255,255,255,0,0,60,0,0,2,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x9a6c 马 + 108,154,35,37,77,40,2,251,1,170,170,170,170,170,170,128,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,2,255,255,255,255,255,255,208,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,47,192,0,0,1,64,0,0,0,63,192,0,0,3,248,0,0,0,63,192,0,0,3,244,0,0,0,63,192,0,0,7,244,0,0,0,63,128,0,0,7,244,0,0,0,63,128,0,0,11,240,0,0,0,127,64,0,0,11,240,0,0,0,127,64,0,0,11,240,0,0,0,127,0,0,0,15,240,0,0,0,191,0,0,0,15,240,0,0,0,191,0,0,0,15,255,255,255,255,255,255,252,0,15,255,255,255,255,255,255,248,0,31,255,255,255,255,255,255,248,0,5,85,85,85,85,85,91,248,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,191,255,255,255,255,255,244,15,240,191,255,255,255,255,255,244,15,240,191,255,255,255,255,255,244,15,240,106,170,170,170,170,170,160,15,224,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,101,85,255,64,0,0,0,0,0,63,255,255,0,0,0,0,0,0,47,255,253,0,0,0,0,0,0,47,255,224,0,0,0,0,0,0,0,0,0,0, + // 0x9a71 驱 + 113,154,38,36,104,40,1,252,31,255,255,240,21,85,85,85,85,0,31,255,255,240,63,255,255,255,255,128,31,255,255,240,63,255,255,255,255,128,0,0,11,240,63,255,255,255,255,128,0,0,11,224,63,128,0,0,0,0,0,0,11,224,63,128,0,0,0,0,3,240,11,224,63,128,0,1,228,0,3,240,11,208,63,130,128,2,252,0,3,240,15,208,63,143,208,3,248,0,3,240,15,208,63,143,240,7,244,0,7,240,15,192,63,131,252,15,240,0,7,240,15,192,63,129,254,15,224,0,7,224,15,192,63,128,191,95,192,0,11,224,15,192,63,128,63,255,192,0,11,208,31,192,63,128,31,255,64,0,11,208,31,192,63,128,11,255,0,0,15,208,47,128,63,128,3,254,0,0,15,255,255,253,63,128,3,254,0,0,15,255,255,253,63,128,7,255,64,0,15,255,255,253,63,128,15,255,192,0,0,0,0,253,63,128,47,255,208,0,0,0,0,252,63,128,63,207,240,0,0,0,0,252,63,128,191,71,248,0,0,0,16,252,63,130,254,3,252,0,0,27,244,252,63,135,252,0,255,0,27,255,249,252,63,143,244,0,191,0,191,255,229,252,63,175,240,0,127,0,127,244,2,248,63,139,192,0,56,0,121,0,2,248,63,130,64,0,0,0,0,0,3,244,63,128,0,0,0,0,0,0,3,244,63,213,85,85,85,64,0,0,11,240,63,255,255,255,255,208,0,63,255,224,63,255,255,255,255,208,0,47,255,192,63,255,255,255,255,208,0,47,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,35,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,254,0,0,0,0,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,254,170,170,170,191,128,0,0,3,252,0,0,0,63,128,0,0,3,252,0,0,0,63,128,0,0,3,252,0,0,0,63,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,1,170,170,170,170,170,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,240,0,0,0,0,0,15,240,11,240,0,0,0,0,0,15,240,11,240,6,170,170,170,144,15,240,11,240,11,255,255,255,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,250,170,175,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,224,0,0,127,255,240,11,240,11,224,0,0,63,255,208,11,240,0,0,0,0,63,255,128,7,240,0,0,0,0,21,84,0, + // 0x9ec4 黄 + 196,158,36,38,86,40,2,252,0,0,10,144,0,6,160,0,0,0,0,15,224,0,11,240,0,0,0,0,15,224,0,11,240,0,0,0,85,95,245,85,91,245,85,64,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,3,255,255,255,255,255,255,255,192,0,0,15,224,0,11,240,0,0,0,0,15,224,0,11,240,0,0,0,0,15,224,0,11,240,0,0,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,85,85,85,85,255,85,85,85,85,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,106,170,170,255,170,170,170,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,255,0,0,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,170,170,255,170,170,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,255,0,0,255,0,0,191,170,170,255,170,170,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,1,64,0,2,64,0,0,0,0,31,224,0,11,248,0,0,0,1,255,252,0,31,255,208,0,0,47,255,224,0,2,255,254,0,11,255,254,0,0,0,31,255,244,127,255,224,0,0,0,0,191,252,31,249,0,0,0,0,0,11,240,6,64,0,0,0,0,0,0,128, + // 0x9ede 點 + 222,158,38,38,124,40,1,252,0,0,0,0,0,0,26,128,0,0,10,170,170,170,160,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,192,60,2,240,0,31,192,0,0,15,196,60,18,240,0,31,192,0,0,15,236,60,63,240,0,31,192,0,0,15,221,60,122,240,0,31,192,0,0,15,206,60,182,240,0,31,192,0,0,15,207,60,242,240,0,31,255,255,208,15,207,125,226,240,0,31,255,255,208,15,202,125,210,240,0,31,255,255,208,15,192,60,2,240,0,31,229,85,64,15,234,190,171,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,15,255,255,255,244,85,111,229,85,0,15,255,255,255,244,255,255,255,255,0,15,255,255,255,244,255,255,255,255,0,0,0,190,0,0,255,255,255,255,0,0,0,190,0,0,253,0,0,191,0,1,85,255,175,252,253,0,0,191,0,63,255,255,255,252,253,0,0,191,0,63,255,255,255,252,253,0,0,191,0,63,250,165,80,0,253,0,0,191,0,0,0,0,7,128,253,0,0,191,0,2,6,139,203,208,253,0,0,191,0,7,215,199,195,240,253,0,0,191,0,11,199,195,209,248,253,0,0,191,0,11,195,210,240,252,254,85,85,255,0,15,195,225,240,125,255,255,255,255,0,31,131,224,244,52,255,255,255,255,0,63,3,224,144,0,255,255,255,255,0,126,1,64,0,0,253,0,0,191,0,8,0,0,0,0,189,0,0,106,0, + // 0x9f50 齐 + 80,159,37,39,134,40,2,251,0,0,0,0,254,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,127,255,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,255,254,0,127,255,255,255,255,255,255,255,254,0,0,2,254,0,0,0,255,192,0,0,0,0,255,64,0,1,255,0,0,0,0,0,63,208,0,7,253,0,0,0,0,0,15,244,0,31,248,0,0,0,0,0,7,255,0,191,240,0,0,0,0,0,0,255,211,255,128,0,0,0,0,0,0,63,255,254,0,0,0,0,0,0,0,11,255,244,0,0,0,0,0,0,0,47,255,254,0,0,0,0,0,0,11,255,255,255,249,0,0,0,0,22,255,255,210,255,255,250,64,0,111,255,255,249,0,31,255,255,255,64,255,255,255,64,0,1,191,255,255,0,63,255,229,0,0,0,22,255,252,0,47,144,255,0,0,0,127,65,104,0,0,0,255,0,0,0,127,64,0,0,0,0,255,0,0,0,127,64,0,0,0,0,255,0,0,0,127,64,0,0,0,0,255,0,0,0,127,64,0,0,0,0,255,0,0,0,127,64,0,0,0,0,255,0,0,0,127,64,0,0,0,1,254,0,0,0,127,64,0,0,0,2,254,0,0,0,127,64,0,0,0,3,253,0,0,0,127,64,0,0,0,11,252,0,0,0,127,64,0,0,0,31,248,0,0,0,127,64,0,0,0,191,240,0,0,0,127,64,0,0,3,255,192,0,0,0,127,64,0,0,15,255,64,0,0,0,127,64,0,0,3,253,0,0,0,0,127,64,0,0,0,224,0,0,0,0,127,64,0,0,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,8,27,54,40,16,1,11,224,47,248,63,252,127,253,63,252,47,248,6,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,224,63,248,63,252,127,253,63,252,47,244,6,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Symbols_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Symbols_29.cpp new file mode 100644 index 000000000000..de4a74bba280 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Symbols_29.cpp @@ -0,0 +1,38 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium_Symbols 40pt, capital 'A' height: 29px, width: 100% +extern const uint8_t NotoSans_Medium_Symbols_29[158] = { + 130,29,8,0,10,0,38,246, // unifont_t + // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 + 23,49,38,27,2,247,0,7,255,255,0,0,0,31,255,255,192,0,0,47,255,255,208,0,0,47,64,11,208,0,0,47,0,7,208,0,0,47,144,7,208,0,0,47,244,7,208,0,0,47,0,7,208,0,0,47,0,7,208,0,0,47,0,7,208,0,0,47,244,7,208,0,0,47,144,7,208,0,0,47,0,7,208,0,0,47,5,71,208,0,0,47,31,199,208,0,0,47,255,199,208,0,0,47,175,199,208,0,0,47,31,199,208,0,0,47,31,199,208,0,0,47,95,199,208,0,0,47,255,199,208,0,0,47,95,199,208,0,0,47,31,199,208,0,0,47,31,199,208,0,0,47,175,199,208,0,0,47,255,199,208,0,0,47,31,199,208,0,0,47,31,199,208,0,0,47,31,199,208,0,0,127,191,199,240,0,2,255,191,199,253,0,11,248,31,192,255,64,31,208,47,208,47,192,63,66,255,253,11,224,127,11,255,255,67,240,189,31,255,255,194,244,252,47,255,255,208,248,252,63,255,255,224,252,252,63,255,255,224,252,252,63,255,255,224,248,189,31,255,255,193,248,126,15,255,255,131,240,63,67,255,254,11,240,31,208,111,224,31,192,11,248,0,0,191,128,3,255,64,11,254,0,0,191,255,255,244,0,0,15,255,255,128,0,0,0,111,228,0,0, + // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° + 13,13,52,17,2,16,1,191,144,0,11,255,252,0,63,255,255,0,127,64,127,64,189,0,31,192,252,0,15,192,252,0,15,192,252,0,15,192,190,0,47,128,63,144,191,64,47,255,254,0,7,255,248,0,0,106,64,0, + // 0x0a - replacement for 0x2026 used in Greek language files … + 27,6,42,32,3,255,127,64,2,252,0,15,224,255,192,7,255,0,47,244,255,192,7,255,0,63,248,255,192,7,255,0,47,248,191,128,3,253,0,31,240,25,0,0,96,0,1,64, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Traditional_Chinese_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Traditional_Chinese_29.cpp new file mode 100644 index 000000000000..a19d230e23ed --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Traditional_Chinese_29.cpp @@ -0,0 +1,646 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Traditional Chinese 40pt, capital 'A' height: 29px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +extern const uint8_t NotoSans_Medium_Traditional_Chinese_29[34391] = { + 162,29,191,34,26,255,38,246, // unifont_t + // 0x22bf ⊿ + 191,34,31,32,0,40,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,184,0,0,0,0,0,0,2,248,0,0,0,0,0,0,11,248,0,0,0,0,0,0,47,248,0,0,0,0,0,0,191,248,0,0,0,0,0,2,255,248,0,0,0,0,0,11,255,248,0,0,0,0,0,47,242,248,0,0,0,0,0,191,194,248,0,0,0,0,2,255,2,248,0,0,0,0,11,252,2,248,0,0,0,0,47,240,2,248,0,0,0,0,191,192,2,248,0,0,0,1,255,0,2,248,0,0,0,7,252,0,2,248,0,0,0,31,240,0,2,248,0,0,0,127,192,0,2,248,0,0,1,255,64,0,2,248,0,0,7,253,0,0,2,248,0,0,31,244,0,0,2,248,0,0,127,208,0,0,2,248,0,1,255,64,0,0,2,248,0,7,253,0,0,0,2,248,0,31,244,0,0,0,2,248,0,127,208,0,0,0,2,248,1,255,64,0,0,0,2,248,3,254,85,85,85,85,87,248,15,255,255,255,255,255,255,248,63,255,255,255,255,255,255,248,255,255,255,255,255,255,255,248, + // 0x4e00 一 + 0,78,37,4,40,40,2,13,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,255,255,64, + // 0x4e09 三 + 9,78,34,31,23,40,3,255,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,128,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,127,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,170,160,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240, + // 0x4e0a 上 + 10,78,36,35,59,40,2,254,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,255,255,255,255,192,0,0,0,7,255,255,255,255,192,0,0,0,7,255,255,255,255,192,0,0,0,7,254,170,170,170,128,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,248,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,254, + // 0x4e0b 下 + 11,78,36,35,59,40,2,252,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,254,128,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,3,255,255,64,0,0,0,0,0,3,255,255,240,0,0,0,0,0,3,253,255,254,0,0,0,0,0,3,252,47,255,208,0,0,0,0,3,252,3,255,252,0,0,0,0,3,252,0,127,255,64,0,0,0,3,252,0,11,255,208,0,0,0,3,252,0,1,255,192,0,0,0,3,252,0,0,63,0,0,0,0,3,252,0,0,9,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,168,0,0,0,0, + // 0x4e0d 不 + 13,78,36,35,59,40,2,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,0,0,0,0,47,240,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,255,192,0,0,0,0,0,0,2,255,64,0,0,0,0,0,0,7,255,0,0,0,0,0,0,0,31,255,0,0,0,0,0,0,0,63,255,10,0,0,0,0,0,0,255,255,47,192,0,0,0,0,3,255,255,191,244,0,0,0,0,15,254,255,47,254,0,0,0,0,63,248,255,7,255,192,0,0,1,255,240,255,0,255,244,0,0,11,255,192,255,0,47,253,0,0,47,254,0,255,0,11,255,128,1,255,248,0,255,0,1,255,240,15,255,208,0,255,0,0,127,252,191,255,0,0,255,0,0,15,255,191,248,0,0,255,0,0,3,255,63,208,0,0,255,0,0,0,248,14,0,0,0,255,0,0,0,32,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0, + // 0x4e26 並 + 38,78,36,36,68,40,2,254,0,0,32,0,0,0,9,0,0,0,3,248,0,0,0,31,240,0,0,3,252,0,0,0,63,224,0,0,1,255,0,0,0,127,192,0,0,0,255,64,0,0,255,128,0,0,0,127,192,0,1,255,0,0,0,0,63,208,0,3,253,0,0,0,0,31,128,0,7,248,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,42,170,170,255,170,255,170,170,168,0,0,0,254,0,191,0,0,0,0,0,0,254,0,191,0,0,0,0,0,0,254,0,191,0,0,0,0,100,0,254,0,191,0,46,64,3,252,0,254,0,191,0,63,192,2,252,0,254,0,191,0,63,192,0,254,0,254,0,191,0,127,128,0,191,0,254,0,191,0,191,0,0,127,64,254,0,191,0,255,0,0,63,128,254,0,191,1,254,0,0,63,192,254,0,191,2,252,0,0,47,192,254,0,191,3,252,0,0,31,208,254,0,191,7,244,0,0,15,224,254,0,191,11,240,0,0,15,240,254,0,191,15,224,0,0,11,240,254,0,191,31,208,0,0,6,64,254,0,191,1,128,0,0,0,0,254,0,191,0,0,0,0,0,0,254,0,191,0,0,0,0,0,0,254,0,191,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255, + // 0x4e2d 中 + 45,78,32,38,48,40,4,252,0,0,0,15,224,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,170,170,170,175,250,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,175,250,170,170,255,254,0,0,15,240,0,0,255,254,0,0,15,240,0,0,191,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,15,224,0,0,0, + // 0x4e3b 主 + 59,78,36,37,77,40,2,253,0,0,0,2,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,15,254,0,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,0,47,248,0,0,0,0,0,0,0,11,224,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,10,170,170,170,255,170,170,170,160,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,170,170,170,255,170,170,170,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,106,170,170,170,170,170,170,170,170, + // 0x4e4b 之 + 75,78,37,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,3,255,255,255,255,255,255,255,224,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,248,0,2,170,170,170,170,170,170,191,240,0,0,0,0,0,0,0,0,127,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,0,11,253,0,0,0,0,0,0,0,0,47,244,0,0,0,0,0,0,0,0,127,224,0,0,0,0,0,0,0,1,255,128,0,0,0,0,0,0,0,3,255,0,0,0,0,0,0,0,0,15,252,0,0,0,0,0,0,0,0,63,240,0,0,0,0,2,224,0,0,255,192,0,0,0,0,3,252,0,7,255,0,0,0,0,0,11,248,0,31,252,0,0,0,0,0,15,244,0,127,240,0,0,0,0,0,31,248,2,255,192,0,0,0,0,0,63,252,15,255,0,0,0,0,0,0,127,255,127,248,0,0,0,0,0,0,255,255,255,224,0,0,0,0,0,1,255,63,255,64,0,0,0,0,0,3,253,15,255,64,0,0,0,0,0,11,252,3,255,249,0,0,0,0,0,31,244,0,255,255,255,170,170,170,128,63,240,0,31,255,255,255,255,255,192,127,192,0,1,191,255,255,255,255,128,15,128,0,0,5,175,255,255,255,0,1,0,0,0,0,0,0,0,0,0, + // 0x4ea4 交 + 164,78,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,106,170,170,170,255,170,170,170,169,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,15,64,0,0,248,0,0,0,0,63,240,0,7,255,0,0,0,0,255,208,0,3,255,208,0,0,3,255,64,0,0,191,248,0,0,15,254,0,0,0,31,254,0,0,127,248,0,0,0,3,255,192,2,255,224,0,0,0,0,255,240,31,255,66,192,0,3,224,63,252,191,253,31,224,0,11,252,11,254,47,240,15,240,0,15,244,3,248,11,128,11,248,0,31,240,0,208,0,0,3,252,0,63,208,0,0,0,0,2,255,0,191,192,0,0,0,0,0,255,130,255,64,0,0,0,0,0,127,215,254,0,0,0,0,0,0,47,255,252,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,127,255,253,0,0,0,0,0,7,255,255,255,208,0,0,0,0,127,255,130,255,253,0,0,0,27,255,253,0,127,255,228,0,6,255,255,224,0,11,255,255,144,255,255,254,0,0,0,255,255,255,191,255,208,0,0,0,11,255,253,63,248,0,0,0,0,0,111,252,30,0,0,0,0,0,0,0,96, + // 0x4eae 亮 + 174,78,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,10,170,170,170,170,170,160,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,0,0,0,0,0,0,0,252,63,0,1,80,0,0,0,0,252,63,0,7,244,0,191,64,0,252,63,0,11,244,0,191,64,0,252,63,0,11,240,0,191,64,0,252,0,0,15,240,0,191,64,0,0,0,0,31,240,0,191,64,0,0,0,0,47,208,0,191,64,0,0,0,0,127,192,0,191,64,0,184,0,1,255,128,0,191,64,0,191,0,15,255,0,0,191,64,0,254,2,255,252,0,0,191,128,1,254,255,255,224,0,0,127,255,255,253,191,255,64,0,0,63,255,255,252,63,224,0,0,0,31,255,255,240,20,0,0,0,0,0,21,84,0, + // 0x4ee4 令 + 228,78,37,38,124,40,2,252,0,0,0,1,254,0,0,0,0,0,0,0,0,3,255,128,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,47,255,244,0,0,0,0,0,0,0,191,219,252,0,0,0,0,0,0,2,255,131,255,64,0,0,0,0,0,11,254,0,255,208,0,0,0,0,0,47,252,0,63,244,0,0,0,0,0,191,240,0,15,253,0,0,0,0,2,255,192,0,3,255,128,0,0,0,15,254,0,0,0,191,244,0,0,0,127,248,0,0,0,47,254,0,0,2,255,255,255,255,255,255,255,208,0,31,255,95,255,255,255,245,255,248,0,255,252,31,255,255,255,244,63,255,64,255,224,5,85,85,85,80,11,255,0,127,64,0,0,0,0,0,1,253,0,40,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,255,255,255,255,255,255,254,0,0,2,255,255,255,255,255,255,254,0,0,2,255,255,255,255,255,255,254,0,0,1,85,85,127,213,85,85,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,0,0,254,0,0,0,0,0,47,192,10,170,254,0,0,0,0,0,47,192,11,255,253,0,0,0,0,0,47,192,3,255,252,0,0,0,0,0,47,192,3,255,144,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0, + // 0x4ef6 件 + 246,78,37,38,124,40,1,252,0,0,20,0,0,1,80,0,0,0,0,0,63,128,0,3,248,0,0,0,0,0,127,64,144,3,248,0,0,0,0,0,255,0,254,3,248,0,0,0,0,1,254,1,253,3,248,0,0,0,0,2,253,2,252,3,248,0,0,0,0,7,252,3,252,3,248,0,0,0,0,15,244,3,248,3,248,0,0,0,0,31,240,7,254,171,254,170,168,0,0,63,208,11,255,255,255,255,253,0,0,191,192,15,255,255,255,255,253,0,0,255,192,31,255,255,255,255,253,0,3,255,192,63,192,3,248,0,0,0,11,255,192,127,128,3,248,0,0,0,31,255,192,255,0,3,248,0,0,0,63,255,193,254,0,3,248,0,0,0,191,239,192,188,0,3,248,0,0,0,63,111,192,24,0,3,248,0,0,0,30,47,192,0,0,3,248,0,0,0,12,47,192,0,0,3,248,0,0,0,0,47,192,170,170,171,254,170,170,128,0,47,192,255,255,255,255,255,255,192,0,47,192,255,255,255,255,255,255,192,0,47,192,255,255,255,255,255,255,192,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,31,128,0,0,3,244,0,0,0, + // 0x4efd 份 + 253,78,38,38,124,40,1,252,0,0,36,0,0,0,0,0,0,0,0,0,127,128,3,255,255,244,0,0,0,0,191,0,3,255,255,248,0,0,0,0,254,0,3,255,255,252,0,0,0,2,253,0,65,85,87,252,0,0,0,3,252,0,254,0,1,253,0,0,0,11,244,1,254,0,0,254,0,0,0,15,240,2,252,0,0,255,0,0,0,47,208,3,248,0,0,127,128,0,0,127,192,11,244,0,0,63,192,0,0,255,128,15,240,0,0,47,224,0,2,255,128,31,208,0,0,15,240,0,3,255,128,63,192,0,0,11,252,0,15,255,128,191,64,0,0,3,254,0,63,255,129,254,0,0,0,2,255,64,191,255,131,252,0,0,0,0,255,224,255,191,143,249,85,85,85,85,191,208,191,63,143,235,255,255,255,255,223,64,60,63,131,203,255,255,255,255,198,0,20,63,128,11,255,255,255,255,192,0,0,63,128,0,2,252,0,63,192,0,0,63,128,0,3,252,0,63,192,0,0,63,128,0,3,248,0,63,192,0,0,63,128,0,3,244,0,63,128,0,0,63,128,0,7,244,0,63,128,0,0,63,128,0,11,240,0,63,128,0,0,63,128,0,15,240,0,63,128,0,0,63,128,0,15,224,0,63,128,0,0,63,128,0,47,192,0,63,128,0,0,63,128,0,63,192,0,127,64,0,0,63,128,0,191,64,0,127,64,0,0,63,128,1,255,0,0,191,64,0,0,63,128,7,252,0,0,191,0,0,0,63,128,47,244,0,0,255,0,0,0,63,128,255,224,3,255,255,0,0,0,63,129,255,128,1,255,253,0,0,0,63,128,125,0,0,255,248,0,0,0,47,128,32,0,0,106,64,0,0, + // 0x4f11 休 + 17,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,15,224,0,11,240,0,0,0,0,0,47,224,0,11,240,0,0,0,0,0,63,192,0,11,240,0,0,0,0,0,127,192,0,11,240,0,0,0,0,0,255,64,0,11,240,0,0,0,0,1,255,0,0,11,240,0,0,0,0,3,253,0,0,11,240,0,0,0,0,11,252,0,0,11,240,0,0,0,0,31,244,0,0,11,240,0,0,0,0,63,241,170,170,175,250,170,170,128,0,191,241,255,255,255,255,255,255,192,1,255,241,255,255,255,255,255,255,192,7,255,241,255,255,255,255,255,255,192,31,255,240,0,0,191,255,0,0,0,127,255,240,0,0,255,255,128,0,0,255,239,240,0,2,255,255,192,0,0,127,143,240,0,3,255,255,208,0,0,63,15,240,0,7,255,251,240,0,0,28,15,240,0,15,255,247,244,0,0,0,15,240,0,47,219,243,252,0,0,0,15,240,0,63,203,241,254,0,0,0,15,240,0,191,75,240,255,0,0,0,15,240,1,255,11,240,127,192,0,0,15,240,3,253,11,240,63,224,0,0,15,240,15,248,11,240,15,244,0,0,15,240,47,240,11,240,11,252,0,0,15,240,127,208,11,240,3,255,0,0,15,242,255,128,11,240,1,255,192,0,15,251,255,0,11,240,0,191,240,0,15,251,252,0,11,240,0,47,208,0,15,242,240,0,11,240,0,15,64,0,15,240,128,0,11,240,0,1,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,15,240,0,0,11,240,0,0,0,0,10,160,0,0,11,240,0,0,0, + // 0x4f4d 位 + 77,79,38,38,124,40,1,252,0,0,4,0,0,1,80,0,0,0,0,0,47,192,0,11,240,0,0,0,0,0,63,192,0,11,240,0,0,0,0,0,191,64,0,11,240,0,0,0,0,0,255,0,0,11,240,0,0,0,0,2,254,0,0,11,240,0,0,0,0,3,252,0,0,11,240,0,0,0,0,11,244,0,0,11,240,0,0,0,0,31,240,191,255,255,255,255,255,128,0,63,208,191,255,255,255,255,255,128,0,191,208,191,255,255,255,255,255,128,1,255,208,106,170,170,170,170,170,64,3,255,208,0,0,0,0,0,0,0,15,255,208,0,0,0,0,0,0,0,63,255,208,0,188,0,0,47,208,0,191,239,208,1,253,0,0,63,192,0,255,207,208,0,253,0,0,63,192,0,127,15,208,0,254,0,0,63,128,0,60,15,208,0,191,0,0,127,64,0,20,15,208,0,127,0,0,191,64,0,0,15,208,0,63,64,0,255,0,0,0,15,208,0,63,128,0,255,0,0,0,15,208,0,63,192,1,254,0,0,0,15,208,0,47,192,2,253,0,0,0,15,208,0,47,192,3,252,0,0,0,15,208,0,31,208,3,248,0,0,0,15,208,0,31,208,7,244,0,0,0,15,208,0,15,224,11,240,0,0,0,15,208,0,15,224,15,240,0,0,0,15,208,0,15,240,15,224,0,0,0,15,208,0,15,144,31,208,0,0,0,15,208,0,0,0,47,192,0,0,0,15,208,170,170,170,191,234,170,144,0,15,209,255,255,255,255,255,255,224,0,15,209,255,255,255,255,255,255,224,0,15,209,255,255,255,255,255,255,224,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0, + // 0x4f4e 低 + 78,79,38,38,124,40,1,252,0,0,36,0,0,0,0,0,0,0,0,0,127,64,0,0,0,0,64,0,0,0,191,0,0,0,0,111,240,0,0,0,255,0,0,1,175,255,248,0,0,2,253,25,26,255,255,255,248,0,0,3,252,31,255,255,255,249,0,0,0,11,244,31,255,255,255,0,0,0,0,15,240,31,250,80,191,0,0,0,0,47,208,31,192,0,191,0,0,0,0,127,192,31,192,0,191,0,0,0,0,255,128,31,192,0,127,64,0,0,2,255,128,31,192,0,127,64,0,0,7,255,128,31,192,0,127,64,0,0,15,255,128,31,192,0,127,64,0,0,63,255,128,31,255,255,255,255,255,208,255,255,128,31,255,255,255,255,255,208,255,127,128,31,255,255,255,255,255,208,126,63,128,31,229,85,127,213,85,64,60,63,128,31,192,0,47,192,0,0,16,63,128,31,192,0,47,192,0,0,0,63,128,31,192,0,31,192,0,0,0,63,128,31,192,0,31,208,0,0,0,63,128,31,192,0,15,224,0,0,0,63,128,31,192,0,15,240,0,0,0,63,128,31,192,0,11,240,0,0,0,63,128,31,192,0,71,244,0,0,0,63,128,31,209,175,227,248,0,0,0,63,128,47,255,255,227,252,2,0,0,63,131,255,255,255,226,252,3,224,0,63,130,255,255,250,65,254,3,240,0,63,130,255,228,0,0,255,3,240,0,63,128,144,0,0,0,127,135,224,0,63,128,0,0,0,0,63,255,224,0,63,128,21,85,85,85,31,255,192,0,63,128,255,255,255,255,135,255,128,0,63,128,255,255,255,255,129,190,0,0,63,128,255,255,255,255,128,0,0,0,63,128,0,0,0,0,0,0,0, + // 0x4f5c 作 + 92,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,47,192,1,248,0,0,0,0,0,0,63,192,3,252,0,0,0,0,0,0,127,128,3,248,0,0,0,0,0,0,255,64,11,244,0,0,0,0,0,0,255,0,15,240,0,0,0,0,0,3,253,0,31,224,0,0,0,0,0,7,252,0,63,255,255,255,255,208,0,15,244,0,127,255,255,255,255,208,0,31,240,0,255,255,255,255,255,208,0,63,224,2,254,175,250,170,170,128,0,191,224,3,252,15,224,0,0,0,1,255,224,15,244,15,224,0,0,0,3,255,224,31,240,15,224,0,0,0,15,255,224,127,208,15,224,0,0,0,63,255,224,255,128,15,224,0,0,0,127,255,226,255,0,15,255,255,255,64,63,207,224,125,0,15,255,255,255,64,31,15,224,20,0,15,255,255,255,64,12,15,224,0,0,15,245,85,85,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,245,85,85,64,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,255,255,255,192,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,15,224,0,0,15,224,0,0,0,0,10,144,0,0,10,144,0,0,0, + // 0x4f9b 供 + 155,79,38,38,124,40,1,252,0,0,20,0,21,64,0,84,0,0,0,0,63,128,47,192,0,253,0,0,0,0,191,64,47,192,0,253,0,0,0,0,255,0,47,192,0,253,0,0,0,1,254,0,47,192,0,253,0,0,0,3,252,0,47,192,0,253,0,0,0,7,248,0,47,192,0,253,0,0,0,15,240,0,47,192,0,253,0,0,0,47,224,42,191,234,170,255,170,128,0,63,192,127,255,255,255,255,255,192,0,255,192,127,255,255,255,255,255,192,1,255,192,127,255,255,255,255,255,192,3,255,192,0,47,192,0,253,0,0,15,255,192,0,47,192,0,253,0,0,63,255,192,0,47,192,0,253,0,0,191,255,192,0,47,192,0,253,0,0,191,175,192,0,47,192,0,253,0,0,63,47,192,0,47,192,0,253,0,0,44,47,192,0,47,192,0,253,0,0,4,47,192,0,47,192,0,253,0,0,0,47,192,0,47,192,0,253,0,0,0,47,193,170,191,234,170,255,170,128,0,47,193,255,255,255,255,255,255,208,0,47,193,255,255,255,255,255,255,208,0,47,193,255,255,255,255,255,255,208,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,14,64,0,36,0,0,0,47,192,0,47,224,1,253,0,0,0,47,192,0,127,192,1,255,64,0,0,47,192,0,255,64,0,127,192,0,0,47,192,3,254,0,0,47,240,0,0,47,192,15,252,0,0,11,248,0,0,47,192,63,240,0,0,3,254,0,0,47,192,255,192,0,0,1,255,0,0,47,194,255,64,0,0,0,191,192,0,47,192,125,0,0,0,0,62,0,0,47,128,4,0,0,0,0,20,0, + // 0x4fdd 保 + 221,79,38,38,124,40,1,252,0,0,20,0,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,63,203,255,255,255,255,252,0,0,0,191,75,255,255,255,255,252,0,0,0,255,11,255,255,255,255,252,0,0,2,253,11,245,85,85,87,252,0,0,3,252,11,240,0,0,2,252,0,0,11,244,11,240,0,0,2,252,0,0,15,240,11,240,0,0,2,252,0,0,63,208,11,240,0,0,2,252,0,0,191,208,11,240,0,0,2,252,0,1,255,208,11,240,0,0,2,252,0,3,255,208,11,255,255,255,255,252,0,15,255,208,11,255,255,255,255,252,0,47,255,208,11,255,255,255,255,252,0,191,255,208,1,85,91,249,85,84,0,191,207,208,0,0,7,244,0,0,0,63,15,208,0,0,7,244,0,0,0,45,15,208,0,0,7,244,0,0,0,4,15,208,0,0,7,244,0,0,0,0,15,209,255,255,255,255,255,255,192,0,15,209,255,255,255,255,255,255,192,0,15,209,255,255,255,255,255,255,192,0,15,208,85,85,255,255,149,85,64,0,15,208,0,0,255,255,192,0,0,0,15,208,0,3,255,255,240,0,0,0,15,208,0,11,255,251,248,0,0,0,15,208,0,47,231,246,253,0,0,0,15,208,0,191,199,244,255,64,0,0,15,208,2,255,7,244,127,208,0,0,15,208,15,253,7,244,31,244,0,0,15,208,127,244,7,244,11,254,0,0,15,210,255,208,7,244,2,255,208,0,15,215,255,64,7,244,0,191,240,0,15,209,252,0,7,244,0,47,192,0,15,208,160,0,7,244,0,7,0,0,15,208,0,0,7,244,0,0,0,0,10,144,0,0,7,244,0,0,0, + // 0x4fe1 信 + 225,79,38,38,124,40,1,252,0,0,4,0,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,63,193,255,255,255,255,240,0,0,0,191,65,255,255,255,255,240,0,0,0,255,1,255,255,255,255,240,0,0,2,254,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,11,248,0,0,0,0,0,0,0,0,31,240,255,255,255,255,255,255,208,0,63,224,255,255,255,255,255,255,208,0,191,208,255,255,255,255,255,255,208,1,255,208,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,15,255,208,3,255,255,255,255,244,0,63,255,208,3,255,255,255,255,244,0,255,223,208,3,255,255,255,255,244,0,191,79,208,0,0,0,0,0,0,0,62,15,208,0,0,0,0,0,0,0,44,15,208,0,0,0,0,0,0,0,0,15,208,3,255,255,255,255,244,0,0,15,208,3,255,255,255,255,244,0,0,15,208,3,255,255,255,255,244,0,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,240,0,0,3,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,255,255,255,255,252,0,0,15,208,7,240,0,0,3,252,0,0,10,128,7,240,0,0,2,168,0, + // 0x500b 個 + 11,80,36,38,86,40,1,252,0,0,64,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,252,127,255,255,255,255,255,0,3,248,127,255,255,255,255,255,0,11,240,127,255,255,255,255,255,0,15,240,127,0,0,0,0,127,0,47,208,127,0,3,240,0,127,0,63,192,127,0,3,240,0,127,0,191,128,127,0,3,240,0,127,1,255,128,127,0,3,240,0,127,3,255,128,127,26,175,250,169,127,7,255,128,127,31,255,255,253,127,15,255,128,127,31,255,255,253,127,63,255,128,127,0,3,240,0,127,191,255,128,127,0,3,240,0,127,255,127,128,127,0,3,240,0,127,190,63,128,127,0,3,240,0,127,60,63,128,127,2,171,250,160,127,32,63,128,127,3,255,255,240,127,0,63,128,127,3,255,255,240,127,0,63,128,127,3,224,3,240,127,0,63,128,127,3,224,3,240,127,0,63,128,127,3,224,3,240,127,0,63,128,127,3,224,3,240,127,0,63,128,127,3,224,3,240,127,0,63,128,127,3,250,171,240,127,0,63,128,127,3,255,255,240,127,0,63,128,127,3,255,255,240,127,0,63,128,127,0,0,0,0,127,0,63,128,127,0,0,0,0,127,0,63,128,127,0,0,0,0,127,0,63,128,127,255,255,255,255,255,0,63,128,127,255,255,255,255,255,0,63,128,127,255,255,255,255,255,0,63,128,127,85,85,85,85,191,0,63,128,127,0,0,0,0,127,0,63,64,42,0,0,0,0,21, + // 0x503c 值 + 60,80,37,38,124,40,1,252,0,0,36,0,0,7,164,0,0,0,0,0,127,64,0,7,244,0,0,0,0,0,191,0,0,11,240,0,0,0,0,0,254,0,0,11,240,0,0,0,0,2,253,191,255,255,255,255,255,0,0,3,252,191,255,255,255,255,255,0,0,7,244,191,255,255,255,255,255,0,0,15,240,0,0,31,208,0,0,0,0,31,224,0,0,31,192,0,0,0,0,63,192,0,0,47,192,0,0,0,0,191,128,0,0,63,128,0,0,0,1,255,128,11,255,255,255,255,240,0,3,255,128,11,255,255,255,255,240,0,11,255,128,11,255,255,255,255,240,0,47,255,128,11,224,0,0,7,240,0,127,255,128,11,224,0,0,7,240,0,127,191,128,11,250,170,170,175,240,0,47,63,128,11,255,255,255,255,240,0,28,63,128,11,255,255,255,255,240,0,4,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,250,170,170,175,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,255,255,255,255,240,0,0,63,128,11,250,170,170,175,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,11,224,0,0,7,240,0,0,63,128,15,224,0,0,11,240,0,0,63,135,255,255,255,255,255,255,192,0,63,135,255,255,255,255,255,255,192,0,63,135,255,255,255,255,255,255,192,0,63,128,0,0,0,0,0,0,0, + // 0x504f 偏 + 79,80,38,39,134,40,1,251,0,0,144,0,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,2,252,255,255,255,255,255,255,208,0,3,248,255,255,255,255,255,255,208,0,7,244,255,255,255,255,255,255,208,0,15,240,0,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,47,255,255,255,255,254,0,0,255,64,47,255,255,255,255,254,0,1,255,64,47,255,255,255,255,254,0,3,255,64,47,192,0,0,0,254,0,7,255,64,47,192,0,0,0,254,0,15,255,64,47,192,0,0,0,254,0,63,255,64,47,255,255,255,255,254,0,191,255,64,47,255,255,255,255,254,0,255,127,64,47,255,255,255,255,254,0,190,63,64,47,128,0,0,0,0,0,60,63,64,47,128,0,0,0,0,0,36,63,64,63,128,0,0,0,0,0,0,63,64,63,255,255,255,255,255,64,0,63,64,63,255,255,255,255,255,64,0,63,64,63,255,255,255,255,255,64,0,63,64,63,248,31,66,240,63,64,0,63,64,127,248,31,66,240,63,64,0,63,64,191,248,31,66,240,63,64,0,63,64,255,248,31,66,240,63,64,0,63,64,255,255,255,255,255,255,64,0,63,65,253,255,255,255,255,255,64,0,63,67,253,255,255,255,255,255,64,0,63,67,249,248,31,66,240,63,64,0,63,75,245,248,31,66,240,63,64,0,63,79,241,248,31,66,240,63,64,0,63,127,209,248,31,66,240,63,64,0,63,95,193,248,31,66,240,63,64,0,63,71,1,248,31,66,247,255,64,0,63,64,1,248,31,66,243,255,0,0,63,64,1,248,31,66,242,248,0,0,0,0,0,0,0,0,0,0,0, + // 0x505c 停 + 92,80,38,38,124,40,1,252,0,0,36,0,0,6,160,0,0,0,0,0,127,64,0,11,240,0,0,0,0,0,191,0,0,11,240,0,0,0,0,0,255,0,0,11,240,0,0,0,0,2,254,255,255,255,255,255,255,192,0,3,252,255,255,255,255,255,255,192,0,11,244,255,255,255,255,255,255,192,0,15,240,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,127,192,7,255,255,255,255,244,0,0,255,128,7,255,255,255,255,244,0,2,255,128,7,250,170,170,171,244,0,7,255,128,7,240,0,0,7,244,0,15,255,128,7,240,0,0,7,244,0,63,255,128,7,240,0,0,7,244,0,191,255,128,7,255,255,255,255,244,0,255,191,128,7,255,255,255,255,244,0,127,63,128,2,170,170,170,170,160,0,60,63,128,0,0,0,0,0,0,0,20,63,131,255,255,255,255,255,255,224,0,63,131,255,255,255,255,255,255,224,0,63,131,255,255,255,255,255,255,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,0,0,0,0,15,224,0,63,131,244,255,255,255,255,207,224,0,63,131,244,255,255,255,255,207,224,0,63,128,0,255,255,255,255,192,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,0,11,240,0,0,0,0,63,128,0,21,95,240,0,0,0,0,63,128,0,63,255,240,0,0,0,0,63,128,0,47,255,224,0,0,0,0,47,128,0,31,254,64,0,0,0, + // 0x5075 偵 + 117,80,37,38,124,40,1,252,0,0,4,0,0,10,160,0,0,0,0,0,47,128,0,15,240,0,0,0,0,0,63,192,0,15,240,0,0,0,0,0,191,64,0,15,240,0,0,0,0,0,255,0,0,15,255,255,255,128,0,1,254,0,0,15,255,255,255,128,0,3,252,0,0,15,255,255,255,128,0,11,248,0,0,15,240,0,0,0,0,15,240,0,0,15,240,0,0,0,0,63,224,0,0,15,240,0,0,0,0,191,208,15,255,255,255,255,252,0,0,255,208,15,255,255,255,255,252,0,3,255,208,15,255,255,255,255,252,0,15,255,208,15,224,0,0,3,252,0,63,255,208,15,224,0,0,3,252,0,255,239,208,15,250,170,170,171,252,0,191,143,208,15,255,255,255,255,252,0,63,15,208,15,255,255,255,255,252,0,44,15,208,15,224,0,0,3,252,0,0,15,208,15,224,0,0,3,252,0,0,15,208,15,224,0,0,3,252,0,0,15,208,15,250,170,170,171,252,0,0,15,208,15,255,255,255,255,252,0,0,15,208,15,255,255,255,255,252,0,0,15,208,15,224,0,0,3,252,0,0,15,208,15,224,0,0,3,252,0,0,15,208,15,224,0,0,3,252,0,0,15,208,15,255,255,255,255,252,0,0,15,208,15,255,255,255,255,252,0,0,15,208,15,255,255,255,255,248,0,0,15,208,0,1,0,0,16,0,0,0,15,208,0,15,224,1,253,0,0,0,15,208,0,191,240,3,255,128,0,0,15,208,7,255,192,0,191,244,0,0,15,208,127,254,0,0,31,254,0,0,15,211,255,244,0,0,3,255,192,0,15,208,191,128,0,0,0,191,64,0,10,128,40,0,0,0,0,24,0, + // 0x5099 備 + 153,80,38,38,124,40,1,252,0,0,128,0,10,128,0,168,0,0,0,1,253,0,31,192,0,253,0,0,0,2,252,0,31,192,0,253,0,0,0,3,248,85,111,213,85,254,85,64,0,7,245,255,255,255,255,255,255,192,0,15,241,255,255,255,255,255,255,192,0,31,209,255,255,255,255,255,255,192,0,47,192,0,31,192,0,253,0,0,0,63,128,0,31,192,0,253,0,0,0,191,64,0,31,192,0,253,0,0,0,255,64,0,0,0,0,0,0,0,3,255,64,85,85,85,85,85,85,64,7,255,64,255,255,255,255,255,255,208,15,255,64,255,255,255,255,255,255,208,47,255,64,255,255,255,255,255,255,208,127,255,64,253,0,0,0,0,0,0,255,191,64,253,0,0,0,0,0,0,191,63,64,253,31,255,255,255,255,64,60,63,64,253,47,255,255,255,255,64,36,63,64,253,47,255,255,255,255,64,0,63,64,253,47,128,47,0,63,64,0,63,64,253,47,128,47,0,63,64,0,63,64,253,47,128,47,0,63,64,0,63,64,253,47,255,255,255,255,64,0,63,64,253,47,255,255,255,255,64,0,63,64,252,47,213,127,149,127,64,0,63,65,252,47,128,47,0,63,64,0,63,65,252,47,128,47,0,63,64,0,63,66,252,47,213,127,149,127,64,0,63,67,248,47,255,255,255,255,64,0,63,67,244,47,255,255,255,255,64,0,63,71,240,47,128,47,0,63,64,0,63,75,240,47,128,47,0,63,64,0,63,79,224,47,128,47,0,63,64,0,63,111,208,47,128,47,0,63,64,0,63,127,192,47,128,47,15,255,64,0,63,79,64,47,128,47,15,255,0,0,63,66,0,31,64,26,11,228,0, + // 0x50b3 傳 + 179,80,38,38,124,40,1,252,0,0,16,0,0,1,80,0,0,0,0,0,63,64,0,7,240,0,0,0,0,0,191,64,0,7,240,0,0,0,0,0,255,255,255,255,255,255,255,192,0,1,253,255,255,255,255,255,255,192,0,3,252,255,255,255,255,255,255,192,0,11,244,0,0,7,240,0,0,0,0,15,240,0,0,7,240,0,0,0,0,47,208,31,255,255,255,255,254,0,0,63,192,31,255,255,255,255,254,0,0,255,192,31,192,11,244,0,254,0,2,255,128,31,192,7,240,0,254,0,3,255,128,31,255,255,255,255,254,0,15,255,128,31,255,255,255,255,254,0,63,255,128,31,192,11,244,0,254,0,191,255,128,31,192,7,240,0,254,0,255,191,128,31,192,11,244,0,254,0,127,63,128,31,255,255,255,255,254,0,60,63,128,31,255,255,255,255,254,0,16,63,128,0,0,7,240,31,224,0,0,63,128,0,0,11,240,7,248,0,0,63,128,255,255,255,255,255,255,0,0,63,128,255,255,255,255,255,255,192,0,63,128,255,255,170,169,255,175,208,0,63,128,0,0,0,0,191,7,0,0,63,128,0,0,0,0,191,0,0,0,63,131,255,255,255,255,255,255,208,0,63,131,255,255,255,255,255,255,208,0,63,131,255,255,255,255,255,255,208,0,63,128,0,248,0,0,191,0,0,0,63,128,3,254,0,0,191,0,0,0,63,128,0,255,128,0,191,0,0,0,63,128,0,63,208,0,191,0,0,0,63,128,0,31,240,0,191,0,0,0,63,128,0,7,240,0,191,0,0,0,63,128,0,2,131,255,255,0,0,0,63,128,0,0,2,255,254,0,0,0,42,128,0,0,0,255,228,0,0, + // 0x50be 傾 + 190,80,38,38,124,40,1,252,0,1,64,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,7,240,0,15,255,255,255,255,208,0,11,240,0,15,255,255,255,255,208,0,15,211,240,15,255,255,255,255,208,0,31,199,240,0,0,15,240,0,0,0,63,199,240,0,0,31,208,0,0,0,127,71,240,0,0,31,192,0,0,0,191,7,240,0,255,255,255,255,0,0,255,7,240,0,255,255,255,255,0,2,255,7,240,52,255,255,255,255,0,3,255,7,240,253,253,0,0,127,0,11,255,7,242,254,253,0,0,127,0,31,255,7,251,248,253,0,0,127,0,63,255,7,255,224,255,170,170,255,0,191,255,7,255,128,255,255,255,255,0,255,127,7,253,0,255,255,255,255,0,189,127,7,244,0,253,0,0,127,0,60,127,7,240,0,253,0,0,127,0,48,127,7,240,0,253,0,0,127,0,0,127,7,240,0,253,0,0,127,0,0,127,7,240,0,255,255,255,255,0,0,127,7,240,16,255,255,255,255,0,0,127,7,240,62,255,170,170,255,0,0,127,7,240,63,253,0,0,127,0,0,127,7,240,63,253,0,0,127,0,0,127,7,240,63,253,0,0,127,0,0,127,3,240,63,255,255,255,255,0,0,127,3,255,254,255,255,255,255,0,0,127,3,255,252,255,255,255,255,0,0,127,0,255,244,2,0,1,0,0,0,127,0,0,0,15,224,15,208,0,0,127,0,0,0,127,240,47,248,0,0,127,0,0,3,255,192,7,254,0,0,127,0,0,47,254,0,1,255,192,0,127,0,0,255,244,0,0,63,224,0,127,0,0,63,128,0,0,15,192,0,127,0,0,24,0,0,0,2,0, + // 0x5132 儲 + 50,81,38,38,124,40,1,252,0,1,0,0,0,0,47,64,0,0,0,3,244,0,0,0,47,128,14,64,0,7,246,255,255,64,47,128,47,192,0,11,242,255,255,64,47,128,63,64,0,15,226,255,255,64,47,128,127,0,0,31,208,0,0,11,255,254,190,0,0,63,192,0,0,15,255,255,253,0,0,127,79,255,255,223,255,255,252,0,0,191,15,255,255,224,47,131,244,0,0,255,15,255,255,224,47,139,240,0,3,255,0,0,0,0,47,143,208,0,7,255,0,0,0,0,47,175,192,0,15,255,0,0,0,47,255,255,255,208,47,255,3,255,255,111,255,255,255,208,127,255,3,255,255,111,255,255,255,208,255,255,3,255,255,64,11,244,128,0,191,127,0,0,0,0,31,231,240,0,60,127,0,0,0,0,127,194,252,0,52,127,3,255,255,64,255,0,190,0,0,127,3,255,255,71,253,0,52,0,0,127,3,255,255,95,255,255,255,0,0,127,0,0,0,191,255,255,255,0,0,127,0,0,0,191,255,255,255,0,0,127,0,0,0,62,190,0,127,0,0,127,3,255,255,196,190,0,127,0,0,127,3,255,255,192,190,0,127,0,0,127,3,255,255,192,190,0,127,0,0,127,3,240,15,192,191,255,255,0,0,127,3,240,15,192,191,255,255,0,0,127,3,240,15,192,191,255,255,0,0,127,3,240,15,192,190,0,127,0,0,127,3,240,15,192,190,0,127,0,0,127,3,255,255,192,190,0,127,0,0,127,3,255,255,192,191,255,255,0,0,127,3,255,255,192,191,255,255,0,0,127,3,240,0,0,191,255,255,0,0,127,3,240,0,0,190,0,127,0,0,106,1,80,0,0,105,0,21,0, + // 0x5145 充 + 69,81,37,38,124,40,2,252,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,63,255,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,253,0,63,255,255,255,255,255,255,255,253,0,42,170,171,255,170,170,170,170,168,0,0,0,3,253,0,0,208,0,0,0,0,0,7,252,0,11,244,0,0,0,0,0,11,244,0,11,254,0,0,0,0,0,15,240,0,2,255,128,0,0,0,0,47,208,0,0,191,224,0,0,0,0,63,128,0,0,31,248,0,0,0,0,127,170,175,255,255,254,0,0,15,255,255,255,255,255,255,255,128,0,15,255,255,255,255,255,255,255,224,0,15,255,255,255,255,234,165,111,244,0,15,234,85,0,0,0,0,15,248,0,0,0,1,84,0,42,128,3,208,0,0,0,7,248,0,63,192,0,0,0,0,0,7,248,0,63,192,0,0,0,0,0,7,244,0,63,192,0,0,0,0,0,11,244,0,63,192,0,0,0,0,0,15,240,0,63,192,0,0,0,0,0,15,240,0,63,192,0,0,0,0,0,31,224,0,63,192,0,32,0,0,0,63,208,0,63,192,0,62,0,0,0,191,192,0,63,192,0,63,64,0,1,255,64,0,63,192,0,63,64,0,7,255,0,0,63,192,0,127,0,0,63,252,0,0,63,192,0,127,0,6,255,240,0,0,47,192,0,255,0,191,255,192,0,0,47,255,255,254,0,191,253,0,0,0,31,255,255,252,0,63,224,0,0,0,11,255,255,248,0,24,0,0,0,0,0,106,170,64,0, + // 0x5148 先 + 72,81,36,38,86,40,2,252,0,0,0,0,191,0,0,0,0,0,2,228,0,255,0,0,0,0,0,3,252,0,255,0,0,0,0,0,3,248,0,255,0,0,0,0,0,7,244,0,255,0,0,0,0,0,15,240,0,255,0,0,0,0,0,15,255,255,255,255,255,255,128,0,47,255,255,255,255,255,255,128,0,63,255,255,255,255,255,255,128,0,127,170,170,255,170,170,170,64,0,255,0,0,255,0,0,0,0,2,254,0,0,255,0,0,0,0,3,252,0,0,255,0,0,0,0,15,248,0,0,255,0,0,0,0,2,240,0,0,255,0,0,0,0,0,80,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,106,170,170,170,255,170,170,170,169,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,11,244,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,15,224,0,63,192,0,0,0,0,31,224,0,63,192,0,0,0,0,47,208,0,63,192,0,0,0,0,63,192,0,63,192,0,0,0,0,191,128,0,63,192,0,116,0,1,255,0,0,63,192,0,127,0,3,254,0,0,63,192,0,191,0,31,252,0,0,63,192,0,191,0,191,244,0,0,63,192,0,254,7,255,208,0,0,63,234,170,253,191,255,64,0,0,47,255,255,252,127,252,0,0,0,15,255,255,248,47,208,0,0,0,2,255,255,224,13,0,0,0,0,0,0,0,0, + // 0x5149 光 + 73,81,38,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,7,0,0,63,128,0,15,64,0,0,127,128,0,63,128,0,31,240,0,0,63,192,0,63,128,0,63,208,0,0,47,224,0,63,128,0,127,192,0,0,15,240,0,63,128,0,191,64,0,0,11,248,0,63,128,0,255,0,0,0,3,252,0,63,128,2,253,0,0,0,2,254,0,63,128,3,252,0,0,0,0,255,0,63,128,11,244,0,0,0,0,255,64,63,128,31,224,0,0,0,0,125,0,63,128,7,192,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,26,170,170,170,191,234,170,170,170,64,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192,0,0,2,253,0,15,240,0,0,0,0,0,2,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,3,252,0,15,240,0,0,0,0,0,7,248,0,15,240,0,0,0,0,0,11,244,0,15,240,0,0,0,0,0,15,240,0,15,240,0,0,0,0,0,31,240,0,15,240,0,4,0,0,0,63,208,0,15,240,0,14,64,0,0,191,192,0,15,240,0,15,208,0,2,255,64,0,15,240,0,31,192,0,11,254,0,0,15,240,0,31,192,0,127,252,0,0,15,240,0,47,192,7,255,240,0,0,15,240,0,63,192,127,255,128,0,0,11,255,255,255,128,47,253,0,0,0,7,255,255,255,0,15,208,0,0,0,2,255,255,253,0,5,0,0,0,0,0,21,85,80,0, + // 0x5165 入 + 101,81,37,36,104,40,2,252,0,2,170,170,170,64,0,0,0,0,0,3,255,255,255,64,0,0,0,0,0,3,255,255,255,64,0,0,0,0,0,3,255,255,255,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,1,63,192,0,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,7,255,224,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,0,31,251,244,0,0,0,0,0,0,0,47,231,252,0,0,0,0,0,0,0,63,211,252,0,0,0,0,0,0,0,127,194,254,0,0,0,0,0,0,0,255,128,255,0,0,0,0,0,0,1,255,0,255,128,0,0,0,0,0,3,255,0,127,192,0,0,0,0,0,7,253,0,63,224,0,0,0,0,0,15,252,0,31,244,0,0,0,0,0,47,244,0,15,252,0,0,0,0,0,127,224,0,7,254,0,0,0,0,0,255,192,0,2,255,128,0,0,0,3,255,64,0,0,255,208,0,0,0,15,254,0,0,0,127,244,0,0,0,47,252,0,0,0,47,253,0,0,0,255,240,0,0,0,11,255,128,0,7,255,192,0,0,0,2,255,240,0,47,255,64,0,0,0,0,191,253,0,255,252,0,0,0,0,0,47,255,64,127,224,0,0,0,0,0,7,253,0,31,64,0,0,0,0,0,0,248,0,5,0,0,0,0,0,0,0,16,0, + // 0x5168 全 + 104,81,37,37,114,40,1,253,0,0,0,0,191,192,0,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,0,11,255,253,0,0,0,0,0,0,0,31,246,255,0,0,0,0,0,0,0,127,224,255,192,0,0,0,0,0,1,255,192,63,240,0,0,0,0,0,7,255,0,15,253,0,0,0,0,0,31,252,0,3,255,64,0,0,0,0,191,240,0,0,255,224,0,0,0,2,255,192,0,0,63,248,0,0,0,15,255,0,0,0,15,255,64,0,0,127,252,0,0,0,3,255,224,0,2,255,224,0,0,0,0,191,253,0,31,255,64,0,0,0,0,31,255,192,127,255,255,255,255,255,255,255,255,192,47,226,255,255,255,255,255,252,127,64,15,2,255,255,255,255,255,252,10,0,0,0,85,85,127,213,85,80,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,47,255,255,255,255,255,255,64,0,0,47,255,255,255,255,255,255,64,0,0,47,255,255,255,255,255,255,64,0,0,0,0,0,127,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,5,85,85,85,127,213,85,85,85,0,15,255,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,255,0, + // 0x5171 共 + 113,81,36,38,86,40,2,252,0,0,21,64,0,1,84,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,10,170,191,234,170,171,254,170,164,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,0,0,63,192,0,3,252,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,15,128,0,7,224,0,0,0,0,63,244,0,31,252,0,0,0,0,255,224,0,11,255,64,0,0,3,255,128,0,1,255,224,0,0,15,254,0,0,0,63,248,0,0,127,248,0,0,0,15,255,0,2,255,208,0,0,0,2,255,208,31,255,64,0,0,0,0,191,244,63,252,0,0,0,0,0,47,252,15,208,0,0,0,0,0,7,240,2,0,0,0,0,0,0,1,64, + // 0x5177 具 + 119,81,36,36,68,40,2,252,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,175,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,0,11,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,11,208,0,3,208,0,0,0,0,127,248,0,31,254,0,0,0,11,255,248,0,47,255,244,0,1,191,255,128,0,2,255,255,128,47,255,248,0,0,0,31,255,248,127,255,128,0,0,0,0,191,254,31,244,0,0,0,0,0,11,244,10,0,0,0,0,0,0,1,128, + // 0x5197 冗 + 151,81,37,35,94,40,2,252,47,255,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,255,252,0,47,255,255,255,255,255,255,255,252,0,47,234,170,170,170,170,170,171,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,47,192,0,0,0,0,0,3,252,0,21,64,63,255,255,255,248,1,84,0,0,0,63,255,255,255,248,0,0,0,0,0,63,255,255,255,248,0,0,0,0,0,63,229,85,91,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,63,192,0,3,248,0,0,0,0,0,127,128,0,3,248,0,0,0,0,0,191,64,0,3,248,0,16,0,0,0,255,0,0,3,248,0,61,0,0,2,254,0,0,3,248,0,63,64,0,7,253,0,0,3,248,0,127,64,0,31,248,0,0,3,248,0,127,0,0,127,240,0,0,3,248,0,127,0,3,255,208,0,0,3,252,0,191,0,47,255,64,0,0,3,255,170,255,0,255,253,0,0,0,3,255,255,253,0,127,224,0,0,0,1,255,255,252,0,47,64,0,0,0,0,127,255,224,0,4,0,0,0,0,0,0,0,0,0, + // 0x51b7 冷 + 183,81,37,38,124,40,2,252,0,0,0,0,0,170,0,0,0,0,0,0,0,0,2,255,64,0,0,0,4,0,0,0,7,255,192,0,0,0,31,0,0,0,15,255,240,0,0,0,127,208,0,0,47,255,248,0,0,0,191,248,0,0,191,195,254,0,0,0,31,254,0,1,255,65,255,128,0,0,7,255,128,7,255,0,191,208,0,0,0,255,208,31,252,0,47,248,0,0,0,63,128,127,240,0,11,254,0,0,0,14,1,255,208,0,3,255,192,0,0,0,7,255,64,0,0,191,244,0,0,0,47,254,85,85,85,111,254,0,0,1,255,243,255,255,255,203,255,128,0,2,255,195,255,255,255,193,255,0,0,0,254,3,255,255,255,192,61,0,0,0,116,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,66,255,255,255,255,255,208,0,0,15,210,255,255,255,255,255,208,0,0,47,226,255,255,255,255,255,208,0,0,63,193,85,95,245,85,111,208,0,0,191,128,0,15,240,0,15,208,0,1,255,0,0,15,240,0,15,208,0,3,254,0,0,15,240,0,15,208,0,11,252,0,0,15,240,0,15,208,0,15,244,0,0,15,240,0,15,208,0,63,240,0,0,15,240,0,15,208,0,127,208,0,0,15,240,42,175,208,0,255,128,0,0,15,240,63,255,208,0,255,0,0,0,15,240,31,255,192,0,45,0,0,0,15,240,15,253,0,0,4,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,10,160,0,0,0,0, + // 0x51c6 准 + 198,81,37,38,124,40,2,252,0,0,0,0,36,0,5,0,0,0,0,0,0,0,191,64,11,240,0,0,0,0,0,0,255,0,15,240,0,0,15,64,0,1,254,0,15,224,0,0,63,224,0,3,252,0,47,192,0,0,63,252,0,7,248,0,63,192,0,0,11,255,64,15,244,0,63,64,0,0,1,255,208,31,240,0,191,0,0,0,0,63,240,63,255,255,255,255,253,0,0,15,192,127,255,255,255,255,253,0,0,3,0,255,255,255,255,255,253,0,0,0,2,255,213,86,253,85,84,0,0,0,7,255,192,1,252,0,0,0,0,0,15,255,192,1,252,0,0,0,0,0,63,255,192,1,252,0,0,0,0,0,255,239,192,1,252,0,0,0,0,0,127,159,255,255,255,255,244,0,0,0,30,31,255,255,255,255,244,0,0,0,4,31,255,255,255,255,244,0,0,0,0,31,213,86,253,85,80,0,0,0,0,31,192,1,252,0,0,0,0,11,0,31,192,1,252,0,0,0,0,31,208,31,192,1,252,0,0,0,0,63,208,31,192,1,252,0,0,0,0,127,192,31,255,255,255,255,244,0,0,255,0,31,255,255,255,255,244,0,2,254,0,31,255,255,255,255,244,0,7,252,0,31,213,86,253,85,80,0,15,248,0,31,192,1,252,0,0,0,47,240,0,31,192,1,252,0,0,0,127,208,0,31,192,1,252,0,0,0,255,128,0,31,192,1,252,0,0,0,255,0,0,31,229,86,254,85,85,0,61,0,0,31,255,255,255,255,255,64,8,0,0,31,255,255,255,255,255,64,0,0,0,31,255,255,255,255,255,64,0,0,0,31,192,0,0,0,0,0,0,0,0,31,192,0,0,0,0,0, + // 0x51fa 出 + 250,81,32,38,48,40,4,252,0,0,0,10,144,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,224,0,15,224,0,15,240,15,250,170,175,250,170,175,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,15,255,255,255,255,255,255,240,0,0,0,15,224,0,0,0,0,0,0,15,224,0,0,0,106,0,0,15,224,0,0,169,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,0,0,15,224,0,0,254,191,170,170,175,250,170,170,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,255,255,255,255,255,255,254,191,0,0,0,0,0,0,254,191,0,0,0,0,0,0,254,106,0,0,0,0,0,0,169, + // 0x5206 分 + 6,82,38,37,114,40,1,252,0,0,1,228,0,0,180,0,0,0,0,0,3,254,0,7,252,0,0,0,0,0,7,252,0,3,254,0,0,0,0,0,15,248,0,1,255,0,0,0,0,0,31,240,0,0,255,192,0,0,0,0,63,224,0,0,63,224,0,0,0,0,255,192,0,0,47,244,0,0,0,1,255,64,0,0,15,252,0,0,0,3,255,0,0,0,3,255,0,0,0,15,252,0,0,0,1,255,192,0,0,63,244,0,0,0,0,255,224,0,0,191,224,0,0,0,0,63,248,0,2,255,192,0,0,0,0,15,254,0,15,255,0,0,0,0,0,7,255,192,63,255,170,170,170,170,170,171,255,224,191,251,255,255,255,255,255,253,191,192,47,195,255,255,255,255,255,253,47,0,11,3,255,255,255,255,255,253,4,0,0,0,0,15,240,0,2,253,0,0,0,0,0,15,240,0,2,253,0,0,0,0,0,31,240,0,2,253,0,0,0,0,0,31,224,0,2,252,0,0,0,0,0,47,208,0,2,252,0,0,0,0,0,63,192,0,3,252,0,0,0,0,0,127,192,0,3,252,0,0,0,0,0,255,128,0,3,252,0,0,0,0,1,255,0,0,3,252,0,0,0,0,3,254,0,0,3,252,0,0,0,0,15,252,0,0,3,248,0,0,0,0,47,248,0,0,7,248,0,0,0,0,255,224,0,0,11,244,0,0,0,7,255,192,0,0,15,244,0,0,0,127,255,0,0,0,47,240,0,0,7,255,248,0,7,255,255,224,0,0,3,255,208,0,3,255,255,208,0,0,1,254,0,0,2,255,255,64,0,0,0,224,0,0,0,170,148,0,0,0, + // 0x5217 列 + 23,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,254,31,255,255,255,255,192,0,0,254,31,255,255,255,255,192,0,0,254,31,255,255,255,255,192,0,0,254,5,86,255,85,85,75,240,0,254,0,1,254,0,0,11,240,0,254,0,2,252,0,0,11,240,0,254,0,3,252,0,0,11,240,0,254,0,3,248,0,0,11,240,0,254,0,7,244,0,0,11,240,0,254,0,15,255,255,254,11,240,0,254,0,31,255,255,255,11,240,0,254,0,47,255,255,254,11,240,0,254,0,63,213,85,254,11,240,0,254,0,191,64,1,253,11,240,0,254,0,255,0,2,252,11,240,0,254,3,253,0,3,252,11,240,0,254,7,255,0,3,248,11,240,0,254,15,255,224,7,244,11,240,0,254,63,255,252,15,240,11,240,0,254,255,203,255,79,224,11,240,0,254,127,1,255,255,208,11,240,0,254,12,0,63,255,192,11,240,0,254,0,0,11,255,64,11,240,0,254,0,0,1,255,0,11,240,0,254,0,0,2,253,0,11,240,0,254,0,0,7,252,0,0,0,0,254,0,0,15,244,0,0,0,0,254,0,0,63,224,0,0,0,0,254,0,0,191,192,0,0,0,0,254,0,2,255,64,0,0,0,0,254,0,15,253,0,0,0,0,0,254,0,127,248,0,0,0,0,1,254,2,255,224,0,0,0,47,255,253,3,255,64,0,0,0,15,255,252,0,252,0,0,0,0,15,255,244,0,32,0,0,0,0,6,169,64, + // 0x521d 初 + 29,82,37,39,134,40,1,251,0,3,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,170,170,170,170,170,64,0,7,244,1,255,255,255,255,255,128,0,7,244,1,255,255,255,255,255,128,0,7,244,1,255,255,255,255,255,128,21,91,249,80,0,15,224,0,127,64,63,255,255,253,0,15,224,0,127,64,63,255,255,253,0,15,224,0,127,64,63,255,255,252,0,31,224,0,127,64,0,0,3,248,0,31,208,0,127,64,0,0,11,240,0,31,208,0,127,64,0,0,31,224,0,31,208,0,127,64,0,0,63,192,0,31,208,0,127,64,0,0,191,70,0,47,192,0,191,64,0,1,255,15,128,47,192,0,191,64,0,3,252,47,192,47,192,0,191,0,0,11,252,127,0,63,192,0,191,0,0,47,255,252,0,63,192,0,191,0,0,191,255,244,0,63,128,0,191,0,1,255,255,240,0,127,64,0,191,0,11,255,251,252,0,191,0,0,255,0,47,255,245,255,0,255,0,0,255,0,191,231,244,191,64,255,0,0,255,0,63,199,244,62,2,253,0,0,255,0,46,7,244,12,3,252,0,0,255,0,8,7,244,0,7,252,0,0,255,0,0,7,244,0,15,244,0,0,254,0,0,7,244,0,31,240,0,1,254,0,0,7,244,0,63,208,0,1,253,0,0,7,244,0,191,192,0,2,253,0,0,7,244,2,255,64,0,3,252,0,0,7,244,11,254,0,0,11,252,0,0,7,244,47,252,0,191,255,248,0,0,7,244,63,240,0,63,255,240,0,0,7,244,15,192,0,63,255,208,0,0,3,244,2,0,0,42,169,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5230 到 + 48,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,254,63,255,255,255,255,208,0,0,254,63,255,255,255,255,208,0,0,254,63,255,255,255,255,211,244,0,254,21,87,253,85,85,67,244,0,254,0,7,248,0,0,3,244,0,254,0,11,244,7,192,3,244,0,254,0,15,240,31,224,3,244,0,254,0,31,208,11,244,3,244,0,254,0,47,192,3,252,3,244,0,254,0,63,128,0,255,3,244,0,254,42,255,255,255,255,67,244,0,254,63,255,255,255,255,195,244,0,254,63,255,255,255,255,227,244,0,254,63,254,170,85,11,243,244,0,254,0,0,21,64,3,131,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,3,244,0,254,11,255,255,255,255,3,244,0,254,11,255,255,255,255,3,244,0,254,11,255,255,255,255,3,244,0,254,1,85,111,213,85,3,244,0,254,0,0,47,192,0,3,244,0,254,0,0,47,192,0,2,164,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,0,0,0,0,254,0,0,47,192,5,144,0,0,254,0,0,47,239,255,208,0,0,254,5,175,255,255,255,208,0,0,254,127,255,255,255,255,208,0,0,254,63,255,255,254,148,0,31,255,254,63,255,165,0,0,0,15,255,253,41,0,0,0,0,0,11,255,248,0,0,0,0,0,0,7,170,64, + // 0x5236 制 + 54,82,36,38,86,40,1,252,0,0,6,144,0,0,0,0,0,0,164,11,240,0,0,0,0,191,0,254,11,240,0,0,0,0,191,1,253,11,240,0,0,0,0,191,2,252,11,240,0,0,47,192,191,3,252,11,240,0,0,47,192,191,3,255,255,255,255,208,47,192,191,7,255,255,255,255,208,47,192,191,15,255,255,255,255,208,47,192,191,31,229,95,245,85,64,47,192,191,63,192,11,240,0,0,47,192,191,127,128,11,240,0,0,47,192,191,7,0,11,240,0,0,47,192,191,63,255,255,255,255,252,47,192,191,63,255,255,255,255,252,47,192,191,63,255,255,255,255,252,47,192,191,21,85,95,245,85,84,47,192,191,0,0,11,240,0,0,47,192,191,0,0,11,240,0,0,47,192,191,0,0,11,240,0,0,47,192,191,7,255,255,255,255,240,47,192,191,7,255,255,255,255,240,47,192,191,7,255,255,255,255,240,47,192,191,7,245,95,245,91,240,47,192,191,7,240,11,240,11,240,47,192,191,7,240,11,240,11,240,47,192,191,7,240,11,240,11,240,21,64,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,240,11,240,0,0,191,7,240,11,243,255,224,0,0,191,7,240,11,241,255,208,0,0,191,7,224,11,240,254,64,7,255,255,0,0,11,240,0,0,3,255,254,0,0,11,240,0,0,2,255,252,0,0,11,240,0,0,1,250,144, + // 0x5237 刷 + 55,82,36,37,77,40,1,252,0,0,0,0,0,0,0,0,190,1,85,85,85,85,80,0,0,191,3,255,255,255,255,240,0,0,191,3,255,255,255,255,240,21,0,191,3,255,255,255,255,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,244,0,0,11,240,191,0,191,3,255,255,255,255,240,191,0,191,3,255,255,255,255,240,191,0,191,3,255,255,255,255,240,191,0,191,3,249,85,191,85,80,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,244,0,127,0,0,191,0,191,3,251,255,255,255,240,191,0,191,3,251,255,255,255,240,191,0,191,3,251,255,255,255,240,191,0,191,3,251,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,3,247,224,127,3,240,191,0,191,7,243,224,127,3,240,191,0,191,7,243,224,127,3,240,191,0,191,11,227,224,127,3,240,21,0,191,15,227,224,127,3,240,0,0,191,15,211,224,127,3,240,0,0,191,15,195,224,127,191,240,0,0,191,47,195,224,127,63,224,0,0,191,63,131,224,127,63,128,0,0,191,63,65,64,127,0,0,0,0,255,191,0,0,127,0,0,7,255,255,62,0,0,127,0,0,3,255,254,8,0,0,127,0,0,2,255,252,0,0,0,126,0,0,1,234,80, + // 0x5275 創 + 117,82,36,38,86,40,1,252,0,0,1,80,0,0,0,0,0,0,0,15,252,0,0,0,0,254,0,0,47,255,0,0,0,0,254,0,0,127,255,208,0,0,0,254,0,1,255,111,248,0,0,0,254,0,3,253,7,254,2,252,0,254,0,15,248,1,255,130,252,0,254,0,127,224,0,127,242,252,0,254,1,255,255,255,255,242,252,0,254,11,254,255,255,231,210,252,0,254,127,248,106,170,145,66,252,0,254,63,224,0,0,0,2,252,0,254,31,234,170,170,170,66,252,0,254,8,191,255,255,255,66,252,0,254,0,191,255,255,255,66,252,0,254,0,190,0,0,63,66,252,0,254,0,190,0,0,63,66,252,0,254,0,191,255,255,255,66,252,0,254,0,191,255,255,255,66,252,0,254,0,191,85,85,127,66,252,0,254,0,190,0,0,63,66,252,0,254,0,190,0,0,63,66,252,0,254,0,191,255,255,255,66,252,0,254,0,255,255,255,255,66,252,0,254,0,255,170,170,170,66,252,0,254,0,252,0,0,0,2,252,0,254,0,254,170,170,170,130,252,0,254,1,255,255,255,255,194,252,0,254,2,255,255,255,255,192,0,0,254,3,251,224,0,15,192,0,0,254,7,247,224,0,15,192,0,0,254,11,231,224,0,15,192,0,0,254,15,215,224,0,15,192,0,0,254,63,199,255,255,255,192,0,0,254,127,7,255,255,255,192,15,255,254,30,7,255,255,255,192,15,255,253,4,7,224,0,15,192,11,255,248,0,6,144,0,5,64,2,170,64, + // 0x529b 力 + 155,82,34,39,95,40,2,251,0,0,0,10,160,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,240,0,0,0,0,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,47,255,255,255,255,255,255,255,240,0,0,0,31,224,0,0,15,240,0,0,0,31,224,0,0,15,240,0,0,0,47,208,0,0,15,240,0,0,0,47,208,0,0,15,240,0,0,0,63,192,0,0,15,240,0,0,0,63,192,0,0,15,224,0,0,0,127,128,0,0,15,224,0,0,0,255,64,0,0,15,224,0,0,0,255,0,0,0,31,224,0,0,1,255,0,0,0,31,208,0,0,3,253,0,0,0,31,208,0,0,7,252,0,0,0,47,208,0,0,15,248,0,0,0,47,192,0,0,47,240,0,0,0,63,192,0,0,63,224,0,0,0,63,192,0,0,255,192,0,0,0,63,192,0,3,255,64,0,0,0,127,128,0,11,254,0,0,0,0,127,128,0,63,252,0,0,0,0,191,64,0,255,240,0,0,0,0,255,0,7,255,192,0,0,0,3,255,0,47,255,0,0,0,255,255,254,0,127,252,0,0,0,255,255,252,0,31,208,0,0,0,127,255,240,0,11,0,0,0,0,42,170,64,0,0,0,0,0,0,0,0,0,0, + // 0x52a0 加 + 160,82,36,37,77,40,1,252,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,0,0,0,0,0,11,240,0,0,31,255,255,253,0,11,240,0,0,31,255,255,253,0,11,240,0,0,31,255,255,253,47,255,255,255,252,31,234,170,253,47,255,255,255,252,31,192,0,253,47,255,255,255,252,31,192,0,253,26,175,250,171,248,31,192,0,253,0,11,240,3,248,31,192,0,253,0,15,240,3,248,31,192,0,253,0,15,240,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,224,3,248,31,192,0,253,0,15,208,3,248,31,192,0,253,0,31,208,3,248,31,192,0,253,0,31,192,3,248,31,192,0,253,0,47,192,3,244,31,192,0,253,0,63,192,3,244,31,192,0,253,0,63,128,3,244,31,192,0,253,0,63,128,7,244,31,192,0,253,0,127,64,7,244,31,192,0,253,0,191,0,7,244,31,192,0,253,0,255,0,7,240,31,192,0,253,1,254,0,11,240,31,192,0,253,3,252,0,11,240,31,234,170,253,7,248,0,15,240,31,255,255,253,15,244,0,15,240,31,255,255,253,47,240,106,191,224,31,255,255,253,127,208,63,255,208,31,192,0,253,127,128,63,255,128,31,192,0,253,15,0,47,253,0,31,192,0,169,4,0,0,0,0,0,0,0,0, + // 0x52d5 動 + 213,82,37,38,124,40,1,252,0,0,0,0,80,0,0,0,0,0,0,0,86,191,252,0,127,64,0,0,47,255,255,255,254,0,127,64,0,0,47,255,255,255,228,0,127,64,0,0,15,250,191,128,0,0,127,64,0,0,0,0,63,64,0,0,127,64,0,0,0,0,63,64,0,0,127,64,0,0,42,170,191,234,170,64,127,0,0,0,63,255,255,255,255,128,127,0,0,0,63,255,255,255,255,149,191,149,85,0,0,0,63,64,0,191,255,255,255,64,0,0,63,64,0,191,255,255,255,64,15,255,255,255,255,191,255,255,255,64,15,255,255,255,255,0,127,0,63,64,15,213,127,149,191,0,191,0,63,64,15,192,63,64,127,0,191,0,63,64,15,192,63,64,127,0,191,0,127,64,15,255,255,255,255,0,190,0,127,64,15,255,255,255,255,0,254,0,127,64,15,213,127,149,127,0,254,0,127,0,15,192,63,64,127,0,253,0,127,0,15,192,63,64,127,1,253,0,127,0,15,255,255,255,255,2,252,0,127,0,15,255,255,255,255,2,252,0,191,0,5,85,127,149,85,3,248,0,191,0,0,0,63,64,0,7,244,0,191,0,10,170,191,234,170,11,240,0,191,0,15,255,255,255,255,15,240,0,191,0,15,255,255,255,255,47,208,0,255,0,0,0,63,64,0,63,192,0,254,0,0,0,63,64,0,191,128,0,254,0,0,0,63,133,175,255,0,0,253,0,0,86,191,255,255,254,0,1,253,0,127,255,255,255,255,252,0,3,252,0,63,255,255,254,191,244,15,255,252,0,63,234,80,0,127,208,15,255,244,0,0,0,0,0,31,64,11,255,224,0,0,0,0,0,5,0,1,85,0,0, + // 0x5316 化 + 22,83,38,37,114,40,1,252,0,0,3,144,11,240,0,0,0,0,0,0,11,248,11,240,0,0,0,0,0,0,15,240,11,240,0,0,0,0,0,0,47,224,11,240,0,0,0,0,0,0,63,192,11,240,0,0,0,0,0,0,255,128,11,240,0,0,0,0,0,1,255,0,11,240,0,0,0,0,0,3,254,0,11,240,0,0,160,0,0,11,252,0,11,240,0,2,244,0,0,31,244,0,11,240,0,15,253,0,0,63,244,0,11,240,0,127,253,0,0,255,244,0,11,240,2,255,240,0,2,255,244,0,11,240,31,255,128,0,11,255,244,0,11,240,255,252,0,0,47,255,244,0,11,251,255,208,0,0,191,247,244,0,11,255,254,0,0,0,255,215,244,0,11,255,224,0,0,0,63,71,244,0,11,255,64,0,0,0,45,7,244,0,11,244,0,0,0,0,4,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,0,0,0,7,244,0,11,240,0,0,4,0,0,7,244,0,11,240,0,0,15,128,0,7,244,0,11,240,0,0,15,224,0,7,244,0,11,240,0,0,15,208,0,7,244,0,11,240,0,0,15,208,0,7,244,0,11,240,0,0,31,192,0,7,244,0,11,244,0,0,63,192,0,7,244,0,7,254,85,86,255,128,0,7,244,0,3,255,255,255,255,64,0,7,244,0,2,255,255,255,254,0,0,7,244,0,0,111,255,255,244,0,0,2,160,0,0,0,0,0,0,0, + // 0x534a 半 + 74,83,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,9,0,0,255,0,0,164,0,0,191,0,0,255,0,0,255,64,0,255,64,0,255,0,1,255,0,0,127,192,0,255,0,3,253,0,0,47,224,0,255,0,7,252,0,0,15,240,0,255,0,15,244,0,0,11,248,0,255,0,31,240,0,0,3,252,0,255,0,63,208,0,0,3,253,0,255,0,191,128,0,0,1,253,0,255,0,191,0,0,0,0,128,0,255,0,5,0,0,0,0,0,0,255,0,0,0,0,2,170,170,170,255,170,170,170,144,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,7,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,171,255,170,170,170,170,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x5354 協 + 84,83,37,38,124,40,1,252,0,47,192,0,0,7,240,0,0,0,0,47,192,0,0,7,240,0,0,0,0,47,192,0,0,11,240,0,0,0,0,47,192,0,0,11,240,0,0,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,255,255,255,255,252,0,0,47,192,0,0,63,192,1,252,0,0,47,192,0,0,127,64,1,252,0,0,47,192,0,0,255,0,2,252,0,21,127,213,64,2,253,0,2,252,0,127,255,255,208,7,252,0,3,248,0,127,255,255,208,47,240,0,7,244,0,127,255,255,209,255,192,15,255,240,0,0,47,192,31,254,0,15,255,224,0,0,47,192,15,244,0,11,255,64,0,0,47,192,3,64,0,0,0,0,0,0,47,192,3,240,0,0,252,0,0,0,47,192,3,240,0,0,252,0,0,0,47,192,3,240,0,0,252,0,0,0,47,192,3,240,0,0,252,0,0,0,47,194,255,255,253,191,255,255,128,0,47,195,255,255,253,191,255,255,192,0,47,195,255,255,253,191,255,255,128,0,47,192,7,224,189,1,248,31,128,0,47,192,11,224,189,2,248,31,128,0,47,192,11,208,252,3,244,31,128,0,47,192,15,192,252,3,240,31,128,0,47,192,15,192,252,3,240,31,128,0,47,192,31,128,252,11,224,47,128,0,47,192,47,64,252,15,208,47,64,0,47,192,63,0,252,31,192,47,64,0,47,192,191,0,252,63,128,63,64,0,47,192,253,1,252,127,0,63,0,0,47,195,252,2,249,254,0,127,0,0,47,203,240,191,247,252,31,255,0,0,47,195,208,127,240,240,15,253,0,0,47,193,64,63,128,64,15,244,0, + // 0x5361 卡 + 97,83,36,38,86,40,2,252,0,0,0,2,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,254,170,170,169,0,0,0,0,3,255,255,255,254,0,0,0,0,3,255,255,255,254,0,0,0,0,3,255,255,255,254,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,171,254,170,170,170,170,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,64,0,0,0,0,0,0,3,255,249,0,0,0,0,0,0,3,255,255,228,0,0,0,0,0,3,255,255,255,144,0,0,0,0,3,252,111,255,253,0,0,0,0,3,252,1,255,255,192,0,0,0,3,252,0,11,255,128,0,0,0,3,252,0,0,127,0,0,0,0,3,252,0,0,5,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,2,252,0,0,0,0, + // 0x5370 印 + 112,83,33,38,86,40,4,252,0,0,1,64,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,127,255,248,63,255,255,255,192,251,255,255,128,63,255,255,255,192,255,255,228,0,63,255,255,255,192,255,249,0,0,63,234,170,191,192,255,64,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,170,170,160,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,0,0,0,63,128,0,63,192,255,255,255,244,63,128,0,63,192,255,255,255,244,63,129,255,255,128,255,255,255,244,63,128,255,255,128,255,170,170,164,63,128,191,255,0,255,0,0,0,63,128,63,228,0,255,0,0,0,63,128,0,0,0,255,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,42,64,0,0,0, + // 0x5378 卸 + 120,83,36,38,86,40,1,252,0,10,64,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,47,192,0,0,5,85,85,85,0,63,128,0,0,15,255,255,255,0,127,149,85,84,15,255,255,255,0,255,255,255,254,15,255,255,255,1,255,255,255,254,15,208,0,191,3,255,255,255,254,15,208,0,191,11,244,31,192,0,15,208,0,191,31,240,31,192,0,15,208,0,191,63,208,31,192,0,15,208,0,191,11,128,31,192,0,15,208,0,191,1,0,31,192,0,15,208,0,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,63,255,255,255,255,79,208,0,191,21,85,111,213,85,15,208,0,191,0,0,31,192,0,15,208,0,191,0,0,31,192,0,15,208,0,191,2,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,255,252,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,191,3,244,31,192,0,15,208,0,255,3,244,31,192,0,15,208,255,255,3,244,31,192,26,79,208,191,254,3,244,31,255,255,79,208,127,252,3,255,255,255,255,79,208,62,144,127,255,255,255,255,79,208,0,0,127,255,255,249,64,15,208,0,0,127,255,148,0,0,15,208,0,0,57,64,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,15,208,0,0, + // 0x537b 卻 + 123,83,36,37,77,40,1,252,0,0,47,224,0,0,0,0,0,0,0,127,252,0,10,170,170,169,0,0,255,255,0,15,255,255,255,0,3,255,255,208,15,255,255,255,0,11,252,63,244,15,255,255,255,0,47,240,15,253,15,208,0,191,0,255,192,3,255,79,208,0,191,7,255,0,0,255,143,208,0,191,47,252,0,0,63,15,208,0,191,15,240,0,0,12,15,208,0,191,7,128,47,240,0,15,208,0,191,0,0,127,252,0,15,208,0,191,0,0,255,255,0,15,208,0,191,0,3,255,255,192,15,208,0,191,0,11,252,63,240,15,208,0,191,0,47,244,15,252,15,208,0,191,0,191,224,7,254,15,208,0,191,2,255,128,1,255,143,208,0,191,15,254,0,0,191,207,208,0,191,127,248,0,0,63,15,208,0,191,127,240,0,0,29,15,208,0,191,31,191,255,255,244,15,208,0,191,4,191,255,255,244,15,208,0,191,0,191,255,255,244,15,208,0,191,0,191,0,3,244,15,208,0,191,0,191,0,3,244,15,208,0,255,0,191,0,3,244,15,208,255,255,0,191,0,3,244,15,208,191,254,0,191,0,3,244,15,208,127,252,0,191,0,3,244,15,208,42,144,0,191,0,7,244,15,208,0,0,0,191,255,255,244,15,208,0,0,0,191,255,255,244,15,208,0,0,0,191,255,255,244,15,208,0,0,0,191,0,3,244,15,208,0,0,0,191,0,3,244,15,208,0,0,0,20,0,0,0,15,208,0,0, + // 0x539f 原 + 159,83,37,36,104,40,1,252,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,85,85,86,255,85,85,85,64,0,254,0,0,1,255,0,0,0,0,0,254,0,0,2,254,0,0,0,0,0,254,0,0,3,253,0,0,0,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,254,170,170,170,191,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,255,255,255,255,255,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,254,3,248,0,0,0,15,224,0,0,253,3,255,255,255,255,255,224,0,1,253,3,255,255,255,255,255,224,0,1,253,3,255,255,255,255,255,224,0,1,252,0,0,0,191,0,0,0,0,2,252,0,0,0,191,0,0,0,0,3,252,0,62,64,191,0,184,0,0,3,248,0,127,192,191,3,254,0,0,3,248,0,255,0,191,1,255,128,0,7,244,3,254,0,191,0,63,224,0,11,240,11,252,0,191,0,31,248,0,15,240,47,240,0,191,0,7,253,0,15,224,191,208,0,191,0,1,255,0,47,211,255,64,0,191,0,0,191,192,63,195,253,1,65,255,0,0,63,128,127,128,180,3,255,255,0,0,13,0,47,0,0,1,255,253,0,0,0,0,2,0,0,0,255,228,0,0,0,0, + // 0x53cd 反 + 205,83,36,36,68,40,2,252,0,42,170,170,170,170,170,170,160,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,240,0,127,255,255,255,255,255,255,240,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,255,255,255,255,255,253,0,0,127,255,255,255,255,255,255,0,0,127,255,255,255,255,255,254,0,0,127,239,254,170,170,171,253,0,0,127,67,252,0,0,3,252,0,0,127,66,253,0,0,11,248,0,0,127,1,255,0,0,15,240,0,0,191,0,255,64,0,47,224,0,0,191,0,127,192,0,63,208,0,0,255,0,63,208,0,255,192,0,0,255,0,31,244,2,255,0,0,0,254,0,11,252,11,254,0,0,0,253,0,3,255,31,252,0,0,1,253,0,1,255,255,240,0,0,2,252,0,0,191,255,208,0,0,3,252,0,0,47,255,64,0,0,3,248,0,0,47,255,64,0,0,11,244,0,1,255,255,240,0,0,15,240,0,15,255,255,254,0,0,31,224,1,255,254,31,255,228,0,63,208,111,255,244,3,255,255,144,127,195,255,255,128,0,127,255,253,191,65,255,248,0,0,7,255,252,31,0,191,64,0,0,0,111,240,0,0,32,0,0,0,0,1,144, + // 0x53d6 取 + 214,83,38,36,104,40,1,252,21,85,85,85,85,64,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,128,0,0,0,0,63,255,255,255,255,234,170,170,169,0,0,254,0,11,241,255,255,255,255,64,0,254,0,11,241,255,255,255,255,0,0,254,0,11,241,255,255,255,255,0,0,254,0,11,240,26,0,0,255,0,0,254,0,11,240,255,0,0,254,0,0,255,255,255,240,191,0,0,254,0,0,255,255,255,240,127,64,1,253,0,0,255,255,255,240,63,128,2,252,0,0,254,85,95,240,63,192,3,252,0,0,254,0,11,240,47,192,3,248,0,0,254,0,11,240,31,208,7,244,0,0,254,0,11,240,15,224,11,240,0,0,254,0,11,240,15,240,15,240,0,0,254,85,95,240,11,244,31,224,0,0,255,255,255,240,3,248,47,192,0,0,255,255,255,240,3,252,63,192,0,0,255,255,255,240,1,253,191,128,0,0,254,0,11,240,0,255,255,0,0,0,254,0,11,240,0,191,254,0,0,0,254,0,11,240,0,63,252,0,0,0,254,0,11,240,0,47,248,0,0,0,254,0,111,240,0,47,244,0,0,0,255,255,255,240,0,127,253,0,0,191,255,255,255,240,0,255,255,0,0,191,255,255,255,240,3,255,255,192,0,127,255,229,11,240,15,252,127,240,0,62,80,0,11,240,127,240,31,252,0,0,0,0,11,242,255,192,11,255,128,0,0,0,11,255,255,64,2,255,224,0,0,0,11,243,248,0,0,127,192,0,0,0,11,241,208,0,0,15,0,0,0,0,11,224,0,0,0,0,0, + // 0x53f0 台 + 240,83,36,38,86,40,2,252,0,0,0,120,0,0,0,0,0,0,0,0,191,192,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,16,0,0,0,0,11,252,0,0,184,0,0,0,0,15,244,0,3,254,0,0,0,0,47,224,0,2,255,192,0,0,0,63,192,0,0,191,240,0,0,0,255,64,0,0,31,252,0,0,1,255,0,0,0,7,255,0,0,3,254,86,170,191,255,255,128,127,255,255,255,255,255,255,255,224,127,255,255,255,255,255,255,255,244,63,255,255,255,255,255,234,175,252,63,250,169,85,0,0,0,3,255,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,164,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,192,0,0,0,3,252,0,0,63,234,170,170,170,171,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,42,128,0,0,0,2,168,0, + // 0x5408 合 + 8,84,38,38,124,40,1,252,0,0,0,0,106,128,0,0,0,0,0,0,0,0,255,224,0,0,0,0,0,0,0,2,255,244,0,0,0,0,0,0,0,7,255,252,0,0,0,0,0,0,0,31,251,255,0,0,0,0,0,0,0,63,240,255,192,0,0,0,0,0,0,255,192,127,240,0,0,0,0,0,3,255,64,31,252,0,0,0,0,0,15,253,0,7,255,64,0,0,0,0,127,244,0,1,255,208,0,0,0,1,255,208,0,0,127,248,0,0,0,11,255,64,0,0,15,255,64,0,0,63,253,0,0,0,3,255,224,0,2,255,249,85,85,85,85,255,254,0,31,255,127,255,255,255,255,223,255,208,127,252,63,255,255,255,255,195,255,208,47,208,63,255,255,255,255,192,127,128,15,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,85,85,85,85,85,84,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,244,0,0,0,1,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,255,255,255,255,255,253,0,0,0,3,249,85,85,85,86,253,0,0,0,3,244,0,0,0,1,253,0,0, + // 0x5426 否 + 38,84,37,36,104,40,1,252,5,85,85,85,85,85,85,85,85,0,15,255,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,255,64,15,255,255,255,255,255,255,255,255,64,0,0,0,0,15,252,0,0,0,0,0,0,0,0,127,244,0,0,0,0,0,0,0,1,255,208,0,0,0,0,0,0,0,11,255,192,0,0,0,0,0,0,0,127,255,193,253,0,0,0,0,0,2,255,255,199,255,208,0,0,0,0,47,255,191,194,255,248,0,0,0,2,255,252,63,192,47,255,128,0,0,47,255,224,63,192,2,255,244,0,7,255,255,0,63,192,0,63,255,0,127,255,244,0,63,192,0,7,255,192,47,255,64,0,63,192,0,0,191,64,15,244,0,0,63,192,0,0,29,0,2,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,240,0,0,0,0,255,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,191,64,0,0,15,240,0,0,0,0,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,255,255,255,255,255,255,64,0,0,15,240,0,0,0,0,191,64,0,0,15,224,0,0,0,0,170,0,0, + // 0x544a 告 + 74,84,36,39,95,40,2,251,0,0,0,0,42,128,0,0,0,0,3,248,0,63,192,0,0,0,0,3,252,0,63,192,0,0,0,0,11,248,0,63,192,0,0,0,0,15,240,0,63,192,0,0,0,0,31,224,0,63,192,0,0,0,0,63,255,255,255,255,255,255,128,0,191,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,128,3,254,85,85,127,213,85,85,64,11,252,0,0,63,192,0,0,0,31,244,0,0,63,192,0,0,0,63,224,0,0,63,192,0,0,0,7,192,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,21,85,85,85,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,229,85,85,85,87,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,47,213,85,85,85,87,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,255,255,255,255,255,252,0,0,47,192,0,0,0,2,252,0,0,47,192,0,0,0,2,252,0,0,0,0,0,0,0,0,0,0, + // 0x547d 命 + 125,84,38,38,124,40,1,252,0,0,0,0,191,192,0,0,0,0,0,0,0,1,255,240,0,0,0,0,0,0,0,3,255,252,0,0,0,0,0,0,0,15,255,255,0,0,0,0,0,0,0,63,241,255,192,0,0,0,0,0,1,255,208,191,240,0,0,0,0,0,7,255,64,47,253,0,0,0,0,0,47,253,0,7,255,128,0,0,0,0,255,240,0,1,255,244,0,0,0,7,255,192,0,0,63,254,0,0,0,47,255,85,85,85,95,255,208,0,2,255,247,255,255,255,253,255,253,0,47,255,131,255,255,255,252,47,255,224,255,253,3,255,255,255,252,3,255,224,63,224,0,0,0,0,0,0,127,192,30,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,192,255,255,255,240,0,0,191,255,255,192,255,255,255,240,0,0,191,255,255,192,255,255,255,240,0,0,191,0,47,192,254,85,91,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,190,0,31,192,254,0,7,240,0,0,191,255,255,192,254,0,7,240,0,0,191,255,255,192,254,0,11,240,0,0,191,255,255,192,254,15,255,240,0,0,191,0,0,0,254,15,255,240,0,0,190,0,0,0,254,11,255,192,0,0,190,0,0,0,254,1,80,0,0,0,106,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x548c 和 + 140,84,35,37,77,40,1,252,0,0,0,31,192,0,0,0,0,0,0,27,255,240,0,0,0,0,1,175,255,255,244,0,0,0,0,31,255,255,254,64,255,255,255,252,15,255,255,64,0,255,255,255,252,11,164,191,64,0,255,255,255,252,0,0,127,64,0,255,170,171,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,63,255,255,255,248,254,0,2,252,63,255,255,255,248,254,0,2,252,63,255,255,255,248,254,0,2,252,21,86,255,149,84,254,0,2,252,0,3,255,64,0,254,0,2,252,0,3,255,208,0,254,0,2,252,0,11,255,240,0,254,0,2,252,0,15,255,252,0,254,0,2,252,0,31,255,255,0,254,0,2,252,0,63,255,191,128,254,0,2,252,0,127,127,111,208,254,0,2,252,0,253,127,79,240,254,0,2,252,2,252,127,71,244,254,0,2,252,7,248,127,66,224,254,0,2,252,15,240,127,64,192,254,0,2,252,47,208,127,64,0,254,0,2,252,191,192,127,64,0,254,0,2,252,127,64,127,64,0,255,255,255,252,62,0,127,64,0,255,255,255,252,28,0,127,64,0,255,255,255,252,0,0,127,64,0,255,170,171,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,2,252,0,0,127,64,0,254,0,1,168,0,0,127,64,0,0,0,0,0,0,0,106,0,0,0,0,0,0, + // 0x555f 啟 + 95,85,38,39,134,40,1,251,0,0,5,0,0,0,25,64,0,0,0,0,191,0,0,0,47,192,0,0,0,0,63,64,0,0,63,128,0,0,0,0,63,192,0,0,63,64,0,0,0,0,31,192,0,0,63,64,0,0,0,85,95,229,84,0,127,0,0,0,2,255,255,255,252,0,191,0,0,0,2,255,255,255,252,0,254,0,0,0,2,255,255,255,252,0,255,255,255,192,2,248,0,0,252,1,255,255,255,192,2,248,0,0,252,2,255,255,255,192,2,248,0,0,252,3,249,86,254,64,2,248,0,0,252,11,248,1,252,0,2,248,0,0,252,15,248,1,252,0,2,253,85,85,252,31,252,2,252,0,2,255,255,255,252,63,252,3,248,0,2,255,255,255,252,191,253,3,248,0,2,255,255,255,253,255,253,3,244,0,2,248,0,0,0,126,126,7,240,0,3,248,0,0,0,28,63,11,240,0,3,248,0,0,0,0,63,79,224,0,3,248,0,0,0,0,47,143,208,0,3,247,255,255,255,0,31,239,192,0,3,247,255,255,255,0,15,255,192,0,3,247,255,255,255,0,11,255,64,0,7,243,240,0,191,0,7,255,0,0,7,243,240,0,191,0,3,254,0,0,11,243,240,0,191,0,3,253,0,0,15,227,240,0,191,0,7,254,0,0,15,211,240,0,191,0,15,255,64,0,31,195,240,0,191,0,63,255,192,0,47,195,240,0,191,0,191,239,240,0,63,195,255,255,255,2,255,15,248,0,127,67,255,255,255,11,253,3,254,0,191,3,255,255,255,63,248,1,255,192,30,3,240,0,191,127,224,0,127,208,0,3,240,0,106,47,64,0,15,64,0,1,80,0,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0, + // 0x55ae 單 + 174,85,36,37,77,40,2,252,1,85,85,85,64,85,85,85,64,3,255,255,255,130,255,255,255,192,3,255,255,255,130,255,255,255,192,3,244,0,63,130,252,0,31,192,3,244,0,63,130,252,0,31,192,3,244,0,63,130,252,0,31,192,3,249,85,127,130,253,85,111,192,3,255,255,255,130,255,255,255,192,3,255,255,255,130,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,191,0,0,191,0,0,254,0,0,191,0,0,191,170,171,255,170,170,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,191,0,0,191,0,0,254,0,0,191,0,0,191,0,0,254,0,0,191,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,1,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,169,0,0,0,0, + // 0x5634 嘴 + 52,86,36,38,86,40,3,252,0,0,0,0,252,0,248,0,0,0,0,0,0,252,0,252,0,0,0,0,0,80,252,0,252,0,0,85,85,65,240,252,0,252,11,192,255,255,209,240,254,168,252,127,240,255,255,209,240,255,252,255,255,64,255,255,209,240,255,252,255,248,0,248,11,209,240,252,0,255,64,0,248,11,209,240,252,0,252,0,0,248,11,209,240,252,0,252,0,116,248,11,209,240,253,188,252,0,125,248,11,210,251,255,252,252,0,188,248,11,239,255,255,252,255,255,252,248,11,239,255,255,64,191,255,244,248,11,223,148,255,0,26,170,144,248,11,208,2,255,255,248,0,0,248,11,208,7,255,255,254,0,0,248,11,208,15,245,87,252,0,0,248,11,208,63,192,7,244,0,0,248,11,209,255,213,95,245,85,64,248,11,219,255,255,255,255,255,192,248,11,255,255,255,255,255,255,192,253,91,239,255,128,47,64,31,192,255,255,215,127,128,47,64,31,192,255,255,208,63,128,47,128,31,192,255,255,208,63,255,255,255,255,192,248,0,0,63,255,255,255,255,192,248,0,0,63,64,47,64,31,192,248,0,0,63,64,47,64,31,192,84,0,0,127,149,127,149,111,192,0,0,0,191,255,255,255,255,192,0,0,0,255,255,255,255,255,192,0,0,1,253,0,0,0,31,192,0,0,7,252,0,0,0,31,192,0,0,31,244,0,0,0,31,192,0,0,191,224,0,0,127,255,192,0,0,63,128,0,0,63,255,128,0,0,9,0,0,0,31,169,0, + // 0x5668 器 + 104,86,38,36,104,40,1,252,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,252,0,47,192,63,64,7,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,192,63,255,255,244,0,0,255,255,255,253,63,255,255,244,0,0,0,0,0,255,0,0,0,0,0,0,0,0,3,254,0,0,0,0,0,0,0,0,7,252,0,0,0,0,0,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,5,85,91,255,85,95,253,85,85,64,0,0,47,252,0,3,255,64,0,0,0,0,255,240,0,1,255,224,0,0,0,11,255,208,0,0,127,253,0,0,1,191,255,0,0,0,15,255,224,0,31,255,248,0,0,0,3,255,255,64,191,255,255,255,192,127,255,255,255,224,47,255,255,255,192,127,255,255,255,192,14,191,255,255,192,127,255,255,235,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,190,0,15,192,127,0,15,224,0,0,191,255,255,192,127,255,255,224,0,0,191,255,255,192,127,255,255,224,0,0,191,255,255,192,127,255,255,224,0,0,190,0,31,192,127,0,15,224,0,0,106,0,15,192,127,0,10,144,0, + // 0x5674 噴 + 116,86,36,38,86,40,3,252,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,47,128,0,0,0,0,0,191,255,255,255,255,224,85,85,80,191,255,255,255,255,224,255,255,240,106,170,191,234,170,144,255,255,240,0,0,47,128,0,0,255,255,240,2,248,47,130,244,0,252,3,240,2,248,47,130,244,0,252,3,246,171,254,170,171,254,168,252,3,247,255,255,255,255,255,253,252,3,247,255,255,255,255,255,253,252,3,240,2,248,0,2,244,0,252,3,240,2,248,0,2,244,0,252,3,240,0,0,0,0,0,0,252,3,240,63,255,255,255,255,128,252,3,240,63,255,255,255,255,128,252,3,240,63,128,0,0,63,128,252,3,240,63,128,0,0,63,128,252,3,240,63,128,0,0,63,128,252,3,240,63,255,255,255,255,128,252,3,240,63,255,255,255,255,128,252,3,240,63,128,0,0,63,128,255,255,240,63,128,0,0,63,128,255,255,240,63,128,0,0,63,128,255,255,240,63,255,255,255,255,128,253,85,80,63,255,255,255,255,128,252,0,0,63,128,0,0,63,128,252,0,0,63,128,0,0,63,128,168,0,0,63,255,255,255,255,128,0,0,0,63,255,255,255,255,128,0,0,0,0,185,0,31,144,0,0,0,0,2,255,64,63,244,0,0,0,0,111,253,0,31,255,0,0,0,27,255,240,0,1,255,224,0,0,127,255,64,0,0,47,253,0,0,31,228,0,0,0,7,248,0,0,10,0,0,0,0,0,128, + // 0x56de 回 + 222,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,149,85,127,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,128,0,63,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,63,255,255,255,128,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,31,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,149,85,85,85,85,85,111,224,191,0,0,0,0,0,0,31,224,191,0,0,0,0,0,0,15,224, + // 0x56e0 因 + 224,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,170,170,170,170,170,170,175,240,191,0,0,0,0,0,0,15,240,191,0,0,3,248,0,0,15,240,191,0,0,3,248,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,0,0,3,244,0,0,15,240,191,15,255,255,255,255,255,15,240,191,15,255,255,255,255,255,15,240,191,15,255,255,255,255,255,15,240,191,5,85,95,254,85,85,15,240,191,0,0,15,254,0,0,15,240,191,0,0,15,255,0,0,15,240,191,0,0,31,255,0,0,15,240,191,0,0,63,255,128,0,15,240,191,0,0,127,159,208,0,15,240,191,0,0,255,15,240,0,15,240,191,0,1,255,11,248,0,15,240,191,0,7,252,3,254,0,15,240,191,0,31,244,0,255,128,15,240,191,0,255,224,0,191,244,15,240,191,11,255,128,0,47,255,15,240,191,15,254,0,0,7,254,15,240,191,7,224,0,0,0,252,15,240,191,2,64,0,0,0,20,15,240,191,0,0,0,0,0,0,15,240,191,170,170,170,170,170,170,175,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,0,0,0,0,0,0,15,240,191,0,0,0,0,0,0,15,224, + // 0x56fa 固 + 250,86,34,36,68,40,3,252,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,149,85,85,85,85,85,111,224,191,0,0,0,0,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,11,255,255,255,255,255,15,224,191,11,255,255,255,255,255,15,224,191,11,255,255,255,255,255,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,0,3,248,0,0,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,0,0,15,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,127,255,255,255,224,15,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,0,0,0,0,0,0,15,224,191,149,85,85,85,85,85,111,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,255,255,255,255,255,255,255,224,191,0,0,0,0,0,0,15,224,127,0,0,0,0,0,0,15,224, + // 0x5716 圖 + 22,87,34,36,68,40,3,252,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,0,0,0,0,0,0,15,240,191,0,0,0,0,0,0,15,240,191,0,63,255,255,255,192,15,240,191,0,63,255,255,255,192,15,240,191,0,63,0,0,31,192,15,240,191,0,63,0,0,31,192,15,240,191,0,63,255,255,255,192,15,240,191,0,63,255,255,255,192,15,240,191,0,0,2,244,0,0,15,240,191,0,0,3,248,0,0,15,240,191,47,255,255,255,255,255,143,240,191,47,255,255,255,255,255,143,240,191,0,0,0,0,0,0,15,240,191,0,255,255,255,255,240,15,240,191,0,255,255,255,255,240,15,240,191,0,248,0,0,3,240,15,240,191,0,248,0,0,3,240,15,240,191,0,248,63,255,195,240,15,240,191,0,248,63,255,195,240,15,240,191,0,248,60,3,195,240,15,240,191,0,248,60,3,195,240,15,240,191,0,248,63,255,195,240,15,240,191,0,248,63,255,195,240,15,240,191,0,248,0,0,3,240,15,240,191,0,255,255,255,255,240,15,240,191,0,255,255,255,255,240,15,240,191,0,0,0,0,0,0,15,240,191,0,0,0,0,0,0,15,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,255,255,255,255,255,255,255,240,191,0,0,0,0,0,0,15,240,106,0,0,0,0,0,0,10,160, + // 0x5728 在 + 40,87,37,38,124,40,1,252,0,0,0,10,64,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,0,47,208,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,26,170,171,254,170,170,170,170,170,64,0,0,15,244,0,0,0,0,0,0,0,0,31,240,0,1,80,0,0,0,0,0,63,208,0,7,244,0,0,0,0,0,127,192,0,7,244,0,0,0,0,0,255,64,0,7,244,0,0,0,0,3,254,0,0,7,244,0,0,0,0,11,252,0,0,7,244,0,0,0,0,31,244,0,0,7,244,0,0,0,0,127,240,0,0,7,244,0,0,0,1,255,240,15,255,255,255,255,252,0,7,255,240,15,255,255,255,255,252,0,47,255,240,15,255,255,255,255,252,0,127,251,240,5,85,91,249,85,84,0,63,203,240,0,0,7,244,0,0,0,31,11,240,0,0,7,244,0,0,0,8,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,0,0,7,244,0,0,0,0,11,240,21,85,91,249,85,85,0,0,11,240,127,255,255,255,255,255,64,0,11,240,127,255,255,255,255,255,64,0,11,240,127,255,255,255,255,255,64,0,11,240,0,0,0,0,0,0,0, + // 0x578b 型 + 139,87,36,37,77,40,2,253,0,0,0,0,0,0,0,5,80,5,85,85,85,85,0,0,11,240,15,255,255,255,255,2,160,11,240,15,255,255,255,255,3,244,11,240,15,255,255,255,255,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,0,31,192,63,128,3,244,11,240,127,255,255,255,255,195,244,11,240,127,255,255,255,255,195,244,11,240,127,255,255,255,255,195,244,11,240,21,127,149,127,213,67,244,11,240,0,63,64,63,128,3,244,11,240,0,191,0,63,128,3,244,11,240,0,255,0,63,128,0,0,11,240,2,253,0,63,128,0,0,11,240,11,252,0,63,128,0,0,15,240,47,244,0,63,128,0,63,255,224,191,224,0,63,128,0,31,255,208,47,64,0,63,234,0,15,255,64,9,0,0,0,255,0,5,64,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,85,85,85,255,85,85,85,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85,85, + // 0x57f7 執 + 247,87,38,39,134,40,1,251,0,0,253,0,0,3,244,0,0,0,0,0,253,0,0,3,244,0,0,0,0,0,253,0,0,3,244,0,0,0,0,0,253,0,0,3,244,0,0,0,15,255,255,255,192,3,244,0,0,0,15,255,255,255,192,3,244,0,0,0,15,255,255,255,192,3,244,0,0,0,0,0,254,0,0,3,244,0,0,0,0,0,253,0,15,255,255,255,240,0,0,0,253,0,15,255,255,255,240,0,0,0,253,0,15,255,255,255,240,0,127,255,255,255,255,255,249,95,240,0,127,255,255,255,248,3,244,11,240,0,127,255,255,255,248,3,244,11,240,0,1,244,0,63,64,3,244,11,240,0,1,252,0,63,0,3,244,11,240,0,0,252,0,127,0,3,244,11,240,0,0,189,0,253,3,67,244,11,240,0,0,126,0,252,15,231,240,11,240,0,0,126,1,248,47,255,240,11,240,0,47,255,255,255,243,255,240,11,240,0,47,255,255,255,240,191,240,11,240,0,47,255,255,255,240,31,253,11,240,0,0,0,253,0,0,15,255,75,240,0,0,0,253,0,0,31,255,219,240,0,0,0,253,0,0,63,255,255,240,0,0,0,254,0,0,63,143,251,240,0,15,255,255,255,208,191,67,199,240,0,15,255,255,255,208,255,0,71,240,128,15,255,255,255,210,254,0,3,240,224,0,0,253,0,3,252,0,3,240,240,0,0,253,0,15,244,0,3,245,240,0,0,253,0,47,240,0,3,249,240,0,0,253,0,191,192,0,2,254,224,0,0,253,2,255,64,0,1,255,224,0,0,253,11,254,0,0,0,255,208,0,0,253,1,244,0,0,0,127,192,0,0,169,0,80,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0, + // 0x584a 塊 + 74,88,38,38,124,40,1,252,0,10,128,0,0,7,232,0,0,0,0,31,192,0,0,15,244,0,0,0,0,31,192,0,0,15,240,0,0,0,0,31,192,0,0,47,208,0,0,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,224,3,244,0,254,0,0,31,192,15,208,3,244,0,254,0,63,255,255,207,208,3,244,0,254,0,63,255,255,207,208,3,244,0,254,0,63,255,255,207,255,255,255,255,254,0,26,175,234,143,255,255,255,255,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,208,3,244,0,254,0,0,31,192,15,208,3,244,0,254,0,0,31,192,15,208,3,244,0,254,0,0,31,192,15,208,3,244,0,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,15,255,255,255,255,254,0,0,31,192,0,31,209,252,4,0,0,0,31,199,208,31,193,252,31,64,0,0,31,255,224,47,193,252,47,0,0,0,47,255,240,47,193,252,63,45,0,6,255,255,128,63,193,252,61,62,0,127,255,248,0,63,129,252,124,31,0,127,255,64,0,63,129,252,190,191,128,63,228,0,0,191,65,254,255,255,192,46,0,0,0,255,1,253,255,235,192,0,0,0,2,254,1,252,80,2,0,0,0,0,7,252,1,252,0,10,0,0,0,0,47,248,1,252,0,11,208,0,0,1,255,240,1,253,0,15,208,0,0,31,255,192,0,255,255,255,192,0,0,47,254,0,0,255,255,255,192,0,0,15,244,0,0,63,255,255,0,0,0,3,64,0,0,0,0,0,0, + // 0x586b 填 + 107,88,38,38,124,40,1,252,0,0,0,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,63,255,255,255,255,255,192,0,31,192,63,255,255,255,255,255,192,0,31,192,63,255,255,255,255,255,192,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,0,3,248,0,0,0,0,31,192,0,255,255,255,255,240,0,63,255,255,192,255,255,255,255,240,0,63,255,255,192,254,85,85,95,240,0,63,255,255,192,253,0,0,11,240,0,26,175,234,128,253,85,85,91,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,255,255,255,255,240,0,0,31,192,0,254,85,85,95,240,0,0,31,192,0,253,0,0,11,240,0,0,31,192,0,254,85,85,95,240,0,0,31,199,208,255,255,255,255,240,0,0,31,255,224,255,255,255,255,240,0,0,47,255,240,0,0,0,0,0,0,2,255,255,128,0,0,0,0,0,0,127,255,249,255,255,255,255,255,255,208,127,255,64,255,255,255,255,255,255,208,63,244,0,255,255,255,255,255,255,208,46,64,0,0,1,0,0,96,0,0,0,0,0,0,15,228,1,252,0,0,0,0,0,0,127,240,3,255,128,0,0,0,0,7,255,128,0,191,244,0,0,0,0,191,253,0,0,15,254,0,0,0,3,255,224,0,0,2,255,192,0,0,0,255,64,0,0,0,127,128,0,0,0,36,0,0,0,0,8,0, + // 0x588a 墊 + 138,88,38,37,114,40,1,253,0,0,169,0,0,0,168,0,0,0,0,0,254,0,0,1,252,0,0,0,0,0,254,0,0,1,252,0,0,0,11,255,255,255,208,1,252,0,0,0,11,255,255,255,208,1,252,0,0,0,6,170,255,170,130,255,255,255,208,0,0,0,254,0,2,255,255,255,208,0,0,0,255,85,86,255,255,255,208,0,127,255,255,255,248,1,252,15,208,0,127,255,255,255,248,2,248,15,208,0,42,254,170,191,164,2,248,15,208,0,0,252,0,126,1,211,248,15,208,0,0,189,0,252,3,255,244,15,208,0,42,191,170,254,171,255,240,15,208,0,63,255,255,255,248,127,244,15,208,0,63,255,255,255,248,15,254,11,224,0,0,0,254,0,0,15,255,203,224,0,0,0,254,0,0,47,255,235,225,64,6,170,255,170,144,127,75,199,225,208,15,255,255,255,224,255,2,7,241,224,15,255,255,255,227,253,0,3,242,224,0,0,254,0,15,248,0,3,251,224,0,0,254,0,63,240,0,2,255,208,0,0,254,0,15,128,0,0,255,192,0,0,254,0,63,128,0,0,63,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,63,255,255,255,255,255,255,192,0,0,63,255,255,255,255,255,255,192,0,0,63,255,255,255,255,255,255,192,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192,47,255,255,255,255,255,255,255,255,192, + // 0x5916 外 + 22,89,38,38,124,40,1,252,0,0,25,0,0,0,26,144,0,0,0,0,63,192,0,0,31,208,0,0,0,0,63,192,0,0,31,208,0,0,0,0,127,64,0,0,31,208,0,0,0,0,191,0,0,0,31,208,0,0,0,0,255,0,0,0,31,208,0,0,0,1,255,170,169,0,31,208,0,0,0,3,255,255,255,192,31,208,0,0,0,7,255,255,255,192,31,208,0,0,0,11,255,255,255,192,31,208,0,0,0,15,240,0,63,228,31,208,0,0,0,63,208,0,127,252,31,208,0,0,0,127,192,0,127,254,31,208,0,0,0,255,64,0,191,191,95,208,0,0,2,255,0,0,255,63,239,208,0,0,7,255,0,0,253,31,255,208,0,0,15,255,208,2,252,11,255,208,0,0,63,255,252,3,252,3,255,208,0,0,191,223,255,71,248,0,255,208,0,0,47,66,255,235,240,0,127,240,0,0,6,0,63,255,240,0,31,252,0,0,0,0,11,255,208,0,31,255,64,0,0,0,2,255,192,0,31,255,224,0,0,0,0,255,64,0,31,255,252,0,0,0,1,255,0,0,31,239,255,128,0,0,3,253,0,0,31,211,255,240,0,0,11,252,0,0,31,208,191,192,0,0,31,244,0,0,31,208,15,64,0,0,63,224,0,0,31,208,1,0,0,0,255,192,0,0,31,208,0,0,0,3,255,0,0,0,31,208,0,0,0,31,253,0,0,0,31,208,0,0,0,127,244,0,0,0,31,208,0,0,3,255,208,0,0,0,31,208,0,0,31,255,64,0,0,0,31,208,0,0,15,252,0,0,0,0,31,208,0,0,3,224,0,0,0,0,31,208,0,0,0,64,0,0,0,0,26,144,0,0, + // 0x591a 多 + 26,89,34,38,86,40,3,252,0,0,0,6,64,0,0,0,0,0,0,0,31,248,0,0,0,0,0,0,0,127,240,0,0,0,0,0,0,1,255,192,0,0,0,0,0,0,11,255,255,255,254,0,0,0,0,63,255,255,255,255,128,0,0,2,255,255,255,255,255,0,0,0,47,255,0,0,3,252,0,0,2,255,252,0,0,15,248,0,0,127,255,255,128,0,63,224,0,0,127,249,191,244,1,255,128,0,0,31,128,31,255,11,254,0,0,0,4,0,2,255,255,248,0,0,0,0,0,0,63,255,208,0,0,0,0,0,0,47,255,121,0,0,0,0,0,7,255,244,255,192,0,0,0,0,191,255,131,255,0,0,0,0,111,255,248,31,253,0,0,0,111,255,255,128,191,255,255,255,208,255,255,228,7,255,255,255,255,240,127,249,0,63,255,255,255,255,224,62,64,2,255,224,0,0,127,192,0,0,111,255,64,0,0,255,128,0,7,255,255,128,0,2,255,0,0,191,255,255,244,0,11,252,0,0,63,248,31,254,0,47,244,0,0,31,128,3,255,192,191,224,0,0,4,0,0,127,247,255,128,0,0,0,0,0,15,255,253,0,0,0,0,0,0,3,255,244,0,0,0,0,0,0,31,255,192,0,0,0,0,0,2,255,253,0,0,0,0,0,1,191,255,224,0,0,0,0,1,191,255,254,0,0,0,0,3,255,255,255,208,0,0,0,0,2,255,255,248,0,0,0,0,0,0,255,249,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0, + // 0x5920 夠 + 32,89,36,38,86,40,2,252,0,2,144,0,0,25,0,0,0,0,7,240,0,0,47,192,0,0,0,15,224,0,0,63,128,0,0,0,47,192,0,0,127,0,0,0,0,127,255,254,0,191,0,0,0,0,255,255,255,64,254,0,0,0,3,255,255,255,2,255,255,255,253,15,244,0,254,3,255,255,255,253,63,208,1,252,11,255,255,255,252,255,128,3,248,15,224,0,1,252,190,56,11,240,47,192,0,0,252,56,255,31,224,63,128,0,0,252,0,127,255,192,255,64,0,0,252,0,31,255,2,255,0,0,0,252,0,11,253,3,254,255,255,208,252,0,47,244,0,181,255,255,208,252,1,255,254,64,17,255,255,208,252,47,254,255,0,1,248,11,209,252,127,245,253,0,1,248,11,209,252,47,67,255,255,209,248,11,209,252,4,15,255,255,241,248,11,209,252,0,63,255,255,225,248,11,209,252,1,255,0,31,193,248,11,209,252,11,252,0,63,193,248,11,209,252,127,240,0,127,65,248,11,209,252,255,199,0,255,1,255,255,210,252,62,31,210,253,1,255,255,210,252,16,31,255,252,1,255,255,210,248,0,3,255,240,1,248,0,2,248,0,0,255,208,1,248,0,3,248,0,1,255,128,1,248,0,3,244,0,7,254,0,0,0,0,3,244,0,63,248,0,0,0,0,7,244,2,255,224,0,0,0,0,15,240,111,255,64,0,0,0,63,255,240,255,248,0,0,0,0,47,255,208,127,128,0,0,0,0,31,255,64,56,0,0,0,0,0,5,80,0, + // 0x5927 大 + 39,89,36,38,86,40,2,252,0,0,0,0,170,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,1,253,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,253,0,0,0,7,255,192,0,0,0,0,0,0,11,255,224,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,31,255,244,0,0,0,0,0,0,47,231,252,0,0,0,0,0,0,63,211,253,0,0,0,0,0,0,127,193,255,0,0,0,0,0,0,255,128,255,128,0,0,0,0,2,255,0,191,192,0,0,0,0,3,254,0,63,240,0,0,0,0,15,252,0,31,244,0,0,0,0,47,244,0,11,253,0,0,0,0,127,224,0,3,255,0,0,0,1,255,192,0,1,255,192,0,0,11,255,0,0,0,191,244,0,0,47,253,0,0,0,63,253,0,1,255,244,0,0,0,15,255,192,31,255,208,0,0,0,3,255,248,191,255,0,0,0,0,0,191,255,127,248,0,0,0,0,0,31,252,31,128,0,0,0,0,0,2,244,5,0,0,0,0,0,0,0,32, + // 0x5929 天 + 41,89,37,35,94,40,2,252,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,31,255,255,255,255,255,255,255,244,0,31,255,255,255,255,255,255,255,244,0,31,255,255,255,255,255,255,255,244,0,15,255,255,255,255,255,255,255,244,0,0,0,0,3,255,192,0,0,0,0,0,0,0,3,255,208,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,15,255,244,0,0,0,0,0,0,0,31,247,252,0,0,0,0,0,0,0,63,227,253,0,0,0,0,0,0,0,191,193,255,0,0,0,0,0,0,2,255,128,255,192,0,0,0,0,0,11,255,0,63,240,0,0,0,0,0,47,252,0,31,252,0,0,0,0,0,255,244,0,11,255,64,0,0,0,7,255,208,0,2,255,224,0,0,0,127,255,0,0,0,255,254,0,0,11,255,248,0,0,0,47,255,228,0,255,255,208,0,0,0,7,255,255,64,191,254,0,0,0,0,0,191,254,0,63,224,0,0,0,0,0,11,252,0,25,0,0,0,0,0,0,0,100,0, + // 0x5931 失 + 49,89,37,38,124,40,2,252,0,0,0,0,254,0,0,0,0,0,0,3,228,0,254,0,0,0,0,0,0,11,248,0,254,0,0,0,0,0,0,15,244,0,254,0,0,0,0,0,0,15,240,0,254,0,0,0,0,0,0,47,224,0,254,0,0,0,0,0,0,63,208,0,254,0,0,0,0,0,0,127,255,255,255,255,255,255,64,0,0,255,255,255,255,255,255,255,64,0,1,255,255,255,255,255,255,255,64,0,3,255,255,255,255,255,255,255,64,0,7,252,0,0,254,0,0,0,0,0,15,248,0,0,254,0,0,0,0,0,63,240,0,0,254,0,0,0,0,0,127,208,0,0,254,0,0,0,0,0,31,128,0,1,254,0,0,0,0,0,2,0,0,1,254,0,0,0,0,0,0,0,0,1,254,0,0,0,0,0,170,170,170,171,255,170,170,170,170,0,255,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,255,254,0,255,255,255,255,255,255,255,255,254,0,0,0,0,11,255,208,0,0,0,0,0,0,0,15,255,240,0,0,0,0,0,0,0,47,251,248,0,0,0,0,0,0,0,63,211,252,0,0,0,0,0,0,0,255,193,255,0,0,0,0,0,0,2,255,64,255,192,0,0,0,0,0,11,254,0,127,240,0,0,0,0,0,63,252,0,47,252,0,0,0,0,1,255,240,0,11,255,64,0,0,0,11,255,192,0,2,255,224,0,0,0,191,255,0,0,0,255,254,0,0,27,255,248,0,0,0,31,255,248,0,255,255,208,0,0,0,3,255,255,64,191,253,0,0,0,0,0,127,255,0,63,208,0,0,0,0,0,7,252,0,8,0,0,0,0,0,0,0,36,0, + // 0x59cb 始 + 203,89,37,38,124,40,2,252,0,26,64,0,0,10,64,0,0,0,0,47,192,0,0,15,240,0,0,0,0,63,128,0,0,31,240,0,0,0,0,63,128,0,0,47,224,0,0,0,0,63,64,0,0,63,192,0,0,0,0,127,0,0,0,63,192,0,0,0,0,191,0,0,0,127,128,0,0,0,0,254,0,0,0,191,0,125,0,0,85,254,85,144,0,255,0,255,0,0,255,255,255,252,1,253,0,127,192,0,255,255,255,252,2,252,0,47,208,0,255,255,255,248,3,248,0,15,240,0,3,248,3,248,7,244,0,7,248,0,3,244,3,244,11,245,170,255,252,0,7,240,3,247,255,255,255,255,254,0,11,240,7,243,255,255,255,255,255,0,15,224,7,243,255,255,255,234,191,128,15,208,11,241,165,64,0,0,63,128,31,192,15,224,0,0,0,0,44,0,47,192,15,208,0,0,0,0,0,0,63,128,31,192,0,0,0,0,0,0,63,128,47,192,31,255,255,255,248,0,127,240,63,192,31,255,255,255,248,0,191,253,127,64,31,255,255,255,248,0,255,255,255,0,31,213,85,87,248,0,45,191,255,0,31,192,0,3,248,0,4,31,254,0,31,192,0,3,248,0,0,7,255,128,31,192,0,3,248,0,0,11,255,224,31,192,0,3,248,0,0,31,255,248,31,192,0,3,248,0,0,63,219,253,31,192,0,3,248,0,0,255,194,253,31,192,0,3,248,0,3,255,0,184,31,213,85,87,248,0,15,253,0,32,31,255,255,255,248,0,127,244,0,0,31,255,255,255,248,0,127,208,0,0,31,255,255,255,248,0,47,64,0,0,31,192,0,3,248,0,8,0,0,0,31,192,0,2,164,0, + // 0x5a92 媒 + 146,90,38,38,124,40,1,252,0,10,64,0,15,208,0,15,208,0,0,31,192,0,15,208,0,15,208,0,0,47,192,0,15,208,0,15,208,0,0,63,192,0,15,208,0,15,208,0,0,63,128,0,15,208,0,31,208,0,0,63,64,15,255,255,255,255,255,192,0,127,0,15,255,255,255,255,255,192,0,127,0,15,255,255,255,255,255,192,21,255,85,80,15,208,0,15,208,0,127,255,255,244,15,208,0,15,208,0,127,255,255,244,15,208,0,15,208,0,127,255,255,244,15,255,255,255,208,0,1,252,3,240,15,255,255,255,208,0,2,252,3,240,15,255,255,255,208,0,2,248,7,240,15,208,0,15,208,0,3,244,7,240,15,208,0,15,208,0,3,244,11,240,15,208,0,31,208,0,7,240,15,224,15,255,255,255,208,0,11,240,15,208,15,255,255,255,208,0,11,224,15,208,15,255,255,255,208,0,15,208,31,192,0,0,253,0,0,0,15,208,47,192,0,0,253,0,0,0,31,244,63,128,0,0,253,0,0,0,47,254,127,79,255,255,255,255,255,192,63,255,255,15,255,255,255,255,255,192,11,127,255,15,255,255,255,255,255,192,1,15,253,0,0,47,255,224,0,0,0,3,255,0,0,127,255,244,0,0,0,7,255,192,0,255,255,252,0,0,0,15,255,240,3,253,253,255,64,0,0,47,239,248,31,244,253,63,208,0,0,127,195,240,191,224,253,31,248,0,1,255,64,211,255,128,253,7,254,0,7,254,0,111,254,0,253,2,255,208,47,252,0,63,244,0,253,0,191,192,31,240,0,15,208,0,253,0,31,0,11,128,0,6,0,0,253,0,1,0,1,0,0,0,0,0,253,0,0,0, + // 0x5b50 子 + 80,91,36,35,59,40,2,252,0,255,255,255,255,255,255,252,0,0,255,255,255,255,255,255,255,64,0,255,255,255,255,255,255,255,64,0,170,170,170,170,170,191,252,0,0,0,0,0,0,0,191,240,0,0,0,0,0,0,3,255,192,0,0,0,0,0,0,31,254,0,0,0,0,0,0,0,191,244,0,0,0,0,0,0,87,255,192,0,0,0,0,0,0,255,254,0,0,0,0,0,0,0,255,244,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,170,170,170,170,255,170,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,191,255,255,0,0,0,0,0,0,63,255,254,0,0,0,0,0,0,47,255,248,0,0,0,0,0,0,31,234,64,0,0,0,0, + // 0x5b58 存 + 88,91,37,38,124,40,1,252,0,0,0,10,64,0,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,0,47,224,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,26,170,170,255,234,170,170,170,170,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,0,0,7,252,0,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,0,31,240,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,191,192,255,255,255,255,208,0,0,0,255,64,255,255,255,255,248,0,0,3,254,0,255,255,255,255,240,0,0,11,252,0,85,85,85,255,192,0,0,31,244,0,0,0,2,255,0,0,0,127,240,0,0,0,11,252,0,0,0,255,240,0,0,0,63,240,0,0,7,255,240,0,0,2,255,128,0,0,31,255,240,0,0,2,254,0,0,0,127,255,240,0,0,2,252,0,0,0,63,219,240,42,170,171,254,170,170,128,47,75,240,127,255,255,255,255,255,192,12,11,240,127,255,255,255,255,255,192,0,11,240,127,255,255,255,255,255,192,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,0,2,252,0,0,0,0,11,240,0,47,255,252,0,0,0,0,11,240,0,31,255,252,0,0,0,0,11,240,0,15,255,240,0,0,0,0,5,80,0,5,85,0,0,0,0, + // 0x5b89 安 + 137,91,36,38,86,40,2,252,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,229,85,85,85,85,85,91,248,47,192,0,0,0,0,0,3,248,47,192,0,10,80,0,0,3,248,47,192,0,31,240,0,0,3,248,47,192,0,47,224,0,0,3,248,47,192,0,63,192,0,0,3,248,0,0,0,191,128,0,0,0,0,0,0,0,255,0,0,0,0,0,106,170,171,255,170,170,170,170,169,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,47,224,0,0,191,64,0,0,0,63,192,0,0,255,0,0,0,0,191,128,0,1,255,0,0,0,0,255,0,0,3,253,0,0,0,3,254,0,0,7,252,0,0,0,7,252,0,0,15,244,0,0,0,15,255,144,0,47,240,0,0,0,31,255,254,64,127,208,0,0,0,63,255,255,249,255,128,0,0,0,47,198,255,255,255,0,0,0,0,0,0,27,255,254,0,0,0,0,0,0,2,255,255,224,0,0,0,0,0,47,255,255,254,64,0,0,0,7,255,253,47,255,244,0,0,22,255,255,224,2,255,254,0,31,255,255,254,0,0,47,255,208,15,255,255,144,0,0,2,255,192,3,255,228,0,0,0,0,127,0,2,148,0,0,0,0,0,9,0, + // 0x5b8c 完 + 140,91,37,38,124,40,1,252,0,0,0,0,42,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,6,170,170,170,191,234,170,170,169,0,15,255,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,255,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,0,0,0,0,0,0,254,0,15,240,191,255,255,255,255,208,254,0,6,160,191,255,255,255,255,208,169,0,0,0,191,255,255,255,255,208,0,0,0,0,21,85,85,85,85,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,170,170,170,170,170,170,170,170,64,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,0,0,3,252,0,31,208,0,0,0,0,0,3,252,0,31,208,0,0,0,0,0,3,252,0,31,208,0,0,0,0,0,7,248,0,31,208,0,0,0,0,0,15,244,0,31,208,0,0,0,0,0,15,240,0,31,208,0,0,0,0,0,63,224,0,31,208,0,30,64,0,0,191,192,0,31,208,0,31,192,0,2,255,128,0,31,208,0,31,192,0,31,255,0,0,31,208,0,47,192,1,255,252,0,0,31,245,85,191,128,127,255,224,0,0,15,255,255,255,64,63,255,64,0,0,11,255,255,255,0,15,244,0,0,0,1,255,255,248,0,5,0,0,0,0,0,0,0,0,0, + // 0x5b9a 定 + 154,91,37,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,6,170,170,170,191,234,170,170,169,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,255,255,255,255,255,255,255,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,0,0,0,0,0,0,254,0,11,240,170,170,170,170,170,160,254,0,11,240,255,255,255,255,255,244,254,0,0,0,255,255,255,255,255,244,0,0,0,0,255,255,255,255,255,244,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,1,253,0,63,192,0,0,0,0,0,2,253,0,63,192,0,0,0,0,0,3,252,0,63,192,0,0,0,0,0,3,252,0,63,255,255,255,64,0,0,3,248,0,63,255,255,255,64,0,0,7,248,0,63,255,255,255,64,0,0,11,252,0,63,213,85,85,0,0,0,15,253,0,63,192,0,0,0,0,0,31,255,0,63,192,0,0,0,0,0,47,255,128,63,192,0,0,0,0,0,127,255,224,63,192,0,0,0,0,0,255,143,248,63,192,0,0,0,0,1,255,7,255,127,192,0,0,0,0,3,254,1,255,255,192,0,0,0,0,15,252,0,127,255,255,234,170,170,128,63,244,0,15,255,255,255,255,255,128,127,208,0,0,191,255,255,255,255,0,15,128,0,0,5,175,255,255,255,0,2,0,0,0,0,0,0,0,0,0, + // 0x5ba2 客 + 162,91,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,192,0,36,0,0,0,3,252,63,192,0,255,128,0,0,3,252,63,192,2,255,0,0,0,3,252,63,192,11,255,255,255,253,3,252,63,192,47,255,255,255,255,131,252,0,0,255,255,255,255,255,64,0,0,11,255,192,0,3,254,0,0,0,127,255,240,0,15,248,0,0,7,255,239,252,0,127,240,0,0,11,255,67,255,66,255,128,0,0,3,248,0,255,255,254,0,0,0,0,128,0,47,255,244,0,0,0,0,0,0,15,255,244,0,0,0,0,0,1,191,255,255,144,0,0,0,0,47,255,255,255,254,64,0,0,6,255,255,65,255,255,255,148,6,255,255,244,0,27,255,255,255,255,255,254,0,0,0,127,255,253,191,255,255,255,255,255,255,255,252,63,231,255,255,255,255,255,208,96,20,3,255,255,255,255,255,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,248,0,0,0,47,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,255,255,255,255,255,208,0,0,3,248,0,0,0,47,208,0,0,2,164,0,0,0,21,64,0, + // 0x5bb9 容 + 185,91,37,38,124,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,5,85,85,85,255,85,85,85,80,0,47,255,255,255,255,255,255,255,248,0,47,255,255,255,255,255,255,255,248,0,47,255,255,255,255,255,255,255,248,0,47,192,0,0,0,0,0,3,248,0,47,192,0,0,0,0,0,3,248,0,47,192,11,144,0,7,128,3,248,0,47,192,31,244,0,47,244,3,248,0,47,128,127,208,0,31,254,3,248,0,0,2,255,128,0,2,255,208,0,0,0,15,254,0,170,0,127,248,0,0,0,127,248,3,255,128,15,254,0,0,7,255,208,11,255,224,2,255,192,0,11,255,0,31,255,248,0,127,208,0,2,248,0,191,231,254,0,31,64,0,0,208,2,255,130,255,192,5,0,0,0,0,11,255,0,191,244,0,0,0,0,0,63,248,0,31,253,0,0,0,0,1,255,224,0,7,255,208,0,0,0,11,255,64,0,0,255,248,0,0,0,127,253,0,0,0,47,255,64,0,7,255,255,255,255,255,255,255,248,0,127,255,255,255,255,255,255,255,255,64,191,251,255,255,255,255,255,219,254,0,63,195,249,85,85,85,111,193,252,0,29,3,248,0,0,0,47,192,20,0,0,3,248,0,0,0,47,192,0,0,0,3,248,0,0,0,47,192,0,0,0,3,248,0,0,0,47,192,0,0,0,3,248,0,0,0,47,192,0,0,0,3,255,255,255,255,255,192,0,0,0,3,255,255,255,255,255,192,0,0,0,3,255,255,255,255,255,192,0,0,0,3,249,85,85,85,111,192,0,0,0,2,164,0,0,0,26,128,0,0, + // 0x5c0d 對 + 13,92,37,39,134,40,2,251,0,10,65,160,0,0,0,42,0,0,4,31,131,240,36,0,0,63,64,0,188,31,131,240,63,64,0,63,64,0,191,31,131,240,191,0,0,63,64,0,63,95,131,240,254,0,0,63,64,0,47,223,131,241,252,0,0,63,64,0,15,223,131,247,244,0,0,63,64,0,15,223,131,247,240,0,0,63,64,0,5,31,131,244,144,0,0,63,64,0,255,255,255,255,255,0,0,63,64,0,255,255,255,255,255,0,0,127,64,0,255,255,255,255,255,255,255,255,255,64,1,176,0,31,128,255,255,255,255,64,3,248,0,47,192,255,255,255,255,64,1,252,0,63,128,85,85,191,149,0,0,253,0,127,0,0,0,63,64,0,0,190,0,190,0,0,0,63,64,0,0,125,0,189,0,1,0,63,64,0,63,255,255,255,248,63,128,63,64,0,63,255,255,255,248,47,192,63,64,0,63,255,255,255,248,15,208,63,64,0,0,0,190,0,0,11,240,63,64,0,0,0,190,0,0,7,244,63,64,0,0,0,190,0,0,3,248,63,64,0,15,255,255,255,240,2,252,63,64,0,15,255,255,255,240,1,253,63,64,0,15,255,255,255,240,0,224,63,64,0,0,0,190,0,0,0,0,63,64,0,0,0,190,0,0,0,0,63,64,0,0,0,190,0,0,0,0,63,64,0,0,0,190,1,174,0,0,63,64,0,0,1,255,255,255,0,0,63,64,0,107,255,255,255,255,0,0,63,64,0,255,255,255,255,254,0,0,127,64,0,255,255,255,233,0,1,85,255,64,0,191,233,64,0,0,3,255,255,0,0,0,0,0,0,0,1,255,254,0,0,0,0,0,0,0,0,255,228,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x5c0f 小 + 15,92,38,37,114,40,1,252,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,6,80,0,63,192,0,120,0,0,0,11,252,0,63,192,3,252,0,0,0,11,248,0,63,192,2,254,0,0,0,15,244,0,63,192,0,255,0,0,0,15,240,0,63,192,0,191,192,0,0,31,240,0,63,192,0,63,192,0,0,63,224,0,63,192,0,47,224,0,0,63,192,0,63,192,0,31,240,0,0,127,192,0,63,192,0,15,248,0,0,191,128,0,63,192,0,7,252,0,0,255,64,0,63,192,0,3,253,0,2,255,0,0,63,192,0,2,255,0,3,253,0,0,63,192,0,1,255,0,7,252,0,0,63,192,0,0,255,128,15,248,0,0,63,192,0,0,191,192,47,240,0,0,63,192,0,0,63,192,127,208,0,0,63,192,0,0,63,224,47,192,0,0,63,192,0,0,47,240,3,64,0,0,63,192,0,0,31,144,0,0,0,0,63,192,0,0,8,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,31,255,255,192,0,0,0,0,0,0,15,255,255,128,0,0,0,0,0,0,7,255,255,0,0,0,0,0,0,0,3,255,164,0,0,0,0,0, + // 0x5c31 就 + 49,92,38,38,124,40,1,252,0,0,63,128,0,0,63,128,0,0,0,0,63,128,0,0,63,129,128,0,0,0,63,128,0,0,63,143,224,0,0,0,63,128,0,0,63,139,244,0,0,0,63,128,0,0,63,131,253,0,63,255,255,255,255,0,63,128,255,0,63,255,255,255,255,0,63,128,127,64,63,255,255,255,255,0,63,128,63,192,21,85,85,85,85,0,63,128,29,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,170,191,234,170,128,3,255,255,255,244,255,255,255,255,192,3,255,255,255,244,255,255,255,255,192,3,255,255,255,244,255,255,255,255,192,3,248,0,7,244,0,63,128,0,0,3,248,0,3,244,0,63,128,0,0,3,248,0,3,244,0,127,252,0,0,3,248,0,3,244,0,127,252,0,0,3,248,0,3,244,0,191,252,0,0,3,255,255,255,244,0,191,252,0,0,3,255,255,255,244,0,255,252,0,0,3,255,255,255,244,0,255,252,0,0,0,0,63,128,0,1,255,252,0,0,0,0,63,128,0,2,254,252,0,0,1,228,63,135,208,3,253,252,0,0,2,252,63,139,240,3,249,252,0,0,3,248,63,131,244,11,245,252,0,0,7,244,63,130,252,15,241,252,0,0,11,240,63,129,252,31,225,252,2,0,15,224,63,128,254,63,209,252,3,208,31,208,63,128,190,191,193,252,3,224,63,192,63,128,80,255,65,252,3,224,191,64,63,128,3,254,1,252,3,224,47,0,63,128,11,252,1,252,11,208,9,63,255,64,47,244,1,255,255,208,0,31,255,64,127,224,0,255,255,192,0,15,254,0,31,128,0,191,255,64,0,5,64,0,2,0,0,22,164,0, + // 0x5de5 工 + 229,93,36,30,14,40,2,255,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170, + // 0x5dee 差 + 238,93,36,38,86,40,2,252,0,0,4,0,0,0,36,0,0,0,0,189,0,0,0,191,128,0,0,0,255,0,0,0,255,64,0,0,0,191,128,0,1,254,0,0,0,0,63,192,0,3,252,0,0,0,0,47,224,0,11,248,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,21,85,255,85,85,85,85,85,84,0,1,254,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,3,253,255,255,255,255,255,0,0,7,252,255,255,255,255,255,0,0,11,244,255,255,255,255,255,0,0,15,240,0,2,253,0,0,0,0,47,224,0,2,252,0,0,0,0,127,192,0,2,252,0,0,0,0,255,128,0,2,252,0,0,0,2,255,0,0,2,252,0,0,0,7,253,0,0,2,252,0,0,0,31,248,85,85,86,253,85,85,80,191,240,255,255,255,255,255,255,252,255,192,255,255,255,255,255,255,252,63,0,255,255,255,255,255,255,252,8,0,0,0,0,0,0,0,0, + // 0x5df2 已 + 242,93,34,34,50,40,4,253,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,192,0,170,170,170,170,170,170,191,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,10,144,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,250,170,170,170,170,191,192,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,255,255,255,255,255,255,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,63,192,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,4,0,31,224,0,0,0,0,0,15,128,31,224,0,0,0,0,0,15,240,31,224,0,0,0,0,0,15,240,31,224,0,0,0,0,0,15,240,15,224,0,0,0,0,0,47,224,15,240,0,0,0,0,0,63,208,15,249,0,0,0,0,1,255,192,11,255,255,255,255,255,255,255,128,3,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,248,0,0,6,170,170,170,170,170,64,0, + // 0x5e73 平 + 115,94,36,35,59,40,2,252,11,255,255,255,255,255,255,255,224,11,255,255,255,255,255,255,255,224,11,255,255,255,255,255,255,255,224,6,170,170,170,255,170,170,170,144,0,0,0,0,255,0,0,0,0,0,1,64,0,255,0,1,144,0,0,63,192,0,255,0,3,253,0,0,47,192,0,255,0,7,252,0,0,15,224,0,255,0,11,248,0,0,15,240,0,255,0,15,240,0,0,7,248,0,255,0,31,224,0,0,3,252,0,255,0,63,192,0,0,2,253,0,255,0,127,128,0,0,1,254,0,255,0,255,0,0,0,0,248,0,255,0,189,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,254,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x5e8a 床 + 138,94,38,38,124,40,1,252,0,0,0,0,5,80,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,170,170,170,175,250,170,170,170,128,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,0,0,0,127,64,0,0,0,0,254,26,170,170,191,170,170,170,64,0,254,47,255,255,255,255,255,255,192,0,254,47,255,255,255,255,255,255,192,0,253,47,255,255,255,255,255,255,192,1,253,0,0,3,255,240,0,0,0,1,253,0,0,15,255,248,0,0,0,1,253,0,0,31,255,253,0,0,0,1,252,0,0,63,255,255,0,0,0,2,252,0,0,255,255,191,192,0,0,2,252,0,2,255,127,111,224,0,0,2,252,0,7,252,127,79,248,0,0,3,252,0,31,244,127,71,254,0,0,3,248,0,127,224,127,65,255,128,0,7,244,1,255,192,127,64,191,224,0,11,240,7,255,0,127,64,47,252,0,11,240,47,252,0,127,64,11,255,64,15,240,255,240,0,127,64,2,255,208,31,224,255,192,0,127,64,0,191,128,47,192,63,0,0,127,64,0,31,0,63,192,8,0,0,127,64,0,4,0,127,128,0,0,0,127,64,0,0,0,31,0,0,0,0,127,64,0,0,0,1,0,0,0,0,127,0,0,0,0, + // 0x5ea6 度 + 166,94,37,38,124,40,1,252,0,0,0,0,11,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,255,255,255,255,255,255,255,255,128,0,254,85,85,85,85,85,85,85,0,0,253,0,6,160,0,2,160,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,127,255,255,255,255,255,255,64,0,253,127,255,255,255,255,255,255,64,0,253,127,255,255,255,255,255,255,64,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,240,0,7,244,0,0,0,253,0,11,255,255,255,244,0,0,1,253,0,11,255,255,255,244,0,0,1,253,0,11,255,255,255,244,0,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,2,252,63,255,255,255,255,255,128,0,2,252,63,255,255,255,255,255,224,0,2,252,63,255,255,255,255,255,192,0,3,248,0,11,208,0,0,255,128,0,3,244,0,15,244,0,3,255,0,0,7,244,0,3,253,0,15,252,0,0,11,240,0,1,255,192,191,240,0,0,11,240,0,0,127,251,255,192,0,0,15,224,0,0,15,255,254,0,0,0,31,208,0,0,31,255,254,0,0,0,47,192,0,27,255,255,255,249,64,0,63,129,191,255,255,230,255,255,255,128,127,64,255,255,254,0,31,255,255,128,31,0,191,254,64,0,0,111,255,0,1,0,41,0,0,0,0,0,105,0, + // 0x5ee2 廢 + 226,94,38,38,124,40,1,252,0,0,0,0,11,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,2,255,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,255,192,2,252,0,0,0,0,0,0,0,0,2,248,0,0,0,1,144,0,0,0,2,248,26,170,170,7,240,45,0,0,2,248,47,255,255,195,244,191,64,0,2,248,47,255,255,65,255,252,0,0,2,248,0,0,191,0,255,208,20,0,2,248,30,1,252,0,63,128,191,0,2,248,63,215,244,0,31,231,253,0,2,248,11,255,224,0,11,255,224,0,2,248,2,255,128,0,1,255,192,0,2,248,11,255,84,10,170,255,249,0,2,248,191,255,252,31,255,255,255,208,2,255,255,255,252,31,255,253,255,192,2,250,248,0,188,31,64,252,27,0,3,248,128,0,188,31,64,252,36,0,3,248,0,0,188,47,64,252,61,0,3,244,31,255,252,127,0,253,189,0,3,244,47,255,254,253,0,255,252,0,3,244,63,170,169,248,0,63,240,0,3,240,63,0,0,16,0,0,0,0,7,240,126,0,0,255,255,255,208,0,7,240,191,255,252,255,255,255,208,0,11,240,255,255,252,91,149,111,192,0,15,224,254,170,252,31,128,63,64,0,15,208,0,1,252,15,208,191,0,0,31,192,0,2,248,3,250,252,0,0,47,192,0,2,244,1,255,244,0,0,63,128,0,3,244,0,255,244,0,0,127,64,0,7,240,31,255,255,144,0,191,0,15,255,243,255,245,255,255,64,30,0,15,255,210,255,64,27,255,0,4,0,6,169,0,144,0,0,24,0, + // 0x5efa 建 + 250,94,38,38,124,40,1,252,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,64,0,0,15,240,0,0,0,127,255,253,11,255,255,255,255,244,0,127,255,252,11,255,255,255,255,244,0,127,255,244,11,255,255,255,255,244,0,0,11,240,0,0,15,240,7,244,0,0,15,224,0,0,15,240,7,244,0,0,47,193,255,255,255,255,255,255,208,0,63,129,255,255,255,255,255,255,208,0,127,1,255,255,255,255,255,255,208,0,255,0,0,0,15,240,7,244,0,1,253,0,0,0,15,240,7,244,0,3,252,0,0,0,15,240,7,244,0,7,255,255,79,255,255,255,255,244,0,15,255,255,143,255,255,255,255,244,0,31,255,255,79,255,255,255,255,244,0,47,208,127,64,0,15,240,0,0,0,1,64,127,0,0,15,240,0,0,0,0,0,127,15,255,255,255,255,248,0,1,128,191,15,255,255,255,255,248,0,15,192,254,15,255,255,255,255,248,0,15,208,254,0,0,15,240,0,0,0,11,241,253,0,0,15,240,0,0,0,3,246,252,0,0,15,240,0,0,0,3,255,252,255,255,255,255,255,255,64,1,255,244,255,255,255,255,255,255,64,0,255,240,255,255,255,255,255,255,64,0,63,240,0,0,15,240,0,0,0,0,47,244,0,0,15,240,0,0,0,0,127,255,0,0,15,240,0,0,0,0,255,255,244,0,10,160,0,0,0,2,254,127,255,229,0,0,0,0,0,15,252,11,255,255,255,255,255,255,208,63,244,1,191,255,255,255,255,255,192,63,224,0,6,255,255,255,255,255,128,15,128,0,0,1,85,170,170,170,0,1,0,0,0,0,0,0,0,0,0, + // 0x5f15 引 + 21,95,31,37,40,40,3,252,0,0,0,0,0,0,3,252,63,255,255,255,192,0,3,252,63,255,255,255,192,0,3,252,63,255,255,255,192,0,3,252,21,85,85,111,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,0,0,0,31,192,0,3,252,15,255,255,255,192,0,3,252,15,255,255,255,192,0,3,252,15,255,255,255,192,0,3,252,31,229,85,85,64,0,3,252,31,192,0,0,0,0,3,252,47,192,0,0,0,0,3,252,63,192,0,0,0,0,3,252,63,192,0,0,0,0,3,252,63,128,0,0,0,0,3,252,127,255,255,255,208,0,3,252,191,255,255,255,208,0,3,252,191,255,255,255,192,0,3,252,255,85,85,127,192,0,3,252,254,0,0,47,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,192,0,3,252,0,0,0,63,128,0,3,252,0,0,0,127,128,0,3,252,0,0,0,127,64,0,3,252,0,0,0,191,0,0,3,252,0,0,0,255,0,0,3,252,0,0,2,255,0,0,3,252,0,255,255,253,0,0,3,252,0,191,255,252,0,0,3,252,0,127,255,240,0,0,3,252,0,42,170,64,0,0,2,252, + // 0x5f85 待 + 133,95,38,38,124,40,1,252,0,0,96,0,0,2,164,0,0,0,0,0,254,0,0,3,248,0,0,0,0,2,255,0,0,3,248,0,0,0,0,11,252,0,0,3,248,0,0,0,0,47,244,0,0,3,248,0,0,0,0,191,208,11,255,255,255,255,253,0,3,255,64,11,255,255,255,255,253,0,31,253,0,11,255,255,255,255,253,0,63,244,0,1,85,87,253,85,84,0,31,192,41,0,0,3,248,0,0,0,15,0,63,128,0,3,248,0,0,0,0,0,255,64,0,3,248,0,0,0,0,2,254,0,0,3,248,0,0,0,0,7,252,255,255,255,255,255,255,208,0,15,244,255,255,255,255,255,255,208,0,63,240,255,255,255,255,255,255,208,0,255,240,85,85,85,85,255,85,64,3,255,240,0,0,0,0,191,0,0,15,255,240,0,0,0,0,191,0,0,127,255,240,0,0,0,0,191,0,0,191,239,240,21,85,85,85,255,85,64,63,143,240,127,255,255,255,255,255,192,46,15,240,127,255,255,255,255,255,192,4,15,240,127,255,255,255,255,255,192,0,15,240,0,0,0,0,191,0,0,0,15,240,0,124,0,0,191,0,0,0,15,240,1,254,0,0,191,0,0,0,15,240,0,255,64,0,191,0,0,0,15,240,0,63,192,0,191,0,0,0,15,240,0,31,240,0,191,0,0,0,15,240,0,15,244,0,191,0,0,0,15,240,0,3,252,0,191,0,0,0,15,240,0,2,224,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,3,255,255,0,0,0,15,240,0,0,3,255,254,0,0,0,15,240,0,0,2,255,252,0,0,0,6,144,0,0,0,169,64,0,0, + // 0x5f8c 後 + 140,95,38,38,124,40,1,252,0,0,144,0,0,36,0,0,0,0,0,1,253,0,0,127,64,0,0,0,0,3,252,0,0,255,0,0,0,0,0,15,244,0,3,253,0,32,0,0,0,63,224,0,11,248,0,253,0,0,0,255,128,14,47,224,3,255,0,0,3,254,0,63,255,128,11,252,0,0,31,248,0,63,255,0,47,240,0,0,127,224,0,11,254,0,191,192,0,0,63,128,62,1,255,194,255,0,0,0,13,0,255,0,63,251,252,2,0,0,0,1,254,0,15,255,240,47,128,0,0,3,252,0,3,255,192,63,208,0,0,15,244,0,3,255,0,15,240,0,0,47,224,0,15,248,0,7,252,0,0,191,210,255,255,255,255,255,254,0,2,255,210,255,255,255,255,255,255,64,11,255,210,255,255,255,255,255,255,192,63,255,208,85,1,255,80,0,47,224,255,239,208,0,3,253,0,0,15,192,127,143,208,0,11,252,0,0,5,0,62,15,208,0,47,255,255,255,128,0,4,15,208,0,191,255,255,255,224,0,0,15,208,2,255,255,255,255,192,0,0,15,208,15,255,0,0,127,128,0,0,15,208,127,255,192,1,255,0,0,0,15,211,255,239,224,3,253,0,0,0,15,209,255,11,248,15,248,0,0,0,15,208,184,3,255,127,224,0,0,0,15,208,16,0,255,255,128,0,0,0,15,208,0,0,63,254,0,0,0,0,15,208,0,1,191,255,128,0,0,0,15,208,0,31,255,255,248,0,0,0,15,208,6,255,254,127,255,228,0,0,15,210,255,255,224,7,255,255,208,0,15,211,255,254,0,0,127,255,192,0,15,208,255,144,0,0,6,255,64,0,15,208,164,0,0,0,0,10,0, + // 0x5f91 徑 + 145,95,38,38,124,40,1,252,0,0,160,0,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,7,252,63,255,255,255,255,255,192,0,31,240,63,255,255,255,255,255,192,0,63,208,63,255,255,255,255,255,192,1,255,64,21,85,85,85,85,85,64,7,254,0,0,0,0,0,0,0,0,47,248,0,0,191,0,253,2,248,0,127,224,16,0,254,2,252,3,248,0,63,64,126,2,252,3,248,11,240,0,13,0,255,67,248,11,240,31,208,0,0,1,254,11,240,31,208,63,192,0,0,3,252,15,208,63,128,191,0,0,0,15,244,63,192,191,1,253,0,0,0,47,240,63,128,255,1,252,0,0,0,191,208,31,192,63,128,255,0,0,2,255,208,15,240,47,192,63,128,0,11,255,208,3,248,15,240,31,224,0,47,255,208,2,252,3,248,7,244,0,191,255,208,0,254,2,252,3,252,0,191,207,208,0,127,64,255,0,254,0,63,15,208,0,63,64,126,0,190,0,28,15,208,0,16,0,16,0,16,0,0,15,208,5,85,85,85,85,84,0,0,15,208,31,255,255,255,255,253,0,0,15,208,31,255,255,255,255,253,0,0,15,208,31,255,255,255,255,253,0,0,15,208,0,0,7,244,0,0,0,0,15,208,0,0,7,244,0,0,0,0,15,208,0,0,7,244,0,0,0,0,15,208,0,0,7,244,0,0,0,0,15,208,0,0,7,244,0,0,0,0,15,208,0,0,7,244,0,0,0,0,15,208,85,85,91,249,85,85,64,0,15,210,255,255,255,255,255,255,208,0,15,210,255,255,255,255,255,255,208,0,15,210,255,255,255,255,255,255,208,0,15,208,0,0,0,0,0,0,0, + // 0x5f9e 從 + 158,95,38,38,124,40,1,252,0,0,144,0,10,80,0,41,0,0,0,1,253,0,15,240,0,63,64,0,0,3,252,0,15,208,0,127,0,0,0,15,244,0,31,192,0,191,0,0,0,63,224,0,47,192,0,255,0,0,0,255,128,0,63,128,0,254,0,0,3,255,0,0,127,64,1,253,0,0,31,248,0,0,191,192,3,252,0,0,127,224,0,0,255,244,3,255,0,0,63,128,61,2,255,253,11,255,192,0,13,0,255,67,253,255,95,255,244,0,0,1,254,15,244,127,63,203,252,0,0,3,252,47,224,29,191,130,255,0,0,15,244,127,192,2,255,0,191,192,0,47,225,255,64,11,253,0,47,208,0,191,208,254,0,3,244,0,15,64,2,255,208,44,0,1,244,0,1,0,11,255,208,0,0,2,252,0,0,0,47,255,208,0,0,2,252,0,0,0,191,255,208,1,164,2,252,0,0,0,191,207,208,1,252,2,252,0,0,0,63,15,208,2,252,2,252,0,0,0,24,15,208,2,252,2,252,0,0,0,0,15,208,3,252,2,255,255,252,0,0,15,208,3,248,2,255,255,252,0,0,15,208,3,248,2,255,255,252,0,0,15,208,7,252,2,252,0,0,0,0,15,208,11,253,2,252,0,0,0,0,15,208,15,255,2,252,0,0,0,0,15,208,15,255,66,252,0,0,0,0,15,208,47,255,194,252,0,0,0,0,15,208,63,207,242,252,0,0,0,0,15,208,191,71,255,252,0,0,0,0,15,210,255,2,255,252,0,0,0,0,15,215,253,0,191,255,255,255,192,0,15,219,248,0,31,255,255,255,128,0,15,210,240,0,1,191,255,255,64,0,15,208,64,0,0,0,21,85,0, + // 0x5fa9 復 + 169,95,38,38,124,40,1,252,0,0,144,0,25,0,0,0,0,0,0,2,253,0,63,192,0,0,0,0,0,7,252,0,127,128,0,0,0,0,0,15,244,0,255,64,0,0,0,0,0,63,208,1,255,255,255,255,255,192,0,255,128,3,255,255,255,255,255,192,7,254,0,11,255,255,255,255,255,192,31,248,0,15,240,0,0,0,0,0,127,224,16,63,224,0,0,0,0,0,63,64,62,191,229,85,85,85,80,0,13,0,255,255,255,255,255,255,244,0,0,1,255,254,255,255,255,255,244,0,0,3,252,44,253,0,0,3,244,0,0,15,244,0,253,0,0,3,244,0,0,47,240,0,254,85,85,87,244,0,0,191,208,0,255,255,255,255,244,0,2,255,208,0,255,255,255,255,244,0,11,255,208,0,253,0,0,3,244,0,63,255,208,0,253,0,0,3,244,0,255,239,208,0,255,255,255,255,244,0,127,79,208,0,255,255,255,255,244,0,45,15,208,0,86,255,85,85,80,0,4,15,208,0,3,252,0,0,0,0,0,15,208,0,11,248,0,0,0,0,0,15,208,0,47,255,255,255,224,0,0,15,208,0,191,255,255,255,240,0,0,15,208,2,255,234,170,191,224,0,0,15,208,15,255,224,0,127,192,0,0,15,208,191,251,248,1,255,64,0,0,15,208,191,130,254,11,253,0,0,0,15,208,45,0,191,255,244,0,0,0,15,208,0,0,47,255,192,0,0,0,15,208,0,0,191,255,224,0,0,0,15,208,0,111,255,255,255,144,0,0,15,208,175,255,255,95,255,255,144,0,15,208,255,255,224,1,191,255,192,0,15,208,191,249,0,0,10,255,64,0,15,208,36,0,0,0,0,6,0, + // 0x5fae 微 + 174,95,38,38,124,40,1,252,0,6,64,1,244,0,2,144,0,0,0,15,240,1,244,0,3,244,0,0,0,47,208,1,244,0,7,240,0,0,0,191,193,65,244,20,7,240,0,0,1,255,3,209,244,62,11,240,0,0,7,252,3,209,244,62,15,224,0,0,31,244,3,209,244,62,15,208,0,0,127,224,3,209,244,62,15,192,0,0,127,129,67,209,244,62,47,255,255,208,46,3,251,209,244,62,63,255,255,208,4,11,247,209,244,62,63,255,255,208,0,15,227,255,255,254,127,64,190,0,0,47,195,255,255,254,255,64,190,0,0,127,131,255,255,255,255,64,253,0,0,255,0,0,0,3,255,128,253,0,2,255,0,0,0,7,255,128,252,0,7,255,0,0,0,15,255,192,252,0,31,255,0,0,0,3,235,193,252,0,63,255,15,255,255,255,199,210,248,0,255,255,15,255,255,255,7,227,244,0,191,127,15,255,255,255,3,243,240,0,60,63,0,127,11,224,3,247,240,0,20,63,0,126,7,224,2,255,224,0,0,63,0,126,7,224,1,255,208,0,0,63,0,126,7,224,0,255,192,0,0,63,0,126,7,224,0,255,192,0,0,63,0,189,7,224,0,191,64,0,0,63,0,253,7,224,64,191,0,0,0,63,0,252,7,251,192,255,128,0,0,63,1,252,11,255,211,255,192,0,0,63,2,248,63,255,139,255,240,0,0,63,3,244,47,248,15,247,248,0,0,63,11,240,14,64,63,195,253,0,0,63,31,208,0,1,255,64,255,64,0,63,47,192,0,11,254,0,191,224,0,63,11,0,0,11,244,0,47,208,0,63,1,0,0,3,208,0,11,128,0,63,0,0,0,1,64,0,1,0, + // 0x5fc3 心 + 195,95,38,38,124,40,1,252,0,0,0,20,0,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,255,248,0,0,0,0,0,0,0,0,255,255,128,0,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,0,0,191,255,64,0,0,0,0,0,0,0,11,255,240,0,0,0,0,0,0,0,0,255,252,0,0,0,0,0,0,0,0,31,244,0,0,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1,84,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,3,252,0,0,0,4,0,0,0,0,3,252,0,0,0,189,0,0,0,249,3,252,0,0,1,255,0,0,0,255,3,252,0,0,0,255,128,0,0,254,3,252,0,0,0,63,208,0,0,254,3,252,0,0,0,47,240,0,1,253,3,252,0,0,0,15,244,0,2,252,3,252,0,0,0,11,252,0,3,252,3,252,0,0,0,3,253,0,3,252,3,252,0,0,0,1,255,0,7,248,3,252,0,0,0,0,255,64,11,244,3,252,0,0,0,0,191,192,15,240,3,252,0,0,0,0,63,192,31,224,3,252,0,0,6,0,63,208,63,208,3,252,0,0,7,240,47,224,127,192,3,252,0,0,7,240,15,224,191,128,3,252,0,0,7,240,14,0,31,0,3,252,0,0,11,240,0,0,0,0,3,252,0,0,11,240,0,0,0,0,3,252,0,0,15,224,0,0,0,0,2,254,0,0,47,208,0,0,0,0,2,255,255,255,255,192,0,0,0,0,0,255,255,255,255,128,0,0,0,0,0,127,255,255,254,0,0,0,0,0,0,1,85,85,80,0,0,0, + // 0x6027 性 + 39,96,37,38,124,40,1,252,0,31,208,0,0,1,168,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,62,65,253,0,0,0,0,31,208,0,127,65,253,0,0,0,0,31,208,0,191,1,253,0,0,0,0,31,208,0,191,1,253,0,0,0,0,31,208,0,255,1,253,0,0,0,0,31,239,0,254,1,253,0,0,0,15,159,255,129,254,170,254,170,169,0,15,159,223,194,255,255,255,255,255,0,15,159,219,211,255,255,255,255,255,0,31,159,215,247,255,255,255,255,255,0,31,95,211,255,240,1,253,0,0,0,47,31,210,255,240,1,253,0,0,0,63,31,208,95,208,1,253,0,0,0,63,31,208,63,192,1,253,0,0,0,126,31,208,63,128,1,253,0,0,0,189,31,208,7,0,1,253,0,0,0,188,31,208,0,0,1,253,0,0,0,4,31,208,0,0,1,253,0,0,0,0,31,208,2,255,255,255,255,252,0,0,31,208,2,255,255,255,255,252,0,0,31,208,2,255,255,255,255,252,0,0,31,208,1,85,86,254,85,84,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,31,208,191,255,255,255,255,255,192,0,31,208,191,255,255,255,255,255,192,0,31,208,191,255,255,255,255,255,192,0,31,208,106,170,170,170,170,170,128,0,31,208,0,0,0,0,0,0,0, + // 0x6062 恢 + 98,96,38,38,124,40,1,252,0,10,128,1,160,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,3,244,0,0,0,0,0,0,31,192,87,249,85,85,85,85,64,0,31,192,255,255,255,255,255,255,192,0,31,192,255,255,255,255,255,255,192,0,31,233,255,255,255,255,255,255,192,10,95,255,3,244,0,0,0,0,0,15,159,239,3,244,0,15,192,0,0,15,95,207,131,244,0,15,192,0,0,15,95,203,195,244,0,15,192,0,0,31,95,199,211,244,0,15,192,0,0,31,31,195,227,244,0,15,192,9,0,47,31,195,227,244,184,15,192,31,192,63,31,194,67,244,252,15,192,47,128,62,31,192,3,244,248,15,192,63,64,125,31,192,3,240,248,15,192,63,0,188,31,192,3,240,244,15,192,190,0,20,31,192,3,241,244,31,192,252,0,0,31,192,3,242,240,31,193,248,0,0,31,192,7,243,240,31,210,244,0,0,31,192,7,251,208,47,211,240,0,0,31,192,11,225,192,63,224,0,0,0,31,192,11,224,0,63,240,0,0,0,31,192,15,208,0,127,244,0,0,0,31,192,15,208,0,254,248,0,0,0,31,192,31,192,1,252,252,0,0,0,31,192,47,192,3,248,190,0,0,0,31,192,63,128,11,240,63,64,0,0,31,192,127,64,31,224,63,192,0,0,31,192,191,0,127,192,31,240,0,0,31,192,254,1,255,64,11,252,0,0,31,194,252,11,254,0,3,255,0,0,31,199,248,63,248,0,1,255,208,0,31,203,240,127,224,0,0,127,208,0,31,193,224,47,64,0,0,31,128,0,31,192,64,8,0,0,0,2,0, + // 0x606f 息 + 111,96,37,39,134,40,2,252,0,0,0,0,64,0,0,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,1,255,0,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,250,170,170,170,171,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,250,170,170,170,175,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,208,0,0,0,3,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,254,0,0,16,0,0,0,228,10,129,255,128,0,248,0,0,1,253,15,208,127,224,3,254,0,0,3,252,15,208,31,244,1,255,128,0,3,248,15,208,7,240,0,127,224,0,15,244,15,208,2,128,64,31,244,0,31,240,15,208,0,0,185,11,252,0,63,208,15,208,0,0,254,3,255,0,255,128,15,224,0,1,254,0,255,64,255,0,15,255,255,255,252,0,127,0,28,0,11,255,255,255,252,0,56,0,0,0,2,255,255,255,224,0,0,0,0,0,0,5,85,84,0,0,0,0, + // 0x61b6 憶 + 182,97,38,38,124,40,1,252,0,10,128,0,0,2,168,0,0,0,0,31,192,0,0,3,252,0,0,0,0,31,192,0,0,3,252,0,0,0,0,31,192,10,170,171,254,170,170,0,0,31,192,15,255,255,255,255,255,0,0,31,192,15,255,255,255,255,255,0,0,31,192,0,15,192,0,63,64,0,0,31,217,0,15,224,0,127,0,0,10,95,255,0,7,240,0,190,0,0,15,159,239,0,3,240,0,252,0,0,15,95,207,191,255,255,255,255,255,208,15,95,203,255,255,255,255,255,255,208,31,95,199,255,255,255,255,255,255,192,31,31,195,224,0,0,0,0,0,0,47,31,195,224,85,85,85,85,84,0,63,31,193,1,255,255,255,255,252,0,62,31,192,1,255,255,255,255,252,0,125,31,192,1,252,0,0,1,252,0,188,31,192,1,252,0,0,1,252,0,20,31,192,1,255,255,255,255,252,0,0,31,192,1,255,255,255,255,252,0,0,31,192,1,252,0,0,2,252,0,0,31,192,1,252,0,0,1,252,0,0,31,192,1,253,85,85,86,252,0,0,31,192,1,255,255,255,255,252,0,0,31,192,1,255,255,255,255,252,0,0,31,192,0,0,15,208,0,0,0,0,31,192,0,0,15,248,0,0,0,0,31,192,6,66,246,255,7,192,0,0,31,192,11,226,248,127,15,240,0,0,31,192,15,210,248,13,7,248,0,0,31,192,31,194,248,0,2,253,0,0,31,192,63,130,248,0,36,255,0,0,31,192,127,66,248,0,47,127,128,0,31,193,255,2,248,0,63,47,192,0,31,194,252,2,255,255,255,15,208,0,31,192,116,1,255,255,254,11,64,0,31,192,0,0,127,255,248,0,0, + // 0x61c9 應 + 201,97,37,38,124,40,1,252,0,0,0,0,11,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,15,240,0,0,0,0,2,255,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,255,192,2,255,255,255,255,255,255,255,255,192,2,252,0,57,0,244,1,64,0,0,2,248,0,127,1,253,3,248,0,0,2,248,0,253,2,252,7,240,0,0,2,248,2,252,7,244,15,224,0,0,2,248,7,244,15,255,255,255,254,0,2,248,15,240,47,255,255,255,254,0,2,248,63,240,127,229,111,213,84,0,2,248,191,240,255,208,31,192,0,0,2,254,255,243,255,255,255,255,248,0,2,255,255,247,255,255,255,255,248,0,2,255,247,241,223,208,31,192,0,0,2,249,199,240,15,208,31,192,0,0,2,248,7,240,15,255,255,255,248,0,2,248,7,240,15,255,255,255,248,0,3,248,7,240,15,208,31,192,0,0,3,248,7,240,15,208,31,192,0,0,3,244,7,240,15,229,111,213,85,0,3,244,7,240,15,255,255,255,255,64,3,244,7,240,15,255,255,255,255,64,3,240,1,80,3,208,0,0,0,0,7,240,0,0,15,253,0,0,0,0,11,240,0,0,7,255,128,6,0,0,11,224,10,66,252,127,240,63,192,0,15,224,15,210,252,11,224,47,224,0,15,208,47,194,252,1,64,11,244,0,31,192,63,66,252,0,2,147,253,0,47,192,191,2,252,0,3,244,255,0,63,130,254,1,252,0,3,240,127,128,127,71,252,1,255,255,255,240,63,192,191,1,240,0,255,255,255,208,31,64,30,0,0,0,47,255,255,64,4,0,4,0,0,0,0,0,0,0,0,0, + // 0x6210 成 + 16,98,37,39,134,40,1,251,0,0,0,0,0,170,1,64,0,0,0,0,0,0,0,255,7,244,0,0,0,0,0,0,0,191,15,254,0,0,0,0,0,0,0,191,2,255,192,0,0,0,0,0,0,191,0,127,244,0,0,0,0,0,0,191,0,15,244,0,0,0,0,0,0,191,0,2,208,0,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,255,255,255,255,255,255,255,192,0,255,170,170,170,255,234,170,170,128,0,255,0,0,0,127,128,0,0,0,0,255,0,0,0,63,128,0,0,0,0,255,0,0,0,63,128,1,0,0,0,255,0,0,0,63,192,7,244,0,0,255,85,85,80,63,192,15,240,0,0,255,255,255,240,63,192,15,240,0,0,255,255,255,240,47,192,47,208,0,0,255,255,255,240,31,208,63,192,0,0,255,0,15,240,31,224,127,128,0,0,255,0,15,240,15,240,255,0,0,0,254,0,15,224,15,242,255,0,0,0,254,0,15,224,15,247,253,0,0,0,254,0,15,224,11,255,248,0,0,1,254,0,15,224,7,255,240,0,0,1,253,0,15,224,3,255,224,0,0,2,253,0,15,224,3,255,192,0,0,2,252,0,31,208,2,255,0,13,0,3,252,85,127,208,7,255,0,15,192,3,252,127,255,192,31,255,64,15,192,7,248,63,255,128,127,255,192,15,192,11,244,47,253,2,255,255,208,31,192,15,240,0,0,15,255,31,240,47,192,31,240,0,0,127,252,15,253,63,128,63,208,0,2,255,240,7,255,255,64,127,192,0,2,255,192,1,255,255,0,47,128,0,0,189,0,0,127,253,0,7,0,0,0,32,0,0,10,160,0,0,0,0,0,0,0,0,0,0,0, + // 0x6236 戶 + 54,98,32,38,48,40,2,252,0,0,0,0,0,0,6,0,0,0,0,0,0,6,255,192,0,0,0,0,6,255,255,240,0,0,0,91,255,255,255,208,0,62,175,255,255,255,228,0,0,63,255,255,255,164,0,0,0,63,255,250,64,0,0,0,0,63,228,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,63,255,255,255,255,255,254,0,63,255,255,255,255,255,254,0,63,255,255,255,255,255,254,0,63,213,85,85,85,86,254,0,63,192,0,0,0,0,254,0,63,192,0,0,0,0,254,0,63,192,0,0,0,0,254,0,63,192,0,0,0,0,254,0,63,192,0,0,0,0,254,0,63,128,0,0,0,0,254,0,63,213,85,85,85,86,254,0,127,255,255,255,255,255,254,0,127,255,255,255,255,255,254,0,191,255,255,255,255,255,254,0,191,0,0,0,0,0,254,0,255,0,0,0,0,0,254,0,254,0,0,0,0,0,0,2,253,0,0,0,0,0,0,3,252,0,0,0,0,0,0,7,248,0,0,0,0,0,0,15,244,0,0,0,0,0,0,31,240,0,0,0,0,0,0,63,208,0,0,0,0,0,0,255,192,0,0,0,0,0,0,255,64,0,0,0,0,0,0,46,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0, + // 0x6240 所 + 64,98,38,37,114,40,1,252,0,0,0,0,0,0,0,0,180,0,5,85,85,85,84,0,0,11,254,0,31,255,255,255,252,0,1,255,255,128,31,255,255,255,252,80,191,255,253,0,31,255,255,255,252,191,255,255,128,0,0,0,0,0,0,191,255,228,0,0,0,0,0,0,0,191,228,0,0,0,0,0,0,0,0,191,0,0,0,0,1,85,85,85,80,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,255,255,255,240,191,0,0,0,0,3,244,0,15,240,191,0,0,0,0,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,191,255,255,255,208,3,244,0,15,240,255,170,175,250,144,3,244,0,15,240,255,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,255,255,255,240,254,0,15,208,0,3,249,85,85,81,253,0,15,208,0,3,244,0,0,1,253,0,15,208,0,7,240,0,0,2,252,0,15,208,0,7,240,0,0,3,252,0,15,208,0,7,240,0,0,3,248,0,15,208,0,11,240,0,0,7,244,0,15,208,0,11,240,0,0,15,240,0,15,208,0,15,224,0,0,15,240,0,15,208,0,15,208,0,0,47,208,0,15,208,0,31,192,0,0,63,192,0,15,208,0,63,192,0,0,255,128,0,15,208,0,63,128,0,2,255,0,0,15,208,0,191,64,0,7,253,0,0,15,208,0,255,0,0,7,248,0,0,15,208,0,45,0,0,0,240,0,0,15,208,0,4,0,0,0,0,0,0,15,208,0, + // 0x6247 扇 + 71,98,36,36,68,40,1,252,15,255,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,255,15,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,64,0,0,0,0,15,224,0,63,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,224,0,127,255,255,255,255,255,255,224,0,127,64,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,0,127,127,255,255,15,255,255,244,0,127,127,255,255,15,255,255,244,0,191,63,255,255,15,255,255,244,0,191,1,0,127,0,80,3,244,0,255,15,192,127,3,244,3,244,0,254,15,224,127,3,253,3,244,0,254,7,248,127,0,255,3,244,1,253,1,252,127,0,63,67,244,2,252,0,240,127,0,28,3,244,3,252,0,0,127,0,0,99,244,3,248,0,47,127,0,11,243,244,7,244,7,255,127,1,191,243,244,15,241,191,254,127,47,255,131,244,31,241,255,224,127,47,248,3,244,63,208,253,0,127,31,128,3,244,127,192,144,0,127,4,0,3,244,191,64,0,63,255,0,3,255,244,31,0,0,47,254,0,2,255,240,0,0,0,31,228,0,1,255,128, + // 0x624b 手 + 75,98,36,38,86,40,2,252,0,0,0,0,0,0,0,96,0,0,0,0,0,0,1,175,248,0,0,0,0,1,90,255,255,253,0,1,86,175,255,255,255,255,254,0,3,255,255,255,255,255,254,64,0,3,255,255,255,255,165,0,0,0,2,255,170,85,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,2,170,170,170,255,170,170,170,144,3,255,255,255,255,255,255,255,224,3,255,255,255,255,255,255,255,224,3,255,255,255,255,255,255,255,224,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,255,170,170,170,170,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,255,255,255,0,0,0,0,0,0,191,255,253,0,0,0,0,0,0,63,255,248,0,0,0,0,0,0,42,169,0,0,0,0,0, + // 0x6253 打 + 83,98,37,38,124,40,2,252,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,0,0,0,0,0,0,0,0,31,208,2,170,170,170,170,170,64,0,31,208,3,255,255,255,255,255,64,0,31,208,3,255,255,255,255,255,64,0,31,208,3,255,255,255,255,255,64,0,31,208,0,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,255,255,255,244,0,0,31,224,0,0,170,175,234,160,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,20,0,0,31,224,0,0,0,31,235,248,0,0,31,224,0,0,0,47,255,248,0,0,31,224,0,0,27,255,255,252,0,0,31,224,0,0,255,255,255,144,0,0,31,224,0,0,255,255,224,0,0,0,31,224,0,0,191,255,208,0,0,0,31,224,0,0,120,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,31,208,0,0,0,31,224,0,0,0,47,208,0,0,0,47,224,0,0,63,255,208,0,11,255,255,208,0,0,31,255,192,0,3,255,255,192,0,0,15,255,64,0,3,255,255,64,0,0,5,80,0,0,2,255,228,0,0,0, + // 0x6279 批 + 121,98,38,38,124,40,1,252,0,31,128,1,80,0,21,64,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,63,255,255,199,240,0,47,192,0,0,63,255,255,199,240,0,47,192,4,0,63,255,255,199,240,0,47,192,45,0,21,127,213,71,240,0,47,192,191,64,0,47,192,7,240,0,47,194,255,128,0,47,192,7,255,255,47,207,254,0,0,47,192,7,255,255,47,255,244,0,0,47,192,7,255,255,47,255,192,0,0,47,192,7,250,169,47,253,0,0,0,47,193,71,240,0,47,240,0,0,0,47,255,135,240,0,47,192,0,0,0,127,255,199,240,0,47,192,0,0,27,255,255,199,240,0,47,192,0,0,191,255,249,7,240,0,47,192,0,0,127,255,192,7,240,0,47,192,0,0,63,175,192,7,240,0,47,192,0,0,16,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,0,0,0,47,192,7,240,0,47,192,9,0,0,47,192,7,240,0,47,192,15,208,0,47,192,7,240,0,47,192,15,208,0,47,192,7,240,27,47,192,15,208,0,47,192,7,255,255,47,192,15,192,0,47,194,255,255,255,47,192,31,192,21,127,195,255,255,254,31,255,255,192,31,255,130,255,249,0,15,255,255,64,15,255,1,249,0,0,7,255,254,0,15,248,0,0,0,0,0,21,80,0, + // 0x6296 抖 + 150,98,38,38,124,40,1,252,0,11,224,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,3,128,0,191,0,0,0,15,240,0,15,248,0,191,0,0,0,15,240,0,15,255,0,191,0,0,0,15,240,0,1,255,208,191,0,0,0,15,240,0,0,63,244,191,0,0,63,255,255,248,0,11,240,191,0,0,63,255,255,248,0,1,192,191,0,0,63,255,255,248,0,0,0,191,0,0,21,95,245,80,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,61,0,0,191,0,0,0,15,240,0,191,208,0,191,0,0,0,15,240,0,255,248,0,191,0,0,0,15,240,0,31,255,64,191,0,0,0,15,240,20,2,255,192,191,0,0,0,15,251,248,0,127,64,191,0,0,0,15,255,248,0,14,0,191,0,0,6,255,255,252,0,0,0,191,0,0,127,255,255,144,0,0,0,191,0,0,63,255,240,0,0,0,0,191,107,192,63,239,240,0,0,0,6,255,255,192,24,15,240,0,0,107,255,255,255,208,0,15,240,2,191,255,255,255,255,144,0,15,240,7,255,255,255,255,64,0,0,15,240,3,255,255,164,191,0,0,0,15,240,3,250,64,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,0,15,240,0,0,0,0,191,0,0,31,255,224,0,0,0,0,191,0,0,15,255,208,0,0,0,0,191,0,0,11,255,64,0,0,0,0,191,0,0,1,80,0,0,0,0,0,106,0,0, + // 0x62bd 抽 + 189,98,37,39,134,40,1,251,0,15,208,0,0,0,168,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,0,15,224,0,0,0,253,0,0,0,63,255,255,224,0,0,253,0,0,0,63,255,255,226,170,170,254,170,170,64,63,255,255,227,255,255,255,255,255,128,21,95,245,83,255,255,255,255,255,128,0,15,224,3,255,255,255,255,255,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,231,243,244,0,253,0,63,128,0,15,255,243,244,0,253,0,63,128,1,191,255,243,255,255,255,255,255,128,127,255,255,147,255,255,255,255,255,128,127,255,244,3,255,255,255,255,255,128,127,255,224,3,249,86,254,85,191,128,61,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,244,0,253,0,63,128,0,15,224,3,250,170,254,170,191,128,0,15,224,3,255,255,255,255,255,128,0,15,224,3,255,255,255,255,255,128,5,95,224,3,255,255,255,255,255,128,31,255,208,3,244,0,0,0,63,128,15,255,192,3,244,0,0,0,63,128,11,254,0,3,244,0,0,0,42,64,0,0,0,0,0,0,0,0,0,0, + // 0x62d4 拔 + 212,98,38,39,134,40,1,251,0,15,208,0,0,253,0,0,0,0,0,15,224,0,1,253,0,244,0,0,0,15,224,0,1,253,3,254,0,0,0,15,224,0,1,253,2,255,208,0,0,15,224,0,1,253,0,127,244,0,0,15,224,0,1,252,0,11,254,0,0,15,224,0,1,252,0,1,252,0,0,15,224,0,1,252,0,0,116,0,63,255,255,224,1,252,0,0,0,0,63,255,255,235,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,0,15,224,0,2,252,0,0,0,0,0,15,224,0,2,252,0,0,0,0,0,15,224,0,3,253,0,0,0,0,0,15,224,0,3,254,0,6,160,0,0,15,224,0,3,255,0,11,240,0,0,15,224,0,3,255,0,15,240,0,0,15,225,160,3,255,64,15,224,0,0,15,255,240,7,255,128,31,208,0,0,111,255,240,11,255,192,31,192,0,111,255,255,224,15,239,224,47,192,0,191,255,248,0,15,231,240,63,128,0,127,255,224,0,31,211,244,127,64,0,62,79,224,0,47,194,252,255,0,0,0,15,224,0,63,192,254,254,0,0,0,15,224,0,127,64,191,252,0,0,0,15,224,0,191,0,63,248,0,0,0,15,224,0,254,0,47,240,0,0,0,15,224,2,253,0,47,244,0,0,0,15,224,3,252,0,127,253,0,0,0,15,224,15,244,1,255,255,64,0,0,15,224,31,240,3,254,255,208,0,0,15,224,127,192,31,248,63,248,0,5,95,224,255,128,191,240,11,255,64,31,255,211,255,3,255,192,2,255,224,15,255,193,252,1,254,0,0,127,128,11,254,0,112,0,116,0,0,7,0,0,0,0,0,0,0,0,0,0,0, + // 0x6309 按 + 9,99,38,39,134,40,1,251,0,15,208,0,0,1,168,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,0,0,2,252,0,0,0,0,15,224,1,85,87,253,85,85,64,0,15,224,11,255,255,255,255,255,192,0,15,224,11,255,255,255,255,255,192,63,255,255,235,255,255,255,255,255,192,63,255,255,235,240,0,0,0,47,192,63,255,255,235,240,15,144,0,47,192,21,95,245,91,240,31,224,0,47,192,0,15,224,11,240,47,208,0,47,192,0,15,224,11,240,63,192,0,47,192,0,15,224,0,0,63,128,0,0,0,0,15,224,0,0,127,64,0,0,0,0,15,224,5,85,255,85,85,85,64,0,15,224,15,255,255,255,255,255,208,0,15,225,175,255,255,255,255,255,208,0,15,255,255,255,255,255,255,255,208,1,191,255,240,3,248,0,31,224,0,111,255,255,224,7,244,0,47,208,0,191,255,244,0,15,240,0,63,192,0,127,255,224,0,15,224,0,63,192,0,62,79,224,0,31,192,0,127,64,0,0,15,224,0,63,208,0,255,0,0,0,15,224,0,63,253,2,254,0,0,0,15,224,0,191,255,227,252,0,0,0,15,224,0,255,255,255,248,0,0,0,15,224,0,9,31,255,240,0,0,0,15,224,0,0,1,255,253,0,0,0,15,224,0,0,7,255,255,192,0,0,15,224,0,0,111,254,255,244,0,0,15,224,0,11,255,240,63,254,0,5,95,224,22,255,255,128,7,255,192,31,255,208,63,255,248,0,0,255,192,15,255,192,31,254,64,0,0,47,0,11,254,0,15,144,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0, + // 0x6389 掉 + 137,99,38,38,124,40,1,252,0,26,128,0,0,2,160,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,255,255,255,128,0,47,192,0,0,3,244,0,0,0,63,255,255,192,0,3,244,0,0,0,63,255,255,192,0,3,244,0,0,0,63,255,255,203,255,255,255,255,252,0,21,127,229,75,255,255,255,255,252,0,0,47,192,11,255,255,255,255,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,240,0,0,3,252,0,0,47,192,11,255,255,255,255,252,0,0,47,192,11,255,255,255,255,252,0,0,47,219,203,255,255,255,255,252,0,0,47,255,203,240,0,0,3,252,0,1,255,255,219,240,0,0,3,252,0,127,255,255,139,240,0,0,3,252,0,63,255,224,11,255,255,255,255,252,0,63,255,192,11,255,255,255,255,252,0,41,47,192,11,255,255,255,255,252,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,0,47,192,255,255,255,255,255,255,208,0,47,192,255,255,255,255,255,255,208,0,47,192,255,255,255,255,255,255,208,0,47,192,85,85,87,249,85,85,64,0,47,192,0,0,3,244,0,0,0,0,47,192,0,0,3,244,0,0,0,63,255,192,0,0,3,244,0,0,0,47,255,128,0,0,3,244,0,0,0,31,254,0,0,0,3,244,0,0,0,5,64,0,0,0,2,164,0,0,0, + // 0x63a2 探 + 162,99,38,38,124,40,1,252,0,47,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,15,255,255,255,255,255,128,0,47,192,15,255,255,255,255,255,128,0,47,192,15,255,255,255,255,255,128,0,47,192,15,192,0,0,0,47,128,0,47,192,15,192,84,0,0,47,128,0,47,192,15,192,253,11,224,47,128,63,255,255,207,192,253,11,224,47,128,63,255,255,207,193,252,11,224,47,128,63,255,255,192,2,252,11,224,0,0,21,127,213,64,3,248,11,224,9,0,0,47,192,0,11,244,11,224,11,208,0,47,192,0,47,240,11,240,15,192,0,47,192,2,255,192,11,255,255,192,0,47,192,47,255,0,3,255,255,128,0,47,192,15,248,0,1,255,254,0,0,47,198,135,64,3,252,0,0,0,0,47,255,128,0,3,252,0,0,0,0,127,255,192,0,3,252,0,0,0,47,255,255,128,0,3,252,0,0,0,191,255,244,47,255,255,255,255,255,192,127,255,192,47,255,255,255,255,255,192,62,111,192,47,255,255,255,255,255,192,0,47,192,5,85,191,255,213,85,64,0,47,192,0,0,255,255,240,0,0,0,47,192,0,2,255,255,244,0,0,0,47,192,0,7,251,255,253,0,0,0,47,192,0,31,243,252,255,0,0,0,47,192,0,63,211,252,127,192,0,0,47,192,1,255,131,252,47,244,0,0,47,192,11,254,3,252,15,253,0,0,47,192,63,252,3,252,3,255,128,0,47,194,255,224,3,252,0,255,224,21,127,192,255,128,3,252,0,63,192,31,255,128,124,0,3,252,0,11,0,15,255,0,16,0,3,252,0,0,0,15,248,0,0,0,3,252,0,0,0, + // 0x63a5 接 + 165,99,37,38,124,40,1,252,0,15,208,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,0,0,3,252,0,0,0,0,15,224,15,255,255,255,255,255,0,0,15,224,15,255,255,255,255,255,0,0,15,224,15,255,255,255,255,255,0,0,15,224,0,11,208,0,63,128,0,63,255,255,192,15,208,0,127,64,0,63,255,255,192,15,224,0,191,0,0,63,255,255,192,11,240,0,254,0,0,21,95,245,64,7,240,0,253,0,0,0,15,224,0,3,244,1,252,0,0,0,15,224,0,7,248,3,248,0,0,0,15,224,127,255,255,255,255,255,192,0,15,224,127,255,255,255,255,255,192,0,15,224,127,255,255,255,255,255,192,0,15,224,0,0,63,192,0,0,0,0,15,226,192,0,127,128,0,0,0,0,15,255,192,0,255,0,0,0,0,0,111,255,208,1,255,0,0,0,0,27,255,255,255,255,255,255,255,255,192,191,255,249,127,255,255,255,255,255,192,127,255,224,63,255,255,255,255,255,192,62,79,224,0,15,240,0,127,64,0,16,15,224,0,47,208,0,191,0,0,0,15,224,0,63,192,0,254,0,0,0,15,224,0,191,64,2,253,0,0,0,15,224,0,255,249,7,252,0,0,0,15,224,2,255,255,239,240,0,0,0,15,224,1,186,255,255,224,0,0,0,15,224,0,0,27,255,244,0,0,0,15,224,0,0,47,255,255,128,0,0,15,224,0,27,255,251,255,244,0,31,255,208,175,255,255,128,127,255,0,15,255,192,255,255,244,0,7,255,0,11,255,64,127,249,0,0,0,188,0,6,148,0,36,0,0,0,0,0,0, + // 0x63a7 控 + 167,99,38,38,124,40,1,252,0,31,128,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,63,65,253,11,240,31,192,63,255,255,191,64,252,11,240,31,192,63,255,255,191,65,252,11,240,31,192,63,255,255,191,65,252,11,240,31,192,21,127,213,64,2,252,11,240,0,0,0,47,192,0,3,248,11,240,4,0,0,47,192,0,7,244,11,240,15,64,0,47,192,0,15,240,11,240,15,192,0,47,192,0,63,208,11,240,15,192,0,47,192,1,255,192,11,255,255,128,0,47,199,175,255,0,3,255,255,64,0,47,255,143,248,0,1,255,253,0,0,127,255,203,128,0,0,0,0,0,27,255,255,64,0,0,0,0,0,0,191,255,224,0,0,0,0,0,0,0,127,255,192,7,255,255,255,255,253,0,62,111,192,7,255,255,255,255,253,0,16,47,192,7,255,255,255,255,253,0,0,47,192,1,85,87,253,85,84,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,255,255,255,255,255,255,208,21,127,192,255,255,255,255,255,255,208,31,255,128,255,255,255,255,255,255,208,15,255,0,85,85,85,85,85,85,64,15,248,0,0,0,0,0,0,0,0, + // 0x63d0 提 + 208,99,38,38,124,40,1,252,0,47,128,0,0,0,0,0,0,0,0,47,128,1,170,170,170,170,164,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,255,255,255,255,244,0,127,255,255,194,255,255,255,255,244,0,127,255,255,194,254,170,170,171,244,0,127,255,255,194,252,0,0,3,244,0,21,127,213,66,252,0,0,3,244,0,0,47,128,2,254,170,170,175,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,128,0,0,0,0,0,0,0,0,47,134,95,255,255,255,255,255,128,0,47,255,223,255,255,255,255,255,128,1,191,255,223,255,255,255,255,255,128,111,255,255,128,0,3,248,0,0,0,191,255,224,0,80,3,248,0,0,0,127,255,128,0,253,3,248,0,0,0,57,47,128,1,252,3,248,0,0,0,0,47,128,1,252,3,255,255,248,0,0,47,128,2,248,3,255,255,248,0,0,47,128,3,252,3,255,255,248,0,0,47,128,7,253,3,248,0,0,0,0,47,128,11,255,3,248,0,0,0,0,47,128,15,255,67,248,0,0,0,0,47,128,47,223,211,248,0,0,0,0,47,128,63,139,251,248,0,0,0,0,63,128,255,2,255,248,0,0,0,47,255,131,254,0,191,255,255,255,224,31,255,71,252,0,31,255,255,255,192,15,253,1,240,0,1,191,255,255,192,5,64,0,64,0,0,0,0,0,0, + // 0x63d2 插 + 210,99,37,38,124,40,1,252,0,31,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,91,240,0,0,47,192,0,5,106,255,255,252,0,0,47,192,15,255,255,255,255,253,0,0,47,192,11,255,255,255,233,64,0,0,47,192,7,254,171,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,63,255,255,192,0,3,248,0,0,0,63,255,255,213,85,87,253,85,85,64,63,255,255,255,255,255,255,255,255,192,21,127,213,63,255,255,255,255,255,192,0,47,192,63,255,255,255,255,255,192,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,3,248,0,0,0,0,47,192,0,0,67,248,0,0,0,0,47,192,0,7,243,248,0,0,0,0,47,192,15,191,255,248,255,255,0,0,47,223,143,255,251,248,255,255,0,0,47,255,143,254,3,248,255,255,0,6,255,255,207,208,3,248,0,127,0,191,255,253,15,208,3,248,0,127,0,127,255,192,15,208,3,248,0,127,0,63,175,192,15,208,3,248,0,127,0,16,47,192,15,255,227,248,191,255,0,0,47,192,15,255,227,248,191,255,0,0,47,192,15,255,227,248,191,255,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,208,3,248,0,127,0,0,47,192,15,255,255,255,255,255,0,21,127,192,15,255,255,255,255,255,0,31,255,128,15,255,255,255,255,255,0,15,255,0,15,208,0,0,0,127,0,15,248,0,15,208,0,0,0,127,0, + // 0x63db 換 + 219,99,37,39,134,40,1,251,0,31,128,0,3,164,0,0,0,0,0,47,192,0,7,244,0,0,0,0,0,47,192,0,15,240,0,0,0,0,0,47,192,0,31,255,255,192,0,0,0,47,192,0,63,255,255,244,0,0,0,47,192,0,191,255,255,240,0,0,0,47,192,1,254,0,31,224,0,0,0,47,192,7,252,0,47,192,0,0,63,255,255,223,244,0,63,64,0,0,63,255,255,255,224,0,191,0,0,0,63,255,255,255,255,255,255,255,253,0,21,127,213,111,255,255,255,255,253,0,0,47,192,15,255,255,255,255,253,0,0,47,192,11,224,62,15,128,189,0,0,47,192,11,224,125,15,128,189,0,0,47,192,11,224,188,15,128,189,0,0,47,192,11,224,252,15,128,253,0,0,47,192,11,227,244,15,255,253,0,0,47,239,139,255,224,11,255,253,0,0,47,255,139,239,128,0,85,253,0,7,255,255,203,225,0,0,0,189,0,191,255,254,11,224,2,160,0,189,0,127,255,192,11,224,3,244,0,189,0,63,255,192,5,80,7,240,0,84,0,56,47,192,0,0,7,240,0,0,0,0,47,192,191,255,255,255,255,255,192,0,47,192,191,255,255,255,255,255,192,0,47,192,191,255,255,255,255,255,192,0,47,192,0,0,31,254,0,0,0,0,47,192,0,0,63,255,64,0,0,0,47,192,0,0,191,127,192,0,0,0,47,192,0,2,254,31,244,0,0,0,47,192,0,11,252,11,253,0,0,0,47,192,0,191,240,2,255,208,0,21,127,192,27,255,192,0,191,254,64,31,255,130,255,254,0,0,31,255,192,15,255,0,255,224,0,0,2,255,0,15,248,0,185,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0, + // 0x64c7 擇 + 199,100,38,39,134,40,1,251,0,31,128,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,7,255,255,255,255,255,0,0,47,192,7,255,255,255,255,255,0,0,47,192,7,250,255,171,250,191,0,0,47,192,7,224,126,3,224,63,0,0,47,192,7,224,126,3,224,63,0,0,47,192,7,224,126,3,224,63,0,63,255,255,199,255,255,255,255,255,0,63,255,255,199,255,255,255,255,255,0,63,255,255,198,170,171,254,170,170,0,21,127,213,64,0,2,252,0,0,0,0,47,192,0,0,2,252,0,0,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,255,255,255,255,253,0,0,47,192,2,170,171,254,170,169,0,0,47,192,0,0,2,252,0,0,0,0,47,193,64,0,2,252,0,0,0,0,47,239,191,255,255,255,255,255,208,0,127,255,255,255,255,255,255,255,208,27,255,255,255,255,255,255,255,255,208,191,255,248,0,15,208,0,63,128,0,127,255,192,0,11,240,0,127,0,0,62,111,192,0,7,240,0,253,0,0,0,47,192,47,255,255,255,255,255,128,0,47,192,47,255,255,255,255,255,192,0,47,192,47,255,255,255,255,255,192,0,47,192,0,0,2,252,0,0,0,0,47,192,0,0,2,252,0,0,0,0,47,192,0,0,2,252,0,0,0,0,47,192,11,255,255,255,255,255,0,0,47,192,11,255,255,255,255,255,0,0,47,192,11,255,255,255,255,255,0,0,47,192,0,0,2,252,0,0,0,21,127,192,0,0,2,252,0,0,0,31,255,128,0,0,2,252,0,0,0,15,255,0,0,0,2,252,0,0,0,15,248,0,0,0,2,252,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x64ca 擊 + 202,100,36,38,86,40,2,252,0,1,244,0,0,0,0,0,0,0,1,248,0,0,42,170,168,0,127,255,255,255,240,127,255,252,0,127,255,255,255,240,127,255,252,0,0,1,248,0,0,126,0,252,8,10,170,254,170,64,253,0,252,31,15,255,255,255,129,252,0,254,191,15,65,248,15,139,248,0,191,254,15,255,255,255,143,240,0,47,248,15,150,249,95,131,192,0,0,0,15,65,248,15,135,255,255,255,224,15,255,255,255,135,255,255,255,208,5,86,253,85,65,190,85,127,192,0,1,248,0,0,127,0,127,0,255,255,255,255,240,47,210,253,0,255,255,255,255,240,15,255,244,0,15,129,248,26,64,3,255,208,0,15,129,248,31,69,191,255,249,0,15,255,255,255,79,255,235,255,249,15,255,255,255,71,249,0,191,255,0,0,0,0,22,90,191,134,252,0,191,255,255,255,255,255,208,4,0,127,255,255,255,233,80,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,1,85,85,85,255,85,85,85,64,0,0,0,0,255,0,0,0,0,106,170,170,170,255,170,170,170,169,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,11,255,254,0,0,0,0,0,0,3,255,253,0,0,0,0,0,0,2,254,144,0,0,0,0, + // 0x64cb 擋 + 203,100,37,38,124,40,1,252,0,31,128,0,0,2,164,0,0,0,0,47,192,1,180,3,248,2,244,0,0,47,192,2,252,3,248,3,248,0,0,47,192,0,254,3,248,7,240,0,0,47,192,0,191,3,248,15,224,0,0,47,192,0,63,67,248,31,192,0,0,47,192,0,62,3,248,31,64,0,0,47,192,31,255,255,255,255,255,128,63,255,255,223,255,255,255,255,255,128,63,255,255,223,255,255,255,255,255,128,63,255,255,223,192,0,0,0,47,128,21,127,213,95,192,0,0,0,47,128,0,47,192,31,255,255,255,255,255,128,0,47,192,10,127,255,255,255,234,64,0,47,192,0,63,234,170,175,192,0,0,47,192,0,63,64,0,15,192,0,0,47,192,0,63,64,0,15,192,0,0,47,193,64,63,64,0,15,192,0,0,47,239,128,63,255,255,255,192,0,1,191,255,192,63,255,255,255,192,0,111,255,255,128,42,170,170,170,128,0,191,255,228,0,0,0,0,0,0,0,127,255,192,2,170,170,170,170,169,0,61,47,192,3,255,255,255,255,253,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,240,3,244,0,253,0,0,47,192,3,240,3,244,0,253,0,0,47,192,3,240,3,244,0,253,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,255,255,255,255,253,0,0,47,192,3,250,171,254,170,253,0,0,47,192,3,240,3,244,0,253,0,0,47,192,3,240,3,244,0,253,0,0,47,192,3,255,255,255,255,253,0,21,127,192,3,255,255,255,255,253,0,31,255,128,3,255,255,255,255,253,0,15,255,0,3,240,0,0,0,253,0,15,248,0,2,160,0,0,0,169,0, + // 0x64e0 擠 + 224,100,38,39,134,40,1,251,0,26,64,0,0,2,164,0,0,0,0,47,128,0,0,3,248,0,0,0,0,47,128,0,0,3,248,0,0,0,0,47,128,0,0,3,248,0,0,0,0,47,128,255,255,255,255,255,255,192,0,47,128,255,255,255,255,255,255,192,0,47,128,255,255,255,255,255,255,192,0,47,128,0,0,180,3,224,0,0,63,255,255,0,0,188,7,208,8,0,63,255,255,21,85,126,15,193,191,64,63,255,255,127,255,255,31,255,254,0,21,127,213,63,255,251,249,255,248,0,0,47,128,7,211,226,240,248,124,0,0,47,128,11,195,226,240,248,61,0,0,47,128,15,195,226,240,248,62,0,0,47,128,15,67,210,240,248,47,0,0,47,128,63,7,210,240,254,223,192,0,47,155,190,127,194,243,255,219,224,0,47,255,252,63,130,242,254,67,192,1,191,255,96,20,2,240,0,0,0,127,255,253,2,252,0,0,3,244,0,191,255,192,2,252,0,0,3,244,0,127,255,128,2,255,255,255,255,244,0,56,47,128,2,255,255,255,255,244,0,0,47,128,2,255,255,255,255,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,2,252,0,0,3,244,0,0,47,128,3,255,255,255,255,244,0,0,47,128,3,255,255,255,255,244,0,0,47,128,3,255,255,255,255,244,0,0,47,128,11,240,0,0,3,244,0,0,47,128,15,240,0,0,3,244,0,0,47,128,47,208,0,0,3,244,0,21,127,128,63,192,0,0,3,244,0,47,255,64,255,64,0,0,3,244,0,31,255,0,254,0,0,0,3,244,0,15,248,0,40,0,0,0,3,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x6536 收 + 54,101,38,38,124,40,1,252,0,0,2,164,0,41,0,0,0,0,0,0,3,248,0,63,192,0,0,0,0,0,3,248,0,63,192,0,0,0,0,0,3,248,0,127,128,0,0,0,0,0,3,248,0,191,0,0,0,0,3,248,3,248,0,255,0,0,0,0,3,248,3,248,1,254,0,0,0,0,3,248,3,248,2,254,170,170,170,144,3,248,3,248,3,255,255,255,255,208,3,248,3,248,7,255,255,255,255,208,3,248,3,248,15,255,255,255,255,208,3,248,3,248,31,244,0,3,252,0,3,248,3,248,63,252,0,3,252,0,3,248,3,248,127,252,0,3,248,0,3,248,3,248,255,253,0,7,244,0,3,248,3,251,255,254,0,15,240,0,3,248,3,255,253,255,0,15,240,0,3,248,3,255,248,127,0,31,208,0,3,248,3,249,240,63,128,63,192,0,3,248,3,248,144,63,192,63,192,0,3,248,3,248,0,31,208,191,64,0,3,248,3,248,0,15,240,255,0,0,3,248,3,248,0,11,246,254,0,0,3,248,27,248,0,3,255,252,0,0,3,254,255,248,0,3,255,248,0,0,7,255,255,248,0,1,255,240,0,0,127,255,255,248,0,0,255,208,0,0,63,255,211,248,0,0,255,208,0,0,63,228,3,248,0,3,255,240,0,0,25,0,3,248,0,15,255,252,0,0,0,0,3,248,0,63,251,255,0,0,0,0,3,248,1,255,209,255,192,0,0,0,3,248,11,255,64,127,244,0,0,0,3,248,191,253,0,47,254,0,0,0,3,251,255,244,0,11,255,224,0,0,3,250,255,128,0,1,255,192,0,0,3,248,253,0,0,0,63,64,0,0,3,244,96,0,0,0,6,0, + // 0x653e 放 + 62,101,38,38,124,40,1,252,0,0,253,0,0,3,144,0,0,0,0,1,253,0,0,7,248,0,0,0,0,1,253,0,0,11,244,0,0,0,0,1,253,0,0,15,240,0,0,0,0,1,253,0,0,15,240,0,0,0,0,1,253,0,0,15,224,0,0,0,21,86,254,85,80,31,208,0,0,0,63,255,255,255,244,47,229,85,85,64,63,255,255,255,244,63,255,255,255,208,63,255,255,255,244,127,255,255,255,208,0,63,128,0,0,191,255,255,255,208,0,63,128,0,0,255,0,7,244,0,0,63,128,0,1,255,64,7,240,0,0,63,128,0,3,255,64,11,240,0,0,63,128,0,7,255,128,15,240,0,0,63,255,255,207,255,192,15,224,0,0,63,255,255,223,255,192,31,208,0,0,63,255,255,255,239,208,47,192,0,0,63,213,127,255,207,240,63,192,0,0,63,128,63,203,71,240,63,128,0,0,63,128,63,129,3,248,127,64,0,0,63,128,63,128,3,252,255,0,0,0,63,128,63,128,2,254,254,0,0,0,63,64,63,128,0,255,252,0,0,0,127,64,63,128,0,191,248,0,0,0,127,0,63,128,0,63,240,0,0,0,191,0,63,128,0,63,240,0,0,0,255,0,63,128,0,127,240,0,0,0,254,0,63,64,0,255,252,0,0,2,253,0,63,64,3,255,254,0,0,3,252,0,63,64,15,254,255,128,0,11,248,0,127,0,127,240,191,224,0,15,240,0,191,2,255,208,47,252,0,63,224,0,255,47,255,0,15,255,128,191,192,255,255,191,252,0,3,255,208,127,64,255,253,63,224,0,0,191,64,13,0,191,244,47,0,0,0,30,0,0,0,21,0,4,0,0,0,0,0, + // 0x6557 敗 + 87,101,38,38,124,40,1,252,0,0,0,0,0,6,64,0,0,0,0,0,0,0,0,15,244,0,0,0,7,255,255,255,192,15,240,0,0,0,7,255,255,255,192,15,240,0,0,0,7,255,255,255,192,31,224,0,0,0,7,240,0,47,192,47,208,0,0,0,7,240,0,47,192,63,192,0,0,0,7,240,0,47,192,127,234,170,170,128,7,240,0,47,192,191,255,255,255,208,7,255,255,255,192,255,255,255,255,208,7,255,255,255,193,255,255,255,255,208,7,255,255,255,195,254,0,11,244,0,7,240,0,47,199,255,0,15,240,0,7,240,0,47,207,255,0,15,240,0,7,240,0,47,223,255,64,15,224,0,7,240,0,47,255,255,128,31,224,0,7,240,0,47,255,255,192,47,208,0,7,255,255,255,255,111,192,63,192,0,7,255,255,255,254,15,208,63,128,0,7,255,255,255,200,15,240,127,64,0,7,240,0,47,192,11,240,191,0,0,7,240,0,47,192,7,248,255,0,0,7,240,0,47,192,3,254,253,0,0,7,240,0,47,192,1,255,252,0,0,7,255,255,255,192,0,255,248,0,0,7,255,255,255,192,0,191,240,0,0,7,255,255,255,192,0,63,224,0,0,0,0,0,16,0,0,191,240,0,0,0,63,65,244,0,2,255,252,0,0,0,191,67,252,0,7,255,254,0,0,0,255,1,255,0,31,254,255,128,0,2,254,0,191,128,191,240,255,224,0,3,252,0,63,195,255,192,63,252,0,15,244,0,31,255,255,0,15,255,64,47,240,0,15,255,253,0,7,255,224,127,192,0,5,63,240,0,0,255,192,31,64,0,0,31,128,0,0,47,0,2,0,0,0,8,0,0,0,5,0, + // 0x6574 整 + 116,101,36,37,77,40,2,253,0,0,252,0,0,2,64,0,0,0,0,252,0,0,3,244,0,0,106,170,254,170,164,7,240,0,0,191,255,255,255,248,15,240,0,0,191,255,255,255,248,31,224,0,0,0,0,252,0,0,63,255,255,255,0,0,252,0,0,191,255,255,255,47,255,255,255,240,255,255,255,255,47,255,255,255,243,255,0,31,192,47,149,253,87,255,255,192,63,128,47,64,252,3,255,255,208,127,0,47,64,252,3,243,195,244,254,0,47,255,255,255,240,2,255,252,0,47,255,255,255,240,0,255,244,0,5,95,255,149,80,0,127,224,0,0,47,255,240,0,0,255,244,0,0,255,255,254,0,7,255,254,0,7,253,253,191,224,47,254,255,208,47,240,252,31,231,255,224,127,253,255,192,252,3,223,255,64,31,255,127,0,252,0,11,248,0,2,253,40,0,252,0,3,128,0,0,44,0,0,0,0,0,0,0,0,0,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,7,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,6,144,0,254,0,0,0,0,0,11,240,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,11,240,0,255,255,255,248,0,0,11,240,0,254,0,0,0,0,0,11,240,0,254,0,0,0,0,0,15,240,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6578 數 + 120,101,38,38,124,40,1,252,0,0,31,128,0,0,57,0,0,0,0,0,31,192,0,0,63,64,0,0,1,85,111,213,85,0,127,64,0,0,2,255,255,255,254,0,127,0,0,0,2,255,255,255,254,0,191,0,0,0,2,244,31,192,190,0,255,0,0,0,2,244,31,192,190,0,254,0,0,0,127,255,255,255,255,245,254,85,85,64,127,255,255,255,255,245,255,255,255,208,107,249,111,213,255,162,255,255,255,208,2,244,31,192,190,3,255,255,255,208,2,249,111,213,254,7,244,1,252,0,2,255,255,255,254,11,248,2,252,0,2,255,255,255,254,15,252,2,252,0,0,0,31,192,0,31,252,3,248,0,5,85,111,213,85,63,252,3,244,0,11,255,255,255,255,191,253,3,244,0,11,255,255,255,255,255,254,7,240,0,11,208,31,192,63,255,191,11,240,0,11,208,31,192,63,188,127,15,224,0,11,255,255,255,255,88,63,95,208,0,11,255,255,255,255,64,63,175,192,0,5,85,254,85,85,0,47,255,192,0,0,1,252,0,0,0,31,255,64,0,0,3,252,0,0,0,15,255,0,0,127,255,255,255,255,244,11,254,0,0,127,255,255,255,255,244,7,253,0,0,63,255,255,255,240,0,3,252,0,0,0,63,128,7,240,0,11,254,0,0,0,191,64,15,208,0,15,255,0,0,0,255,248,47,192,0,63,255,192,0,2,255,255,255,64,0,255,191,224,0,0,16,127,255,0,3,254,15,248,0,0,0,127,255,208,31,252,7,254,0,1,111,255,255,252,191,240,2,255,192,15,255,253,7,253,255,128,0,191,192,11,255,144,0,180,62,0,0,47,0,3,144,0,0,0,36,0,0,5,0, + // 0x6599 料 + 153,101,38,38,124,40,1,252,0,2,164,0,0,0,0,42,64,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,47,3,248,31,192,52,0,63,128,0,47,3,248,31,128,254,0,63,128,0,31,131,248,47,65,255,192,63,128,0,15,195,248,63,0,127,240,63,128,0,15,195,248,63,0,15,252,63,128,0,11,211,248,125,0,2,252,63,128,0,7,227,248,188,0,0,184,63,128,0,7,227,248,252,0,0,32,63,128,0,3,243,249,244,0,0,0,63,128,0,3,67,248,96,0,0,0,63,128,0,0,3,248,0,2,0,0,63,128,0,63,255,255,255,203,208,0,63,128,0,63,255,255,255,223,252,0,63,128,0,63,255,255,255,203,255,64,63,128,0,21,111,253,85,64,255,224,63,128,0,0,31,252,0,0,47,208,63,128,0,0,47,255,0,0,7,192,63,128,0,0,63,255,128,0,1,0,63,128,0,0,191,255,208,0,0,0,63,128,0,0,255,255,244,0,0,0,63,134,128,1,251,250,252,0,0,0,63,255,192,3,243,248,255,0,1,111,255,255,208,7,243,248,127,70,255,255,255,255,208,15,211,248,62,63,255,255,255,208,0,47,195,248,28,63,255,250,127,128,0,127,131,248,0,63,229,0,63,128,0,191,3,248,0,16,0,0,63,128,0,62,3,248,0,0,0,0,63,128,0,44,3,248,0,0,0,0,63,128,0,4,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,3,248,0,0,0,0,63,128,0,0,2,244,0,0,0,0,47,128,0, + // 0x659c 斜 + 156,101,38,38,124,40,1,252,0,0,127,64,0,0,0,11,224,0,0,0,255,224,0,0,0,15,224,0,0,1,255,248,0,0,0,15,224,0,0,3,255,254,0,2,64,15,224,0,0,11,250,255,128,15,208,15,224,0,0,31,240,191,224,31,248,15,224,0,0,63,208,47,248,7,254,15,224,0,0,191,128,15,253,0,255,143,224,0,2,255,0,3,255,0,63,223,224,0,7,252,0,0,252,0,15,207,224,0,31,244,0,0,112,0,7,15,224,0,127,255,255,255,224,0,0,15,224,0,255,255,255,255,224,0,0,15,224,0,62,255,255,255,224,8,0,15,224,0,8,21,127,213,64,127,64,15,224,0,0,0,63,128,0,191,224,15,224,0,0,0,63,128,0,31,248,15,224,0,0,0,63,128,0,7,255,15,224,0,63,255,255,255,254,0,255,143,224,0,63,255,255,255,254,0,62,15,224,0,63,255,255,255,254,0,8,15,224,0,21,85,127,213,84,0,0,15,224,0,0,0,63,128,0,0,0,15,251,192,0,64,63,128,128,0,0,95,255,208,2,252,63,139,224,0,111,255,255,224,3,248,63,135,240,111,255,255,255,144,3,244,63,131,244,255,255,255,240,0,7,240,63,130,252,255,255,159,224,0,11,240,63,128,252,254,64,15,224,0,15,208,63,128,254,0,0,15,224,0,47,192,63,128,191,0,0,15,224,0,63,128,63,128,63,0,0,15,224,0,127,0,63,128,52,0,0,15,224,0,30,0,63,128,0,0,0,15,224,0,0,21,127,128,0,0,0,15,224,0,0,63,255,128,0,0,0,15,224,0,0,31,255,0,0,0,0,15,224,0,0,15,248,0,0,0,0,15,224,0, + // 0x65b0 新 + 176,101,38,38,124,40,1,252,0,0,106,0,0,0,0,0,16,0,0,0,127,0,0,0,0,1,252,0,0,0,127,0,0,0,0,127,255,64,0,0,127,0,0,36,111,255,254,64,31,255,255,255,252,63,255,255,144,0,31,255,255,255,252,63,255,228,0,0,31,255,255,255,252,63,208,0,0,0,0,104,0,30,64,63,64,0,0,0,0,252,0,47,192,63,64,0,0,0,0,253,0,63,64,63,64,0,0,0,0,190,0,63,0,63,64,0,0,0,0,127,0,191,0,63,64,0,0,0,0,63,0,253,0,63,64,0,0,0,0,62,0,108,0,63,64,0,0,0,63,255,255,255,254,63,255,255,255,208,63,255,255,255,254,63,255,255,255,208,63,255,255,255,254,63,255,255,255,208,0,0,127,0,0,63,149,111,229,64,0,0,127,0,0,63,64,31,192,0,0,0,127,0,0,63,64,31,192,0,0,0,191,0,0,127,64,31,192,0,63,255,255,255,252,127,0,31,192,0,63,255,255,255,252,127,0,31,192,0,63,255,255,255,252,191,0,31,192,0,0,2,255,0,0,191,0,31,192,0,0,3,255,208,0,255,0,31,192,0,0,15,255,244,0,254,0,31,192,0,0,47,255,254,0,253,0,31,192,0,0,191,255,191,193,252,0,31,192,0,1,254,127,47,243,252,0,31,192,0,7,252,127,11,211,248,0,31,192,0,47,240,127,2,139,240,0,31,192,0,191,208,127,0,31,240,0,31,192,0,63,64,127,0,63,208,0,31,192,0,13,0,127,0,191,192,0,31,192,0,0,0,127,0,255,0,0,31,192,0,0,0,127,0,61,0,0,31,192,0,0,0,127,0,24,0,0,26,128,0, + // 0x65b7 斷 + 183,101,36,38,86,40,3,252,0,4,0,4,0,0,0,1,0,84,15,0,31,0,0,0,31,192,252,31,0,46,0,0,1,255,240,252,61,0,60,0,0,127,255,224,253,252,242,244,240,191,255,254,0,254,245,243,242,240,191,255,144,0,252,191,208,247,192,191,228,0,0,252,63,192,127,128,191,0,0,0,252,15,64,47,0,191,0,0,0,252,46,176,61,176,191,0,0,0,252,60,116,124,120,191,0,0,0,255,255,255,255,252,191,0,0,0,254,255,191,255,189,191,0,0,0,252,0,20,0,8,191,85,85,84,255,170,170,170,168,191,255,255,253,255,255,255,255,252,191,255,255,253,255,255,255,255,252,191,255,255,253,252,15,0,31,0,191,0,190,0,252,31,0,62,0,191,0,190,0,252,61,0,124,0,190,0,190,0,253,252,162,244,144,190,0,190,0,254,245,243,241,240,190,0,190,0,252,254,225,247,208,190,0,190,0,252,63,192,191,192,254,0,190,0,252,47,64,63,0,253,0,190,0,252,15,96,46,96,253,0,190,0,252,44,180,60,180,252,0,190,0,252,125,184,185,189,252,0,190,0,255,255,255,255,255,252,0,190,0,254,250,111,233,111,248,0,190,0,252,0,0,0,3,244,0,190,0,255,255,255,255,255,240,0,190,0,255,255,255,255,255,240,0,190,0,255,255,255,255,255,208,0,190,0,252,0,0,0,63,192,0,190,0,252,0,0,0,63,128,0,190,0,252,0,0,0,11,0,0,190,0,0,0,0,0,1,0,0,105,0, + // 0x65bc 於 + 188,101,38,39,134,40,1,251,0,1,252,0,0,0,127,128,0,0,0,1,252,0,0,0,191,192,0,0,0,1,252,0,0,0,255,208,0,0,0,1,252,0,0,1,255,240,0,0,0,1,252,0,0,3,255,244,0,0,0,1,252,0,0,7,247,252,0,0,21,86,254,85,80,15,241,253,0,0,63,255,255,255,240,31,224,255,0,0,63,255,255,255,240,63,192,127,128,0,63,255,255,255,240,191,128,63,208,0,0,63,128,0,1,255,0,31,240,0,0,63,128,0,3,253,0,11,252,0,0,63,128,0,15,248,0,3,254,0,0,63,128,0,47,240,0,1,255,192,0,63,64,0,191,208,0,0,191,224,0,63,255,255,127,64,0,0,47,192,0,63,255,255,45,1,244,0,11,64,0,63,255,255,20,7,254,0,2,0,0,127,149,191,0,2,255,192,0,0,0,127,0,127,0,0,127,240,0,0,0,191,0,127,0,0,31,252,0,0,0,191,0,127,0,0,3,255,0,0,0,191,0,127,0,0,0,252,0,0,0,255,0,191,0,0,0,116,0,0,0,254,0,191,0,0,0,0,0,0,0,254,0,191,0,0,0,0,0,0,0,253,0,191,0,32,0,0,0,0,1,252,0,191,0,190,0,0,0,0,2,252,0,191,1,255,224,0,0,0,3,252,0,191,1,255,253,0,0,0,7,248,0,255,0,47,255,192,0,0,11,240,0,254,0,2,255,248,0,0,15,240,0,254,0,0,127,255,0,0,47,224,0,253,0,0,11,255,208,0,63,193,71,253,0,0,1,255,244,0,191,130,255,252,0,0,0,47,244,0,47,1,255,248,0,0,0,7,224,0,9,0,255,208,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0, + // 0x6607 昇 + 7,102,36,36,68,40,2,252,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,254,0,0,0,0,0,255,0,0,254,0,0,0,0,0,255,0,0,254,0,0,0,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,254,0,0,0,0,0,255,0,0,254,0,0,0,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,0,0,0,96,0,0,0,0,0,0,0,27,252,0,255,0,0,0,1,111,255,255,0,255,0,0,6,255,255,255,249,0,255,0,0,11,255,255,254,64,0,255,0,0,3,255,239,240,0,0,255,0,0,1,64,15,240,0,0,255,0,0,0,0,15,240,0,0,255,0,0,85,85,95,245,85,85,255,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,31,208,0,0,255,0,0,0,0,63,192,0,0,255,0,0,0,0,191,192,0,0,255,0,0,0,1,255,64,0,0,255,0,0,0,11,255,0,0,0,255,0,0,0,127,252,0,0,0,255,0,0,11,255,240,0,0,0,255,0,0,15,255,128,0,0,0,255,0,0,3,248,0,0,0,0,255,0,0,2,128,0,0,0,0,170,0,0, + // 0x660e 明 + 14,102,34,36,68,40,3,252,85,85,85,64,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,149,85,91,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,63,149,85,91,240,254,0,15,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,255,255,255,240,255,255,255,224,63,64,0,11,240,255,85,95,224,63,64,0,11,240,254,0,15,224,63,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,64,0,11,240,254,0,15,224,127,149,85,91,240,254,0,15,224,191,255,255,255,240,255,85,95,224,191,255,255,255,240,255,255,255,224,255,255,255,255,240,255,255,255,224,254,0,0,11,240,255,255,255,225,253,0,0,11,240,254,0,0,3,252,0,0,11,240,254,0,0,3,252,0,0,11,240,254,0,0,11,244,0,0,11,240,169,0,0,15,240,0,0,11,240,0,0,0,63,224,0,0,11,240,0,0,0,191,192,0,0,11,240,0,0,1,255,64,0,0,11,240,0,0,11,254,0,0,255,255,240,0,0,15,252,0,0,127,255,224,0,0,3,224,0,0,63,255,128,0,0,0,128,0,0,26,148,0, + // 0x662f 是 + 47,102,36,36,68,40,2,252,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,170,170,170,170,170,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,0,0,0,0,1,253,0,0,191,255,255,255,255,255,253,0,0,191,255,255,255,255,255,253,0,0,127,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,21,85,85,85,191,85,85,85,84,0,2,80,0,127,0,0,0,0,0,7,248,0,127,0,0,0,0,0,11,244,0,127,0,0,0,0,0,15,240,0,127,255,255,255,192,0,15,240,0,127,255,255,255,192,0,47,240,0,127,255,255,255,192,0,63,252,0,127,64,0,0,0,0,127,254,0,127,0,0,0,0,0,255,255,64,127,0,0,0,0,3,254,127,240,127,0,0,0,0,11,252,31,254,191,0,0,0,0,47,244,7,255,255,170,85,85,85,191,224,0,255,255,255,255,255,255,255,128,0,31,255,255,255,255,254,62,0,0,0,27,255,255,255,253,8,0,0,0,0,0,0,0,0, + // 0x6642 時 + 66,102,36,38,86,40,3,252,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,224,0,0,85,85,85,0,0,15,224,0,0,255,255,255,0,0,15,224,0,0,255,255,255,0,0,15,240,0,0,255,255,255,15,255,255,255,255,240,253,0,191,15,255,255,255,255,240,253,0,191,15,255,255,255,255,240,253,0,191,0,0,15,224,0,0,253,0,191,0,0,15,224,0,0,253,0,191,0,0,15,224,0,0,253,0,191,0,0,15,224,0,0,253,0,191,21,85,95,245,85,84,253,0,191,191,255,255,255,255,253,254,85,255,191,255,255,255,255,253,255,255,255,191,255,255,255,255,253,255,255,255,0,0,0,3,252,0,255,255,255,0,0,0,3,252,0,253,0,191,0,0,0,3,252,0,253,0,191,0,0,0,3,252,0,253,0,191,127,255,255,255,255,252,253,0,191,127,255,255,255,255,252,253,0,191,127,255,255,255,255,252,253,0,191,21,85,85,87,253,84,253,0,191,0,16,0,3,252,0,253,0,191,0,248,0,3,252,0,254,85,255,3,253,0,3,252,0,255,255,255,1,255,0,3,252,0,255,255,255,0,191,192,3,252,0,255,255,255,0,63,224,3,252,0,253,0,0,0,15,240,3,252,0,253,0,0,0,7,244,3,252,0,253,0,0,0,3,128,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,31,255,248,0,0,0,0,0,0,15,255,244,0,0,0,0,0,0,15,255,224,0,0,0,0,0,0,1,84,0,0, + // 0x66ab 暫 + 171,102,36,38,86,40,2,252,0,0,252,0,0,0,0,1,64,0,0,252,0,0,0,0,111,208,21,85,253,85,80,229,175,255,244,127,255,255,255,244,255,255,255,144,127,255,255,255,244,255,255,144,0,0,0,252,0,0,254,64,0,0,26,171,255,170,144,252,0,0,0,31,255,255,255,224,252,0,0,0,31,64,252,7,224,252,0,0,0,31,64,252,7,224,255,255,255,255,31,255,255,255,224,255,255,255,255,31,234,254,175,225,255,255,255,255,31,64,252,7,225,252,0,253,0,31,255,255,255,226,252,0,253,0,31,255,255,255,227,248,0,253,0,0,0,252,0,3,244,0,253,0,0,1,253,0,11,240,0,253,0,255,255,255,255,255,224,0,253,0,255,255,255,255,255,192,0,253,0,0,0,252,0,191,64,0,253,0,0,0,252,0,62,0,0,253,0,0,0,168,0,8,0,0,84,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,234,170,170,170,175,244,0,0,31,208,0,0,0,7,244,0,0,31,208,0,0,0,7,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,255,255,255,255,255,244,0,0,31,208,0,0,0,7,244,0,0,10,128,0,0,0,2,164,0, + // 0x66f4 更 + 244,102,37,36,104,40,2,252,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,127,255,255,255,255,255,255,255,253,0,21,85,85,85,255,149,85,85,84,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,191,64,0,0,0,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,254,0,0,191,0,0,63,192,0,0,255,0,0,191,0,0,63,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,255,255,255,255,255,255,255,192,0,0,1,128,1,254,0,0,0,0,0,0,31,224,3,252,0,0,0,0,0,0,15,244,7,252,0,0,0,0,0,0,7,254,15,244,0,0,0,0,0,0,1,255,191,240,0,0,0,0,0,0,0,127,255,192,0,0,0,0,0,0,0,47,255,192,0,0,0,0,0,0,1,191,255,254,64,0,0,0,0,0,111,255,255,255,255,165,64,0,0,111,255,255,71,255,255,255,255,255,64,127,255,244,0,47,255,255,255,255,0,47,254,0,0,0,27,255,255,254,0,14,64,0,0,0,0,0,86,168,0, + // 0x6700 最 + 0,103,36,37,77,40,2,252,0,26,170,170,170,170,170,168,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,213,85,85,85,87,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,2,252,0,0,63,128,0,0,0,2,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,21,85,85,85,85,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,191,255,255,255,255,255,255,255,253,1,252,0,47,192,0,0,0,0,1,252,0,47,192,0,0,0,0,1,255,255,255,207,255,255,255,224,1,255,255,255,207,255,255,255,240,1,254,170,191,203,255,255,255,224,1,252,0,47,192,188,0,47,208,1,252,0,47,192,254,0,63,192,1,254,170,191,192,127,0,255,64,1,255,255,255,192,63,194,255,0,1,255,255,255,192,31,231,252,0,1,252,0,47,192,11,255,244,0,1,252,0,47,192,3,255,224,0,1,252,21,191,192,2,255,192,0,191,255,255,255,192,31,255,244,0,255,255,255,255,193,255,255,254,0,191,255,165,111,239,255,210,255,248,84,0,0,47,239,254,0,127,255,0,0,0,47,207,224,0,11,252,0,0,0,47,198,0,0,0,104, + // 0x6709 有 + 9,103,36,38,86,40,2,252,0,0,0,36,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,0,255,0,0,0,0,0,21,85,86,255,85,85,85,85,84,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,31,240,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,255,64,0,0,0,0,0,0,2,255,255,255,255,255,252,0,0,7,255,255,255,255,255,252,0,0,15,255,255,255,255,255,252,0,0,63,254,0,0,0,3,252,0,0,255,254,0,0,0,2,252,0,2,255,254,0,0,0,2,252,0,11,254,254,0,0,0,3,252,0,63,248,255,255,255,255,255,252,0,255,224,255,255,255,255,255,252,0,255,128,255,255,255,255,255,252,0,61,0,254,0,0,0,2,252,0,20,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,3,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,255,255,255,255,255,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,2,252,0,0,0,254,0,0,0,3,252,0,0,0,254,0,0,63,255,252,0,0,0,254,0,0,31,255,248,0,0,0,254,0,0,15,255,224,0,0,0,169,0,0,10,149,0,0, + // 0x677f 板 + 127,103,38,38,124,40,1,252,0,3,240,0,0,0,0,0,0,0,0,3,244,0,0,0,0,0,0,0,0,3,244,0,21,85,85,85,85,64,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,255,255,255,255,128,0,3,244,0,63,128,0,0,0,0,0,3,244,0,63,128,0,0,0,0,0,3,244,0,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,63,255,255,252,63,128,0,0,0,0,21,95,249,84,63,128,0,0,0,0,0,15,244,0,63,255,255,255,254,0,0,15,244,0,63,255,255,255,255,0,0,31,248,0,63,255,255,255,255,0,0,63,253,0,63,255,85,85,254,0,0,63,255,0,63,255,0,0,253,0,0,191,255,192,63,191,64,2,252,0,0,255,255,224,63,127,128,3,252,0,1,255,247,244,63,95,192,3,248,0,3,247,246,252,127,79,208,11,240,0,7,243,244,253,127,11,240,15,240,0,11,211,244,124,191,7,244,47,208,0,31,195,244,48,191,3,252,63,192,0,63,131,244,0,254,1,254,191,128,0,191,3,244,0,254,0,255,255,0,0,126,3,244,1,253,0,127,253,0,0,60,3,244,2,252,0,47,248,0,0,24,3,244,3,252,0,47,248,0,0,0,3,244,7,244,0,191,254,0,0,0,3,244,11,240,2,255,255,128,0,0,3,244,15,240,11,254,191,224,0,0,3,244,47,208,127,248,47,254,0,0,3,244,127,195,255,208,11,255,208,0,3,244,191,67,255,64,2,255,192,0,3,244,31,0,248,0,0,63,0,0,3,240,4,0,80,0,0,5,0, + // 0x67f1 柱 + 241,103,38,38,124,40,1,252,0,2,248,0,0,2,0,0,0,0,0,2,252,0,0,15,208,0,0,0,0,2,252,0,0,63,248,0,0,0,0,2,252,0,0,15,255,0,0,0,0,2,252,0,0,2,255,192,0,0,0,2,252,0,0,0,127,240,0,0,0,2,252,0,0,0,31,248,0,0,0,2,252,0,0,0,7,240,0,0,0,2,252,0,42,170,171,234,170,64,63,255,255,255,63,255,255,255,255,192,63,255,255,255,63,255,255,255,255,192,63,255,255,255,63,255,255,255,255,192,26,171,254,170,0,0,63,192,0,0,0,7,252,0,0,0,63,192,0,0,0,15,252,0,0,0,63,192,0,0,0,15,252,0,0,0,63,192,0,0,0,31,254,0,0,0,63,192,0,0,0,63,255,128,0,0,63,192,0,0,0,63,255,208,0,0,63,192,0,0,0,191,255,244,0,0,63,192,0,0,0,254,254,252,15,255,255,255,255,64,2,250,252,255,15,255,255,255,255,64,3,242,252,127,79,255,255,255,255,64,11,226,252,46,5,85,191,213,85,0,15,210,252,12,0,0,63,192,0,0,63,194,252,0,0,0,63,192,0,0,127,66,252,0,0,0,63,192,0,0,127,2,252,0,0,0,63,192,0,0,61,2,252,0,0,0,63,192,0,0,24,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,0,0,0,63,192,0,0,0,2,252,3,255,255,255,255,255,224,0,2,252,3,255,255,255,255,255,224,0,2,252,3,255,255,255,255,255,224,0,2,252,2,170,170,170,170,170,144,0,2,248,0,0,0,0,0,0,0, + // 0x6821 校 + 33,104,38,38,124,40,1,252,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,0,0,0,255,0,0,0,0,7,240,3,255,255,255,255,255,192,0,7,240,3,255,255,255,255,255,192,0,7,240,3,255,255,255,255,255,192,63,255,255,250,255,255,255,255,255,128,63,255,255,248,0,0,0,0,0,0,63,255,255,248,1,244,0,47,0,0,21,95,249,84,3,252,0,127,192,0,0,15,240,0,11,248,0,47,224,0,0,31,240,0,15,240,0,15,248,0,0,47,244,0,63,208,0,3,253,0,0,63,252,0,191,128,0,0,255,0,0,63,255,2,255,0,0,0,127,128,0,191,255,139,253,176,0,62,127,208,0,255,255,195,247,248,0,191,79,128,1,255,251,240,210,252,0,255,9,0,2,251,243,244,0,254,0,254,0,0,3,247,241,252,0,191,2,253,0,0,11,215,240,244,0,127,131,252,0,0,15,199,240,96,0,47,219,244,0,0,47,135,240,0,0,15,255,240,0,0,127,71,240,0,0,11,255,192,0,0,127,7,240,0,0,3,255,128,0,0,61,7,240,0,0,2,255,128,0,0,24,7,240,0,0,11,255,224,0,0,0,7,240,0,0,47,255,248,0,0,0,7,240,0,0,255,223,255,0,0,0,7,240,0,11,255,66,255,208,0,0,7,240,0,127,253,0,191,253,0,0,7,240,11,255,224,0,47,255,208,0,7,240,15,255,64,0,7,255,192,0,7,240,7,248,0,0,0,191,0,0,7,240,3,64,0,0,0,9,0, + // 0x683c 格 + 60,104,38,38,124,40,1,252,0,2,160,0,0,9,0,0,0,0,0,3,244,0,0,31,208,0,0,0,0,3,244,0,0,63,192,0,0,0,0,3,244,0,0,127,128,0,0,0,0,3,244,0,0,255,64,0,64,0,0,3,244,0,1,255,255,255,244,0,0,3,244,0,3,255,255,255,244,0,0,3,244,0,15,255,255,255,240,0,0,3,244,0,31,240,0,31,224,0,63,255,255,252,127,244,0,63,192,0,63,255,255,253,255,252,0,127,128,0,63,255,255,255,255,255,0,255,0,0,21,95,249,111,252,127,131,253,0,0,0,15,244,11,240,63,219,248,0,0,0,15,252,1,192,15,255,240,0,0,0,31,254,0,0,3,255,192,0,0,0,47,255,128,0,3,255,192,0,0,0,63,255,208,0,31,255,244,0,0,0,127,251,240,0,191,255,254,0,0,0,255,247,252,3,255,195,255,208,0,0,255,244,248,127,254,0,191,254,64,2,247,244,183,255,244,0,31,255,224,3,243,244,63,255,208,0,3,255,192,11,211,244,31,255,255,255,255,255,64,15,195,244,15,175,255,255,255,245,0,63,131,244,0,47,255,255,255,244,0,127,3,244,0,47,192,0,3,244,0,127,3,244,0,47,192,0,3,244,0,60,3,244,0,47,192,0,3,244,0,24,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,192,0,3,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,255,255,255,244,0,0,3,244,0,47,192,0,7,244,0,0,3,240,0,31,128,0,2,160,0, + // 0x689d 條 + 157,104,38,38,124,40,1,252,0,0,64,0,0,24,0,0,0,0,0,1,248,0,0,47,192,0,0,0,0,2,252,0,0,63,128,0,0,0,0,3,252,0,0,191,0,0,0,0,0,7,248,0,0,254,0,0,0,0,0,11,241,80,3,255,255,255,255,192,0,15,243,244,7,255,255,255,255,192,0,47,211,244,31,255,255,255,255,192,0,63,195,244,63,240,0,31,224,0,0,127,131,244,255,248,0,63,192,0,0,255,67,251,255,253,0,191,64,0,2,255,67,251,252,191,65,255,0,0,3,255,67,244,240,63,231,252,0,0,11,255,67,244,0,15,255,240,0,0,31,255,67,244,0,3,255,208,0,0,63,255,67,244,0,11,255,244,0,0,255,255,67,244,1,255,255,255,128,0,255,127,67,244,111,255,210,255,254,64,125,63,67,247,255,253,0,47,255,208,56,63,67,244,255,208,106,2,255,128,16,63,67,244,120,0,191,0,27,0,0,63,67,244,0,0,191,0,0,0,0,63,67,244,0,0,191,0,0,0,0,63,67,244,255,255,255,255,255,192,0,63,67,244,255,255,255,255,255,192,0,63,67,244,255,255,255,255,255,192,0,63,67,244,0,3,255,224,0,0,0,63,67,244,0,15,255,244,0,0,0,63,67,244,0,63,255,253,0,0,0,63,67,244,0,255,255,255,0,0,0,63,67,244,3,254,191,63,192,0,0,63,64,0,31,248,191,15,244,0,0,63,64,0,191,224,191,7,254,0,0,63,64,11,255,128,191,1,255,208,0,63,64,15,253,0,191,0,127,208,0,63,64,3,240,0,191,0,15,64,0,63,64,1,64,0,191,0,1,0,0,63,64,0,0,0,127,0,0,0, + // 0x68c4 棄 + 196,104,36,38,86,40,2,252,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,15,244,0,3,252,0,0,0,0,47,224,0,7,255,128,0,0,0,127,192,0,0,127,248,0,15,255,255,255,255,255,255,255,0,15,255,255,255,255,255,255,255,224,15,255,255,255,255,250,170,175,240,0,0,0,0,84,0,0,2,192,0,11,224,0,254,0,15,224,0,0,11,224,0,254,0,15,224,0,127,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,11,224,0,254,0,15,224,0,0,11,224,0,254,0,15,224,0,0,11,224,0,254,0,15,224,0,0,11,255,255,255,255,255,224,0,0,11,255,255,255,255,255,224,0,0,11,255,255,255,255,255,224,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,1,255,255,255,64,0,0,0,0,11,253,255,127,224,0,0,0,0,191,240,255,15,254,0,0,0,27,255,128,255,2,255,244,0,6,255,248,0,255,0,47,255,144,191,255,208,0,255,0,7,255,255,191,253,0,0,255,0,0,47,254,63,128,0,0,255,0,0,1,248,4,0,0,0,254,0,0,0,0, + // 0x69fd 槽 + 253,105,38,38,124,40,1,252,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,31,255,255,255,255,255,208,0,15,224,31,255,255,255,255,255,208,0,15,224,31,255,255,255,255,255,208,0,15,224,0,0,127,3,240,0,0,0,15,224,0,0,127,3,240,0,0,0,15,224,2,170,191,171,250,170,0,63,255,255,227,255,255,255,255,255,0,63,255,255,227,255,255,255,255,255,0,63,255,255,227,240,63,3,224,63,0,21,111,245,83,240,63,3,224,63,0,0,31,224,3,240,63,3,224,63,0,0,47,224,3,255,255,255,255,255,0,0,63,240,3,255,255,255,255,255,0,0,63,244,3,245,127,87,245,127,0,0,191,252,3,240,63,3,224,63,0,0,255,255,3,240,63,3,224,63,0,0,255,255,67,255,255,255,255,255,0,2,255,239,195,255,255,255,255,255,0,3,255,231,226,170,170,170,170,170,0,7,223,227,240,0,0,0,0,0,0,15,207,225,192,127,255,255,255,248,0,31,207,224,64,191,255,255,255,248,0,63,79,224,0,191,255,255,255,248,0,127,15,224,0,191,0,0,3,248,0,126,15,224,0,191,0,0,3,248,0,60,15,224,0,191,170,170,171,248,0,20,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,0,0,3,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,224,0,191,255,255,255,248,0,0,15,208,0,191,0,0,3,248,0, + // 0x6a59 橙 + 89,106,38,38,124,40,1,252,0,6,160,0,0,0,0,0,0,0,0,11,240,0,0,0,11,192,0,0,0,11,240,3,255,254,15,192,208,0,0,11,240,3,255,255,75,227,240,0,0,11,240,3,255,255,7,255,244,0,0,11,240,0,0,190,3,255,128,0,0,11,240,1,0,253,2,253,2,0,0,11,240,7,226,252,1,252,15,128,0,11,240,15,255,244,0,255,127,192,63,255,255,242,255,240,0,127,254,0,63,255,255,240,127,224,0,63,244,0,63,255,255,240,63,255,255,255,240,0,21,95,245,80,255,255,255,255,252,0,0,15,240,3,254,191,255,247,255,0,0,31,240,15,248,0,0,0,255,208,0,47,240,127,240,0,0,0,63,224,0,63,252,63,192,0,0,0,15,128,0,127,254,30,127,255,255,255,242,0,0,191,255,68,127,255,255,255,240,0,0,255,255,192,127,234,170,175,240,0,1,255,251,240,127,0,0,7,240,0,3,251,243,248,127,0,0,7,240,0,3,251,241,240,127,0,0,7,240,0,11,219,240,208,127,0,0,7,240,0,15,203,240,0,127,255,255,255,240,0,47,139,240,0,127,255,255,255,240,0,127,75,240,0,63,255,255,255,240,0,191,11,240,0,1,144,0,61,0,0,61,11,240,0,15,224,0,127,128,0,28,11,240,0,7,240,0,191,0,0,0,11,240,0,3,244,0,254,0,0,0,11,240,0,3,248,1,252,0,0,0,11,240,0,2,252,2,248,0,0,0,11,240,0,1,228,1,244,0,0,0,11,240,47,255,255,255,255,255,208,0,11,240,47,255,255,255,255,255,208,0,11,240,47,255,255,255,255,255,208,0,11,240,0,0,0,0,0,0,0, + // 0x6a5f 機 + 95,106,38,38,124,40,1,252,0,15,192,0,0,2,160,0,0,0,0,15,192,0,189,3,240,15,128,0,0,15,192,0,253,3,240,31,192,0,0,15,192,1,248,3,240,47,64,0,0,15,192,2,240,3,240,62,0,0,0,15,192,3,225,231,240,188,45,0,0,15,192,63,195,251,247,248,63,0,0,15,192,127,135,243,255,240,189,0,0,15,192,47,207,211,247,248,252,0,63,255,255,203,255,131,240,255,240,0,63,255,255,194,255,3,240,63,224,0,63,255,255,192,253,3,244,15,192,0,21,111,229,64,249,163,244,47,95,0,0,47,192,3,242,243,244,126,15,64,0,63,208,11,208,246,244,253,95,192,0,63,240,127,255,250,255,255,255,192,0,127,248,63,255,254,255,255,255,208,0,255,252,63,250,190,255,174,67,224,0,255,255,0,0,33,252,31,129,0,1,255,223,64,0,0,252,31,240,0,2,255,207,192,0,0,252,3,244,0,3,239,199,255,255,255,255,255,255,192,11,223,195,191,255,255,255,255,255,192,15,207,193,63,255,255,255,255,255,192,31,143,192,1,252,0,127,1,64,0,63,15,192,2,252,0,63,3,244,0,127,15,192,2,253,0,63,7,244,0,125,15,192,3,255,128,63,143,224,0,60,15,192,3,255,244,47,255,192,0,20,15,192,7,251,253,15,255,64,0,0,15,192,11,241,253,15,254,0,0,0,15,192,15,208,120,15,248,3,128,0,15,192,47,192,0,127,248,3,240,0,15,192,127,128,2,255,253,3,224,0,15,193,255,0,47,253,255,75,208,0,15,195,253,1,255,240,127,255,192,0,15,192,244,0,255,64,31,255,128,0,15,192,80,0,36,0,2,254,0, + // 0x6aa2 檢 + 162,106,38,38,124,40,1,252,0,7,224,0,0,2,168,0,0,0,0,11,240,0,0,7,255,0,0,0,0,11,240,0,0,15,255,128,0,0,0,11,240,0,0,47,255,224,0,0,0,11,240,0,0,191,207,244,0,0,0,11,240,0,1,255,7,253,0,0,0,11,240,0,7,253,1,255,128,0,0,11,240,0,31,244,0,191,224,0,0,11,240,0,191,208,0,31,252,0,63,255,255,243,255,128,0,7,255,128,63,255,255,255,255,255,255,255,255,224,63,255,255,255,247,255,255,254,63,192,21,95,245,95,195,255,255,254,11,64,0,15,240,6,0,0,0,0,1,0,0,31,240,0,0,0,0,0,0,0,0,47,244,2,170,170,70,170,170,0,0,63,252,3,255,255,139,255,255,0,0,127,254,3,255,255,139,255,255,0,0,191,255,67,240,31,139,192,63,0,0,255,255,195,240,31,139,192,63,0,1,255,251,227,240,31,139,192,63,0,2,251,243,247,240,31,139,192,63,0,3,235,241,243,250,175,139,234,191,0,11,219,240,211,255,255,139,255,255,0,15,203,240,67,255,255,139,255,255,0,47,139,240,0,0,0,0,16,0,0,127,11,240,0,11,224,0,63,64,0,126,11,240,0,15,224,0,63,0,0,60,11,240,0,15,208,0,127,0,0,24,11,240,0,47,192,0,254,0,0,0,11,240,0,63,224,1,255,64,0,0,11,240,0,191,248,3,255,208,0,0,11,240,1,255,255,11,255,248,0,0,11,240,7,252,191,95,243,255,0,0,11,240,31,240,46,191,192,255,192,0,11,240,127,208,5,255,64,63,224,0,11,240,47,64,0,188,0,15,128,0,7,224,8,0,0,32,0,2,0, + // 0x6b62 止 + 98,107,36,36,68,40,2,254,0,0,0,0,26,144,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,0,0,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,250,170,170,160,0,47,192,0,31,255,255,255,240,0,47,192,0,31,255,255,255,240,0,47,192,0,31,255,255,255,240,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,0,47,192,0,31,224,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170, + // 0x6b63 正 + 99,107,36,33,41,40,2,254,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,26,170,170,170,191,234,170,170,164,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,255,255,255,192,0,47,192,0,63,255,255,255,192,0,47,192,0,63,255,255,255,192,0,47,192,0,63,234,170,170,128,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,0,47,192,0,63,192,0,0,0,170,191,234,170,191,234,170,170,170,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x6b65 步 + 101,107,36,38,86,40,2,252,0,0,0,0,191,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,170,170,169,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,255,255,254,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,0,15,224,0,255,0,0,0,0,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,255,254,106,170,170,170,255,170,170,170,169,0,0,0,0,255,0,0,0,0,0,1,248,0,255,0,0,0,0,0,3,254,0,255,0,0,228,0,0,15,252,0,255,0,2,254,0,0,63,240,0,255,0,3,253,0,0,255,208,0,255,0,7,252,0,3,255,64,0,255,0,15,244,0,31,254,0,0,255,0,47,240,0,191,248,0,0,255,0,127,208,0,63,208,3,255,255,0,255,128,0,11,64,1,255,254,3,255,0,0,0,0,0,255,248,15,253,0,0,0,0,0,85,0,127,244,0,0,0,0,0,0,2,255,208,0,0,0,0,0,0,47,255,64,0,0,0,0,0,6,255,252,0,0,0,0,0,1,191,255,224,0,0,0,0,5,191,255,254,0,0,0,0,2,255,255,255,224,0,0,0,0,0,255,255,249,0,0,0,0,0,0,191,254,64,0,0,0,0,0,0,57,0,0,0,0,0,0,0, + // 0x6b78 歸 + 120,107,38,38,124,40,1,252,0,7,160,0,0,0,0,0,0,0,0,11,240,0,2,170,170,170,160,0,0,15,224,0,3,255,255,255,240,0,6,175,250,169,3,255,255,255,240,0,7,255,255,253,0,0,0,7,240,0,7,255,255,253,0,0,0,7,240,0,7,224,0,189,106,170,170,171,250,128,7,224,0,189,191,255,255,255,255,208,7,224,0,189,191,255,255,255,255,208,7,255,255,253,0,0,0,7,240,0,7,255,255,253,0,0,0,7,240,0,7,250,170,169,3,255,255,255,240,0,7,224,0,0,3,255,255,255,240,0,7,250,170,169,2,170,170,170,160,0,7,255,255,254,0,0,0,0,0,0,7,255,255,254,47,255,255,255,255,64,7,224,0,190,63,255,255,255,255,128,7,224,0,190,63,255,255,255,255,128,7,250,170,254,63,0,63,64,47,128,7,255,255,254,63,0,63,64,47,128,7,255,255,254,63,0,63,64,47,128,0,1,248,0,5,0,63,64,5,0,0,1,248,0,11,255,255,255,252,0,0,1,248,0,11,255,255,255,253,0,11,193,248,0,11,255,255,255,253,0,11,193,255,255,11,224,63,64,253,0,11,193,255,255,11,224,63,64,253,0,11,193,255,255,11,224,63,64,253,0,11,193,248,0,11,224,63,64,253,0,11,193,248,0,11,224,63,64,253,0,11,193,248,0,11,224,63,64,253,0,11,193,249,111,75,224,63,64,253,0,11,214,255,255,139,224,63,111,252,0,127,255,255,255,139,224,63,95,252,0,127,255,255,233,11,224,63,74,144,0,63,254,144,0,0,0,63,64,0,0,37,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,63,64,0,0, + // 0x6bbc 殼 + 188,107,37,38,124,40,2,252,0,2,248,0,0,0,0,0,0,0,0,2,252,0,0,21,85,85,0,0,0,2,252,0,0,63,255,255,0,0,170,171,254,170,160,63,255,255,0,0,255,255,255,255,224,63,255,255,0,0,255,255,255,255,224,63,0,127,0,0,0,2,252,0,0,63,0,127,0,0,0,2,252,0,0,127,0,127,0,0,26,171,254,170,64,127,0,127,0,0,47,255,255,255,128,127,0,127,9,0,47,255,255,255,128,190,0,127,11,192,0,0,0,0,0,253,0,127,15,192,0,0,0,0,1,252,0,127,15,128,170,170,170,170,147,248,0,63,255,128,255,255,255,255,255,240,0,63,255,0,255,255,255,255,255,224,0,11,249,0,252,0,0,7,227,128,0,0,0,0,252,0,0,7,224,0,0,0,0,0,254,255,255,251,227,255,255,255,244,0,85,255,255,245,67,255,255,255,244,0,0,170,170,160,3,255,255,255,240,0,0,0,0,0,1,110,85,95,240,0,0,0,0,0,0,191,0,15,224,0,2,255,255,248,0,127,0,47,192,0,2,255,255,248,0,63,128,63,128,0,2,255,255,248,0,31,208,255,64,0,2,248,2,248,0,15,241,254,0,0,3,248,2,248,0,7,251,252,0,0,3,248,2,248,0,3,255,244,0,0,3,244,2,248,16,0,255,224,0,0,3,244,2,255,244,1,255,208,0,0,7,240,7,255,244,11,255,248,0,0,15,240,47,255,244,127,255,255,64,0,47,208,15,253,11,255,226,255,244,0,191,192,15,128,255,255,0,127,255,64,191,64,0,0,255,248,0,15,255,0,45,0,0,0,127,128,0,1,252,0,0,0,0,0,36,0,0,0,20,0, + // 0x6bd4 比 + 212,107,37,37,114,40,2,253,0,21,64,0,0,85,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,192,0,0,63,128,0,0,254,0,11,240,0,0,63,128,0,0,254,0,127,252,0,0,63,234,170,128,254,7,255,248,0,0,63,255,255,192,254,63,255,208,0,0,63,255,255,192,255,255,253,0,0,0,63,255,255,192,255,255,144,0,0,0,63,128,0,0,255,248,0,0,0,0,63,128,0,0,255,128,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,0,0,0,63,128,0,0,254,0,0,32,0,0,63,128,0,0,254,0,0,62,0,0,63,128,0,0,254,0,0,63,128,0,63,128,1,176,254,0,0,63,128,0,63,134,255,240,254,0,0,63,64,0,63,255,255,244,254,0,0,127,64,27,255,255,255,244,255,0,0,191,0,255,255,255,249,0,255,234,170,255,0,255,255,249,0,0,191,255,255,254,0,191,249,0,0,0,63,255,255,252,0,101,0,0,0,0,11,255,255,224,0, + // 0x6c92 沒 + 146,108,37,38,124,40,2,252,0,0,0,0,41,64,0,0,0,0,3,224,0,0,63,192,0,0,0,0,11,254,0,0,63,192,0,0,0,0,15,255,208,0,63,128,0,0,0,0,1,255,248,0,127,255,255,255,240,0,0,31,252,0,191,255,255,255,240,0,0,3,240,0,255,255,255,255,240,0,0,0,144,1,255,85,85,95,240,0,0,0,0,2,253,0,0,15,224,0,0,0,0,3,252,0,0,15,224,0,0,0,0,11,248,0,0,15,208,0,16,0,0,15,240,0,0,31,208,0,127,64,0,47,224,0,0,47,192,0,255,244,0,127,192,0,0,63,192,0,191,254,1,255,128,3,255,255,128,0,11,255,199,255,0,1,255,255,0,0,0,191,2,252,0,0,255,253,0,0,0,30,0,116,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,208,0,0,0,0,127,255,255,255,255,240,0,0,0,0,127,255,255,255,255,208,0,0,1,192,21,189,85,85,191,192,0,0,3,240,2,254,0,0,255,128,0,0,7,248,0,255,0,1,255,0,0,0,15,240,0,127,192,3,253,0,0,0,31,224,0,47,240,15,248,0,0,0,63,192,0,15,252,63,240,0,0,0,191,128,0,3,255,255,192,0,0,0,255,0,0,0,255,255,0,0,0,2,254,0,0,0,191,253,0,0,0,3,252,0,0,7,255,255,128,0,0,15,248,0,0,191,255,255,249,0,0,31,240,0,111,255,248,127,255,228,0,63,224,15,255,255,208,11,255,255,64,15,192,7,255,248,0,0,191,254,0,3,64,3,254,64,0,0,7,252,0,0,0,1,128,0,0,0,0,36,0, + // 0x6d88 消 + 136,109,35,38,86,40,2,252,0,0,0,0,0,15,208,0,0,3,208,0,0,0,15,224,0,128,15,248,0,127,0,15,224,2,252,15,255,64,191,64,15,224,3,252,2,255,224,63,192,15,224,7,248,0,63,244,31,224,15,224,15,240,0,11,224,15,240,15,224,47,224,0,1,128,7,248,15,224,63,192,0,0,0,3,252,15,224,191,64,0,0,0,2,224,15,224,30,0,0,0,0,0,0,15,224,0,0,20,0,0,21,85,111,245,85,80,127,0,0,63,255,255,255,255,240,255,224,0,63,255,255,255,255,240,127,253,0,63,255,255,255,255,240,11,255,64,63,192,0,0,11,240,1,255,64,63,192,0,0,11,240,0,62,0,63,192,0,0,11,240,0,8,0,63,192,0,0,11,240,0,0,0,63,255,255,255,255,240,0,0,0,63,255,255,255,255,240,0,0,0,63,255,255,255,255,240,0,2,64,63,192,0,0,11,240,0,7,208,63,192,0,0,11,240,0,11,240,63,192,0,0,11,240,0,15,224,63,192,0,0,11,240,0,47,192,63,255,255,255,255,240,0,63,192,63,255,255,255,255,240,0,191,64,63,255,255,255,255,240,0,255,0,63,192,0,0,11,240,2,253,0,63,192,0,0,11,240,7,252,0,63,192,0,0,11,240,15,244,0,63,192,0,0,11,240,31,240,0,63,192,0,0,15,240,63,224,0,63,192,0,63,255,240,47,192,0,63,192,0,47,255,224,7,64,0,63,192,0,31,255,128,0,0,0,42,128,0,10,84,0, + // 0x6de1 淡 + 225,109,37,37,114,40,2,253,0,0,0,0,0,26,128,0,0,0,2,128,0,0,0,47,192,0,0,0,11,248,0,0,0,47,192,0,0,0,15,255,64,11,224,47,192,11,208,0,2,255,224,15,224,47,192,15,240,0,0,127,248,31,192,63,192,47,224,0,0,11,240,47,192,63,128,63,192,0,0,1,192,127,64,63,128,191,0,0,0,0,0,255,0,127,65,254,0,0,0,0,1,253,0,191,131,252,0,0,0,0,0,40,0,255,244,96,0,0,0,0,0,0,2,255,255,0,0,0,61,0,0,0,11,255,255,224,0,0,255,208,0,0,47,244,127,253,0,0,255,248,0,1,255,224,11,255,192,0,31,255,64,111,255,128,0,255,244,0,2,255,67,255,253,0,0,31,252,0,0,126,0,255,208,47,192,3,244,0,0,4,0,185,0,47,192,0,144,0,0,0,0,0,0,63,192,0,0,0,0,0,0,14,64,63,192,3,208,0,0,1,0,15,208,63,128,11,252,0,0,11,128,47,192,63,128,15,240,0,0,15,224,63,128,63,192,47,224,0,0,47,224,127,64,127,208,63,192,0,0,63,192,255,0,191,240,255,64,0,0,191,130,253,0,255,241,254,0,0,0,255,3,252,1,255,253,252,0,0,2,255,0,116,3,255,254,0,0,0,3,253,0,0,15,248,255,64,0,0,11,252,0,0,63,240,127,208,0,0,15,244,0,1,255,208,47,248,0,0,63,240,0,47,255,64,11,255,128,0,127,208,27,255,253,0,2,255,254,64,47,128,31,255,224,0,0,127,255,0,7,0,11,254,0,0,0,11,253,0,0,0,3,144,0,0,0,0,40,0, + // 0x6e05 清 + 5,110,37,38,124,40,2,252,0,0,0,0,0,47,192,0,0,0,3,208,0,0,0,47,192,0,0,0,11,253,0,170,170,191,234,170,168,0,15,255,128,255,255,255,255,255,252,0,2,255,240,255,255,255,255,255,252,0,0,47,244,0,0,47,192,0,0,0,0,3,224,0,0,47,192,0,0,0,0,0,64,42,170,191,234,170,160,0,0,0,0,63,255,255,255,255,240,0,0,0,0,63,255,255,255,255,240,0,0,0,0,0,0,47,192,0,0,0,36,0,0,0,0,47,192,0,0,0,127,64,6,170,170,191,234,170,170,64,255,244,7,255,255,255,255,255,255,64,127,255,7,255,255,255,255,255,255,64,11,255,128,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,45,0,11,255,255,255,255,208,0,0,0,0,15,255,255,255,255,208,0,0,0,0,15,255,255,255,255,208,0,0,0,0,15,224,0,0,15,208,0,0,0,0,15,224,0,0,15,208,0,0,2,192,15,229,85,85,111,208,0,0,3,240,15,255,255,255,255,208,0,0,11,244,15,255,255,255,255,208,0,0,15,240,15,224,0,0,15,208,0,0,47,208,15,224,0,0,15,208,0,0,63,192,15,224,0,0,15,208,0,0,191,64,15,255,255,255,255,208,0,0,255,0,15,255,255,255,255,208,0,3,253,0,15,250,170,170,175,208,0,7,252,0,15,224,0,0,15,208,0,15,244,0,15,224,0,0,15,208,0,47,240,0,15,224,0,0,15,208,0,63,208,0,15,224,0,63,255,192,0,15,128,0,15,224,0,47,255,192,0,2,0,0,15,224,0,31,254,0,0,0,0,0,5,64,0,0,0,0,0, + // 0x6e2c 測 + 44,110,35,38,86,40,2,252,0,0,0,0,0,0,0,1,248,7,128,0,0,0,0,0,1,252,15,248,11,255,255,240,0,1,252,31,255,75,255,255,240,0,1,252,3,255,219,255,255,240,42,1,252,0,127,203,224,7,240,63,1,252,0,15,11,224,3,240,63,1,252,0,1,11,224,3,240,63,1,252,0,0,11,224,3,240,63,1,252,0,0,11,224,3,240,63,1,252,0,0,11,255,255,240,63,1,252,16,0,11,255,255,240,63,1,252,62,0,11,255,255,240,63,1,252,255,224,11,224,3,240,63,1,252,255,253,11,224,3,240,63,1,252,31,255,11,224,3,240,63,1,252,1,252,11,224,3,240,63,1,252,0,52,11,255,255,240,63,1,252,0,0,11,255,255,240,63,1,252,0,0,11,255,255,240,63,1,252,0,0,11,224,3,240,63,1,252,0,0,11,224,3,240,63,1,252,0,16,11,224,3,240,63,1,252,0,61,11,224,3,240,63,1,252,0,63,139,229,87,240,63,1,252,0,191,11,255,255,240,63,1,252,0,255,11,255,255,240,63,1,252,1,254,11,255,255,240,63,1,252,2,252,0,0,0,0,0,1,252,3,252,2,248,11,192,0,1,252,11,244,3,252,15,240,0,1,252,15,240,11,244,7,248,0,1,252,31,224,31,224,2,253,0,1,252,63,192,63,192,0,255,0,2,252,127,192,255,64,0,127,79,255,252,127,67,254,0,0,56,11,255,244,11,0,252,0,0,0,7,255,224,0,0,16,0,0,0,2,149,0, + // 0x6e90 源 + 144,110,37,39,134,40,2,251,1,0,0,0,0,0,0,0,0,0,7,224,0,0,0,0,0,0,0,0,15,254,2,255,255,255,255,255,255,0,11,255,194,255,255,255,255,255,255,0,0,255,242,255,255,255,255,255,255,0,0,47,226,253,85,86,255,85,85,0,0,7,194,252,0,1,254,0,0,0,0,1,2,252,0,2,253,0,0,0,0,0,2,252,0,2,252,0,0,0,0,0,2,252,0,3,252,0,0,0,0,0,2,252,63,255,255,255,248,0,0,0,2,252,63,255,255,255,248,0,61,0,2,252,63,255,255,255,248,0,255,208,2,252,63,64,0,3,248,0,255,252,2,252,63,64,0,3,248,0,31,255,2,252,63,170,170,171,248,0,1,253,2,252,63,255,255,255,248,0,0,56,2,252,63,255,255,255,248,0,0,0,2,252,63,64,0,3,248,0,0,0,2,252,63,64,0,3,248,0,0,0,3,252,63,64,0,3,248,0,0,0,3,248,63,234,170,171,248,0,0,8,3,248,63,255,255,255,248,0,0,31,3,244,63,255,255,255,248,0,0,63,199,244,0,0,253,0,0,0,0,127,135,240,0,0,253,0,0,0,0,191,11,240,14,64,253,11,192,0,0,255,15,240,47,192,253,31,224,0,2,253,15,224,63,128,253,15,240,0,3,252,31,208,191,0,253,7,252,0,7,248,47,192,254,0,253,2,253,0,15,240,63,131,252,0,253,0,255,0,31,224,191,75,248,0,253,0,191,64,63,208,255,15,240,0,253,0,127,128,127,194,254,7,208,1,253,0,61,0,127,67,252,0,65,255,252,0,0,0,11,1,248,0,0,255,252,0,0,0,0,0,32,0,0,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x6e96 準 + 150,110,36,38,86,40,2,252,0,64,0,1,144,0,144,0,0,1,248,0,3,252,0,255,0,0,3,255,128,7,248,2,253,0,0,2,255,244,15,240,3,252,0,0,0,47,240,47,224,11,244,0,0,0,7,224,127,255,255,255,255,244,0,0,64,255,255,255,255,255,244,20,0,3,255,255,255,255,255,240,127,128,15,255,64,15,224,0,0,255,253,127,255,64,15,224,0,0,31,253,255,255,255,255,255,255,192,1,248,63,127,255,255,255,255,192,0,16,8,63,234,175,250,170,128,0,0,0,63,64,15,224,0,0,0,1,208,63,64,15,224,0,0,0,3,240,63,234,175,250,170,128,0,15,244,63,255,255,255,255,192,0,63,224,63,255,255,255,255,192,0,191,192,63,64,15,224,0,0,2,255,0,63,64,15,224,0,0,11,252,0,63,64,15,224,0,0,47,244,0,63,255,255,255,255,253,63,208,0,63,255,255,255,255,253,15,128,0,63,255,255,255,255,252,6,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,255,85,85,85,85,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x6eab 溫 + 171,110,37,38,124,40,2,252,1,0,0,0,0,0,0,0,0,0,3,224,0,0,0,0,0,0,0,0,15,254,0,63,255,255,255,255,64,0,15,255,208,63,255,255,255,255,64,0,1,255,244,63,255,255,255,255,64,0,0,31,240,63,128,9,0,63,64,0,0,3,192,63,128,47,0,63,64,0,0,0,64,63,128,63,0,63,64,0,0,0,0,63,128,126,0,63,64,0,0,0,0,63,128,255,128,63,64,0,0,0,0,63,130,255,224,63,64,0,20,0,0,63,135,242,248,63,64,0,127,64,0,63,175,192,190,63,64,0,255,244,0,63,159,0,45,63,64,0,191,254,0,63,132,0,0,63,64,0,11,255,0,63,255,255,255,255,64,0,0,254,0,63,255,255,255,255,64,0,0,44,0,63,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,255,255,240,0,0,6,1,255,255,255,255,255,240,0,0,15,129,255,255,255,255,255,240,0,0,31,225,252,15,192,188,11,240,0,0,63,193,252,15,192,188,11,240,0,0,127,129,252,15,192,188,11,240,0,0,255,1,252,15,192,188,11,240,0,1,255,1,252,15,192,188,11,240,0,3,253,1,252,15,192,188,11,240,0,7,252,1,252,15,192,188,11,240,0,15,244,1,252,15,192,188,11,240,0,31,240,1,252,15,192,188,11,240,0,63,208,191,255,255,255,255,255,255,64,127,192,191,255,255,255,255,255,255,64,47,64,191,255,255,255,255,255,255,64,3,0,21,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0, + // 0x6fc0 激 + 192,111,37,38,124,40,2,252,1,0,0,6,144,0,25,64,0,0,7,208,0,11,244,0,47,192,0,0,31,248,0,15,240,0,63,128,0,0,31,255,64,15,224,0,63,128,0,0,2,255,218,175,250,164,63,64,0,0,0,63,207,255,255,244,127,0,0,0,0,11,15,255,255,244,127,0,0,0,0,0,15,192,2,244,191,0,0,0,0,0,15,192,2,244,255,255,255,64,0,0,15,234,171,244,255,255,255,64,0,0,15,255,255,245,255,255,255,64,40,0,15,255,255,246,253,87,249,0,127,64,15,192,2,247,252,3,244,0,255,244,15,192,2,255,252,3,244,0,127,253,15,192,2,255,252,3,240,0,7,254,15,255,255,255,253,7,240,0,0,252,15,255,255,255,254,7,240,0,0,32,10,175,250,191,190,11,224,0,0,0,0,11,224,15,47,11,224,0,0,0,0,11,224,1,31,15,208,0,0,0,191,255,255,255,31,143,192,0,0,0,191,255,255,255,15,223,192,0,0,36,191,255,255,255,15,239,128,0,0,62,0,190,0,0,7,255,64,0,0,63,64,126,0,0,3,255,0,0,0,191,0,190,0,0,3,254,0,0,0,255,0,191,255,240,2,253,0,0,1,253,0,191,255,240,2,252,0,0,2,252,0,255,255,240,3,254,0,0,3,252,1,252,3,240,11,255,64,0,11,244,2,252,7,240,31,255,192,0,15,240,3,248,7,240,63,223,224,0,31,224,15,240,7,240,255,11,248,0,63,192,47,224,11,227,253,3,254,0,127,192,191,203,255,239,248,1,255,128,127,66,255,3,255,239,224,0,127,0,11,0,252,3,255,75,128,0,28,0,0,0,32,0,0,1,0,0,0,0, + // 0x7121 無 + 33,113,36,38,86,40,2,252,0,0,144,0,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,7,252,0,0,0,0,0,0,0,15,244,0,0,0,0,0,0,0,47,245,85,85,85,85,85,80,0,127,255,255,255,255,255,255,244,1,255,255,255,255,255,255,255,244,3,255,255,255,255,255,255,255,244,15,255,192,63,0,252,3,244,0,127,255,192,63,0,252,3,244,0,255,223,192,63,0,252,3,244,0,47,31,192,63,0,252,3,244,0,8,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,85,111,213,191,86,253,87,249,85,0,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,0,31,192,63,0,252,3,244,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,21,85,85,85,85,85,85,85,84,0,0,0,0,0,0,0,4,0,0,190,0,20,0,24,0,191,0,0,255,1,252,0,254,0,255,128,2,253,0,253,0,255,0,63,208,3,252,0,254,0,127,64,47,240,11,248,0,255,0,63,128,15,248,31,240,0,191,0,63,192,3,253,127,208,0,191,0,47,192,2,255,191,128,0,191,0,31,208,0,255,6,0,0,16,0,4,0,0,160, + // 0x71b1 熱 + 177,113,37,38,124,40,2,252,0,1,168,0,0,7,240,0,0,0,0,1,252,0,0,7,240,0,0,0,0,1,252,0,0,7,240,0,0,0,15,255,255,255,128,7,240,0,0,0,15,255,255,255,128,7,240,0,0,0,10,171,254,170,65,91,245,85,0,0,0,1,252,0,7,255,255,255,64,0,0,1,252,0,7,255,255,255,64,0,127,255,255,255,231,255,255,255,64,0,127,255,255,255,224,11,224,63,64,0,106,191,175,234,160,11,224,63,64,0,0,126,11,192,0,11,224,63,64,0,0,253,11,192,211,143,224,63,64,0,2,252,11,193,247,255,208,63,64,0,111,240,7,255,255,255,208,63,64,0,255,192,171,255,210,255,192,63,64,0,62,1,252,85,0,127,244,63,64,0,0,1,252,0,0,47,253,63,64,0,26,171,254,170,128,63,255,191,64,0,47,255,255,255,128,127,191,127,74,0,47,255,255,255,128,191,31,63,75,192,0,1,252,0,0,254,5,63,75,192,0,1,252,0,2,252,0,63,75,192,0,1,252,86,167,248,0,63,75,128,21,171,255,255,255,240,0,63,79,128,255,255,255,255,255,208,0,63,255,128,191,255,255,169,127,128,0,47,255,0,190,149,0,0,14,0,0,11,249,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,25,0,0,0,255,1,188,1,253,0,255,0,0,1,254,1,252,0,254,0,127,192,0,3,252,0,253,0,191,0,63,224,0,11,248,0,254,0,127,64,15,244,0,31,240,0,254,0,63,192,7,252,0,127,208,0,255,0,63,192,3,254,0,191,128,0,254,0,47,128,0,254,0,6,0,0,0,0,0,0,0,80,0, + // 0x71c8 燈 + 200,113,38,38,124,40,1,252,0,0,0,0,0,0,25,0,0,0,0,11,224,0,0,0,127,3,64,0,0,11,224,3,255,254,63,11,224,0,0,11,224,3,255,255,47,175,208,0,0,11,224,3,255,255,15,255,64,0,0,11,224,0,0,189,15,248,4,0,0,11,224,145,192,252,7,240,47,64,0,11,225,255,246,248,3,252,191,128,6,75,227,251,255,240,0,255,253,0,11,203,227,240,191,224,0,127,224,0,11,203,235,208,63,192,0,63,208,0,15,203,255,192,255,255,255,255,248,0,15,139,255,3,255,255,255,251,254,0,15,139,234,15,245,255,255,245,255,208,31,75,224,127,224,0,0,0,127,224,47,11,225,255,128,0,0,0,15,192,63,15,224,189,0,0,0,0,2,0,126,15,224,32,191,255,255,255,240,0,124,15,224,0,191,255,255,255,240,0,4,15,208,0,191,255,255,255,240,0,0,15,208,0,190,0,0,11,240,0,0,15,208,0,190,0,0,11,240,0,0,15,192,0,190,0,0,11,240,0,0,31,208,0,190,0,0,11,240,0,0,47,240,0,191,255,255,255,240,0,0,47,252,0,191,255,255,255,240,0,0,63,254,0,191,255,255,255,224,0,0,127,255,64,1,128,0,101,0,0,0,191,63,192,15,208,0,191,0,0,0,254,15,240,11,240,0,254,0,0,1,253,11,244,3,244,1,253,0,0,3,252,3,240,3,248,2,252,0,0,11,244,1,192,2,252,3,244,0,0,31,240,0,0,1,224,1,176,0,0,63,208,0,63,255,255,255,255,255,192,63,128,0,63,255,255,255,255,255,192,15,0,0,63,255,255,255,255,255,192,4,0,0,0,0,0,0,0,0,0, + // 0x7247 片 + 71,114,34,38,86,40,2,252,0,0,0,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,192,0,1,253,0,0,0,0,63,255,255,255,255,255,255,224,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,255,255,255,255,255,255,240,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,63,255,255,255,255,255,64,0,0,127,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,191,255,255,255,255,255,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,0,255,0,0,0,0,191,64,0,2,254,0,0,0,0,191,64,0,3,253,0,0,0,0,191,64,0,7,252,0,0,0,0,191,64,0,11,248,0,0,0,0,191,64,0,15,244,0,0,0,0,191,64,0,63,240,0,0,0,0,191,64,0,191,208,0,0,0,0,191,64,0,255,192,0,0,0,0,191,64,0,191,0,0,0,0,0,191,64,0,45,0,0,0,0,0,191,64,0,8,0,0,0,0,0,191,64,0, + // 0x7269 物 + 105,114,37,38,124,40,1,252,0,0,252,0,0,148,0,0,0,0,0,0,252,0,1,253,0,0,0,0,1,0,252,0,2,252,0,0,0,0,7,240,252,0,3,248,0,0,0,0,11,224,252,0,3,244,0,0,0,0,11,224,252,0,7,240,0,0,0,0,15,208,252,0,11,240,0,0,0,0,15,208,252,0,15,255,255,255,255,192,15,234,254,164,31,255,255,255,255,192,15,255,255,252,63,255,255,255,255,192,31,255,255,252,127,151,249,127,191,192,47,255,255,252,255,3,240,63,47,192,47,64,252,1,253,7,224,127,47,192,63,0,252,3,252,15,208,190,47,192,127,0,252,15,244,15,192,253,63,128,190,0,252,31,240,47,193,252,63,128,45,0,252,11,192,63,66,252,63,128,4,0,252,2,64,127,3,248,63,128,0,0,252,5,0,254,3,244,63,64,0,0,254,254,1,252,11,240,63,64,0,1,255,254,3,248,15,224,63,64,0,127,255,254,11,240,31,192,63,64,47,255,255,144,31,224,47,192,127,0,63,255,252,0,63,192,63,64,127,0,63,250,252,0,255,64,191,0,127,0,46,64,252,3,254,0,254,0,191,0,0,0,252,11,252,2,252,0,191,0,0,0,252,2,240,3,248,0,255,0,0,0,252,0,64,15,240,0,254,0,0,0,252,0,0,31,224,0,254,0,0,0,252,0,0,63,192,1,253,0,0,0,252,0,0,255,64,2,252,0,0,0,252,0,3,254,0,3,252,0,0,0,252,0,15,252,0,11,252,0,0,0,252,0,63,240,31,255,244,0,0,0,252,0,47,208,15,255,240,0,0,0,252,0,7,0,15,255,192,0,0,0,252,0,0,0,6,164,0,0, + // 0x7387 率 + 135,115,36,38,86,40,2,252,0,0,0,0,169,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,5,85,85,85,255,85,85,85,80,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,31,255,255,255,255,255,255,255,248,0,0,0,7,244,0,0,0,0,1,0,0,15,224,0,0,7,64,11,224,0,47,192,36,0,31,240,31,252,2,127,0,191,0,127,208,7,255,75,253,1,253,2,255,64,0,191,239,252,7,244,15,252,0,0,31,210,255,79,224,31,224,0,0,7,0,127,255,128,1,64,0,0,0,0,31,255,28,0,0,0,0,0,0,3,252,191,11,64,0,0,1,240,7,240,63,191,240,0,0,31,244,31,192,31,255,254,0,6,255,248,127,255,255,242,255,208,191,255,175,255,255,255,244,127,248,127,248,31,255,255,234,252,11,253,63,64,30,149,64,0,252,1,244,4,0,0,0,255,0,80,0,16,0,0,0,0,255,0,0,0,0,85,85,85,85,255,85,85,85,85,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x7528 用 + 40,117,35,35,59,40,1,252,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,234,170,191,234,170,171,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,213,85,127,229,85,91,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,128,0,47,192,0,3,248,0,63,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,0,127,255,255,255,255,255,255,248,0,127,170,170,191,234,170,171,248,0,191,0,0,47,192,0,3,248,0,255,0,0,47,192,0,3,248,0,254,0,0,47,192,0,3,248,1,253,0,0,47,192,0,3,248,3,252,0,0,47,192,0,3,248,3,252,0,0,47,192,0,3,248,11,244,0,0,47,192,0,3,248,15,240,0,0,47,192,0,7,248,63,224,0,0,47,192,255,255,244,127,192,0,0,47,192,127,255,240,31,64,0,0,47,192,63,255,208,6,0,0,0,5,64,42,84,0, + // 0x754c 界 + 76,117,36,37,77,40,2,251,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,0,3,254,0,127,208,0,0,0,0,15,252,0,31,244,0,0,0,0,127,240,0,11,254,0,0,0,2,255,192,0,2,255,208,0,0,31,255,0,0,0,127,253,0,1,255,253,80,0,6,191,255,208,47,255,223,240,0,7,250,255,255,255,254,15,240,0,7,244,63,254,63,244,15,240,0,7,244,7,252,14,0,15,240,0,7,244,0,32,0,0,15,240,0,7,244,0,0,0,0,31,224,0,7,244,0,0,0,0,63,208,0,7,244,0,0,0,0,191,192,0,7,244,0,0,0,2,255,128,0,7,244,0,0,0,15,255,0,0,7,244,0,0,1,191,252,0,0,7,244,0,0,3,255,240,0,0,7,244,0,0,0,255,64,0,0,7,244,0,0,0,56,0,0,0,6,164,0,0,0,0,0,0,0,0,0,0,0, + // 0x767d 白 + 125,118,30,38,48,40,5,252,0,0,0,249,64,0,0,0,0,0,0,255,192,0,0,0,0,0,1,255,64,0,0,0,0,0,2,255,0,0,0,0,0,0,3,253,0,0,0,0,0,0,7,252,0,0,0,0,106,170,175,254,170,170,170,144,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,234,170,170,170,170,191,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,234,170,170,170,170,191,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,255,255,255,255,255,255,208,127,64,0,0,0,0,31,208,127,64,0,0,0,0,31,208,127,0,0,0,0,0,26,144, + // 0x7684 的 + 132,118,34,38,86,40,3,252,0,10,144,0,0,100,0,0,0,0,15,240,0,0,191,0,0,0,0,15,240,0,0,255,0,0,0,0,31,208,0,1,253,0,0,0,0,47,192,0,2,252,0,0,0,0,63,128,0,3,252,0,0,0,0,127,128,0,7,253,85,85,80,191,255,255,248,11,255,255,255,240,191,255,255,248,15,255,255,255,240,191,255,255,248,31,255,255,255,240,191,0,2,248,63,192,0,7,240,191,0,2,248,127,128,0,7,240,191,0,2,248,255,0,0,7,240,191,0,2,250,254,0,0,7,240,191,0,2,255,252,0,0,7,240,191,0,2,249,244,0,0,11,240,191,0,2,248,48,112,0,11,240,191,0,2,248,2,248,0,11,240,191,255,255,248,2,253,0,11,240,191,255,255,248,0,255,0,11,224,191,255,255,248,0,127,192,15,224,191,0,3,248,0,47,224,15,224,191,0,2,248,0,15,240,15,224,191,0,2,248,0,7,252,15,224,191,0,2,248,0,3,253,15,208,191,0,2,248,0,1,253,15,208,191,0,2,248,0,0,224,15,208,191,0,2,248,0,0,0,31,208,191,0,2,248,0,0,0,31,192,191,0,2,248,0,0,0,47,192,191,255,255,248,0,0,0,47,192,191,255,255,248,0,0,0,63,192,191,255,255,248,0,0,0,63,128,191,85,85,80,0,0,0,255,64,191,0,0,0,0,63,255,255,0,191,0,0,0,0,31,255,253,0,105,0,0,0,0,15,255,244,0,0,0,0,0,0,5,85,0,0, + // 0x76e3 監 + 227,118,36,37,77,40,2,253,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,240,0,0,63,255,255,255,240,11,224,0,0,63,255,255,255,240,15,208,0,0,63,255,255,255,240,31,192,0,0,63,128,126,0,0,47,128,0,0,63,128,126,0,0,63,255,255,254,63,255,255,255,208,127,255,255,254,63,255,255,255,208,255,255,255,254,63,213,85,95,209,252,0,0,0,63,128,0,11,211,248,0,0,0,63,128,0,11,219,240,0,0,0,63,128,0,11,239,224,0,0,0,63,255,255,255,215,192,0,0,0,63,255,255,255,208,64,0,0,0,63,213,191,85,64,0,0,0,0,63,128,126,0,0,63,255,255,248,63,128,126,0,0,63,255,255,248,63,255,255,255,244,63,255,255,248,63,255,255,255,248,0,0,0,0,63,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,190,0,254,0,254,0,255,0,0,190,0,254,0,254,0,255,0,0,190,0,254,0,254,0,255,0,0,190,0,254,0,254,0,255,0,0,190,0,254,0,254,0,255,0,0,190,0,254,0,254,0,255,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,85,85,85,85,85,85,85,85,85, + // 0x76f4 直 + 244,118,36,38,86,40,2,252,0,0,0,0,127,192,0,0,0,0,0,0,0,127,192,0,0,0,0,0,0,0,127,128,0,0,0,21,85,85,85,191,213,85,85,84,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,127,255,255,255,255,255,255,255,254,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,250,170,170,171,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,250,170,170,171,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,15,250,170,170,170,252,0,7,240,15,224,0,0,1,252,0,7,240,15,224,0,0,1,252,0,7,240,15,250,170,170,171,252,0,7,240,15,255,255,255,255,252,0,7,240,15,255,255,255,255,252,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0,7,249,85,85,85,85,85,85,85,7,255,255,255,255,255,255,255,255,7,255,255,255,255,255,255,255,255,7,255,255,255,255,255,255,255,255,7,240,0,0,0,0,0,0,0,7,240,0,0,0,0,0,0,0, + // 0x7720 眠 + 32,119,36,36,68,40,3,252,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,254,85,254,3,249,85,85,91,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,244,0,0,7,240,253,0,254,3,249,85,85,91,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,255,255,254,3,255,255,255,255,240,253,0,254,3,244,1,252,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,253,0,254,3,244,0,253,0,0,255,255,254,3,255,255,255,255,252,255,255,254,3,255,255,255,255,252,255,255,254,3,255,255,255,255,252,253,0,254,3,249,85,255,85,84,253,0,254,3,244,0,127,0,0,253,0,254,3,244,0,127,0,0,253,0,254,3,244,0,63,64,0,253,0,254,3,244,0,63,128,0,254,85,254,3,244,0,63,192,0,255,255,254,3,244,0,47,192,16,255,255,254,3,244,0,31,208,61,255,255,254,3,244,0,15,224,63,253,0,0,3,244,22,219,240,63,253,0,0,3,255,255,211,244,63,253,0,1,191,255,255,227,253,126,84,0,2,255,255,255,144,255,253,0,0,1,255,254,64,0,191,252,0,0,0,249,64,0,0,47,244,0,0,0,0,0,0,0,1,64, + // 0x780d 砍 + 13,120,38,38,124,40,1,252,0,0,0,0,1,164,0,0,0,0,0,0,0,0,2,253,0,0,0,0,21,85,85,85,2,252,0,0,0,0,63,255,255,255,131,252,0,0,0,0,63,255,255,255,131,252,0,0,0,0,63,255,255,255,131,248,0,0,0,0,0,31,192,0,7,244,0,0,0,0,0,47,192,0,11,249,85,85,89,0,0,63,128,0,15,255,255,255,255,208,0,63,64,0,15,255,255,255,255,192,0,63,64,0,31,255,255,255,255,192,0,127,0,0,63,192,253,0,63,128,0,191,0,0,63,192,253,0,127,64,0,254,0,0,127,128,253,0,191,0,0,254,0,0,255,0,253,0,255,0,1,255,255,253,255,0,253,0,254,0,2,255,255,255,253,0,253,0,253,0,3,255,255,255,252,0,253,2,252,0,7,252,1,252,244,1,253,2,248,0,15,252,1,252,16,1,254,0,36,0,31,252,1,252,0,2,254,0,0,0,63,252,1,252,0,2,255,0,0,0,127,252,1,252,0,3,255,0,0,0,191,252,1,252,0,7,255,64,0,0,62,252,1,252,0,11,239,192,0,0,28,252,1,252,0,15,223,208,0,0,4,252,1,252,0,47,203,240,0,0,0,252,1,252,0,63,135,244,0,0,0,253,85,252,0,191,3,252,0,0,0,255,255,252,1,254,1,254,0,0,0,255,255,252,7,252,0,255,128,0,0,255,255,252,31,244,0,63,224,0,0,252,0,0,127,224,0,47,248,0,0,252,0,2,255,192,0,11,255,64,0,252,0,31,255,0,0,3,255,208,0,168,0,15,248,0,0,0,191,192,0,0,0,7,224,0,0,0,31,64,0,0,0,2,0,0,0,0,2,0, + // 0x78ba 確 + 186,120,38,38,124,40,1,252,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,254,0,0,0,63,255,255,253,0,1,253,0,0,0,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,21,127,213,87,255,255,255,255,255,192,0,63,192,3,244,31,224,0,31,192,0,63,128,3,244,47,192,16,15,192,0,63,64,3,244,63,128,191,15,192,0,127,0,3,244,191,0,254,15,192,0,127,0,0,1,254,1,252,0,0,0,191,0,0,3,252,2,248,0,0,0,254,0,0,11,255,255,255,255,0,0,254,0,0,47,255,255,255,255,0,1,255,255,244,191,255,255,255,255,0,2,255,255,246,255,224,15,224,0,0,3,255,255,255,255,224,11,224,0,0,7,252,2,255,255,224,11,224,0,0,15,252,2,246,255,224,11,224,0,0,15,252,2,244,79,255,255,255,253,0,47,252,2,244,15,255,255,255,253,0,63,252,2,244,15,255,255,255,253,0,255,252,2,244,15,224,11,224,0,0,191,252,2,244,15,224,11,224,0,0,61,252,2,244,15,224,11,224,0,0,24,252,2,244,15,255,255,255,253,0,0,252,2,244,15,255,255,255,253,0,0,252,2,244,15,255,255,255,253,0,0,252,3,244,15,224,11,224,0,0,0,255,255,244,15,224,11,224,0,0,0,255,255,244,15,224,11,224,0,0,0,255,255,244,15,224,11,224,0,0,0,252,0,0,15,255,255,255,255,208,0,252,0,0,15,255,255,255,255,208,0,252,0,0,15,255,255,255,255,208,0,0,0,0,15,224,0,0,0,0,0,0,0,0,15,208,0,0,0,0, + // 0x79fb 移 + 251,121,37,38,124,40,1,252,0,0,0,0,0,0,148,0,0,0,0,0,2,224,0,2,254,0,0,0,0,1,191,248,0,3,252,0,0,0,1,191,255,253,0,15,244,0,0,0,63,255,255,228,0,63,255,255,248,0,63,255,252,0,0,255,255,255,252,0,31,151,248,0,7,255,255,255,248,0,0,3,248,0,47,248,0,15,240,0,0,3,248,1,255,248,0,47,224,0,0,3,248,7,255,255,64,127,192,0,0,3,248,2,252,191,209,255,64,0,42,171,254,168,144,31,255,253,0,0,63,255,255,253,0,3,255,244,0,0,63,255,255,253,0,1,255,208,0,0,63,255,255,253,0,11,255,64,0,0,0,11,248,0,0,191,253,0,0,0,0,15,252,0,111,255,255,224,0,0,0,31,253,2,255,253,63,192,0,0,0,63,255,128,255,208,255,64,0,0,0,127,255,224,120,2,255,255,255,64,0,255,255,244,0,11,255,255,255,192,1,255,250,253,0,63,255,255,255,192,3,247,248,255,1,255,192,0,191,64,7,243,248,60,11,255,0,0,255,0,15,211,248,36,127,255,64,3,253,0,63,195,248,2,255,255,224,11,252,0,127,131,248,0,255,31,252,31,240,0,127,3,248,0,52,3,255,127,224,0,61,3,248,0,0,0,255,255,128,0,24,3,248,0,0,0,47,255,0,0,0,3,248,0,0,0,63,248,0,0,0,3,248,0,0,2,255,224,0,0,0,3,248,0,0,111,255,64,0,0,0,3,248,0,27,255,252,0,0,0,0,3,248,7,255,255,208,0,0,0,0,3,248,3,255,253,0,0,0,0,0,3,248,1,255,128,0,0,0,0,0,2,168,0,144,0,0,0,0,0, + // 0x7a4d 積 + 77,122,37,39,134,40,1,251,0,0,0,64,0,0,169,0,0,0,0,0,27,224,0,0,254,0,0,0,0,91,255,248,85,85,255,85,85,0,47,255,255,249,255,255,255,255,255,64,63,255,254,64,255,255,255,255,255,64,31,251,244,0,0,0,254,0,0,0,4,3,244,0,21,85,254,85,84,0,0,3,244,0,127,255,255,255,253,0,0,3,244,0,127,255,255,255,253,0,0,3,244,0,0,0,254,0,0,0,0,3,244,1,85,85,255,85,85,64,42,175,254,175,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,63,255,255,248,0,0,0,0,0,0,63,255,255,248,0,0,0,0,0,0,0,11,244,0,63,255,255,255,252,0,0,15,244,0,63,255,255,255,252,0,0,31,252,0,63,149,85,86,252,0,0,63,255,0,63,64,0,1,252,0,0,127,255,192,63,149,85,86,252,0,0,191,255,240,63,255,255,255,252,0,0,255,251,252,63,255,255,255,252,0,3,251,245,253,63,64,0,1,252,0,7,243,244,184,63,64,0,1,252,0,15,211,244,48,63,255,255,255,252,0,47,195,244,0,63,255,255,255,252,0,127,131,244,0,63,149,85,86,252,0,191,3,244,0,63,64,0,1,252,0,61,3,244,0,63,64,0,1,252,0,44,3,244,0,63,255,255,255,252,0,0,3,244,0,63,255,255,255,252,0,0,3,244,0,21,121,85,109,84,0,0,3,244,0,1,253,0,127,0,0,0,3,244,0,31,255,0,255,224,0,0,3,244,1,255,248,0,31,253,0,0,3,244,47,255,128,0,3,255,128,0,3,244,31,248,0,0,0,127,128,0,2,164,7,64,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0, + // 0x7aef 端 + 239,122,38,38,124,40,1,252,0,5,64,0,0,0,169,0,0,0,0,15,192,0,0,0,253,0,0,0,0,15,192,0,168,0,253,0,106,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,0,15,192,1,252,0,253,0,191,0,63,255,255,225,253,1,253,0,191,0,63,255,255,225,255,255,255,255,255,0,63,255,255,225,255,255,255,255,255,0,21,85,85,81,255,255,255,255,255,0,0,0,4,0,0,0,0,0,0,0,15,128,31,192,0,0,0,0,0,0,15,192,47,193,85,85,85,85,85,64,15,192,47,143,255,255,255,255,255,208,11,208,63,143,255,255,255,255,255,208,11,208,63,79,255,255,255,255,255,208,7,224,63,0,0,2,253,0,0,0,7,224,63,0,0,3,252,0,0,0,3,240,127,0,0,3,248,0,0,0,3,240,126,0,0,7,248,0,0,0,3,240,189,3,255,255,255,255,255,64,3,240,253,3,255,255,255,255,255,64,3,240,252,3,255,255,255,255,255,64,3,240,252,3,248,47,2,240,63,64,0,1,248,99,248,47,2,240,63,64,0,1,255,247,248,47,2,240,63,64,1,175,255,251,248,47,2,240,63,64,127,255,255,247,248,47,2,240,63,64,127,255,249,3,248,47,2,240,63,64,63,249,0,3,248,47,2,240,63,64,57,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,240,63,64,0,0,0,3,248,47,2,247,255,64,0,0,0,3,248,47,2,243,255,0,0,0,0,2,244,21,1,82,248,0, + // 0x7b49 等 + 73,123,37,38,124,40,1,252,0,15,144,0,0,15,144,0,0,0,0,31,224,0,0,47,208,0,0,0,0,63,192,0,0,63,192,0,0,0,0,127,255,255,248,191,255,255,255,128,0,255,255,255,249,255,255,255,255,128,3,255,255,255,251,255,255,255,255,128,11,252,191,0,15,248,47,208,0,0,31,240,63,64,63,240,15,240,0,0,127,224,63,192,63,192,7,244,0,0,63,192,31,192,47,192,3,248,0,0,11,0,8,0,63,192,1,128,0,0,0,0,0,0,63,192,0,0,0,0,0,63,255,255,255,255,255,255,208,0,0,63,255,255,255,255,255,255,208,0,0,63,255,255,255,255,255,255,208,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,255,192,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,192,0,0,11,255,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,255,0,11,255,255,255,255,255,255,255,255,0,0,0,47,0,0,0,63,192,0,0,0,0,191,192,0,0,63,192,0,0,0,0,127,244,0,0,63,192,0,0,0,0,15,253,0,0,63,192,0,0,0,0,3,255,0,0,63,192,0,0,0,0,0,255,192,0,63,192,0,0,0,0,0,63,65,85,191,192,0,0,0,0,0,28,3,255,255,128,0,0,0,0,0,0,1,255,255,0,0,0,0,0,0,0,0,255,232,0,0,0, + // 0x7ba1 管 + 161,123,36,39,95,40,2,251,0,62,0,0,0,57,0,0,0,0,127,64,0,0,255,64,0,0,0,255,0,0,1,255,0,0,0,2,255,255,255,211,255,255,255,255,7,255,255,255,219,255,255,255,255,15,255,255,255,255,255,255,255,255,63,226,252,0,191,192,127,192,0,255,192,254,2,255,64,47,208,0,191,0,191,0,254,0,15,240,0,28,0,56,0,254,0,7,144,0,0,0,0,0,254,0,0,0,0,47,255,255,255,255,255,255,255,252,47,255,255,255,255,255,255,255,252,47,255,255,255,255,255,255,255,252,47,128,0,0,0,0,0,2,252,47,128,0,0,0,0,0,2,252,47,128,0,0,0,0,0,2,252,47,131,255,255,255,255,255,194,252,47,131,255,255,255,255,255,194,252,0,3,255,255,255,255,255,192,0,0,3,248,0,0,0,47,192,0,0,3,248,0,0,0,47,192,0,0,3,254,170,170,170,191,192,0,0,3,255,255,255,255,255,192,0,0,3,255,255,255,255,255,192,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,0,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,248,0,0,0,0,255,0,0,3,248,0,0,0,0,255,0,0,3,248,0,0,0,0,255,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,248,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0, + // 0x7bb1 箱 + 177,123,37,38,124,40,1,252,0,10,64,0,0,14,64,0,0,0,0,15,240,0,0,31,224,0,0,0,0,31,208,0,0,63,192,0,0,0,0,63,192,0,0,63,192,0,0,0,0,127,255,255,248,191,255,255,255,192,0,255,255,255,249,255,255,255,255,192,1,255,255,255,251,255,255,255,255,192,3,252,191,64,11,252,63,208,0,0,15,244,63,128,31,240,15,240,0,0,47,240,47,192,127,208,7,244,0,0,127,192,15,208,63,128,3,252,0,0,15,64,15,64,11,0,1,224,0,0,1,0,191,0,0,0,0,0,0,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,31,255,255,255,227,249,85,85,254,0,31,255,255,255,227,244,0,0,254,0,31,255,255,255,227,244,0,0,254,0,5,87,255,85,83,244,0,0,254,0,0,3,255,0,3,255,255,255,254,0,0,7,255,128,3,255,255,255,254,0,0,15,255,240,3,255,255,255,254,0,0,47,255,252,3,244,0,0,254,0,0,63,255,255,3,244,0,0,254,0,0,191,255,191,195,244,0,0,254,0,1,254,191,47,243,255,255,255,254,0,3,252,191,15,211,255,255,255,254,0,15,244,191,3,131,255,255,255,254,0,63,224,191,1,3,244,0,0,254,0,127,192,191,0,3,244,0,0,254,0,47,64,191,0,3,244,0,0,254,0,13,0,191,0,3,244,0,0,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,255,255,255,254,0,0,0,191,0,3,244,0,0,254,0,0,0,190,0,2,164,0,0,85,0, + // 0x7cfb 系 + 251,124,36,38,86,40,2,252,0,0,0,0,0,0,0,4,0,0,0,0,0,0,1,107,253,0,0,1,85,170,191,255,255,255,0,31,255,255,255,255,255,255,255,192,15,255,255,255,255,255,254,144,0,15,255,255,255,249,80,0,0,0,5,80,0,255,192,0,0,0,0,0,0,2,255,64,1,208,0,0,0,0,7,253,0,7,253,0,0,0,0,31,248,0,15,252,0,0,0,56,63,224,0,63,240,0,0,0,255,255,128,0,255,192,0,0,1,255,254,0,3,255,0,0,0,0,63,253,0,15,252,0,0,0,0,11,255,128,127,240,0,0,0,0,1,255,225,255,192,4,0,0,0,0,63,255,255,0,47,0,0,0,0,15,255,248,0,255,192,0,0,0,2,255,224,0,63,244,0,0,0,2,255,64,0,15,253,0,0,0,15,253,0,0,3,255,64,85,85,127,254,255,255,255,255,208,191,255,255,255,255,255,255,255,244,191,255,255,255,255,255,255,255,252,127,255,255,255,255,170,165,87,255,21,85,0,0,255,0,0,1,254,0,0,0,0,255,0,0,0,180,0,0,244,0,255,0,62,0,0,0,3,255,0,255,1,255,192,0,0,15,252,0,255,0,191,244,0,0,63,244,0,255,0,31,253,0,1,255,208,0,255,0,7,255,128,11,255,64,0,255,0,0,255,240,63,253,0,0,255,0,0,63,252,255,240,0,0,255,0,0,15,254,63,192,0,0,255,0,0,3,248,14,0,0,0,255,0,0,0,208,0,0,0,0,254,0,0,0,0, + // 0x7d05 紅 + 5,125,38,38,124,40,1,252,0,1,144,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,11,244,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,0,47,192,16,26,170,170,170,170,64,0,63,128,253,47,255,255,255,255,128,13,255,1,255,47,255,255,255,255,128,47,252,3,252,47,255,255,255,255,128,63,244,11,248,0,0,63,192,0,0,31,248,31,240,0,0,63,192,0,0,7,253,63,192,0,0,63,192,0,0,0,255,255,64,0,0,63,192,0,0,0,127,254,0,0,0,63,192,0,0,0,31,252,9,0,0,63,192,0,0,0,15,244,127,0,0,63,192,0,0,0,47,224,63,128,0,63,192,0,0,0,127,192,31,208,0,63,192,0,0,21,255,65,95,240,0,63,192,0,0,127,255,255,255,244,0,63,192,0,0,127,255,255,255,252,0,63,192,0,0,63,255,255,254,254,0,63,192,0,0,0,0,254,0,190,0,63,192,0,0,0,0,254,0,48,0,63,192,0,0,0,0,254,0,0,0,63,192,0,0,3,224,254,47,64,0,63,192,0,0,7,240,254,47,192,0,63,192,0,0,11,240,254,31,208,0,63,192,0,0,11,240,254,15,224,0,63,192,0,0,15,224,254,11,240,0,63,192,0,0,15,208,254,3,244,0,63,192,0,0,47,192,254,3,248,0,63,192,0,0,63,192,254,2,252,0,63,192,0,0,127,64,254,1,208,0,63,192,0,0,127,0,254,0,255,255,255,255,255,208,6,0,254,0,255,255,255,255,255,208,0,0,254,0,255,255,255,255,255,208,0,0,254,0,170,170,170,170,170,128,0,0,254,0,0,0,0,0,0,0, + // 0x7d22 索 + 34,125,35,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,5,85,85,85,255,85,85,85,80,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,63,255,255,255,255,255,255,255,248,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,255,255,255,255,255,255,255,252,63,128,0,47,224,0,0,2,252,63,128,0,127,208,0,0,2,252,63,128,1,255,64,7,64,2,252,63,129,11,253,0,47,240,2,252,63,139,239,240,0,191,224,2,252,0,47,255,192,3,255,64,0,0,0,11,255,64,31,253,0,0,0,0,1,255,224,191,240,36,0,0,0,0,47,254,255,128,254,0,0,0,0,7,255,253,1,255,192,0,0,0,1,255,224,0,63,244,0,0,0,11,255,64,0,11,254,0,63,255,255,255,255,255,255,255,192,63,255,255,255,255,255,255,255,240,63,255,255,255,255,255,255,255,252,21,85,16,0,255,0,0,2,244,0,0,121,0,254,0,56,0,64,0,2,255,64,254,2,255,64,0,0,15,253,0,254,1,255,244,0,0,191,244,0,254,0,31,254,0,11,255,192,0,254,0,2,255,208,191,254,0,0,254,0,0,127,248,127,240,0,0,254,0,0,11,252,15,64,0,0,254,0,0,1,224,0,0,0,0,254,0,0,0,0, + // 0x7d2b 紫 + 43,125,36,38,86,40,2,252,0,0,127,0,1,168,0,0,0,0,0,127,0,1,252,0,0,0,0,0,127,0,1,252,0,2,64,11,208,127,0,1,252,0,111,208,11,224,127,255,241,252,27,255,244,11,224,127,255,241,255,255,255,208,11,224,127,255,241,255,255,244,0,11,224,127,0,1,255,249,0,0,11,224,127,0,1,253,0,0,0,11,224,127,0,1,252,0,0,120,11,224,127,0,81,252,0,0,127,11,224,191,255,241,253,0,0,255,95,255,255,255,241,255,255,255,254,255,255,255,255,160,255,255,255,252,255,255,233,79,144,47,255,255,244,250,80,0,63,240,0,0,0,0,0,0,0,255,192,2,64,0,0,0,1,3,254,0,31,244,0,0,0,31,239,248,0,127,240,0,0,0,127,255,208,2,255,128,0,0,0,31,255,192,15,253,0,0,0,0,1,255,244,127,240,31,64,0,0,0,31,255,255,128,127,224,0,0,0,2,255,252,0,15,252,0,0,0,1,255,224,0,3,255,0,255,255,255,255,255,255,255,255,208,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,253,85,85,80,0,255,0,0,2,255,0,0,0,0,255,0,4,0,248,0,1,253,0,255,0,127,0,0,0,7,255,0,255,1,255,224,0,0,63,248,0,255,0,63,253,0,2,255,224,0,255,0,7,255,128,47,255,64,0,255,0,0,191,244,127,248,0,0,255,0,0,31,253,31,192,0,0,255,0,0,3,240,1,0,0,0,254,0,0,0,64, + // 0x7d30 細 + 48,125,36,38,86,40,1,252,0,6,0,0,0,0,0,0,0,0,15,240,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,47,192,0,21,85,85,85,85,0,63,64,0,63,255,255,255,255,0,191,2,128,63,255,255,255,255,0,253,7,244,63,255,255,255,255,31,252,15,240,63,64,63,0,127,63,240,31,208,63,64,63,0,127,63,224,63,128,63,64,63,0,127,15,244,191,0,63,64,63,0,127,7,253,253,0,63,64,63,0,127,1,255,248,0,63,64,63,0,127,0,191,240,160,63,64,63,0,127,0,63,195,240,63,64,63,0,127,0,47,66,248,63,64,63,0,127,0,126,0,253,63,64,63,0,127,0,255,255,255,63,149,191,85,191,127,255,255,255,127,255,255,255,255,127,255,255,255,191,255,255,255,255,127,255,244,31,255,255,255,255,255,21,3,244,15,191,64,63,0,127,0,3,244,8,63,64,63,0,127,0,3,244,0,63,64,63,0,127,11,211,245,244,63,64,63,0,127,15,211,245,252,63,64,63,0,127,15,195,244,252,63,64,63,0,127,15,195,244,190,63,64,63,0,127,31,195,244,127,63,64,63,0,127,47,131,244,63,63,64,63,0,127,63,67,244,47,127,64,63,0,127,63,3,244,30,127,149,191,85,191,191,3,244,0,63,255,255,255,255,109,3,244,0,63,255,255,255,255,4,3,244,0,63,255,255,255,255,0,3,244,0,63,64,0,0,127,0,3,244,0,63,64,0,0,127,0,2,164,0,0,0,0,0,0, + // 0x7d42 終 + 66,125,38,39,134,40,1,251,0,6,0,0,0,14,80,0,0,0,0,15,224,0,0,47,208,0,0,0,0,31,208,0,0,63,192,0,0,0,0,47,192,0,0,191,64,0,0,0,0,63,64,0,0,255,255,255,224,0,0,190,7,144,3,255,255,255,252,0,4,252,15,240,11,255,255,255,248,0,31,248,31,208,31,244,0,31,240,0,63,240,63,128,63,248,0,31,224,0,63,224,127,0,255,253,0,63,192,0,15,244,254,3,254,255,0,191,64,0,3,254,252,15,248,63,194,254,0,0,1,255,244,11,240,31,231,252,0,0,0,191,225,66,192,11,255,244,0,0,0,63,207,192,0,3,255,208,0,0,0,63,75,224,0,2,255,192,0,0,0,190,3,240,0,11,255,224,0,0,1,252,2,244,0,63,255,252,0,0,191,255,255,252,1,255,231,255,64,0,127,255,255,252,31,255,64,255,244,0,127,255,255,255,255,252,0,63,255,64,20,7,240,63,255,208,0,11,255,224,0,3,240,52,254,3,208,0,191,192,0,3,240,80,96,15,253,0,11,0,11,211,243,240,0,11,255,192,0,0,15,211,242,244,0,0,191,248,0,0,15,195,241,248,0,0,15,253,0,0,15,195,240,252,0,0,1,248,0,0,31,195,240,189,0,0,0,32,0,0,47,131,240,126,3,144,0,0,0,0,63,67,240,63,15,254,64,0,0,0,63,3,240,36,31,255,248,0,0,0,191,3,240,0,1,191,255,144,0,0,125,3,240,0,0,7,255,253,0,0,4,3,240,0,0,0,111,255,208,0,0,3,240,0,0,0,2,255,240,0,0,3,240,0,0,0,0,47,208,0,0,3,240,0,0,0,0,2,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x7d71 統 + 113,125,38,38,124,40,1,252,0,6,0,0,0,1,253,0,0,0,0,15,224,0,0,1,253,0,0,0,0,31,208,0,0,1,253,0,0,0,0,47,192,0,0,1,253,0,0,0,0,63,64,0,0,1,253,0,0,0,0,190,7,147,255,255,255,255,255,192,4,252,15,243,255,255,255,255,255,192,31,248,31,211,255,255,255,255,255,192,63,240,63,129,85,127,213,85,85,64,63,224,127,0,0,127,192,0,0,0,15,244,253,0,0,191,64,47,0,0,3,254,252,0,0,255,0,127,128,0,1,255,240,0,1,254,0,47,208,0,0,127,225,64,2,252,0,15,240,0,0,63,207,192,3,248,0,27,252,0,0,63,75,209,91,255,255,255,253,0,0,254,3,242,255,255,255,255,255,0,1,252,2,246,255,255,255,255,255,128,191,255,255,254,255,254,165,64,63,192,127,255,255,253,0,0,0,0,31,192,127,255,255,254,0,84,1,84,9,0,20,7,240,63,0,253,2,252,0,0,0,3,240,56,0,253,2,252,0,0,0,3,240,80,0,253,2,252,0,0,11,211,243,240,1,252,2,252,0,0,15,211,242,244,1,252,2,252,0,0,15,195,241,248,2,252,2,252,0,0,15,195,240,252,3,252,2,252,0,0,31,195,240,189,3,248,2,252,0,0,47,131,240,126,7,244,2,252,6,0,63,67,240,63,15,240,2,252,7,224,63,3,240,16,47,224,2,252,7,240,191,3,240,0,127,192,2,252,7,224,125,3,240,2,255,64,2,252,11,224,4,3,240,31,254,0,2,255,255,208,0,3,240,47,244,0,1,255,255,192,0,3,240,15,208,0,0,191,255,64,0,3,240,5,0,0,0,1,80,0, + // 0x7d72 絲 + 114,125,38,38,124,40,1,252,0,2,128,0,0,0,40,0,0,0,0,3,248,0,0,0,127,128,0,0,0,11,244,0,0,0,255,64,0,0,0,15,240,0,0,0,254,0,0,0,0,47,192,0,0,3,252,0,0,0,0,63,128,244,0,7,244,11,64,0,4,191,2,254,0,15,240,31,240,0,30,253,3,252,3,239,192,63,208,0,63,248,11,244,11,255,64,191,128,0,63,240,31,224,7,255,0,255,0,0,15,248,63,192,1,255,131,253,0,0,3,254,191,64,0,63,219,248,0,0,0,255,254,0,0,15,255,240,0,0,0,63,252,20,0,3,255,194,192,0,0,31,240,252,0,1,255,79,224,0,0,47,208,254,0,2,253,7,244,0,0,127,64,127,0,7,248,3,252,0,0,254,1,127,192,31,240,22,254,0,127,255,255,255,203,255,255,255,255,0,127,255,255,255,231,255,255,255,255,128,127,255,255,255,247,255,255,255,255,192,21,85,253,3,246,85,111,192,15,208,0,0,253,2,128,0,31,192,11,0,1,0,253,0,0,0,31,192,0,0,3,244,253,47,0,121,31,193,224,0,7,240,253,63,64,191,31,203,240,0,7,240,253,63,128,254,31,195,248,0,11,224,253,31,193,253,31,194,252,0,15,224,253,15,226,252,31,192,254,0,15,208,253,11,243,248,31,192,191,0,47,192,253,3,231,244,31,192,63,128,63,128,253,1,15,240,31,192,63,192,127,64,253,0,47,208,31,192,31,208,127,0,253,0,47,192,31,192,15,208,1,0,253,0,2,64,31,192,5,0,0,0,253,0,0,0,31,192,0,0,0,0,253,0,0,0,31,192,0,0,0,0,253,0,0,0,31,192,0,0, + // 0x7da0 綠 + 160,125,38,38,124,40,1,252,0,5,0,0,0,232,0,0,0,0,0,15,224,0,1,253,0,0,0,0,0,15,208,0,1,252,0,0,0,0,0,47,192,0,2,255,255,255,224,0,0,63,64,0,3,255,255,255,240,0,0,127,3,64,3,255,255,255,224,0,0,253,11,240,7,240,0,15,224,0,14,252,15,224,11,240,0,15,208,0,63,244,47,192,15,224,0,31,192,0,127,224,63,64,15,255,255,255,192,0,31,240,254,0,31,255,255,255,192,0,7,249,252,0,63,255,255,255,128,0,2,255,244,0,63,128,0,63,64,0,0,255,224,0,0,0,0,127,64,0,0,63,203,192,0,0,0,191,64,0,0,63,79,211,255,255,255,255,255,192,0,254,7,243,255,255,255,255,255,192,2,252,3,247,255,255,255,255,255,192,191,255,255,252,0,0,191,0,0,0,191,255,255,252,0,0,191,0,0,0,127,255,255,254,28,0,191,64,45,0,16,7,240,127,127,0,191,192,191,128,0,7,240,57,127,192,191,194,255,0,0,7,240,0,31,240,191,219,252,0,15,199,242,224,7,252,191,255,224,0,15,199,243,240,2,244,191,255,128,0,15,199,242,244,0,192,191,253,0,0,31,199,241,248,0,8,191,254,0,0,31,135,240,252,0,189,190,127,64,0,47,71,240,252,3,254,190,63,208,0,63,7,240,189,47,252,190,15,240,0,63,7,240,101,255,224,190,11,253,0,190,7,240,15,255,64,190,2,255,128,189,7,240,11,252,0,190,0,255,208,8,7,240,3,224,0,254,0,47,128,0,7,240,1,64,191,254,0,7,0,0,7,240,0,0,127,253,0,0,0,0,7,224,0,0,63,228,0,0,0, + // 0x7db2 網 + 178,125,37,39,134,40,1,251,0,6,0,0,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,15,208,2,255,255,255,255,255,64,0,47,192,2,255,255,255,255,255,64,0,63,64,2,255,255,255,255,255,64,0,191,3,130,253,85,85,85,127,64,0,253,11,242,252,0,0,80,63,64,30,248,15,210,252,124,0,189,63,64,63,240,63,194,252,125,0,252,63,64,63,224,127,2,252,62,1,248,63,64,31,240,254,2,252,47,2,240,63,64,11,249,252,2,252,31,3,224,63,64,2,255,244,2,252,14,2,208,63,64,0,255,224,2,252,255,255,254,63,64,0,63,207,194,252,255,255,254,63,64,0,63,79,210,252,255,255,254,63,64,0,254,7,242,252,0,253,0,63,64,2,252,3,250,252,0,253,0,63,64,191,255,255,254,252,0,253,0,63,64,191,255,255,255,252,255,255,254,63,64,127,255,255,255,252,255,255,254,63,64,16,7,240,127,252,255,255,254,63,64,0,7,240,63,252,47,64,0,63,64,5,7,240,98,252,47,64,0,63,64,15,215,243,242,252,47,64,0,63,64,15,199,243,242,252,47,64,0,63,64,15,199,242,246,252,47,64,0,63,64,31,199,241,250,252,47,64,0,63,64,31,135,240,254,252,47,128,0,63,64,47,71,240,255,252,31,255,252,63,64,63,71,240,191,252,15,255,253,63,64,63,7,240,102,252,7,255,253,63,64,190,7,240,2,252,0,0,0,63,64,189,7,240,2,252,0,0,0,63,64,8,7,240,2,252,0,0,0,127,64,0,7,240,2,252,0,0,191,255,0,0,7,240,2,252,0,0,63,255,0,0,7,240,2,252,0,0,63,244,0,0,0,0,0,0,0,0,0,0,0, + // 0x7dd2 緒 + 210,125,38,38,124,40,1,252,0,5,0,0,0,15,208,0,0,0,0,15,224,0,0,15,208,0,40,0,0,15,208,0,0,15,208,0,63,128,0,47,192,0,0,15,208,0,127,0,0,63,64,0,0,15,208,0,254,0,0,127,2,0,255,255,255,249,252,0,0,253,11,224,255,255,255,251,252,0,14,252,15,224,255,255,255,255,244,0,63,240,63,192,0,15,208,31,224,0,63,224,127,0,0,15,208,63,192,0,31,240,254,0,0,15,208,255,64,0,7,254,252,0,0,15,210,254,0,0,1,255,240,11,255,255,255,255,255,208,0,191,226,139,255,255,255,255,255,208,0,63,207,203,255,255,255,255,255,208,0,127,11,224,0,2,255,64,0,0,0,254,7,240,0,7,253,0,0,0,2,252,3,244,0,31,244,0,0,0,191,255,255,252,0,127,224,0,0,0,191,255,255,253,2,255,255,255,252,0,127,255,255,254,31,255,255,255,252,0,16,7,240,127,191,255,255,255,252,0,0,7,240,63,255,240,0,2,252,0,0,7,240,31,255,240,0,2,252,0,15,215,243,243,215,240,0,2,252,0,15,199,243,240,7,240,0,2,252,0,15,199,242,244,7,255,255,255,252,0,31,199,241,252,7,255,255,255,252,0,31,135,240,252,7,255,255,255,252,0,47,71,240,189,7,240,0,2,252,0,63,7,240,189,7,240,0,2,252,0,127,7,240,80,7,240,0,2,252,0,190,7,240,0,7,240,0,2,252,0,124,7,240,0,7,255,255,255,252,0,4,7,240,0,7,255,255,255,252,0,0,7,240,0,7,255,255,255,252,0,0,7,240,0,7,240,0,2,252,0,0,7,224,0,6,160,0,1,168,0, + // 0x7dda 線 + 218,125,38,38,124,40,1,252,0,5,0,0,0,0,185,0,0,0,0,15,224,0,0,0,255,64,0,0,0,15,208,0,0,1,254,0,0,0,0,47,192,0,0,3,252,0,0,0,0,63,64,0,127,255,255,255,254,0,0,127,3,64,127,255,255,255,254,0,0,253,11,240,127,255,255,255,254,0,14,252,15,224,127,0,0,0,254,0,63,244,47,192,127,0,0,0,254,0,127,224,63,64,127,0,0,0,254,0,31,240,254,0,127,170,170,170,254,0,7,249,252,0,127,255,255,255,254,0,2,255,244,0,127,255,255,255,254,0,0,255,224,0,127,0,0,0,254,0,0,63,203,192,127,0,0,0,254,0,0,63,79,208,127,0,0,0,254,0,0,254,7,240,127,255,255,255,254,0,2,252,3,244,127,255,255,255,254,0,191,255,255,252,127,255,255,255,254,0,191,255,255,252,0,0,191,0,0,0,127,255,255,254,0,0,191,0,4,0,16,7,240,127,0,0,191,64,46,0,0,7,240,59,255,253,191,192,191,192,5,7,240,82,255,255,191,194,255,64,15,215,243,242,255,253,191,235,253,0,15,199,243,240,1,252,191,255,240,0,15,199,241,248,2,252,191,255,192,0,31,199,240,252,3,248,191,254,0,0,31,135,240,252,11,240,191,191,0,0,47,71,240,188,31,208,191,63,192,0,63,7,240,188,63,192,191,31,240,0,63,7,240,0,255,64,191,11,252,0,190,7,240,7,254,0,191,3,255,64,189,7,240,31,248,0,191,0,255,224,8,7,240,11,224,0,191,0,63,192,0,7,240,3,64,191,254,0,11,64,0,7,240,0,0,63,253,0,0,0,0,7,224,0,0,63,228,0,0,0, + // 0x7de8 編 + 232,125,37,38,124,40,1,252,0,5,0,0,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,0,15,208,0,0,0,0,0,0,0,0,47,192,7,255,255,255,255,255,128,0,63,64,7,255,255,255,255,255,128,0,127,6,7,255,255,255,255,255,128,0,253,15,224,0,0,0,0,0,0,30,252,31,208,0,0,0,0,0,0,63,244,63,128,255,255,255,255,254,0,63,224,127,0,255,255,255,255,254,0,31,240,253,0,255,255,255,255,254,0,7,249,252,0,253,0,0,0,254,0,1,255,244,0,253,0,0,0,254,0,0,191,225,0,253,0,0,0,254,0,0,63,223,128,253,0,0,0,254,0,0,63,79,192,255,255,255,255,254,0,0,254,11,208,255,255,255,255,254,0,1,252,7,240,255,255,255,255,254,0,191,255,255,244,253,0,0,0,0,0,191,255,255,248,253,0,0,0,0,0,127,255,255,252,255,255,255,255,255,64,16,11,224,253,255,255,255,255,255,128,0,11,224,184,255,255,255,255,255,128,5,11,224,64,255,209,240,188,47,128,15,203,235,193,255,209,240,188,47,128,15,203,231,209,255,209,240,188,47,128,15,203,227,242,255,209,240,188,47,128,31,139,227,243,255,251,254,254,191,128,31,75,225,247,251,255,255,255,255,128,47,75,225,255,247,255,255,255,255,128,63,11,224,255,231,209,240,188,47,128,127,11,224,159,215,209,240,188,47,128,189,11,224,31,199,209,240,188,47,128,124,11,224,63,199,209,240,188,47,128,0,11,224,127,71,209,240,188,47,128,0,11,224,191,7,209,240,190,255,64,0,11,224,29,7,209,240,188,255,0,0,11,208,0,7,208,160,104,249,0, + // 0x7e2e 縮 + 46,126,37,38,124,40,1,252,0,6,0,0,0,1,253,0,0,0,0,15,224,0,0,1,253,0,0,0,0,15,208,0,0,1,253,0,0,0,0,47,192,0,0,1,253,0,0,0,0,63,64,7,255,255,255,255,255,128,0,127,7,71,255,255,255,255,255,128,0,252,15,231,255,255,255,255,255,128,30,248,31,199,240,0,0,0,47,128,63,240,63,135,240,0,0,0,47,128,63,224,127,7,240,0,0,0,47,128,15,240,253,7,243,224,0,0,21,64,7,254,252,0,7,255,255,255,255,192,1,255,240,0,15,239,255,255,255,192,0,191,226,64,15,223,255,255,255,192,0,63,207,192,31,192,2,252,0,0,0,63,75,208,47,128,2,252,0,0,0,254,7,240,63,64,3,248,0,0,1,252,3,240,127,0,3,244,0,0,191,255,255,244,255,3,255,255,255,0,191,255,255,253,255,3,255,255,255,0,127,255,255,255,255,3,255,255,255,0,16,11,224,191,255,3,240,0,63,0,0,11,224,31,255,3,240,0,63,0,0,11,224,15,127,3,240,0,63,0,15,203,231,193,63,3,240,0,63,0,15,203,231,208,63,3,255,255,255,0,15,203,227,224,63,3,255,255,255,0,31,139,227,240,63,3,255,255,255,0,31,75,226,244,63,3,240,0,63,0,47,75,225,248,63,3,240,0,63,0,63,11,224,248,63,3,240,0,63,0,127,11,224,144,63,3,240,0,63,0,189,11,224,0,63,3,240,0,63,0,124,11,224,0,63,3,255,255,255,0,4,11,224,0,63,3,255,255,255,0,0,11,224,0,63,3,255,255,255,0,0,11,224,0,63,3,240,0,63,0,0,11,208,0,42,2,160,0,21,0, + // 0x7e3d 總 + 61,126,38,38,124,40,1,252,0,5,0,0,0,0,185,0,0,0,0,15,224,0,0,0,255,0,0,0,0,15,208,0,0,0,255,0,0,0,0,47,192,0,0,2,253,0,0,0,0,63,64,0,255,255,255,255,255,0,0,127,6,0,255,255,255,255,255,0,0,253,15,224,255,255,255,255,255,0,30,252,31,208,252,0,124,0,63,0,63,244,63,128,252,0,252,0,63,0,63,224,127,0,252,1,255,254,63,0,31,240,253,0,252,183,255,254,63,0,7,249,252,0,252,255,192,188,63,0,1,255,244,0,252,63,244,248,63,0,0,191,225,0,252,190,255,240,63,0,0,63,223,128,253,244,47,224,63,0,0,63,79,192,252,16,63,248,63,0,0,254,11,208,252,1,253,190,63,0,1,252,7,240,252,31,240,40,63,0,191,255,255,244,252,31,128,0,63,0,191,255,255,248,255,255,255,255,255,0,127,255,255,252,255,255,255,255,255,0,16,11,224,253,255,255,255,255,255,0,0,11,224,184,0,11,192,0,0,0,0,11,224,128,0,31,248,0,0,0,15,139,235,192,0,7,255,0,0,0,15,203,231,224,0,0,255,192,0,0,15,203,227,240,16,127,47,224,176,0,31,139,226,240,189,127,11,131,244,0,31,139,225,244,253,127,1,2,252,0,47,75,225,248,252,127,0,0,254,0,63,11,224,248,252,127,0,0,191,0,63,11,224,145,248,127,0,16,63,64,190,11,224,3,244,127,0,61,47,192,124,11,224,7,240,127,0,63,15,192,4,11,224,15,224,127,0,63,15,224,0,11,224,31,192,63,255,254,7,224,0,11,224,2,64,63,255,253,2,0,0,11,208,0,0,11,255,244,0,0, + // 0x7e7c 繼 + 124,126,37,38,124,40,1,252,0,20,0,10,128,0,0,0,0,0,0,63,64,31,192,56,0,15,64,0,0,63,64,31,192,124,0,15,64,0,0,127,0,31,192,248,0,47,0,0,0,189,0,31,197,240,241,124,45,0,0,252,20,31,207,210,243,248,125,0,1,248,63,95,207,195,211,244,248,0,31,240,127,31,195,255,128,254,240,0,63,224,254,31,192,255,0,63,192,0,63,193,252,31,192,125,208,31,168,0,31,227,244,31,192,245,240,62,61,0,11,251,240,31,194,240,244,188,31,0,2,255,208,31,223,255,255,255,255,128,0,255,128,31,207,255,255,255,255,192,0,127,189,31,192,0,16,0,2,64,0,189,127,31,255,255,255,255,255,192,1,252,63,95,255,255,255,255,255,192,3,240,47,159,255,255,255,255,255,192,191,255,255,223,192,52,0,10,64,0,191,255,255,239,192,124,0,15,128,0,191,255,255,255,192,184,0,31,0,0,16,31,195,255,192,240,224,61,29,0,0,31,130,95,207,225,243,252,62,0,5,31,129,31,207,195,211,244,188,0,15,159,159,31,199,235,192,253,240,0,31,159,143,159,193,255,0,127,224,0,31,95,143,223,192,190,64,31,228,0,47,95,139,239,192,186,224,31,124,0,47,31,135,255,193,240,240,61,47,0,63,31,131,255,203,250,254,254,175,64,63,31,131,255,223,255,255,255,255,192,126,31,129,31,206,148,47,229,3,192,189,31,128,31,192,0,4,0,1,0,44,31,128,31,255,255,255,255,255,192,0,31,128,31,255,255,255,255,255,192,0,31,128,31,255,255,255,255,255,192,0,31,128,31,192,0,0,0,0,0,0,31,128,10,128,0,0,0,0,0, + // 0x7e8c 續 + 140,126,37,38,124,40,1,252,0,5,0,0,0,0,253,0,0,0,0,15,224,0,0,1,253,0,0,0,0,31,192,5,85,86,254,85,85,64,0,47,128,11,255,255,255,255,255,192,0,63,0,11,255,255,255,255,255,192,0,190,10,64,0,1,253,0,0,0,0,252,15,224,21,85,254,85,84,0,14,248,47,192,255,255,255,255,253,0,63,240,63,64,255,255,255,255,253,0,63,208,191,0,0,0,0,0,0,0,31,240,253,2,255,255,255,255,255,0,7,250,248,2,255,255,255,255,255,0,2,255,240,2,244,15,71,208,63,0,0,255,210,2,244,127,3,250,191,0,0,63,239,66,251,248,2,255,255,0,0,63,15,194,245,128,0,0,63,0,0,253,11,210,255,255,255,255,255,0,1,252,7,242,255,255,255,255,255,0,127,255,255,240,0,0,0,0,0,0,127,255,255,248,0,0,0,0,0,0,63,255,255,252,127,255,255,255,252,0,20,11,224,252,127,255,255,255,252,0,0,11,224,80,127,0,0,1,252,0,5,11,225,128,127,170,170,171,252,0,15,203,235,192,127,255,255,255,252,0,15,203,231,224,127,0,0,1,252,0,15,203,227,240,127,0,0,1,252,0,31,139,226,240,127,255,255,255,252,0,47,75,225,244,127,170,170,171,252,0,63,75,224,248,127,0,0,1,252,0,63,11,224,128,127,255,255,255,252,0,127,11,224,0,127,255,255,255,252,0,189,11,224,0,1,244,0,189,0,0,124,11,224,0,31,254,2,255,208,0,0,11,224,6,255,244,0,127,253,0,0,11,224,63,255,128,0,7,255,192,0,11,224,31,244,0,0,0,191,64,0,7,208,6,0,0,0,0,8,0, + // 0x7ea2 红 + 162,126,37,36,104,40,1,254,0,0,144,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,2,254,0,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,0,7,248,0,255,255,255,255,255,64,0,15,240,0,255,255,255,255,255,64,0,31,224,0,255,255,255,255,255,64,0,63,192,0,170,170,255,234,170,0,0,191,128,0,0,0,255,0,0,0,0,255,0,244,0,0,255,0,0,0,3,253,2,254,0,0,255,0,0,0,7,248,3,253,0,0,255,0,0,0,15,240,11,248,0,0,255,0,0,0,127,255,255,240,0,0,255,0,0,0,127,255,255,208,0,0,255,0,0,0,63,255,255,128,0,0,255,0,0,0,47,167,255,0,0,0,255,0,0,0,0,7,252,0,0,0,255,0,0,0,0,15,244,0,0,0,255,0,0,0,0,63,224,0,0,0,255,0,0,0,0,191,128,0,0,0,255,0,0,0,2,255,0,88,0,0,255,0,0,0,11,254,191,252,0,0,255,0,0,0,63,255,255,252,0,0,255,0,0,0,63,255,255,252,0,0,255,0,0,0,63,255,233,0,0,0,255,0,0,0,31,144,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,20,0,0,255,0,0,0,0,0,107,248,0,0,255,0,0,0,0,111,255,253,170,170,255,234,170,128,127,255,255,254,255,255,255,255,255,192,127,255,255,146,255,255,255,255,255,192,63,254,64,2,255,255,255,255,255,192,58,64,0,0,0,0,0,0,0,0, + // 0x7f6e 置 + 110,127,35,36,68,40,3,252,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,31,234,175,250,170,254,170,191,128,31,192,7,240,0,252,0,63,128,31,192,7,240,0,252,0,63,128,31,234,171,250,170,254,170,191,128,31,255,255,255,255,255,255,255,128,31,255,255,255,255,255,255,255,128,0,0,0,2,253,0,0,0,0,0,0,0,2,252,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,0,0,0,3,244,0,0,0,0,0,0,0,7,244,0,0,0,0,5,80,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,2,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,1,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,63,128,0,0,1,252,0,15,224,63,128,0,0,1,252,0,15,224,63,255,255,255,255,252,0,15,224,63,255,255,255,255,252,0,15,224,0,0,0,0,0,0,0,15,224,0,0,0,0,0,0,0,15,255,255,255,255,255,255,255,252,15,255,255,255,255,255,255,255,252,15,255,255,255,255,255,255,255,252,15,224,0,0,0,0,0,0,0,10,144,0,0,0,0,0,0,0, + // 0x7f72 署 + 114,127,37,36,104,40,1,252,1,255,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,255,248,0,1,254,170,255,170,175,234,171,248,0,1,252,0,127,0,15,192,3,248,0,1,252,0,127,0,15,192,3,248,0,1,252,0,127,0,15,192,3,248,0,1,255,255,255,255,255,255,255,248,0,1,255,255,255,255,255,255,255,248,0,1,170,170,170,255,170,170,170,164,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,2,208,0,0,47,255,255,255,255,255,15,248,0,0,47,255,255,255,255,255,127,240,0,0,31,255,255,255,255,255,255,192,0,0,0,0,0,254,0,15,254,0,0,0,0,0,0,254,0,191,240,0,0,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,47,255,255,255,255,255,255,255,255,128,0,0,0,1,255,254,0,0,0,0,0,0,0,111,255,240,0,0,0,0,0,0,11,255,255,64,0,0,0,0,0,6,255,255,255,255,255,255,192,0,1,255,255,255,255,255,255,255,192,0,127,255,255,234,170,170,170,191,192,0,63,255,255,192,0,0,0,31,192,0,31,248,31,192,0,0,0,31,192,0,9,0,31,255,255,255,255,255,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,213,85,85,85,111,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,255,255,255,255,255,192,0,0,0,31,234,170,170,170,191,192,0,0,0,31,192,0,0,0,26,128,0, + // 0x8070 聰 + 112,128,38,38,124,40,1,252,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,191,64,0,0,63,255,255,255,128,0,255,0,0,0,63,255,255,255,128,0,254,0,0,0,63,255,255,255,191,255,255,255,255,0,23,249,87,249,127,255,255,255,255,0,2,248,3,244,63,255,255,255,255,0,2,248,3,244,63,0,60,0,63,0,2,248,3,244,63,0,124,0,63,0,2,248,3,244,63,0,255,253,63,0,2,255,255,244,63,47,255,252,63,0,2,255,255,244,63,63,208,188,63,0,2,255,255,244,63,47,248,244,63,0,2,248,3,244,63,125,191,224,63,0,2,248,3,244,63,20,31,208,63,0,2,248,3,244,63,0,63,244,63,0,2,248,3,244,63,1,253,188,63,0,2,248,3,244,63,15,240,32,63,0,2,248,3,244,63,11,64,0,63,0,2,255,255,244,63,255,255,255,255,0,2,255,255,244,63,255,255,255,255,0,2,255,255,244,63,255,255,255,255,0,2,248,3,244,0,3,252,0,0,0,2,248,3,244,0,7,255,128,0,0,2,248,3,244,0,0,191,224,0,0,2,248,3,244,0,26,79,244,0,0,2,248,3,244,9,47,130,209,176,0,2,250,191,244,47,175,128,67,248,0,111,255,255,244,63,111,128,1,252,0,127,255,255,244,63,47,128,0,254,0,63,255,151,244,127,47,128,0,127,0,58,64,3,244,254,47,128,30,63,128,0,0,3,245,252,47,128,31,159,192,0,0,3,251,248,47,128,47,79,208,0,0,3,251,240,31,255,255,15,224,0,0,3,244,144,15,255,255,6,0,0,0,3,244,0,7,255,248,0,0,0,0,2,160,0,0,0,0,0,0, + // 0x81ea 自 + 234,129,28,38,10,40,6,252,0,0,1,233,0,0,0,0,0,2,255,0,0,0,0,0,3,253,0,0,0,0,0,3,252,0,0,0,0,0,7,248,0,0,0,106,170,175,250,170,170,170,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,85,85,85,85,85,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,0,0,0,0,0,191,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,255,255,255,255,255,255,191,85,85,85,85,85,255,191,0,0,0,0,0,191,191,0,0,0,0,0,106, + // 0x85cd 藍 + 205,133,36,37,77,40,2,253,0,0,26,128,0,2,164,0,0,0,0,47,192,0,7,244,0,0,0,0,47,192,0,7,244,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,47,192,0,7,244,0,0,0,0,47,192,0,7,244,0,0,5,85,85,85,80,7,144,0,0,15,255,255,255,248,15,240,0,0,15,255,255,255,248,15,208,0,0,15,192,63,64,0,47,192,0,0,15,208,63,64,0,63,255,255,252,15,255,255,255,224,255,255,255,252,15,255,255,255,225,255,255,255,252,15,192,0,7,231,252,0,0,0,15,192,0,7,239,240,0,0,0,15,255,255,255,226,208,0,0,0,15,255,255,255,224,0,0,0,0,15,208,63,64,0,47,255,255,244,15,192,63,64,0,47,255,255,244,15,229,127,149,84,47,255,255,244,15,255,255,255,252,0,0,0,0,15,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,126,0,126,0,191,0,0,191,0,126,0,126,0,191,0,0,191,0,126,0,126,0,191,0,0,191,0,126,0,126,0,191,0,0,191,0,126,0,126,0,191,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0, + // 0x884c 行 + 76,136,37,38,124,40,1,252,0,0,40,0,0,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,0,1,255,64,42,170,170,170,170,0,0,7,254,0,127,255,255,255,255,0,0,31,248,0,127,255,255,255,255,0,0,127,224,0,127,255,255,255,255,0,2,255,192,0,0,0,0,0,0,0,11,255,0,0,0,0,0,0,0,0,63,248,0,0,0,0,0,0,0,0,63,224,7,128,0,0,0,0,0,0,31,128,15,244,0,0,0,0,0,0,13,0,47,240,0,0,0,0,0,0,0,0,63,208,0,0,0,0,0,0,0,0,255,128,0,0,0,0,0,0,0,3,255,3,255,255,255,255,255,192,0,11,252,3,255,255,255,255,255,192,0,47,244,3,255,255,255,255,255,192,0,191,244,2,170,170,171,254,170,128,2,255,244,0,0,0,1,253,0,0,11,255,244,0,0,0,1,253,0,0,63,255,244,0,0,0,1,253,0,0,191,251,244,0,0,0,1,253,0,0,63,199,244,0,0,0,1,253,0,0,14,7,244,0,0,0,1,253,0,0,4,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,1,253,0,0,0,7,244,0,0,0,2,253,0,0,0,7,244,0,0,63,255,252,0,0,0,7,244,0,0,63,255,252,0,0,0,7,244,0,0,47,255,244,0,0,0,7,240,0,0,10,169,64,0,0, + // 0x8868 表 + 104,136,38,38,124,40,1,252,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,3,255,255,255,255,255,255,255,252,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,63,255,255,255,255,255,255,224,0,0,63,255,255,255,255,255,255,224,0,0,63,255,255,255,255,255,255,224,0,0,0,0,0,63,192,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,128,0,0,0,0,0,0,0,0,63,192,0,0,0,0,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,31,255,255,255,255,255,255,255,255,64,0,0,0,15,255,252,0,0,0,0,0,0,0,127,241,253,0,0,144,0,0,0,7,255,192,254,0,3,248,0,0,0,47,254,0,191,0,31,253,0,0,2,255,244,0,63,128,191,240,0,0,127,255,224,0,47,195,255,128,0,27,255,255,224,0,31,255,253,0,0,127,255,223,224,0,15,255,224,0,0,47,248,15,224,0,3,255,0,0,0,15,128,15,224,0,2,255,0,0,0,0,0,15,224,0,0,255,192,0,0,0,0,15,224,0,108,63,244,0,0,0,0,15,224,111,252,31,254,0,0,0,0,15,255,255,253,7,255,208,0,0,1,191,255,255,248,0,255,253,0,0,127,255,255,249,0,0,63,255,208,0,63,255,249,0,0,0,7,255,128,0,63,249,0,0,0,0,0,191,0,0,25,0,0,0,0,0,0,5,0, + // 0x88ab 被 + 171,136,38,38,124,40,1,252,0,10,144,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,0,0,63,64,0,0,0,15,224,0,127,255,255,255,255,128,21,95,245,64,127,255,255,255,255,192,63,255,255,244,127,255,255,255,255,192,63,255,255,248,127,85,127,149,127,128,63,255,255,240,127,0,63,64,63,64,0,0,15,224,127,0,63,64,127,0,0,0,31,192,127,0,63,64,191,0,0,0,63,128,127,0,63,64,253,0,0,0,191,0,127,0,63,64,108,0,0,1,253,24,127,0,63,64,0,0,0,3,252,63,191,255,255,255,253,0,0,15,244,189,191,255,255,255,254,0,0,63,253,248,191,255,255,255,253,0,0,191,255,240,191,254,85,87,252,0,2,255,255,192,191,254,0,3,252,0,15,255,255,208,190,127,0,11,244,0,63,255,231,244,254,63,128,15,240,0,191,223,226,252,254,47,192,31,224,0,63,79,224,248,253,31,224,63,192,0,45,15,224,96,253,15,244,191,128,0,0,15,224,1,252,3,253,255,0,0,0,15,224,2,252,2,255,254,0,0,0,15,224,3,248,0,255,252,0,0,0,15,224,3,244,0,127,240,0,0,0,15,224,7,240,0,191,248,0,0,0,15,224,15,240,3,255,255,0,0,0,15,224,31,224,31,255,255,208,0,0,15,224,63,193,255,244,191,254,0,0,15,224,127,143,255,192,31,255,208,0,15,224,255,15,254,0,3,255,192,0,15,224,62,3,240,0,0,127,64,0,11,224,4,1,64,0,0,6,0, + // 0x88c5 装 + 197,136,36,38,86,40,2,252,0,0,191,0,0,3,244,0,0,0,0,191,0,0,3,244,0,0,9,0,191,0,0,3,244,0,0,47,128,191,0,0,3,244,0,0,63,240,191,0,0,3,244,0,0,11,252,191,0,0,7,248,0,0,2,253,191,15,255,255,255,255,255,0,116,191,15,255,255,255,255,255,0,0,191,15,255,255,255,255,255,0,0,191,0,0,3,244,0,0,0,0,191,0,0,3,244,0,0,0,10,191,0,0,3,244,0,0,0,191,191,0,0,3,244,0,0,11,255,191,0,0,3,244,0,0,255,254,191,0,0,7,248,0,0,255,224,191,3,255,255,255,255,248,190,0,191,3,255,255,255,255,248,80,0,191,3,255,255,255,255,248,0,0,191,0,0,0,0,0,0,0,0,106,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,1,255,207,224,0,6,0,0,0,31,254,7,244,0,47,192,0,2,255,240,2,252,1,255,208,1,191,255,128,0,255,15,254,0,191,255,255,64,0,127,255,244,0,191,254,127,64,0,31,255,64,0,63,128,63,64,0,11,254,0,0,0,0,63,64,90,194,255,224,0,0,0,127,255,255,192,127,254,64,0,191,255,255,255,192,11,255,249,0,191,255,255,249,64,1,255,255,0,127,254,80,0,0,0,27,253,0,20,0,0,0,0,0,0,104, + // 0x88dd 裝 + 221,136,36,38,86,40,2,252,5,64,15,224,0,2,168,0,0,15,208,15,224,0,2,252,0,0,15,208,15,224,0,2,252,0,0,15,208,15,224,0,2,252,0,0,15,208,15,224,0,2,252,0,0,15,255,255,224,0,2,252,0,0,15,255,255,227,255,255,255,255,253,15,255,255,227,255,255,255,255,253,15,208,15,227,255,255,255,255,253,0,0,15,224,0,2,252,0,0,0,0,15,224,0,2,252,0,0,255,255,255,224,0,2,252,0,0,255,255,255,224,0,2,252,0,0,191,255,255,224,0,2,252,0,0,3,244,15,224,0,2,252,0,0,7,240,15,224,255,255,255,255,248,15,224,15,224,255,255,255,255,248,47,208,15,224,255,255,255,255,248,255,128,15,224,0,0,0,0,0,255,0,15,224,255,0,0,0,0,56,0,5,64,255,0,0,0,0,0,0,0,0,255,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,2,255,143,224,0,6,0,0,0,47,253,7,244,0,47,192,0,7,255,224,2,252,1,255,208,6,255,255,64,0,255,15,254,0,255,255,255,64,0,127,255,244,0,127,249,63,64,0,31,255,64,0,62,64,63,64,0,7,254,0,0,0,0,63,65,107,209,255,224,0,0,0,127,255,255,208,127,254,64,0,255,255,255,255,208,11,255,249,0,255,255,255,164,0,1,255,255,0,255,233,0,0,0,0,27,253,0,0,0,0,0,0,0,0,104, + // 0x8907 複 + 7,137,38,38,124,40,1,252,0,10,128,0,2,148,0,0,0,0,0,15,192,0,3,248,0,0,0,0,0,15,192,0,11,240,0,0,0,0,0,15,192,0,15,224,0,0,0,0,0,15,192,0,47,255,255,255,255,192,0,15,192,0,63,255,255,255,255,192,0,15,192,0,255,255,255,255,255,192,5,95,213,2,254,0,0,0,0,0,63,255,255,215,252,0,0,0,0,0,63,255,255,255,249,85,85,85,84,0,63,255,255,255,255,255,255,255,248,0,0,0,47,199,239,255,255,255,248,0,0,0,63,64,47,192,0,3,248,0,0,0,191,0,47,192,0,3,248,0,0,0,254,0,47,255,255,255,248,0,0,2,252,32,47,255,255,255,248,0,0,3,244,124,47,213,85,87,248,0,0,15,240,252,47,192,0,3,248,0,0,31,242,244,47,192,0,3,248,0,0,63,255,224,47,255,255,255,248,0,0,255,255,192,47,255,255,255,248,0,2,255,255,128,5,111,245,85,84,0,7,255,239,192,0,63,192,0,0,0,31,255,219,240,0,255,128,0,0,0,127,239,211,244,3,255,255,255,224,0,127,143,209,224,15,255,255,255,248,0,62,15,208,128,127,255,255,255,240,0,24,15,208,2,255,244,0,63,208,0,0,15,208,31,255,253,0,191,128,0,0,15,208,15,240,255,131,255,0,0,0,15,208,3,128,63,255,248,0,0,0,15,208,0,0,15,255,224,0,0,0,15,208,0,0,47,255,228,0,0,0,15,208,0,11,255,255,255,144,0,0,15,208,27,255,255,219,255,255,144,0,15,208,47,255,248,0,191,255,192,0,15,208,15,254,64,0,7,255,64,0,15,192,6,64,0,0,0,26,0, + // 0x89d2 角 + 210,137,34,39,95,40,1,251,0,0,0,164,0,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,3,253,0,0,0,0,0,0,0,15,255,255,255,224,0,0,0,0,31,255,255,255,252,0,0,0,0,63,255,255,255,244,0,0,0,0,255,128,0,31,240,0,0,0,3,255,0,0,63,192,0,0,0,15,252,0,0,191,64,0,0,0,47,249,85,85,255,85,85,80,0,255,255,255,255,255,255,255,240,7,255,255,255,255,255,255,255,240,31,255,255,255,255,255,255,255,240,15,251,240,0,15,224,0,11,240,3,199,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,7,244,0,15,240,0,15,240,0,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,7,255,255,255,255,255,255,240,0,7,240,0,15,224,0,11,240,0,7,240,0,15,224,0,11,240,0,11,240,0,15,224,0,11,240,0,11,240,0,15,224,0,11,240,0,15,245,85,95,245,85,95,240,0,15,255,255,255,255,255,255,240,0,31,255,255,255,255,255,255,240,0,47,255,255,255,255,255,255,240,0,63,192,0,0,0,0,11,240,0,127,64,0,0,0,0,11,240,0,255,0,0,0,0,0,11,240,2,254,0,0,0,0,0,11,240,11,252,0,0,0,0,0,15,240,47,244,0,0,0,6,149,111,240,127,224,0,0,0,7,255,255,224,47,192,0,0,0,3,255,255,192,10,0,0,0,0,2,255,249,0,0,0,0,0,0,0,0,0,0, + // 0x8a08 計 + 8,138,38,38,124,40,1,252,0,0,0,0,0,0,26,128,0,0,0,0,0,0,0,0,47,192,0,0,7,255,255,252,0,0,47,192,0,0,7,255,255,252,0,0,47,192,0,0,7,255,255,252,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,127,255,255,255,128,0,47,192,0,0,127,255,255,255,128,0,47,192,0,0,127,255,255,255,128,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,7,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,255,255,252,191,255,255,255,255,224,0,0,0,0,191,255,255,255,255,224,0,0,0,0,191,255,255,255,255,224,0,0,0,0,106,170,191,234,170,160,11,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,7,255,255,252,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,224,1,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,255,255,252,0,0,47,192,0,0,11,224,0,0,0,0,47,192,0,0,6,144,0,0,0,0,47,192,0,0, + // 0x8a0a 訊 + 10,138,39,37,114,40,1,251,7,255,255,240,255,255,255,255,208,0,7,255,255,240,255,255,255,255,208,0,7,255,255,240,255,255,255,255,208,0,0,0,0,0,170,255,170,175,208,0,0,0,0,0,0,191,0,31,208,0,127,255,255,254,0,191,0,31,208,0,127,255,255,254,0,191,0,31,208,0,127,255,255,253,0,191,0,31,208,0,0,0,0,0,0,191,0,31,208,0,0,0,0,0,0,191,0,31,208,0,7,255,255,240,0,191,0,31,208,0,11,255,255,240,0,191,0,31,208,0,11,255,255,240,0,191,0,31,208,0,0,0,0,0,0,191,0,31,208,0,0,0,0,1,255,255,255,95,208,0,0,0,0,1,255,255,255,95,208,0,11,255,255,241,255,255,255,95,208,0,11,255,255,240,85,255,85,31,208,0,11,255,255,240,0,254,0,31,208,0,0,0,0,0,0,254,0,31,208,0,0,0,0,0,0,253,0,15,208,0,0,0,0,0,0,253,0,15,208,0,11,255,255,240,1,252,0,15,208,0,11,255,255,240,2,252,0,15,224,0,11,255,255,240,3,248,0,15,224,0,11,224,3,240,3,244,0,15,224,0,11,224,3,240,11,240,0,15,240,64,11,224,3,240,15,240,0,11,240,208,11,224,3,240,47,224,0,7,240,240,11,224,3,240,63,192,0,7,244,244,11,224,3,240,191,128,0,3,248,240,11,255,255,241,255,0,0,3,253,240,11,255,255,247,253,0,0,2,255,240,11,255,255,255,252,0,0,0,255,224,11,224,0,3,240,0,0,0,191,192,6,144,0,0,192,0,0,0,47,64,0,0,0,0,0,0,0,0,0,0, + // 0x8a18 記 + 24,138,38,36,104,40,1,252,7,255,255,252,6,170,170,170,168,0,7,255,255,252,11,255,255,255,253,0,7,255,255,252,11,255,255,255,253,0,0,0,0,0,11,255,255,255,253,0,0,0,0,0,0,0,0,1,253,0,127,255,255,255,128,0,0,1,253,0,127,255,255,255,128,0,0,1,253,0,127,255,255,255,128,0,0,1,253,0,0,0,0,0,0,0,0,1,253,0,0,0,0,0,0,0,0,1,253,0,7,255,255,252,0,0,0,1,253,0,11,255,255,252,0,0,0,1,253,0,11,255,255,252,0,0,0,1,253,0,0,0,0,0,2,170,170,170,253,0,0,0,0,0,7,255,255,255,253,0,0,0,0,0,7,255,255,255,253,0,11,255,255,252,7,255,255,255,253,0,11,255,255,252,7,244,0,1,253,0,7,255,255,252,7,244,0,1,253,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,11,255,255,252,7,244,0,0,0,0,11,255,255,252,7,244,0,0,0,0,11,255,255,252,7,244,0,0,0,0,11,224,1,252,7,244,0,0,0,0,11,224,1,252,7,244,0,0,14,0,11,224,1,252,7,244,0,0,15,208,11,224,1,252,7,244,0,0,15,208,11,224,1,252,7,244,0,0,31,192,11,224,1,252,7,244,0,0,47,192,11,255,255,252,7,248,0,0,127,192,11,255,255,252,3,255,255,255,255,128,11,255,255,252,2,255,255,255,255,0,11,224,0,0,0,255,255,255,253,0,6,144,0,0,0,6,170,170,80,0, + // 0x8a2d 設 + 45,138,38,37,114,40,1,252,0,0,0,0,1,85,85,84,0,0,7,255,255,244,7,255,255,253,0,0,7,255,255,244,7,255,255,253,0,0,7,255,255,244,7,255,255,253,0,0,0,0,0,0,7,240,0,253,0,0,0,0,0,0,7,240,0,253,0,0,127,255,255,255,7,240,0,253,0,0,127,255,255,255,11,240,0,253,6,0,127,255,255,255,15,240,0,253,11,208,0,0,0,0,15,224,0,254,11,208,0,0,0,0,47,208,0,254,15,208,7,255,255,244,127,192,0,255,255,192,11,255,255,245,255,128,0,191,255,192,11,255,255,255,255,0,0,63,255,0,0,0,0,3,253,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,101,85,85,85,80,0,11,255,255,244,191,255,255,255,252,0,11,255,255,244,191,255,255,255,252,0,7,255,255,244,191,255,255,255,252,0,0,0,0,0,0,160,0,11,244,0,0,0,0,0,11,240,0,15,240,0,0,0,0,0,7,244,0,31,224,0,11,255,255,244,3,252,0,63,192,0,11,255,255,244,1,254,0,127,192,0,11,255,255,244,0,255,65,255,0,0,11,224,3,244,0,63,211,254,0,0,11,224,3,244,0,31,255,252,0,0,11,224,3,244,0,11,255,240,0,0,11,224,3,244,0,3,255,208,0,0,11,224,3,244,0,11,255,224,0,0,11,224,3,244,0,127,255,254,0,0,11,255,255,244,7,255,251,255,208,0,11,255,255,249,255,255,65,255,255,64,11,255,255,251,255,248,0,47,255,192,11,224,0,1,255,128,0,2,255,64,6,144,0,0,164,0,0,0,26,0, + // 0x8a66 試 + 102,138,38,38,124,40,1,252,0,0,0,0,0,0,1,168,0,0,0,0,0,0,0,0,2,252,180,0,7,255,255,224,0,0,2,253,253,0,7,255,255,224,0,0,2,252,191,0,7,255,255,224,0,0,2,252,63,192,0,0,0,0,0,0,2,252,15,208,0,0,0,0,0,0,2,252,11,64,127,255,255,252,0,0,2,252,0,0,127,255,255,253,255,255,255,255,255,192,127,255,255,254,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192,0,0,0,0,85,85,86,253,85,64,11,255,255,240,0,0,1,252,0,0,11,255,255,240,0,0,1,252,0,0,11,255,255,240,0,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,0,0,1,255,255,245,252,0,0,11,255,255,241,255,255,244,252,0,0,11,255,255,241,255,255,244,252,0,0,11,255,255,240,2,252,0,253,0,0,0,0,0,0,2,252,0,253,0,0,0,0,0,0,2,252,0,253,0,0,0,0,0,0,2,252,0,254,0,0,11,255,255,240,2,252,0,254,0,0,11,255,255,240,2,252,0,191,0,0,11,255,255,240,2,252,0,191,0,0,11,208,7,240,2,252,0,127,0,0,11,208,7,240,2,252,0,63,2,0,11,208,7,240,2,252,5,63,67,208,11,208,7,240,2,255,254,63,131,240,11,208,7,241,111,255,254,47,195,240,11,208,7,243,255,255,253,31,231,224,11,255,255,243,255,250,64,15,255,208,11,255,255,242,249,0,0,11,255,192,11,255,255,240,0,0,0,3,255,128,11,208,0,0,0,0,0,0,255,0,6,128,0,0,0,0,0,0,20,0, + // 0x8a8d 認 + 141,138,38,36,104,40,1,252,7,255,255,224,127,255,255,255,255,0,7,255,255,224,127,255,255,255,255,0,7,255,255,224,127,255,255,255,255,0,0,0,0,0,0,3,244,0,191,0,0,0,0,0,0,3,240,0,191,0,127,255,255,252,30,7,240,0,191,0,127,255,255,252,63,255,224,0,191,0,127,255,255,252,127,255,208,0,254,0,0,0,0,0,7,255,244,0,254,0,0,0,0,0,0,63,255,64,254,0,11,255,255,224,0,191,255,208,253,0,11,255,255,224,1,255,127,192,253,0,11,255,255,224,3,252,7,1,252,0,0,0,0,0,31,244,1,71,252,0,0,0,0,0,191,224,7,255,252,0,0,0,0,3,255,128,3,255,244,0,11,255,255,224,253,3,131,255,208,0,11,255,255,224,96,15,244,0,0,0,11,255,255,224,0,15,254,0,0,0,0,0,0,0,0,2,255,192,0,0,0,0,0,0,0,0,63,240,0,0,0,0,0,0,0,42,15,244,0,0,11,255,255,240,0,127,2,224,160,0,11,255,255,240,16,127,0,71,244,0,11,255,255,240,126,127,0,3,252,0,11,208,7,240,190,127,0,1,253,0,11,208,7,240,254,127,0,0,255,0,11,208,7,240,253,127,0,0,127,64,11,208,7,240,252,127,0,45,63,192,11,208,7,242,252,127,0,47,95,208,11,208,7,243,244,127,0,47,79,224,11,255,255,251,240,63,64,63,15,240,11,255,255,251,224,63,255,255,11,64,11,255,255,241,192,63,255,254,0,0,11,208,0,0,0,31,255,252,0,0,6,128,0,0,0,0,0,0,0,0, + // 0x8aa4 誤 + 164,138,38,37,114,40,1,252,0,0,0,0,0,11,255,255,253,0,7,255,255,192,0,11,255,255,253,0,7,255,255,192,0,11,255,255,253,0,7,255,255,192,20,11,224,0,253,0,0,0,0,0,190,11,224,0,253,0,0,0,0,0,190,11,224,0,253,0,127,255,255,244,190,11,224,0,253,0,127,255,255,244,190,11,224,0,253,0,127,255,255,244,190,11,224,0,253,0,0,0,0,0,190,11,255,255,253,0,0,0,0,0,190,11,255,255,253,0,11,255,255,192,190,11,255,255,253,0,11,255,255,192,190,0,0,0,0,0,11,255,255,192,190,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,191,255,255,255,244,0,0,0,0,0,191,255,255,255,244,0,11,255,255,192,191,255,255,255,244,0,11,255,255,192,190,0,0,7,244,0,11,255,255,192,190,0,0,7,244,0,0,0,0,0,85,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,0,0,0,0,0,0,0,7,244,0,11,255,255,199,255,255,255,255,255,208,11,255,255,199,255,255,255,255,255,208,11,255,255,199,255,255,255,255,255,208,11,208,15,193,85,85,85,85,85,64,11,208,15,192,0,96,0,5,0,0,11,208,15,192,0,255,0,191,64,0,11,208,15,192,3,254,0,127,224,0,11,208,15,192,15,252,0,15,248,0,11,255,255,192,127,240,0,7,253,0,11,255,255,193,255,192,0,1,255,64,11,255,255,219,255,0,0,0,191,192,11,208,0,11,252,0,0,0,63,208,11,208,0,2,224,0,0,0,15,0,0,0,0,0,64,0,0,0,4,0, + // 0x8abf 調 + 191,138,36,36,68,40,1,252,11,255,255,66,255,255,255,255,255,11,255,255,66,255,255,255,255,255,7,255,255,66,255,255,255,255,255,0,0,0,2,248,0,0,0,63,0,0,0,2,248,0,252,0,63,127,255,255,226,248,0,252,0,63,127,255,255,226,248,0,252,0,63,127,255,255,226,248,191,255,252,63,0,0,0,2,248,191,255,252,63,0,0,0,2,248,127,255,248,63,11,255,255,66,248,0,252,0,63,15,255,255,130,248,0,252,0,63,15,255,255,130,248,0,252,0,63,0,0,0,2,248,191,255,252,63,0,0,0,2,248,255,255,253,63,0,0,0,2,248,255,255,253,63,15,255,255,130,248,0,0,0,63,15,255,255,130,248,0,0,0,63,11,255,255,66,248,0,0,0,63,0,0,0,2,248,127,255,248,63,0,0,0,3,248,127,255,248,63,0,0,0,3,244,127,171,248,63,15,255,255,67,244,125,0,248,63,15,255,255,67,244,125,0,248,63,15,255,255,67,240,125,0,248,63,15,192,47,71,240,125,0,248,63,15,192,47,75,240,127,171,248,63,15,192,47,75,224,127,255,248,63,15,192,47,79,208,127,255,248,63,15,192,47,95,208,125,0,0,63,15,255,255,111,192,40,0,0,63,15,255,255,191,192,0,0,0,127,15,255,255,255,64,0,1,255,255,15,192,0,191,0,0,0,255,255,15,192,0,30,0,0,0,191,252,0,0,0,4,0,0,0,106,80, + // 0x8acb 請 + 203,138,37,39,134,40,1,251,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,127,0,0,0,7,255,255,240,0,0,127,0,0,0,7,255,255,240,191,255,255,255,255,64,7,255,255,240,191,255,255,255,255,64,0,0,0,0,106,170,255,170,170,64,0,0,0,0,0,0,127,0,0,0,127,255,255,254,26,170,255,170,169,0,127,255,255,254,47,255,255,255,255,0,127,255,255,253,47,255,255,255,255,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,7,255,255,241,170,170,255,170,170,128,11,255,255,242,255,255,255,255,255,192,11,255,255,242,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,170,170,170,168,0,11,255,255,240,11,255,255,255,252,0,11,255,255,240,11,255,255,255,252,0,11,255,255,240,11,224,0,2,252,0,0,0,0,0,11,224,0,2,252,0,0,0,0,0,11,250,170,171,252,0,0,0,0,0,11,255,255,255,252,0,11,255,255,240,11,255,255,255,252,0,11,255,255,240,11,224,0,2,252,0,11,255,255,240,11,224,0,2,252,0,11,224,3,240,11,250,170,171,252,0,11,224,3,240,11,255,255,255,252,0,11,224,3,240,11,255,255,255,252,0,11,224,3,240,11,224,0,2,252,0,11,224,3,240,11,224,0,2,252,0,11,224,3,240,11,224,0,2,252,0,11,255,255,240,11,224,0,2,252,0,11,255,255,240,11,224,0,2,252,0,11,255,255,240,11,224,3,255,252,0,11,224,0,0,11,224,1,255,248,0,6,144,0,0,11,224,0,255,144,0,0,0,0,0,0,0,0,0,0,0, + // 0x8b70 議 + 112,139,38,38,124,40,1,252,0,0,0,0,2,128,0,9,0,0,0,0,0,0,15,208,0,31,192,0,11,255,255,64,7,240,0,63,128,0,11,255,255,64,3,244,0,191,0,0,7,255,255,67,255,255,255,255,255,0,0,0,0,3,255,255,255,255,255,0,0,0,0,2,170,171,254,170,170,0,127,255,255,224,0,2,252,0,0,0,127,255,255,224,0,2,252,0,0,0,127,255,255,224,255,255,255,255,252,0,0,0,0,0,255,255,255,255,252,0,0,0,0,0,85,86,253,85,84,0,11,255,255,64,0,2,252,0,0,0,15,255,255,128,0,2,252,0,0,0,15,255,255,175,255,255,255,255,255,192,0,0,0,47,255,255,255,255,255,192,0,0,0,31,255,255,255,255,255,192,0,0,0,0,0,6,11,208,64,0,15,255,255,128,91,255,207,211,240,0,15,255,255,143,255,254,79,211,252,0,11,255,255,75,255,240,11,208,255,0,0,0,0,0,3,240,11,208,63,64,0,0,0,0,3,240,11,224,8,0,0,0,0,26,175,250,175,250,170,128,15,255,255,111,255,255,255,255,255,192,15,255,255,111,255,255,255,255,255,192,15,255,255,64,3,240,3,240,0,0,15,192,47,64,3,240,3,240,180,0,15,192,47,64,27,255,243,245,252,0,15,192,47,111,255,255,242,251,244,0,15,192,47,111,255,255,145,255,224,0,15,192,47,95,235,240,0,255,128,0,15,255,255,64,3,240,2,255,2,128,15,255,255,64,3,240,15,255,3,208,15,255,255,64,7,240,191,255,195,208,15,192,0,3,255,243,254,31,255,192,15,192,0,3,255,224,244,11,255,128,0,0,0,1,169,0,0,1,254,0, + // 0x8b80 讀 + 128,139,37,38,124,40,1,252,0,0,0,0,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,0,11,255,255,71,255,255,255,255,255,128,11,255,255,71,255,255,255,255,255,128,7,255,255,65,85,86,254,85,85,64,0,0,0,0,0,1,252,0,0,0,0,0,0,0,85,86,253,85,84,0,127,255,255,224,255,255,255,255,254,0,127,255,255,224,255,255,255,255,254,0,127,255,255,224,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,64,0,0,0,3,255,255,255,255,255,64,11,255,255,67,240,15,7,192,47,64,15,255,255,131,240,126,7,234,191,64,15,255,255,131,251,248,2,255,255,64,0,0,0,3,242,64,0,0,47,64,0,0,0,3,240,0,0,0,47,64,0,0,0,3,255,255,255,255,255,64,15,255,255,131,255,255,255,255,255,64,15,255,255,128,0,0,0,0,0,0,11,255,255,64,255,255,255,255,253,0,0,0,0,0,255,255,255,255,253,0,0,0,0,0,253,0,0,0,253,0,0,0,0,0,255,170,170,170,253,0,15,255,255,64,255,255,255,255,253,0,15,255,255,64,253,0,0,0,253,0,15,255,255,64,254,170,170,170,253,0,15,192,47,64,255,255,255,255,253,0,15,192,47,64,253,0,0,0,253,0,15,192,47,64,253,0,0,0,253,0,15,192,47,64,255,255,255,255,253,0,15,192,47,64,255,255,255,255,253,0,15,255,255,64,1,240,0,189,0,0,15,255,255,64,31,253,2,255,208,0,15,255,255,65,255,244,0,127,253,0,15,192,0,47,255,128,0,7,255,192,15,192,0,31,248,0,0,0,191,128,0,0,0,6,64,0,0,0,9,0, + // 0x8b8a 變 + 138,139,36,38,86,40,2,252,0,36,0,0,0,0,1,128,0,0,126,0,47,255,240,3,240,0,0,252,0,47,255,240,7,224,0,2,244,64,0,0,0,15,193,0,47,224,248,0,0,0,239,7,224,127,195,244,255,255,255,253,15,208,47,219,224,255,255,254,254,63,64,11,255,128,0,0,0,63,254,0,2,255,16,47,255,240,15,248,128,0,252,252,47,255,240,11,227,224,3,240,126,0,0,0,31,129,248,171,255,255,0,0,2,191,255,253,255,255,255,239,255,251,255,255,255,255,255,91,175,255,247,255,253,95,0,63,0,0,0,0,1,248,4,30,63,124,47,255,244,165,248,96,47,127,125,63,255,244,249,249,244,63,63,63,63,1,245,245,248,252,62,63,31,63,1,246,241,248,125,125,63,15,127,1,247,241,248,63,252,63,4,63,255,255,209,248,47,248,63,7,255,255,250,193,248,8,16,63,15,240,0,0,1,248,0,0,21,63,208,0,0,0,80,0,0,0,255,255,255,255,255,255,248,0,7,255,255,255,255,255,255,248,0,63,255,255,255,255,255,255,248,2,255,254,0,0,2,255,0,0,47,255,255,208,0,15,252,0,0,63,248,47,253,0,191,240,0,0,15,128,7,255,215,255,128,0,0,1,0,0,191,255,253,0,0,0,0,0,0,127,255,253,64,0,0,0,1,191,255,255,255,254,80,0,107,255,255,255,150,255,255,255,250,255,255,255,228,0,27,255,255,255,127,255,228,0,0,0,27,255,253,42,80,0,0,0,0,0,1,168, + // 0x8cc7 資 + 199,140,36,38,86,40,2,252,0,0,0,0,41,0,0,0,0,3,144,0,0,127,64,0,0,0,11,255,64,0,254,0,0,0,0,15,255,248,2,255,255,255,255,248,0,127,253,11,255,255,255,255,252,0,2,252,31,250,191,234,175,240,0,0,32,191,192,63,208,15,224,0,0,0,255,0,191,240,47,192,0,0,4,44,1,255,248,63,64,0,6,252,0,7,254,254,1,0,6,255,253,0,47,244,255,208,0,255,255,248,11,255,208,63,254,64,191,254,64,255,254,0,11,255,254,63,144,0,127,224,0,1,255,253,36,21,85,126,85,85,85,111,252,0,63,255,255,255,255,255,253,20,0,63,255,255,255,255,255,253,0,0,63,192,0,0,0,1,253,0,0,63,192,0,0,0,1,253,0,0,63,192,0,0,0,2,253,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,63,192,0,0,0,1,253,0,0,63,192,0,0,0,1,253,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,63,213,85,85,85,86,253,0,0,63,192,0,0,0,1,253,0,0,63,213,85,85,85,86,253,0,0,63,255,255,255,255,255,253,0,0,63,255,255,255,255,255,253,0,0,0,7,128,0,2,128,0,0,0,0,127,248,0,31,253,0,0,0,27,255,224,0,31,255,228,0,27,255,254,0,0,0,191,255,64,127,255,224,0,0,0,7,255,248,31,249,0,0,0,0,0,127,248,6,64,0,0,0,0,0,6,64, + // 0x8ddd 距 + 221,141,38,36,104,40,1,252,7,255,255,255,7,255,255,255,255,192,7,255,255,255,7,255,255,255,255,192,7,255,255,255,7,255,255,255,255,192,7,240,0,127,7,249,85,85,85,64,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,127,7,240,0,0,0,0,7,240,0,191,7,249,85,85,84,0,7,255,255,255,7,255,255,255,253,0,7,255,255,255,7,255,255,255,253,0,7,255,255,255,7,255,255,255,253,0,0,0,253,0,7,240,0,1,253,0,0,0,253,0,7,240,0,1,253,0,0,0,253,0,7,240,0,1,253,0,7,208,253,0,7,240,0,1,253,0,11,224,253,0,7,240,0,1,253,0,11,224,255,255,135,240,0,1,253,0,11,224,255,255,135,240,0,1,253,0,11,224,255,255,135,249,85,86,253,0,11,224,253,85,7,255,255,255,253,0,11,224,253,0,7,255,255,255,253,0,11,224,253,0,7,255,255,255,253,0,11,224,253,0,7,240,0,0,0,0,11,224,253,0,7,240,0,0,0,0,11,224,253,0,71,240,0,0,0,0,11,224,253,111,199,240,0,0,0,0,11,224,255,255,199,240,0,0,0,0,11,255,255,255,199,240,0,0,0,0,111,255,255,254,71,249,85,85,85,64,191,255,254,64,7,255,255,255,255,208,127,254,64,0,7,255,255,255,255,208,62,64,0,0,7,255,255,255,255,208,0,0,0,0,7,240,0,0,0,0,0,0,0,0,7,240,0,0,0,0, + // 0x8eca 車 + 202,142,36,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,21,85,85,85,255,85,85,85,84,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,47,255,255,255,255,255,255,255,248,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,255,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,85,85,85,85,255,85,85,85,85,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0, + // 0x8edf 軟 + 223,142,38,38,124,40,1,252,0,0,254,0,0,14,64,0,0,0,0,0,254,0,0,31,208,0,0,0,0,0,254,0,0,31,192,0,0,0,0,0,254,0,0,47,192,0,0,0,63,255,255,255,244,47,192,0,0,0,63,255,255,255,244,63,128,0,0,0,63,255,255,255,244,63,64,0,0,0,0,0,254,0,0,127,149,85,85,0,0,0,254,0,0,191,255,255,255,192,0,0,254,0,0,255,255,255,255,192,10,170,255,170,145,255,255,255,255,128,15,255,255,255,226,252,47,192,63,64,15,255,255,255,227,252,47,192,127,0,15,192,188,7,231,244,47,192,127,0,15,192,188,7,239,240,47,192,190,0,15,192,188,7,255,224,47,192,254,0,15,234,254,171,255,192,47,192,253,0,15,255,255,255,255,128,47,192,252,0,15,255,255,255,227,0,47,193,248,0,15,192,188,7,224,0,63,192,0,0,15,192,188,7,224,0,63,192,0,0,15,192,188,7,224,0,63,208,0,0,15,255,255,255,224,0,127,224,0,0,15,255,255,255,224,0,191,240,0,0,10,170,255,170,160,0,255,240,0,0,0,0,254,0,0,1,250,248,0,0,0,0,254,0,0,3,245,252,0,0,21,85,254,85,80,7,240,253,0,0,127,255,255,255,252,15,240,191,0,0,127,255,255,255,252,47,208,63,128,0,127,255,255,255,252,127,192,47,208,0,0,0,254,0,1,255,0,15,244,0,0,0,254,0,7,253,0,11,252,0,0,0,254,0,47,248,0,3,255,64,0,0,254,0,255,240,0,0,255,224,0,0,254,0,255,128,0,0,63,208,0,0,254,0,62,0,0,0,15,128,0,0,253,0,20,0,0,0,2,0, + // 0x8ef8 軸 + 248,142,36,38,86,40,1,252,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,0,0,31,192,0,0,2,252,0,0,0,31,192,0,63,255,255,255,208,0,31,192,0,63,255,255,255,208,0,31,192,0,63,255,255,255,208,0,31,192,0,0,1,252,0,0,0,31,192,0,0,1,252,0,7,255,255,255,255,10,171,254,170,135,255,255,255,255,15,255,255,255,199,255,255,255,255,15,255,255,255,199,245,111,213,127,15,128,248,15,199,240,31,192,63,15,128,248,15,199,240,31,192,63,15,128,248,15,199,240,31,192,63,15,234,254,175,199,240,31,192,63,15,255,255,255,199,240,31,192,63,15,255,255,255,199,240,31,192,63,15,128,248,15,199,240,31,192,63,15,128,248,15,199,255,255,255,255,15,128,248,15,199,255,255,255,255,15,255,255,255,199,255,255,255,255,15,255,255,255,199,245,111,213,127,10,171,254,170,135,240,31,192,63,0,1,252,0,7,240,31,192,63,0,1,252,0,7,240,31,192,63,21,86,253,85,87,240,31,192,63,127,255,255,255,247,240,31,192,63,127,255,255,255,247,240,31,192,63,127,255,255,255,247,240,31,192,63,0,1,252,0,7,240,31,192,63,0,1,252,0,7,255,255,255,255,0,1,252,0,7,255,255,255,255,0,1,252,0,7,255,255,255,255,0,1,252,0,7,245,85,85,127,0,1,252,0,7,240,0,0,63,0,1,252,0,3,224,0,0,21, + // 0x8f09 載 + 9,143,37,38,124,40,2,252,0,0,63,64,0,47,192,16,0,0,0,0,63,64,0,47,192,188,0,0,0,0,63,64,0,47,194,255,0,0,15,255,255,255,252,47,192,191,192,0,15,255,255,255,252,47,192,47,240,0,15,255,255,255,252,47,192,15,248,0,0,0,63,64,0,47,192,3,244,0,0,0,63,64,0,47,192,1,192,0,0,0,63,64,0,47,192,0,0,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,255,255,255,255,255,255,255,255,255,0,0,0,63,64,0,31,208,0,0,0,0,0,63,64,0,31,208,0,0,0,26,170,191,234,170,15,208,2,64,0,47,255,255,255,255,15,224,7,240,0,47,255,255,255,255,15,224,15,240,0,0,0,63,64,0,15,224,15,224,0,0,0,63,64,0,15,240,47,192,0,15,255,255,255,252,11,240,63,128,0,15,255,255,255,252,11,240,127,64,0,15,192,63,0,188,7,244,255,0,0,15,192,63,0,188,7,245,254,0,0,15,255,255,255,252,3,251,252,0,0,15,255,255,255,252,3,255,244,0,0,15,192,63,0,188,2,255,240,0,0,15,192,63,0,188,2,255,192,0,0,15,255,255,255,252,1,255,128,16,0,15,255,255,255,252,1,255,0,45,0,0,0,63,0,0,3,255,0,47,64,0,0,63,0,0,15,255,128,63,64,42,170,255,234,170,63,255,192,63,0,127,255,255,255,255,255,239,224,63,0,127,255,255,255,255,255,15,248,191,0,0,0,63,0,47,252,7,255,254,0,0,0,63,0,63,240,2,255,252,0,0,0,63,0,15,128,0,191,244,0,0,0,63,0,5,0,0,6,64,0, + // 0x8f2f 輯 + 47,143,38,38,124,40,1,252,0,1,252,0,0,0,0,0,0,0,0,1,252,0,0,170,170,170,168,0,0,1,252,0,0,255,255,255,253,0,0,1,252,0,0,255,255,255,253,0,0,2,252,0,0,253,0,1,253,0,63,255,255,255,208,253,0,1,253,0,63,255,255,255,208,253,0,1,253,0,63,255,255,255,208,255,170,171,253,0,0,1,252,0,0,255,255,255,253,0,0,1,252,0,0,255,255,255,253,0,10,171,254,170,128,0,0,0,0,0,15,255,255,255,192,0,0,0,0,0,15,255,255,255,223,255,255,255,255,208,15,128,248,15,223,255,255,255,255,208,15,128,248,15,223,255,255,255,255,208,15,128,248,15,192,254,0,1,252,0,15,234,254,175,192,254,0,1,252,0,15,255,255,255,192,254,0,1,252,0,15,255,255,255,192,255,170,171,252,0,15,128,248,15,192,255,255,255,252,0,15,128,248,15,192,255,255,255,252,0,15,128,248,15,192,254,0,1,252,0,15,255,255,255,192,254,0,1,252,0,15,255,255,255,192,254,0,1,252,0,10,171,254,170,128,255,170,171,252,0,0,1,252,0,0,255,255,255,252,0,0,1,252,0,0,255,255,255,252,0,21,86,253,85,80,254,0,1,252,0,127,255,255,255,240,254,0,1,252,0,127,255,255,255,240,254,0,1,252,0,127,255,255,255,240,254,106,255,255,208,0,1,252,0,63,255,255,255,255,208,0,1,252,0,63,255,255,255,255,208,0,1,252,0,63,255,234,81,252,0,0,1,252,0,20,0,0,1,252,0,0,1,252,0,0,0,0,1,252,0,0,1,252,0,0,0,0,1,252,0,0,1,252,0,0,0,0,0,168,0, + // 0x8f38 輸 + 56,143,38,38,124,40,1,252,0,3,240,0,0,0,106,64,0,0,0,3,240,0,0,0,255,192,0,0,0,3,240,0,0,1,255,224,0,0,0,3,240,0,0,3,255,248,0,0,63,255,255,255,64,15,242,253,0,0,63,255,255,255,64,47,208,255,64,0,63,255,255,255,64,191,128,63,208,0,0,7,244,0,2,255,0,31,244,0,0,3,240,0,11,252,0,7,254,0,0,3,240,0,63,240,0,1,255,208,26,175,254,170,255,255,255,255,127,240,31,255,255,254,255,191,255,255,31,192,31,255,255,254,189,63,255,255,3,128,31,66,224,62,52,0,0,0,0,0,31,66,224,62,0,0,0,0,0,0,31,66,224,62,0,0,0,0,21,0,31,171,250,190,42,170,160,0,47,64,31,255,255,254,63,255,240,168,47,64,31,255,255,254,63,255,240,252,47,64,31,66,224,62,63,1,240,252,47,64,31,66,224,62,63,1,240,252,47,64,31,66,224,62,63,170,240,252,47,64,31,255,255,254,63,255,240,252,47,64,31,255,255,254,63,255,240,252,47,64,26,171,250,169,63,1,240,252,47,64,0,3,240,0,63,1,240,252,47,64,0,3,240,0,63,1,240,252,47,64,21,87,245,85,63,171,240,252,47,64,127,255,255,255,63,255,240,252,47,64,127,255,255,255,63,255,240,252,47,64,127,255,255,255,63,1,240,252,47,64,0,3,240,0,63,1,240,84,47,64,0,3,240,0,63,1,240,0,47,64,0,3,240,0,63,1,240,0,47,64,0,3,240,0,63,1,240,0,47,64,0,3,240,0,63,31,240,47,255,0,0,3,240,0,63,15,240,15,255,0,0,3,240,0,21,6,64,10,164,0, + // 0x8f49 轉 + 73,143,38,38,124,40,1,252,0,2,248,0,0,0,47,64,0,0,0,2,248,0,0,0,47,128,0,0,0,2,248,0,0,0,47,128,0,0,0,2,248,0,47,255,255,255,255,192,0,3,254,170,111,255,255,255,255,192,63,255,255,255,159,255,255,255,255,128,63,255,255,255,128,0,47,128,0,0,63,255,255,255,128,0,47,128,0,0,0,2,248,0,15,255,255,255,255,0,0,2,248,0,15,255,255,255,255,0,10,171,254,170,15,192,47,128,63,0,15,255,255,255,15,192,47,128,63,0,15,255,255,255,15,255,255,255,255,0,15,129,240,47,15,255,255,255,255,0,15,129,240,47,15,208,47,128,63,0,15,129,240,47,15,192,47,128,63,0,15,234,250,191,15,255,255,255,255,0,15,255,255,255,15,255,255,255,255,0,15,255,255,255,0,0,47,130,244,0,15,129,240,47,0,0,47,131,248,0,15,129,240,47,0,0,47,129,254,0,15,129,240,47,63,255,255,255,255,0,15,255,255,255,63,255,255,255,255,192,15,255,255,255,47,234,170,169,95,208,10,171,254,170,0,0,0,47,134,0,0,2,248,0,0,0,0,63,128,0,0,2,248,0,63,255,255,255,255,208,21,87,248,0,63,255,255,255,255,208,127,255,255,255,255,255,255,255,255,208,127,255,255,255,192,180,0,63,128,0,127,255,255,255,194,253,0,63,128,0,0,2,248,0,0,255,0,63,128,0,0,2,248,0,0,63,192,63,128,0,0,2,248,0,0,31,192,63,128,0,0,2,248,0,0,14,0,63,128,0,0,2,248,0,0,0,191,255,128,0,0,2,248,0,0,0,63,255,0,0,0,2,248,0,0,0,63,248,0,0, + // 0x8fd1 近 + 209,143,38,38,124,40,1,252,0,0,0,0,0,0,0,2,0,0,1,64,0,0,0,0,1,191,208,0,11,224,0,0,0,5,191,255,244,0,31,252,0,2,234,255,255,255,228,0,7,255,0,2,255,255,255,249,0,0,1,255,192,2,255,255,229,0,0,0,0,63,240,2,254,80,0,0,0,0,0,15,248,2,252,0,0,0,0,0,0,3,224,2,252,0,0,0,0,0,0,1,128,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,252,0,0,0,0,0,0,0,0,2,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192,0,0,0,2,255,255,255,255,255,192,0,0,0,2,253,85,95,245,85,64,63,255,240,3,252,0,15,240,0,0,63,255,240,3,248,0,15,240,0,0,63,255,240,3,248,0,15,240,0,0,21,95,240,3,244,0,15,240,0,0,0,15,240,7,240,0,15,240,0,0,0,15,240,11,240,0,15,240,0,0,0,15,240,15,224,0,15,240,0,0,0,15,240,31,208,0,15,240,0,0,0,15,240,63,192,0,15,240,0,0,0,15,240,127,128,0,15,240,0,0,0,15,240,255,0,0,15,240,0,0,0,15,243,254,0,0,15,240,0,0,0,15,242,252,0,0,15,240,0,0,0,15,240,180,0,0,15,240,0,0,0,127,252,16,0,0,15,240,0,0,2,255,255,64,0,0,6,144,0,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x8fd4 返 + 212,143,38,37,114,40,1,252,1,64,0,0,0,0,0,0,0,0,11,224,0,11,255,255,255,255,255,0,31,252,0,11,255,255,255,255,255,0,7,255,0,11,255,255,255,255,255,0,1,255,192,11,245,85,85,85,85,0,0,127,224,11,240,0,0,0,0,0,0,31,244,11,240,0,0,0,0,0,0,11,224,11,240,0,0,0,0,0,0,3,64,11,240,0,0,0,0,0,0,0,0,11,245,85,85,85,64,0,0,0,0,11,255,255,255,255,248,0,0,0,0,15,255,255,255,255,244,0,0,0,0,15,255,255,255,255,240,0,0,0,0,15,251,240,0,15,240,0,0,0,0,15,243,248,0,31,208,0,63,255,208,15,226,252,0,63,192,0,63,255,208,15,225,253,0,127,128,0,63,255,208,15,208,255,0,255,0,0,21,111,208,31,208,127,194,254,0,0,0,15,208,31,192,47,215,252,0,0,0,15,208,63,192,15,255,244,0,0,0,15,208,63,192,7,255,224,0,0,0,15,208,127,64,3,255,192,0,0,0,15,208,191,0,7,255,208,0,0,0,15,208,255,0,47,255,248,0,0,0,15,209,253,0,255,255,255,64,0,0,15,211,252,27,255,195,255,248,0,0,15,219,244,255,254,0,191,255,128,0,31,242,240,127,244,0,31,255,128,0,191,248,80,47,64,0,1,255,0,2,255,255,0,4,0,0,0,29,0,15,254,255,228,0,0,0,0,0,0,127,248,63,255,234,149,86,170,170,208,63,224,11,255,255,255,255,255,255,192,47,64,1,255,255,255,255,255,255,128,13,0,0,6,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9000 退 + 0,144,38,37,114,40,1,252,0,64,0,0,0,0,0,0,0,0,3,224,0,3,255,255,255,255,208,0,15,252,0,3,255,255,255,255,208,0,7,255,64,3,255,255,255,255,208,0,0,255,208,3,248,0,0,15,208,0,0,63,244,3,248,0,0,15,208,0,0,15,252,3,248,0,0,15,208,0,0,3,240,3,255,255,255,255,208,0,0,0,128,3,255,255,255,255,208,0,0,0,0,3,255,255,255,255,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,248,0,0,15,208,0,0,0,0,3,255,255,255,255,208,0,0,0,0,3,255,255,255,255,208,0,63,255,240,3,255,255,255,255,224,0,63,255,240,3,248,7,244,0,120,0,63,255,240,3,248,3,248,1,255,0,21,95,240,3,248,1,252,11,255,0,0,15,240,3,248,0,254,63,244,0,0,15,240,3,248,0,191,255,192,0,0,15,240,3,248,0,63,253,0,0,0,15,240,3,248,0,47,240,0,0,0,15,240,3,248,0,15,248,0,0,0,15,240,3,248,27,231,255,0,0,0,15,240,3,255,255,241,255,208,0,0,15,240,111,255,255,240,127,253,0,0,15,240,191,255,254,64,31,255,192,0,15,240,127,254,64,0,7,255,0,0,127,252,62,64,0,0,0,125,0,2,255,255,64,0,0,0,0,4,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x901f 速 + 31,144,38,38,124,40,1,252,0,0,0,0,0,11,224,0,0,0,1,128,0,0,0,15,224,0,0,0,11,240,0,0,0,15,224,0,0,0,31,253,0,0,0,15,224,0,0,0,7,255,64,255,255,255,255,255,255,128,0,255,208,255,255,255,255,255,255,128,0,63,244,255,255,255,255,255,255,128,0,15,248,0,0,15,240,0,0,0,0,3,208,0,0,15,224,0,0,0,0,1,64,0,0,15,224,0,0,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,255,255,255,255,252,0,0,0,0,47,128,15,224,2,252,0,0,0,0,47,128,15,224,2,252,0,0,0,0,47,128,15,224,2,252,0,63,255,240,47,128,15,224,2,252,0,63,255,240,47,128,15,224,2,252,0,63,255,240,47,255,255,255,255,252,0,21,95,240,47,255,255,255,255,252,0,0,15,240,47,255,255,255,255,252,0,0,15,240,0,0,255,254,0,0,0,0,15,240,0,3,255,255,128,0,0,0,15,240,0,15,255,255,224,0,0,0,15,240,0,63,223,231,252,0,0,0,15,240,1,255,79,225,255,64,0,0,15,240,11,253,15,224,127,240,0,0,15,240,127,244,15,224,31,254,0,0,15,242,255,208,15,224,7,255,128,0,15,240,255,0,15,224,0,254,0,0,127,252,52,0,15,224,0,28,0,2,255,255,64,0,15,224,0,0,0,15,255,191,244,0,0,0,0,0,0,127,252,47,255,250,170,170,170,171,208,63,224,11,255,255,255,255,255,255,192,47,128,0,191,255,255,255,255,255,128,13,0,0,6,191,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9023 連 + 35,144,36,38,86,40,2,252,0,0,0,0,0,42,0,0,0,0,0,0,0,0,127,64,0,0,31,0,0,0,0,127,64,0,0,127,208,0,0,0,127,64,0,0,63,244,11,255,255,255,255,255,252,15,253,11,255,255,255,255,255,252,2,255,11,255,255,255,255,255,252,0,255,192,0,0,127,64,0,0,0,63,128,0,0,127,64,0,0,0,13,0,255,255,255,255,255,208,0,0,0,255,255,255,255,255,208,0,0,0,255,170,191,234,175,208,0,0,0,253,0,127,64,31,208,0,0,0,253,0,127,64,31,208,0,0,0,255,170,191,170,175,208,0,0,0,255,255,255,255,255,208,255,255,64,255,255,255,255,255,208,255,255,64,253,0,127,64,31,208,255,255,64,253,0,127,64,31,208,85,191,64,253,0,127,64,31,208,0,127,64,255,255,255,255,255,208,0,127,64,255,255,255,255,255,208,0,127,64,170,170,255,234,170,128,0,127,64,0,0,127,64,0,0,0,127,64,0,0,127,64,0,0,0,127,79,255,255,255,255,255,254,0,127,79,255,255,255,255,255,254,0,127,79,255,255,255,255,255,254,0,127,64,0,0,127,64,0,0,0,127,128,0,0,127,64,0,0,1,255,208,0,0,127,64,0,0,11,255,248,0,0,127,64,0,0,63,251,255,64,0,0,0,0,0,255,208,255,254,149,85,85,86,170,255,64,63,255,255,255,255,255,255,189,0,7,255,255,255,255,255,254,52,0,0,27,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0x9032 進 + 50,144,36,38,86,40,2,252,0,0,0,0,144,0,16,0,0,9,0,0,0,255,0,63,192,0,63,128,0,2,254,0,127,128,0,127,224,0,3,252,0,191,0,0,31,252,0,11,248,0,255,0,0,7,255,0,31,240,1,253,0,0,1,255,128,63,255,255,255,255,252,0,127,192,191,255,255,255,255,252,0,47,1,255,255,255,255,255,252,0,8,7,255,192,7,248,0,0,0,0,15,255,128,3,244,0,0,0,0,63,255,128,3,244,0,0,0,0,255,255,128,3,244,0,0,0,0,255,191,255,255,255,255,240,0,0,62,63,255,255,255,255,240,0,0,8,63,255,255,255,255,240,255,255,64,63,128,3,244,0,0,255,255,64,63,128,3,244,0,0,255,255,64,63,128,3,244,0,0,85,191,64,63,128,3,244,0,0,0,127,64,63,255,255,255,255,224,0,127,64,63,255,255,255,255,224,0,127,64,63,255,255,255,255,224,0,127,64,63,128,3,244,0,0,0,127,64,63,128,3,244,0,0,0,127,64,63,128,3,244,0,0,0,127,64,63,128,7,248,0,0,0,127,64,63,255,255,255,255,253,0,127,64,63,255,255,255,255,253,0,127,128,63,255,255,255,255,253,1,255,208,0,0,0,0,0,0,11,255,248,0,0,0,0,0,0,63,251,255,64,0,0,0,0,0,255,208,255,254,149,85,85,86,170,255,64,63,255,255,255,255,255,255,189,0,7,255,255,255,255,255,254,52,0,0,27,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0x904b 運 + 75,144,36,37,77,40,2,252,5,0,6,170,170,170,170,170,168,47,64,7,255,255,255,255,255,252,191,224,7,255,255,255,255,255,252,47,248,7,240,0,0,0,0,252,11,254,7,240,0,42,64,0,252,2,255,70,160,0,63,128,0,168,0,191,192,0,0,63,128,0,0,0,63,130,255,255,255,255,255,240,0,13,2,255,255,255,255,255,240,0,0,1,170,170,191,234,170,160,0,0,0,0,0,63,128,0,0,0,0,0,21,85,127,149,85,64,0,0,0,127,255,255,255,255,192,0,0,0,127,255,255,255,255,192,0,0,0,126,0,63,128,15,192,255,255,64,126,0,63,128,15,192,255,255,64,127,255,255,255,255,192,255,255,64,127,255,255,255,255,192,85,191,64,127,0,127,128,31,192,0,127,64,126,0,63,128,15,192,0,127,64,126,0,63,128,15,192,0,127,64,127,255,255,255,255,192,0,127,64,127,255,255,255,255,192,0,127,64,21,85,127,149,85,64,0,127,64,0,0,63,128,0,0,0,127,79,255,255,255,255,255,254,0,127,79,255,255,255,255,255,255,0,127,79,255,255,255,255,255,255,0,127,128,0,0,63,128,0,0,1,255,208,0,0,63,128,0,0,11,255,248,0,0,63,128,0,0,63,251,255,64,0,21,0,0,0,255,208,255,254,149,85,85,86,170,255,64,63,255,255,255,255,255,255,189,0,7,255,255,255,255,255,254,52,0,0,27,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0x9054 達 + 84,144,37,38,124,40,1,252,0,0,0,0,0,15,208,0,0,0,1,64,0,0,0,15,224,0,0,0,11,208,0,0,0,15,224,0,0,0,47,248,0,31,255,255,255,255,240,0,11,254,0,31,255,255,255,255,240,0,2,255,128,26,170,175,250,170,160,0,0,127,208,0,0,15,224,0,0,0,0,47,240,0,0,15,224,0,0,0,0,11,210,170,170,191,250,170,170,128,0,3,3,255,255,255,255,255,255,192,0,0,3,255,255,255,255,255,255,192,0,0,0,0,253,0,0,253,0,0,0,0,0,0,191,0,2,253,0,0,0,0,0,0,127,64,3,252,0,0,0,0,0,0,63,128,7,240,0,0,0,0,0,170,191,234,171,250,170,0,63,255,209,255,255,255,255,255,255,64,63,255,209,255,255,255,255,255,255,64,63,255,208,0,0,15,224,0,0,0,21,111,208,0,0,15,224,0,0,0,0,31,208,42,170,175,250,170,168,0,0,31,208,63,255,255,255,255,252,0,0,31,208,63,255,255,255,255,252,0,0,31,208,0,0,15,224,0,0,0,0,31,208,0,0,15,224,0,0,0,0,31,209,255,255,255,255,255,255,64,0,31,210,255,255,255,255,255,255,64,0,31,210,255,255,255,255,255,255,64,0,31,208,0,0,15,224,0,0,0,0,47,224,0,0,15,224,0,0,0,0,191,248,0,0,15,224,0,0,0,2,255,254,0,0,10,144,0,0,0,15,254,255,224,0,0,0,0,0,0,127,244,63,255,165,85,85,85,170,128,63,208,15,255,255,255,255,255,255,192,47,64,1,255,255,255,255,255,255,128,13,0,0,6,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x9078 選 + 120,144,38,37,114,40,1,252,2,0,1,85,85,80,85,85,84,0,31,192,3,255,255,244,255,255,253,0,63,240,3,255,255,244,255,255,253,0,15,252,0,0,3,244,0,0,253,0,3,255,0,0,3,244,0,0,253,0,0,255,128,170,171,244,42,170,253,0,0,127,209,255,255,244,127,255,253,0,0,47,193,255,255,244,127,255,253,0,0,13,1,248,0,0,127,0,0,0,0,0,1,252,0,57,127,0,11,128,0,0,0,254,170,254,63,170,175,192,0,0,0,255,255,252,63,255,255,128,0,0,0,47,255,244,11,255,254,0,0,0,0,0,21,64,1,80,0,0,0,0,0,0,63,128,11,240,0,0,63,255,192,0,63,128,11,240,0,0,63,255,193,170,191,234,175,250,170,0,63,255,193,255,255,255,255,255,254,0,21,127,193,255,255,255,255,255,254,0,0,47,192,0,63,128,11,240,0,0,0,47,192,0,63,128,11,240,0,0,0,47,192,0,63,128,11,240,0,0,0,47,203,255,255,255,255,255,255,192,0,47,203,255,255,255,255,255,255,192,0,47,203,255,255,255,255,255,255,192,0,47,192,0,10,0,0,128,0,0,0,47,192,0,127,208,11,248,0,0,0,47,192,7,255,128,7,255,128,0,0,47,192,127,253,0,0,127,244,0,0,191,241,255,224,0,0,15,254,0,2,255,252,62,0,0,0,2,254,0,15,254,255,144,0,0,0,0,80,0,63,244,127,254,85,0,0,21,85,144,127,208,31,255,255,255,255,255,255,192,63,64,2,255,255,255,255,255,255,192,28,0,0,27,255,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0, + // 0x9084 還 + 132,144,36,37,77,40,2,252,10,0,2,255,255,255,255,255,240,127,192,2,255,255,255,255,255,240,127,240,2,248,31,192,253,11,240,31,252,2,248,15,128,252,7,240,7,254,2,248,15,128,252,7,240,1,255,130,248,15,128,252,7,240,0,191,194,255,255,255,255,255,240,0,47,66,255,255,255,255,255,240,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,255,255,255,255,255,255,0,0,47,255,255,255,255,255,255,0,0,26,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,255,255,128,255,255,64,127,255,255,255,255,128,255,255,64,127,0,0,0,63,128,255,255,64,127,0,0,0,63,128,85,191,64,127,0,0,0,63,128,0,127,64,127,0,0,0,63,128,0,127,64,127,255,255,255,255,128,0,127,64,127,255,255,255,255,208,0,127,64,0,7,255,64,11,248,0,127,64,0,47,255,208,47,224,0,127,64,1,255,255,248,255,64,0,127,64,31,254,255,255,252,0,0,127,66,255,244,191,127,244,0,0,127,79,255,128,191,15,255,144,0,127,135,253,0,191,1,255,253,1,255,209,128,0,191,0,31,248,11,255,248,0,0,191,0,0,160,63,251,255,64,0,106,0,0,0,255,208,255,254,149,85,85,86,170,255,64,63,255,255,255,255,255,255,189,0,7,255,255,255,255,255,254,52,0,0,27,255,255,255,255,253,0,0,0,0,0,0,0,0,0, + // 0x908a 邊 + 138,144,38,38,124,40,1,252,0,0,0,0,0,15,144,0,0,0,1,244,0,0,0,31,192,0,0,0,7,254,0,15,255,255,255,255,208,0,2,255,192,15,250,170,170,175,208,0,0,127,240,15,224,0,0,15,208,0,0,15,252,15,250,170,170,175,208,0,0,3,240,15,255,255,255,255,208,0,0,0,128,15,224,0,0,15,208,0,0,0,0,15,250,170,170,175,208,0,7,128,0,15,255,255,255,255,208,0,31,244,0,15,224,0,0,15,208,0,47,254,0,15,224,0,0,15,208,0,7,255,128,15,255,255,255,255,208,0,0,191,224,10,170,191,250,170,144,0,0,31,192,0,0,15,192,0,0,0,0,7,2,255,255,255,255,255,255,64,0,0,2,255,255,255,255,255,255,64,0,0,2,248,7,208,188,1,63,64,0,0,2,248,31,192,189,3,255,64,63,255,192,1,255,0,127,255,192,0,63,255,192,127,252,15,255,255,64,0,63,255,192,63,144,15,192,0,0,0,21,111,192,20,0,31,208,0,0,0,0,31,195,255,255,255,255,255,255,128,0,31,195,255,255,255,255,255,255,128,0,31,192,0,7,240,0,0,0,0,0,31,192,0,11,255,255,255,128,0,0,31,192,0,47,255,255,255,64,0,0,31,192,0,191,64,0,63,64,0,0,47,192,11,254,0,0,63,0,0,0,127,241,255,244,0,0,191,0,0,2,255,252,191,64,2,255,253,0,0,15,254,255,244,0,1,255,244,0,0,127,244,127,255,165,85,85,85,90,144,127,208,31,255,255,255,255,255,255,192,63,64,1,255,255,255,255,255,255,128,29,0,0,10,255,255,255,255,255,64,0,0,0,0,0,0,0,0,0,0, + // 0x90e8 部 + 232,144,38,38,124,40,1,252,0,0,21,64,0,0,0,0,0,0,0,0,47,192,0,0,0,0,0,0,0,0,47,192,0,1,85,85,88,0,0,0,47,192,0,7,255,255,255,128,0,0,47,192,0,7,255,255,255,208,31,255,255,255,255,135,255,255,255,192,31,255,255,255,255,135,244,0,191,64,31,255,255,255,255,135,244,0,255,0,0,4,0,1,64,7,244,1,254,0,0,189,0,3,244,7,244,2,252,0,0,191,0,7,240,7,244,3,252,0,0,63,0,15,224,7,244,7,244,0,0,63,64,15,208,7,244,15,240,0,0,47,128,31,192,7,244,15,224,0,0,47,128,47,64,7,244,47,192,0,21,105,85,86,85,71,244,63,128,0,127,255,255,255,255,199,244,127,128,0,127,255,255,255,255,199,244,63,208,0,127,255,255,255,255,199,244,15,240,0,0,0,0,0,0,7,244,3,252,0,0,0,0,0,0,7,244,1,253,0,0,0,0,0,0,7,244,0,255,0,0,85,85,85,84,7,244,0,127,0,3,255,255,255,252,7,244,0,63,128,3,255,255,255,252,7,244,0,63,128,3,255,255,255,252,7,244,0,63,192,3,248,0,1,252,7,244,0,63,192,3,248,0,1,252,7,244,0,63,128,3,248,0,1,252,7,244,0,255,128,3,248,0,1,252,7,244,255,255,64,3,248,0,1,252,7,244,191,255,0,3,248,0,1,252,7,244,127,252,0,3,255,255,255,252,7,244,42,144,0,3,255,255,255,252,7,244,0,0,0,3,255,255,255,252,7,244,0,0,0,3,252,0,2,252,7,244,0,0,0,3,248,0,1,252,7,244,0,0,0,2,164,0,0,84,7,240,0,0,0, + // 0x91cb 釋 + 203,145,38,38,124,40,1,252,0,0,0,16,0,0,0,0,0,0,0,0,27,248,42,170,170,170,170,0,1,107,255,254,63,255,255,255,255,0,63,255,255,244,63,255,255,255,255,0,63,255,248,0,63,7,192,240,63,0,25,67,244,0,63,7,192,240,63,0,1,3,244,61,63,7,192,240,63,0,15,67,244,63,63,7,192,240,63,0,15,195,244,127,63,175,234,250,191,0,15,195,244,189,63,255,255,255,255,0,7,211,244,252,63,255,255,255,255,0,3,227,244,248,0,0,127,0,0,0,3,243,246,240,0,0,127,0,0,0,3,211,245,240,15,255,255,255,252,0,0,3,244,0,15,255,255,255,252,0,127,255,255,255,6,170,191,170,168,0,127,255,255,255,0,0,127,0,0,0,127,255,255,255,0,0,127,0,0,0,0,15,244,0,255,255,255,255,255,208,0,31,244,0,255,255,255,255,255,208,0,47,253,0,170,254,170,175,234,128,0,63,255,64,0,252,0,15,192,0,0,127,255,208,0,253,0,31,128,0,0,255,255,244,0,127,0,63,0,0,1,251,246,253,0,63,0,125,0,0,3,243,244,254,191,255,255,255,255,128,7,227,244,60,191,255,255,255,255,128,15,211,244,16,106,170,255,170,170,64,47,195,244,0,0,0,127,0,0,0,127,67,244,0,0,0,127,0,0,0,127,3,244,0,47,255,255,255,254,0,45,3,244,0,47,255,255,255,254,0,24,3,244,0,26,170,255,170,169,0,0,3,244,0,0,0,127,0,0,0,0,3,244,0,0,0,127,0,0,0,0,3,244,0,0,0,127,0,0,0,0,3,244,0,0,0,127,0,0,0,0,2,240,0,0,0,127,0,0,0, + // 0x91cd 重 + 205,145,36,37,77,40,2,253,0,0,0,0,0,0,21,180,0,0,0,0,85,170,255,255,252,0,1,255,255,255,255,255,255,254,0,0,255,255,255,255,255,250,80,0,0,255,255,255,255,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,106,170,170,255,170,170,169,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,85,85,255,85,85,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,254,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,170,170,255,170,170,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x91cf 量 + 207,145,36,36,68,40,2,253,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,192,0,0,0,3,252,0,0,63,128,0,0,0,3,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,63,128,0,0,0,3,252,0,0,63,128,0,0,0,3,252,0,0,63,255,255,255,255,255,252,0,0,63,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,170,170,170,170,170,170,170,170,170,0,0,0,0,0,0,0,0,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,191,0,0,255,0,0,255,0,0,191,0,0,254,0,0,255,0,0,191,255,255,255,255,255,255,0,0,191,255,255,255,255,255,255,0,0,0,0,0,255,0,0,0,0,0,0,0,0,254,0,0,0,0,1,170,170,170,255,170,170,170,64,2,255,255,255,255,255,255,255,128,2,255,255,255,255,255,255,255,128,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x91dd 針 + 221,145,38,38,124,40,1,252,0,0,254,0,0,0,5,80,0,0,0,2,255,192,0,0,15,224,0,0,0,3,255,240,0,0,15,224,0,0,0,11,255,252,0,0,15,224,0,0,0,15,243,255,0,0,15,224,0,0,0,63,208,255,192,0,15,224,0,0,0,191,128,63,240,0,15,224,0,0,1,255,0,15,252,0,15,224,0,0,3,252,0,3,252,0,15,224,0,0,15,244,0,1,240,0,15,224,0,0,127,240,0,0,128,0,15,224,0,0,191,255,255,255,0,0,15,224,0,0,47,255,255,255,0,0,15,224,0,0,8,255,255,255,10,170,175,250,170,144,0,0,254,0,15,255,255,255,255,208,0,0,254,0,15,255,255,255,255,208,0,0,254,0,15,255,255,255,255,208,5,85,255,85,80,0,15,224,0,0,31,255,255,255,240,0,15,224,0,0,31,255,255,255,240,0,15,224,0,0,31,255,255,255,240,0,15,224,0,0,0,0,254,0,0,0,15,224,0,0,0,0,254,1,0,0,15,224,0,0,7,192,254,11,224,0,15,224,0,0,7,208,254,15,208,0,15,224,0,0,3,224,254,15,192,0,15,224,0,0,3,240,254,31,128,0,15,224,0,0,2,240,254,47,64,0,15,224,0,0,1,244,254,63,0,0,15,224,0,0,1,248,254,46,0,0,15,224,0,0,0,144,254,0,16,0,15,224,0,0,0,0,255,111,244,0,15,224,0,0,0,22,255,255,244,0,15,224,0,0,47,255,255,255,244,0,15,224,0,0,63,255,255,250,64,0,15,224,0,0,47,255,164,0,0,0,15,224,0,0,30,80,0,0,0,0,15,224,0,0,0,0,0,0,0,0,10,160,0,0, + // 0x9215 鈕 + 21,146,38,37,114,40,1,253,0,3,248,0,0,0,0,0,0,0,0,11,254,0,0,0,0,0,0,0,0,15,255,128,10,170,170,170,160,0,0,47,255,240,15,255,255,255,244,0,0,63,207,252,15,255,255,255,244,0,0,255,3,254,15,255,255,255,244,0,2,254,0,255,128,11,240,7,244,0,7,252,0,127,192,15,240,7,244,0,31,240,0,31,128,15,224,7,244,0,127,208,0,10,0,15,224,7,240,0,191,255,255,252,0,15,224,7,240,0,47,255,255,252,0,15,208,7,240,0,7,255,255,252,0,15,208,7,240,0,0,3,248,0,0,15,208,7,240,0,0,3,244,0,0,31,192,7,240,0,0,3,244,0,0,31,192,7,240,0,0,3,244,0,0,31,192,11,240,0,47,255,255,255,63,255,255,255,255,208,47,255,255,255,63,255,255,255,255,208,47,255,255,255,63,255,255,255,255,208,0,3,248,0,42,191,234,175,250,144,0,3,244,0,0,63,128,11,240,0,1,67,244,61,0,63,128,15,240,0,15,131,244,62,0,63,64,15,240,0,11,195,244,125,0,63,64,15,224,0,7,211,244,188,0,127,0,15,224,0,3,227,244,252,0,127,0,15,224,0,3,227,244,248,0,191,0,15,224,0,3,243,245,240,0,191,0,15,224,0,2,243,244,176,0,191,0,15,208,0,0,3,244,1,64,254,0,15,208,0,0,3,250,191,128,254,0,31,208,0,0,91,255,255,128,253,0,31,208,0,63,255,255,255,255,255,255,255,255,208,63,255,255,147,255,255,255,255,255,208,47,254,64,3,255,255,255,255,255,208,25,0,0,1,170,170,170,170,170,144, + // 0x932f 錯 + 47,147,38,38,124,40,1,252,0,3,248,0,0,63,64,63,64,0,0,11,254,0,0,63,64,63,64,0,0,15,255,128,0,63,64,63,64,0,0,47,255,240,0,63,64,63,64,0,0,63,143,252,0,63,64,63,64,0,0,255,3,254,47,255,255,255,255,64,2,254,0,255,175,255,255,255,255,64,7,252,0,127,255,255,255,255,255,64,31,240,0,31,128,63,64,63,64,0,127,208,0,10,0,63,64,63,64,0,191,255,255,252,0,63,64,63,64,0,47,255,255,252,0,63,64,63,64,0,7,255,255,252,0,63,64,63,64,0,0,3,248,0,85,127,149,127,149,64,0,3,244,0,255,255,255,255,255,208,0,3,244,0,255,255,255,255,255,208,0,3,244,0,255,255,255,255,255,208,47,255,255,255,0,0,0,0,0,0,47,255,255,255,0,0,0,0,0,0,47,255,255,255,0,0,0,0,0,0,0,3,248,0,3,255,255,255,252,0,0,3,244,0,3,255,255,255,252,0,1,67,244,57,3,255,255,255,252,0,15,131,244,63,3,244,0,1,252,0,11,195,244,125,3,244,0,1,252,0,7,211,244,188,3,244,0,1,252,0,3,227,244,252,3,255,255,255,252,0,3,227,244,248,3,255,255,255,252,0,3,243,245,240,3,255,255,255,252,0,2,243,244,176,3,244,0,1,252,0,0,3,244,1,67,244,0,1,252,0,0,3,254,255,131,244,0,1,252,0,0,111,255,255,131,244,0,1,252,0,63,255,255,255,131,255,255,255,252,0,63,255,255,144,3,255,255,255,252,0,47,254,64,0,3,255,255,255,252,0,25,0,0,0,3,244,0,1,252,0,0,0,0,0,2,160,0,1,168,0, + // 0x9375 鍵 + 117,147,38,38,124,40,1,252,0,7,224,0,0,0,2,240,0,0,0,15,248,0,0,0,3,244,0,0,0,31,254,0,0,0,3,244,0,0,0,63,255,75,255,226,255,255,254,0,0,191,127,203,255,226,255,255,254,0,0,254,15,255,255,194,255,255,254,0,3,252,7,253,95,192,3,244,62,0,11,244,2,252,31,128,3,244,62,0,31,224,0,240,47,64,3,244,63,64,127,192,0,64,63,31,255,255,255,224,255,255,255,208,126,31,255,255,255,224,63,255,255,208,189,31,255,255,255,224,11,255,255,208,252,0,3,244,62,0,0,11,208,1,252,0,3,244,62,0,0,11,208,2,248,1,255,255,254,0,0,11,208,3,255,250,255,255,254,0,0,11,208,7,255,246,255,255,254,0,63,255,255,251,255,244,3,244,0,0,63,255,255,246,194,244,3,244,0,0,63,255,255,240,2,240,3,244,0,0,0,15,208,0,67,243,255,255,255,0,0,11,208,7,195,243,255,255,255,0,6,11,211,231,211,227,255,255,255,0,15,11,211,227,215,224,3,244,0,0,15,75,211,211,251,208,3,244,0,0,15,139,215,194,255,192,3,244,0,0,11,203,215,193,255,207,255,255,255,192,7,203,219,128,255,79,255,255,255,192,7,203,223,64,191,15,255,255,255,192,3,203,209,0,127,0,3,244,0,0,1,11,208,0,255,128,3,244,0,0,0,11,235,246,255,208,3,244,0,0,0,31,255,251,255,248,2,240,0,0,47,255,255,255,243,255,144,0,0,0,63,255,254,191,192,255,255,255,255,224,63,254,65,255,64,47,255,255,255,192,25,0,0,189,0,1,191,255,255,192,0,0,0,32,0,0,0,0,0,0, + // 0x9577 長 + 119,149,36,36,68,40,2,252,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,255,255,255,255,255,255,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,255,255,255,255,255,248,0,0,3,252,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,85,87,253,85,85,85,85,85,84,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,3,252,0,191,0,0,7,0,0,3,252,0,63,128,0,47,208,0,3,252,0,47,208,1,255,224,0,3,252,0,15,240,11,255,64,0,3,252,0,11,252,127,248,0,0,3,252,0,3,255,255,192,0,0,3,252,0,0,255,253,0,0,0,3,252,0,0,63,248,0,0,0,3,252,0,22,95,255,64,0,0,3,253,175,255,131,255,244,0,0,91,255,255,255,128,191,255,144,15,255,255,255,255,64,31,255,255,11,255,255,249,64,0,2,255,254,7,255,148,0,0,0,0,31,252,1,64,0,0,0,0,0,0,100, + // 0x9589 閉 + 137,149,34,36,68,40,3,252,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,170,170,253,7,250,170,175,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,234,171,253,7,254,170,191,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,0,0,0,0,15,224,127,64,0,0,15,208,0,15,224,127,64,0,0,15,208,0,15,224,127,64,0,0,15,208,0,15,224,127,67,255,255,255,255,252,15,224,127,67,255,255,255,255,252,15,224,127,67,255,255,255,255,252,15,224,127,64,0,0,255,208,0,15,224,127,64,0,3,255,208,0,15,224,127,64,0,11,255,208,0,15,224,127,64,0,47,239,208,0,15,224,127,64,0,255,143,208,0,15,224,127,64,3,254,15,208,0,15,224,127,64,31,248,15,208,0,15,224,127,64,255,224,15,208,0,15,224,127,75,255,128,15,208,0,15,224,127,71,253,0,15,208,0,15,224,127,66,224,0,15,208,0,31,224,127,64,64,15,255,195,255,255,208,127,64,0,11,255,193,255,255,192,127,64,0,7,254,0,255,255,128,127,0,0,0,0,0,170,164,0, + // 0x958b 開 + 139,149,34,36,68,40,3,252,127,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,224,127,0,0,253,11,240,0,15,224,127,0,0,253,11,240,0,15,224,127,170,170,253,11,250,170,175,224,127,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,224,127,0,0,253,11,240,0,15,224,127,0,0,253,11,240,0,15,224,127,0,0,253,11,240,0,15,224,127,255,255,253,11,255,255,255,224,127,255,255,253,11,255,255,255,224,127,234,170,169,6,170,170,175,224,127,0,0,0,0,0,0,15,224,127,0,0,0,0,0,0,15,224,127,2,255,255,255,255,248,15,224,127,2,255,255,255,255,248,15,224,127,2,255,255,255,255,248,15,224,127,0,3,244,3,248,0,15,224,127,0,3,244,3,248,0,15,224,127,0,3,244,3,248,0,15,224,127,0,3,244,3,248,0,15,224,127,7,255,255,255,255,253,15,224,127,7,255,255,255,255,253,15,224,127,7,255,255,255,255,253,15,224,127,0,3,244,3,248,0,15,224,127,0,3,240,3,248,0,15,224,127,0,11,240,3,248,0,15,224,127,0,15,224,3,248,0,15,224,127,0,47,192,3,248,0,15,224,127,0,63,128,3,248,0,15,224,127,1,255,0,3,248,127,255,224,127,3,253,0,3,248,63,255,208,127,0,244,0,3,248,47,255,128,127,0,16,0,0,0,26,164,0, + // 0x9593 間 + 147,149,34,36,68,40,3,252,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,170,170,253,7,250,170,175,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,64,0,253,7,240,0,15,224,127,234,171,253,7,254,170,191,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,64,0,0,0,0,0,15,224,127,64,0,0,0,0,0,15,224,127,64,0,0,0,0,0,15,224,127,64,47,255,255,255,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,234,170,191,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,192,0,63,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,255,255,255,64,15,224,127,64,47,255,255,255,64,31,224,127,64,47,192,0,0,255,255,224,127,64,47,192,0,0,255,255,192,127,64,0,0,0,0,191,255,128,127,0,0,0,0,0,42,164,0, + // 0x95dc 關 + 220,149,34,36,68,40,3,252,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,170,170,253,7,250,170,175,224,127,0,0,253,7,240,0,15,224,127,0,0,253,7,240,0,15,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,85,85,253,7,245,85,95,224,127,0,0,253,7,240,0,15,224,127,0,0,253,7,240,0,15,224,127,255,255,253,7,255,255,255,224,127,255,255,253,7,255,255,255,224,127,170,171,232,6,254,170,175,224,127,0,11,192,0,252,0,15,224,127,0,31,0,2,240,0,15,224,127,3,253,29,127,194,128,15,224,127,3,248,125,127,71,208,15,224,127,0,188,248,15,223,64,15,224,127,0,47,224,3,254,0,15,224,127,0,15,157,1,248,240,15,224,127,0,62,31,7,224,248,15,224,127,15,255,255,191,255,252,15,224,127,11,255,255,255,255,254,15,224,127,1,84,3,64,0,30,15,224,127,1,160,62,15,128,164,15,224,127,1,240,62,15,128,244,15,224,127,1,240,62,15,128,244,15,224,127,1,240,62,15,128,244,15,224,127,1,255,254,15,255,244,15,224,127,1,255,254,15,255,244,15,224,127,0,0,253,15,128,0,15,224,127,0,2,252,15,128,0,15,224,127,0,31,244,15,128,15,255,224,127,0,127,208,15,128,15,255,208,127,0,47,0,15,128,11,255,128,127,0,0,0,0,0,2,164,0, + // 0x964d 降 + 77,150,36,38,86,40,3,252,0,0,0,0,0,148,0,0,0,0,0,0,0,1,254,0,0,0,191,255,248,0,3,252,0,0,0,191,255,255,0,7,248,0,0,0,191,255,254,0,15,255,255,254,0,190,86,253,0,63,255,255,255,64,190,1,252,0,255,255,255,255,0,190,3,248,3,255,64,1,253,0,190,3,244,15,255,192,3,252,0,190,7,240,127,255,240,15,244,0,190,11,224,255,135,248,63,208,0,190,15,208,61,1,255,255,128,0,190,31,192,4,0,191,254,0,0,190,47,128,0,0,63,252,0,0,190,63,64,0,1,255,255,128,0,190,31,192,0,31,255,255,248,0,190,11,240,6,255,248,47,255,228,190,3,244,191,255,192,7,255,253,190,2,252,191,253,0,254,111,248,190,0,252,63,128,0,254,1,176,190,0,253,20,0,0,254,0,0,190,0,253,31,255,255,255,255,224,190,0,254,31,255,255,255,255,224,190,0,253,31,255,255,255,255,224,190,1,253,0,254,0,254,0,0,190,191,252,0,254,0,254,0,0,190,63,248,0,254,0,254,0,0,190,63,208,0,254,0,254,0,0,190,0,0,0,254,0,254,0,0,190,0,1,255,255,255,255,255,252,190,0,1,255,255,255,255,255,252,190,0,1,255,255,255,255,255,252,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,190,0,0,0,0,0,254,0,0,189,0,0,0,0,0,254,0,0, + // 0x9664 除 + 100,150,36,38,86,40,3,252,0,0,0,0,0,42,64,0,0,0,0,0,0,0,191,208,0,0,191,255,248,0,1,255,240,0,0,191,255,255,0,3,255,252,0,0,191,255,254,0,15,246,254,0,0,190,86,253,0,47,224,255,128,0,190,1,252,0,191,192,63,224,0,190,3,248,2,255,0,15,248,0,190,3,244,11,252,0,7,255,0,190,7,240,47,240,0,0,255,208,190,11,225,255,192,0,0,63,248,190,15,219,255,0,0,0,15,254,190,31,195,255,255,255,255,255,252,190,47,129,226,255,255,255,248,116,190,63,128,66,255,255,255,248,0,190,31,192,0,0,63,128,0,0,190,11,240,0,0,63,128,0,0,190,3,244,0,0,63,128,0,0,190,2,252,0,0,63,128,0,0,190,0,252,0,0,63,192,0,0,190,0,253,63,255,255,255,255,224,190,0,253,63,255,255,255,255,224,190,0,254,63,255,255,255,255,224,190,0,253,0,0,63,128,0,0,190,1,253,0,0,63,128,0,0,190,191,252,7,224,63,129,244,0,190,63,248,15,240,63,130,252,0,190,63,208,15,208,63,128,255,0,190,0,0,63,192,63,128,127,64,190,0,0,127,64,63,128,63,192,190,0,0,255,0,63,128,31,224,190,0,2,253,0,63,128,11,240,190,0,7,252,0,63,128,3,248,190,0,15,240,0,63,128,3,252,190,0,3,208,21,127,128,1,224,190,0,0,64,63,255,128,0,0,190,0,0,0,31,255,0,0,0,190,0,0,0,15,248,0,0,0, + // 0x968e 階 + 142,150,36,38,86,40,3,252,0,0,0,21,0,0,84,0,0,0,0,0,47,128,0,252,0,0,191,255,244,47,128,0,252,0,0,191,255,254,47,128,0,252,1,128,191,255,253,47,128,0,252,11,240,190,86,252,47,255,244,252,191,248,190,2,252,47,255,244,255,255,128,190,3,244,47,255,244,255,248,0,190,3,240,47,128,0,255,128,0,190,7,240,47,128,0,252,0,0,190,15,208,47,128,0,252,0,0,190,15,192,47,128,0,252,0,120,190,31,128,47,128,84,252,0,189,190,47,64,47,239,248,253,0,253,190,63,66,191,255,252,255,255,252,190,31,195,255,255,144,255,255,248,190,11,242,255,144,105,47,255,224,190,3,241,144,0,191,64,0,0,190,2,248,0,0,255,0,0,0,190,1,252,0,0,254,0,0,0,190,0,252,15,255,255,255,255,208,190,0,252,15,255,255,255,255,208,190,0,253,15,255,255,255,255,208,190,0,253,15,208,0,0,31,208,190,2,252,15,208,0,0,15,208,190,191,252,15,208,0,0,15,208,190,63,244,15,208,0,0,15,208,190,63,208,15,255,255,255,255,208,190,0,0,15,255,255,255,255,208,190,0,0,15,255,255,255,255,208,190,0,0,15,208,0,0,15,208,190,0,0,15,208,0,0,15,208,190,0,0,15,208,0,0,15,208,190,0,0,15,255,255,255,255,208,190,0,0,15,255,255,255,255,208,190,0,0,15,255,255,255,255,208,190,0,0,15,208,0,0,31,208,189,0,0,10,128,0,0,5,64, + // 0x96d9 雙 + 217,150,36,38,86,40,2,252,0,36,0,0,0,9,0,0,0,0,127,3,224,0,31,192,248,0,0,190,7,240,0,47,130,248,0,0,252,15,192,0,63,3,240,0,2,253,111,213,80,191,91,229,84,3,255,255,255,224,255,255,255,252,15,255,255,255,227,255,255,255,252,47,244,47,64,11,253,7,208,0,127,244,47,64,31,253,7,208,0,255,255,255,255,255,255,255,255,244,255,255,255,255,255,255,255,255,244,119,245,111,149,61,253,91,229,80,19,244,47,64,8,253,7,208,0,3,249,111,149,64,254,91,229,80,3,255,255,255,192,255,255,255,244,3,255,255,255,192,255,255,255,244,3,244,47,64,0,253,7,208,0,3,244,47,64,0,253,7,208,0,3,255,255,255,240,255,255,255,254,3,255,255,255,240,255,255,255,254,1,85,85,85,80,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,255,244,0,15,255,255,255,255,255,255,254,0,15,255,255,255,255,255,255,252,0,0,0,190,0,0,0,63,240,0,0,1,255,192,0,1,255,192,0,0,0,127,244,0,11,255,0,0,0,0,31,255,64,191,252,0,0,0,0,3,255,251,255,224,0,0,0,0,0,127,255,255,0,0,0,0,0,1,191,255,254,144,0,0,0,5,191,255,255,255,255,148,0,175,255,255,255,219,255,255,255,254,127,255,255,228,0,27,255,255,252,63,255,228,0,0,0,111,255,248,42,80,0,0,0,0,0,22,240, + // 0x96e2 離 + 226,150,38,38,124,40,1,252,0,0,106,0,0,0,144,0,0,0,0,0,127,0,0,0,254,3,244,0,0,0,127,0,0,1,252,3,244,0,0,0,127,0,0,2,252,7,240,0,127,255,255,255,255,3,248,15,224,0,127,255,255,255,255,7,240,15,208,0,127,255,255,255,255,11,240,31,192,0,0,0,0,0,0,15,224,63,128,0,7,192,2,241,240,31,255,255,255,192,7,195,67,225,244,63,255,255,255,192,7,203,255,193,244,127,255,255,255,192,7,193,255,129,244,255,213,127,149,64,7,192,127,209,245,255,192,63,64,0,7,193,255,245,247,255,192,63,64,0,7,219,240,249,255,255,192,63,64,0,7,219,192,33,255,255,192,63,64,0,7,193,0,1,251,239,255,255,255,128,7,255,255,255,244,143,255,255,255,128,7,255,255,255,244,15,255,255,255,128,6,170,191,170,160,15,208,63,64,0,0,0,126,0,0,15,192,63,64,0,0,0,189,0,0,15,192,63,64,0,31,255,255,255,253,15,192,63,64,0,31,255,255,255,253,15,192,63,64,0,31,255,255,255,253,15,255,255,255,128,31,128,248,0,253,15,255,255,255,128,31,129,244,160,253,15,255,255,255,128,31,130,240,240,253,15,208,63,64,0,31,130,240,184,253,15,192,63,64,0,31,155,255,252,253,15,192,63,64,0,31,175,255,253,253,15,192,63,64,0,31,159,165,110,253,15,192,63,64,0,31,128,0,29,253,15,213,127,149,64,31,128,0,0,253,15,255,255,255,208,31,128,0,0,253,15,255,255,255,208,31,128,0,255,252,15,255,255,255,208,31,128,0,127,252,15,192,0,0,0,31,128,0,63,144,15,192,0,0,0, + // 0x96fb 電 + 251,150,36,36,68,40,3,252,11,255,255,255,255,255,255,253,0,11,255,255,255,255,255,255,253,0,11,255,255,255,255,255,255,253,0,0,0,0,3,248,0,0,0,0,0,0,0,3,248,0,0,0,0,255,255,255,255,255,255,255,255,240,255,255,255,255,255,255,255,255,240,254,170,170,171,254,170,170,171,240,253,0,0,3,248,0,0,7,240,253,63,255,211,248,127,255,135,240,253,63,255,211,248,127,255,135,240,253,0,0,3,248,0,0,7,240,253,0,0,3,248,0,0,7,240,0,191,255,211,248,127,255,224,0,0,191,255,211,248,127,255,224,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0,0,1,170,170,170,170,170,170,164,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,2,252,0,3,244,0,3,248,0,2,252,0,3,244,0,3,248,0,2,253,85,87,249,85,87,248,0,2,255,255,255,255,255,255,248,0,2,255,255,255,255,255,255,248,0,2,252,0,3,244,0,3,248,0,2,252,0,3,244,0,3,248,0,2,254,170,171,254,170,171,248,0,2,255,255,255,255,255,255,248,144,2,255,255,255,255,255,255,248,253,2,252,0,3,244,0,0,0,253,2,252,0,3,244,0,0,0,252,0,84,0,3,252,0,0,2,252,0,0,0,2,255,255,255,255,248,0,0,0,0,255,255,255,255,240,0,0,0,0,43,255,255,255,128, + // 0x9752 青 + 82,151,36,39,95,40,2,251,0,0,0,0,170,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,3,255,255,255,255,255,255,255,208,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,191,255,255,255,255,255,254,0,0,191,255,255,255,255,255,254,0,0,106,170,170,255,170,170,170,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,127,255,255,255,255,255,255,255,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,250,170,170,170,171,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,255,255,255,255,255,244,0,0,15,255,255,255,255,255,244,0,0,15,250,170,170,170,171,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,7,244,0,0,15,224,0,0,0,11,244,0,0,15,224,0,0,127,255,244,0,0,15,224,0,0,63,255,240,0,0,15,224,0,0,47,254,64,0,0,0,0,0,0,0,0,0,0, + // 0x975e 非 + 94,151,38,39,134,40,1,251,0,0,0,170,0,10,144,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,15,255,255,255,0,31,255,255,255,128,15,255,255,255,0,31,255,255,255,128,15,255,255,255,0,31,255,255,255,128,5,85,85,255,0,31,229,85,85,64,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,7,255,255,255,0,31,255,255,254,0,7,255,255,255,0,31,255,255,254,0,7,255,255,255,0,31,255,255,254,0,1,85,85,255,0,31,229,85,85,0,0,0,0,255,0,31,208,0,0,0,0,0,0,255,0,31,208,0,0,0,0,0,0,254,0,31,208,0,0,0,0,0,0,254,84,31,208,0,0,0,0,0,6,255,252,31,208,0,0,0,0,107,255,255,252,31,229,85,85,64,127,255,255,255,252,31,255,255,255,208,63,255,255,253,0,31,255,255,255,208,63,255,159,244,0,31,255,255,255,208,41,64,31,240,0,31,208,0,0,0,0,0,63,208,0,31,208,0,0,0,0,0,191,192,0,31,208,0,0,0,0,2,255,0,0,31,208,0,0,0,0,11,254,0,0,31,208,0,0,0,0,63,248,0,0,31,208,0,0,0,2,255,224,0,0,31,208,0,0,0,15,255,128,0,0,31,208,0,0,0,3,253,0,0,0,31,208,0,0,0,0,224,0,0,0,15,208,0,0,0,0,0,0,0,0,0,0,0,0,0, + // 0x9762 面 + 98,151,36,35,59,40,2,252,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,191,255,255,255,255,255,255,255,254,106,170,170,171,255,170,170,170,169,0,0,0,3,253,0,0,0,0,0,0,0,3,252,0,0,0,0,0,0,0,7,248,0,0,0,0,0,0,0,7,244,0,0,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,245,91,245,85,111,213,95,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,255,255,255,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,224,7,240,0,47,192,15,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,15,245,85,85,85,85,85,95,240,15,224,0,0,0,0,0,15,240,10,160,0,0,0,0,0,10,160, + // 0x9805 項 + 5,152,38,36,104,40,1,252,0,0,0,3,255,255,255,255,255,208,0,0,0,3,255,255,255,255,255,208,21,85,85,87,255,255,255,255,255,208,63,255,255,248,0,0,255,0,0,0,63,255,255,248,0,1,255,0,0,0,63,255,255,248,0,1,253,0,0,0,21,95,245,84,0,2,252,0,0,0,0,15,240,0,63,255,255,255,255,0,0,15,240,0,63,255,255,255,255,0,0,15,240,0,63,255,255,255,255,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,255,255,255,255,0,0,15,240,0,63,255,255,255,255,0,0,15,240,0,63,170,170,170,255,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,64,0,0,191,0,0,15,240,0,63,255,255,255,255,0,0,15,240,45,63,255,255,255,255,0,0,15,251,253,63,170,170,170,255,0,0,15,255,254,63,64,0,0,191,0,1,191,255,249,63,64,0,0,191,0,111,255,255,64,63,64,0,0,191,0,127,255,224,0,63,255,255,255,255,0,63,249,0,0,63,255,255,255,255,0,46,64,0,0,63,255,255,255,255,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,248,0,62,0,0,0,0,0,0,31,255,1,255,224,0,0,0,0,1,255,248,0,127,253,0,0,0,0,31,255,208,0,11,255,128,0,0,0,255,253,0,0,0,255,240,0,0,0,63,208,0,0,0,47,192,0,0,0,25,0,0,0,0,6,0, + // 0x9810 預 + 16,152,38,36,104,40,1,252,47,255,255,253,63,255,255,255,255,192,47,255,255,255,191,255,255,255,255,192,47,255,255,255,127,255,255,255,255,192,0,0,7,253,0,0,127,192,0,0,0,0,7,248,0,0,127,128,0,0,0,128,15,240,0,0,127,64,0,0,2,244,63,192,0,0,191,0,0,0,7,255,255,64,11,255,255,255,254,0,2,255,253,0,11,255,255,255,254,0,0,47,252,0,11,255,255,255,254,0,0,7,255,64,11,240,0,0,254,0,0,0,255,208,11,240,0,0,254,0,0,0,47,192,11,240,0,0,254,0,127,255,255,255,235,255,255,255,254,0,127,255,255,255,235,255,255,255,254,0,127,255,255,255,203,250,170,170,254,0,21,87,249,111,203,240,0,0,254,0,0,3,244,47,139,240,0,0,254,0,0,3,244,63,75,240,0,0,254,0,0,3,244,63,11,255,255,255,254,0,0,3,244,190,11,255,255,255,254,0,0,3,244,252,11,250,170,170,254,0,0,3,244,24,11,240,0,0,254,0,0,3,244,0,11,240,0,0,254,0,0,3,244,0,11,240,0,0,254,0,0,3,244,0,11,255,255,255,254,0,0,3,244,0,11,255,255,255,254,0,0,3,244,0,11,255,255,255,254,0,0,3,244,0,0,8,0,0,0,0,0,3,244,0,0,127,64,31,64,0,0,3,244,0,2,255,192,127,240,0,0,7,244,0,31,255,0,31,253,0,15,255,244,1,255,248,0,3,255,128,11,255,240,11,255,192,0,0,191,224,7,255,208,3,253,0,0,0,31,128,2,149,0,0,144,0,0,0,5,0, + // 0x984d 額 + 77,152,38,38,124,40,1,252,0,0,168,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,253,0,11,255,255,255,255,128,0,0,253,0,11,255,255,255,255,128,63,255,255,255,251,255,255,255,255,128,63,255,255,255,240,0,47,208,0,0,63,255,255,255,240,0,63,192,0,0,63,65,64,3,240,0,63,128,0,0,63,67,244,3,240,0,63,64,0,0,63,75,240,3,241,255,255,255,255,0,0,31,250,169,1,255,255,255,255,0,0,63,255,255,65,255,255,255,255,0,0,191,255,255,1,252,0,0,191,0,2,253,0,254,1,252,0,0,191,0,11,253,1,252,1,252,0,0,191,0,63,255,131,248,1,255,255,255,255,0,127,255,255,240,1,255,255,255,255,0,30,15,255,208,1,254,170,170,255,0,0,2,255,192,1,252,0,0,191,0,0,2,255,240,1,252,0,0,191,0,0,15,255,253,1,252,0,0,191,0,0,127,226,255,129,255,255,255,255,0,7,255,64,127,241,255,255,255,255,0,127,253,0,15,241,254,170,170,255,0,127,255,255,255,193,252,0,0,191,0,47,255,255,254,1,252,0,0,191,0,6,255,255,254,1,252,0,0,191,0,2,248,0,190,1,255,255,255,255,0,2,248,0,190,1,255,255,255,255,0,2,248,0,190,1,255,255,255,254,0,2,248,0,190,0,5,0,1,0,0,2,248,0,190,0,31,192,31,128,0,2,255,255,254,0,191,224,63,244,0,2,255,255,254,7,255,128,11,254,0,2,255,255,254,191,253,0,1,255,128,2,248,0,1,255,224,0,0,127,224,2,248,0,0,127,0,0,0,15,128,0,0,0,0,20,0,0,0,1,0, + // 0x985e 類 + 94,152,38,38,124,40,1,252,0,0,84,0,0,0,0,0,0,0,2,64,252,10,64,0,0,0,0,0,15,192,252,15,223,255,255,255,255,192,11,224,252,31,207,255,255,255,255,192,3,240,252,63,79,255,255,255,255,192,2,244,252,62,0,0,47,208,0,0,0,64,252,4,0,0,63,192,0,0,63,255,255,255,240,0,63,128,0,0,63,255,255,255,241,255,255,255,254,0,63,255,255,255,242,255,255,255,255,0,0,11,253,0,2,255,255,255,255,0,0,31,255,192,2,252,0,0,191,0,0,63,255,244,2,252,0,0,191,0,0,255,255,254,2,252,0,0,191,0,3,253,252,255,194,252,0,0,191,0,15,244,252,47,242,255,255,255,255,0,127,224,252,7,210,255,255,255,255,0,47,64,252,1,130,254,170,170,255,0,13,0,252,0,2,252,0,0,191,0,0,0,84,0,2,252,0,0,191,0,0,0,252,0,2,252,0,0,191,0,0,0,252,0,2,255,255,255,255,0,0,1,253,0,2,255,255,255,255,0,63,255,255,255,242,254,170,170,255,0,63,255,255,255,242,252,0,0,191,0,63,255,255,255,242,252,0,0,191,0,0,2,252,0,2,252,0,0,191,0,0,3,252,0,2,255,255,255,255,0,0,3,255,128,2,255,255,255,255,0,0,11,255,240,1,255,255,255,254,0,0,31,255,253,0,1,0,1,0,0,0,63,211,255,128,31,192,31,128,0,1,255,128,191,224,191,224,63,240,0,15,254,0,31,199,255,128,15,253,0,127,248,0,7,111,253,0,2,255,128,47,208,0,1,255,240,0,0,127,224,14,0,0,0,127,64,0,0,31,192,0,0,0,0,24,0,0,0,2,0, + // 0x98a8 風 + 168,152,38,36,104,40,1,252,0,63,255,255,255,255,255,255,192,0,0,63,255,255,255,255,255,255,192,0,0,63,255,255,255,255,255,255,192,0,0,63,149,85,85,85,85,127,192,0,0,63,128,0,0,0,0,63,192,0,0,63,128,0,0,91,240,63,192,0,0,63,128,90,191,255,252,63,192,0,0,63,159,255,255,255,253,63,192,0,0,63,143,255,255,233,64,63,192,0,0,63,138,165,127,0,0,63,192,0,0,63,128,0,63,0,0,63,192,0,0,63,128,0,63,0,0,63,192,0,0,63,139,255,255,255,252,63,192,0,0,63,139,255,255,255,252,63,192,0,0,63,75,255,255,255,252,47,192,0,0,63,75,208,63,0,252,47,192,0,0,63,75,208,63,0,252,47,192,0,0,63,75,208,63,0,252,47,192,0,0,63,75,208,63,0,252,47,192,0,0,127,75,208,63,0,252,47,192,0,0,127,11,208,63,0,252,47,192,0,0,127,11,255,255,255,252,47,192,0,0,191,11,255,255,255,252,31,192,0,0,191,11,255,255,255,252,31,192,0,0,254,0,0,63,0,16,31,192,0,0,254,0,0,63,3,240,15,192,0,1,253,0,0,63,3,248,15,209,0,2,252,0,0,63,1,252,15,209,192,3,252,0,0,63,0,254,15,225,224,3,248,106,191,255,255,255,11,226,224,11,240,191,255,255,255,255,135,242,224,15,240,191,255,255,255,255,195,247,224,47,208,127,234,149,64,15,211,255,208,127,192,0,0,0,0,11,225,255,192,47,64,0,0,0,0,5,0,255,128,6,0,0,0,0,0,0,0,46,0, + // 0x98fd 飽 + 253,152,38,38,124,40,1,252,0,1,254,0,0,46,64,0,0,0,0,3,255,128,0,63,128,0,0,0,0,11,255,240,0,63,64,0,0,0,0,15,251,252,0,191,0,0,0,0,0,63,194,255,0,254,0,0,0,0,0,191,128,191,193,255,255,255,255,64,1,255,0,47,227,255,255,255,255,64,3,252,127,15,215,255,255,255,255,0,15,244,127,3,143,244,0,0,127,0,63,224,127,1,31,224,0,0,63,0,255,192,127,0,63,192,0,0,63,0,63,255,255,255,255,128,0,0,63,0,15,255,255,255,255,255,255,208,127,0,3,254,170,255,191,255,255,208,127,0,3,248,0,63,73,255,255,208,127,0,3,248,0,63,64,0,15,208,127,0,3,253,85,191,64,0,15,208,127,0,3,255,255,255,64,0,15,208,127,0,3,255,255,255,64,0,15,208,127,0,3,248,0,63,64,0,15,208,191,0,3,248,0,63,67,255,255,208,191,0,3,248,0,63,67,255,255,208,191,0,3,255,255,255,67,255,255,208,254,0,3,255,255,255,67,248,1,81,254,0,3,255,255,255,3,244,0,255,253,0,3,248,0,0,3,244,0,191,252,0,3,248,2,224,3,244,0,127,224,0,3,248,7,244,3,244,0,0,0,0,3,248,3,252,3,244,0,0,0,0,3,248,1,254,3,244,0,0,10,64,3,248,27,255,3,244,0,0,11,224,3,255,255,255,131,244,0,0,15,224,27,255,255,255,195,244,0,0,15,208,63,255,249,15,227,252,0,0,47,192,63,254,64,15,243,255,255,255,255,192,30,64,0,7,65,255,255,255,255,64,0,0,0,0,0,127,255,255,253,0,0,0,0,0,0,0,85,85,64,0, + // 0x9918 餘 + 24,153,38,38,124,40,1,252,0,3,252,0,0,0,127,64,0,0,0,11,255,0,0,0,255,192,0,0,0,15,255,192,0,1,255,224,0,0,0,47,223,240,0,3,255,240,0,0,0,127,131,252,0,11,247,252,0,0,0,255,1,254,0,31,225,254,0,0,3,252,0,191,64,63,192,191,64,0,11,254,170,191,192,255,64,63,208,0,47,255,255,239,67,254,0,15,244,0,255,207,255,217,11,248,0,7,253,0,127,0,0,0,63,240,0,1,255,128,28,0,0,0,255,192,0,0,191,224,3,255,255,254,255,255,255,255,255,192,3,255,255,254,125,255,255,255,239,128,3,250,170,254,52,255,255,255,226,0,3,240,0,190,0,0,63,64,0,0,3,240,0,190,0,0,63,64,0,0,3,255,255,254,0,0,63,64,0,0,3,255,255,254,0,0,63,64,0,0,3,249,85,254,0,0,63,128,0,0,3,240,0,190,63,255,255,255,255,128,3,240,0,190,63,255,255,255,255,128,3,255,255,254,63,255,255,255,255,128,3,255,255,254,0,0,63,64,0,0,3,250,170,169,0,0,63,64,0,0,3,240,0,0,3,244,63,67,240,0,3,240,0,0,3,240,63,67,244,0,3,255,255,254,7,240,63,66,252,0,3,255,255,254,15,208,63,64,253,0,3,255,255,254,31,192,63,64,191,0,3,240,0,0,63,128,63,64,63,64,3,240,0,0,127,0,63,64,63,192,3,255,255,255,254,0,63,64,31,192,3,255,255,255,124,0,63,64,15,192,3,255,255,255,0,0,127,64,9,0,3,240,0,0,0,63,255,0,0,0,3,240,0,0,0,31,255,0,0,0,3,240,0,0,0,15,248,0,0,0, + // 0x99ac 馬 + 172,153,37,37,114,40,1,251,0,31,255,255,255,255,255,255,224,0,0,31,255,255,255,255,255,255,224,0,0,31,255,255,255,255,255,255,224,0,0,31,208,0,47,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,255,255,255,255,255,255,64,0,0,31,255,255,255,255,255,255,64,0,0,31,255,255,255,255,255,255,64,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,255,255,255,255,255,255,64,0,0,31,255,255,255,255,255,255,64,0,0,31,255,255,255,255,255,255,64,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,192,0,31,208,0,0,0,0,0,31,213,85,111,213,85,85,85,0,0,31,255,255,255,255,255,255,255,64,0,31,255,255,255,255,255,255,255,64,0,31,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,191,0,0,16,0,0,0,0,20,0,191,0,0,127,0,80,6,64,252,0,191,0,0,191,7,240,31,128,191,0,255,0,0,254,3,240,15,192,63,128,255,0,1,253,3,244,15,224,31,192,254,0,2,252,3,248,7,240,15,208,254,0,3,248,2,248,3,240,7,65,253,0,11,244,2,252,3,244,0,2,253,0,31,240,1,252,2,244,5,7,252,0,127,208,1,252,0,0,31,255,248,0,47,128,0,64,0,0,15,255,240,0,2,0,0,0,0,0,15,255,128,0,0,0,0,0,0,0,0,0,0,0, + // 0x9a45 驅 + 69,154,38,36,104,40,1,252,11,255,255,255,31,255,255,255,255,128,11,255,255,255,31,255,255,255,255,128,11,255,255,255,31,255,255,255,255,128,11,208,188,0,31,128,0,0,0,0,11,208,188,0,31,128,0,0,0,0,11,208,188,0,31,128,255,255,244,0,11,255,255,252,31,128,255,255,244,0,11,255,255,252,31,128,253,86,244,0,11,255,255,252,31,128,252,2,244,0,11,208,188,0,31,128,252,2,244,0,11,208,188,0,31,128,252,2,244,0,11,208,188,0,31,128,252,2,244,0,11,255,255,252,31,128,255,255,244,0,11,255,255,252,31,128,255,255,244,0,11,255,255,252,31,128,85,85,80,0,11,208,188,0,31,128,0,0,0,0,11,208,188,0,31,128,0,0,0,0,11,208,188,0,31,143,255,79,255,64,11,255,255,255,31,143,255,79,255,64,11,255,255,255,31,143,95,79,95,64,11,255,255,255,31,143,11,79,11,64,0,0,0,63,31,143,11,79,11,64,0,0,0,63,31,143,11,79,11,64,9,1,142,63,31,143,11,79,11,64,15,122,207,63,31,143,11,79,11,64,15,57,215,127,31,143,11,79,11,64,15,60,227,255,31,143,255,79,255,64,31,60,242,255,31,143,255,79,255,64,30,60,176,127,31,133,85,5,85,0,46,60,176,126,31,128,0,0,0,0,61,60,0,126,31,128,0,0,0,0,124,20,0,189,31,255,255,255,255,208,120,0,0,253,31,255,255,255,255,208,0,0,127,252,31,255,255,255,255,208,0,0,63,248,31,128,0,0,0,0,0,0,42,144,26,64,0,0,0,0, + // 0x9ad4 體 + 212,154,37,38,124,40,2,252,0,0,0,0,0,6,129,160,0,0,2,170,170,164,0,11,193,240,0,0,7,255,255,244,0,11,193,240,0,0,7,255,255,244,0,11,193,240,0,0,7,208,1,244,15,255,255,255,252,0,7,208,1,244,15,255,255,255,252,0,7,208,2,244,15,219,230,245,252,0,7,211,255,244,15,131,193,224,252,0,7,211,255,244,15,215,214,245,252,0,7,211,209,244,15,255,255,255,252,0,7,211,209,244,15,255,255,255,252,0,7,211,209,244,15,131,193,224,252,0,7,211,209,244,15,131,193,224,252,0,191,255,255,255,207,215,230,245,252,0,191,255,255,255,207,255,255,255,252,0,190,170,170,175,207,255,255,255,252,0,188,0,0,15,192,0,0,0,0,0,189,0,0,15,192,0,0,0,0,0,191,255,255,255,255,255,255,255,255,0,3,255,255,244,63,255,255,255,255,0,3,250,171,244,42,170,170,170,170,0,3,240,3,244,0,0,0,0,0,0,3,240,3,244,7,255,255,255,244,0,3,255,255,244,7,255,255,255,244,0,3,255,255,244,7,229,85,87,244,0,3,250,171,244,7,224,0,3,244,0,3,240,3,244,7,224,0,3,244,0,3,240,3,244,7,229,85,87,244,0,3,255,255,244,7,255,255,255,244,0,3,255,255,244,7,255,255,255,244,0,3,250,171,244,0,44,0,46,64,0,3,240,3,244,0,126,0,63,0,0,3,240,3,244,0,63,0,126,0,0,3,240,3,244,0,47,64,252,0,0,3,240,3,244,170,191,235,254,170,64,3,240,255,240,255,255,255,255,255,64,3,240,127,240,255,255,255,255,255,64,3,224,62,64,0,0,0,0,0,0, + // 0x9ad8 高 + 216,154,35,38,86,40,2,252,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,1,254,0,0,0,0,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,127,255,255,255,255,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,3,254,170,170,170,191,128,0,0,3,252,0,0,0,63,128,0,0,3,252,0,0,0,63,128,0,0,3,252,0,0,0,63,128,0,0,3,255,255,255,255,255,128,0,0,3,255,255,255,255,255,128,0,0,1,170,170,170,170,170,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,11,240,0,0,0,0,0,15,240,11,240,0,0,0,0,0,15,240,11,240,6,170,170,170,144,15,240,11,240,11,255,255,255,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,224,0,15,224,15,240,11,240,11,250,170,175,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,255,255,255,224,15,240,11,240,11,224,0,0,127,255,240,11,240,11,224,0,0,63,255,208,11,240,0,0,0,0,63,255,128,7,240,0,0,0,0,21,84,0, + // 0x9ec3 黃 + 195,158,36,38,86,40,2,252,0,0,47,192,0,2,252,0,0,0,0,47,192,0,3,252,0,0,0,0,47,192,0,3,252,0,0,15,255,255,255,255,255,255,255,240,15,255,255,255,255,255,255,255,240,11,255,255,255,255,255,255,255,240,0,0,47,192,0,3,252,0,0,0,0,47,192,0,3,252,0,0,0,0,47,234,170,171,252,0,0,0,0,47,255,255,255,252,0,0,0,0,47,255,255,255,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,254,0,0,0,0,0,0,0,0,254,0,0,0,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,127,170,170,255,170,170,254,0,0,127,64,0,254,0,0,254,0,0,127,64,0,254,0,0,254,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,127,149,85,255,85,86,254,0,0,127,64,0,254,0,0,254,0,0,127,64,0,254,0,0,254,0,0,127,170,170,255,170,170,254,0,0,127,255,255,255,255,255,254,0,0,127,255,255,255,255,255,254,0,0,0,31,128,0,3,248,0,0,0,1,255,240,0,15,255,208,0,0,111,255,208,0,6,255,255,64,27,255,253,0,0,0,31,255,248,255,255,144,0,0,0,1,191,255,63,244,0,0,0,0,0,11,248,9,0,0,0,0,0,0,0,80, + // 0x9ede 點 + 222,158,38,38,124,40,1,252,0,0,0,0,0,0,26,128,0,0,10,170,170,170,160,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,192,60,2,240,0,31,192,0,0,15,196,60,18,240,0,31,192,0,0,15,236,60,63,240,0,31,192,0,0,15,221,60,122,240,0,31,192,0,0,15,206,60,182,240,0,31,192,0,0,15,207,60,242,240,0,31,255,255,208,15,207,125,226,240,0,31,255,255,208,15,202,125,210,240,0,31,255,255,208,15,192,60,2,240,0,31,229,85,64,15,234,190,171,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,15,255,255,255,240,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,0,0,190,0,0,0,31,192,0,0,15,255,255,255,244,85,111,229,85,0,15,255,255,255,244,255,255,255,255,0,15,255,255,255,244,255,255,255,255,0,0,0,190,0,0,255,255,255,255,0,0,0,190,0,0,253,0,0,191,0,1,85,255,175,252,253,0,0,191,0,63,255,255,255,252,253,0,0,191,0,63,255,255,255,252,253,0,0,191,0,63,250,165,80,0,253,0,0,191,0,0,0,0,7,128,253,0,0,191,0,2,6,139,203,208,253,0,0,191,0,7,215,199,195,240,253,0,0,191,0,11,199,195,209,248,253,0,0,191,0,11,195,210,240,252,254,85,85,255,0,15,195,225,240,125,255,255,255,255,0,31,131,224,244,52,255,255,255,255,0,63,3,224,144,0,255,255,255,255,0,126,1,64,0,0,253,0,0,191,0,8,0,0,0,0,189,0,0,106,0, + // 0x9f4a 齊 + 74,159,37,39,134,40,2,251,0,0,0,0,169,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,191,255,255,255,255,255,255,255,253,0,191,255,255,255,255,255,255,255,253,0,191,255,255,255,255,255,255,255,253,0,0,0,0,46,0,120,0,1,0,0,0,0,0,63,64,252,0,31,192,0,63,255,255,223,193,249,91,255,240,0,63,255,255,203,211,243,255,255,64,0,42,254,175,195,150,195,255,253,0,0,0,252,15,192,253,3,240,62,0,0,1,248,15,192,253,3,240,47,0,0,2,244,15,192,253,3,240,31,192,0,7,240,15,192,253,3,240,15,208,0,15,224,47,128,253,3,245,171,244,0,127,207,255,64,253,47,255,246,254,0,255,7,255,0,253,47,255,244,255,64,124,2,164,0,253,31,164,0,61,0,16,5,64,0,0,0,1,84,4,0,0,15,224,0,0,0,3,248,0,0,0,15,224,0,0,0,3,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,255,255,255,255,255,248,0,0,0,15,224,0,0,0,3,248,0,0,0,31,208,0,0,0,3,248,0,0,0,47,255,255,255,255,255,248,0,0,0,63,255,255,255,255,255,248,0,0,0,127,255,255,255,255,255,248,0,0,0,255,64,0,0,0,3,248,0,0,2,255,0,0,0,0,3,248,0,0,11,254,0,0,0,0,3,248,0,0,47,252,0,0,0,0,3,248,0,0,63,240,0,0,0,0,3,248,0,0,15,192,0,0,0,0,3,248,0,0,7,0,0,0,0,0,3,248,0,0,0,0,0,0,0,0,0,0,0,0, + // 0xff1a : + 26,255,8,27,54,40,16,1,11,224,47,248,63,252,127,253,63,252,47,248,6,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,224,63,248,63,252,127,253,63,252,47,244,6,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Vietnamese_29.cpp b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Vietnamese_29.cpp new file mode 100644 index 000000000000..1de61862282a --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/NotoSans/Medium_29px/NotoSans_Medium_Vietnamese_29.cpp @@ -0,0 +1,246 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// NotoSans_Medium Vietnamese 40pt, capital 'A' height: 29px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +extern const uint8_t NotoSans_Medium_Vietnamese_29[15205] = { + 162,29,2,1,249,30,38,246, // unifont_t + // 0x0102 Ă + 2,1,26,37,3,26,0,0,0,11,192,0,62,0,0,0,7,208,0,189,0,0,0,3,254,171,252,0,0,0,1,255,255,244,0,0,0,0,127,255,208,0,0,0,0,6,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x0103 ă + 3,1,18,31,155,23,2,255,3,208,0,47,0,3,240,0,63,0,2,254,171,253,0,0,255,255,252,0,0,63,255,224,0,0,6,170,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x0110 Đ + 16,1,26,29,203,29,1,0,2,170,170,148,0,0,0,3,255,255,255,224,0,0,3,255,255,255,255,0,0,3,255,255,255,255,208,0,3,253,0,6,255,244,0,3,253,0,0,47,253,0,3,253,0,0,7,255,0,3,253,0,0,2,255,128,3,253,0,0,0,255,192,3,253,0,0,0,127,208,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,255,255,255,224,0,47,240,171,255,170,160,0,47,240,3,253,0,0,0,63,224,3,253,0,0,0,63,224,3,253,0,0,0,127,192,3,253,0,0,0,255,192,3,253,0,0,1,255,128,3,253,0,0,3,255,0,3,253,0,0,31,253,0,3,253,0,1,255,248,0,3,255,170,255,255,224,0,3,255,255,255,255,64,0,3,255,255,255,244,0,0,3,255,255,249,0,0,0, + // 0x0111 đ + 17,1,23,32,192,25,2,255,0,0,0,1,84,0,0,0,0,3,253,0,0,0,0,3,253,0,0,0,0,3,253,0,0,2,255,255,255,244,0,2,255,255,255,248,0,2,255,255,255,248,0,0,0,3,254,0,0,0,0,3,253,0,0,1,84,3,253,0,0,127,255,130,253,0,2,255,255,246,253,0,11,255,255,254,253,0,31,253,0,191,253,0,63,240,0,15,253,0,127,208,0,11,253,0,127,192,0,3,253,0,191,192,0,3,253,0,255,128,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,64,0,2,253,0,255,128,0,2,253,0,191,128,0,3,253,0,127,192,0,3,253,0,63,208,0,7,253,0,63,240,0,15,253,0,31,254,1,191,253,0,11,255,255,254,253,0,2,255,255,241,253,0,0,127,255,128,253,0,0,1,80,0,0,0, + // 0x0128 Ĩ + 40,1,16,37,148,14,255,0,0,164,0,25,11,255,64,61,31,255,249,252,63,175,255,248,61,1,255,240,120,0,26,64,0,0,0,0,0,0,0,0,6,170,170,144,7,255,255,224,7,255,255,224,0,191,254,64,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,15,240,0,0,31,248,0,7,255,255,208,7,255,255,224,7,255,255,224, + // 0x0129 ĩ + 41,1,15,30,120,11,254,0,1,144,0,104,31,254,0,188,63,255,230,248,191,191,255,240,248,7,255,208,240,0,106,0,0,0,0,0,0,0,0,0,0,26,144,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0,0,47,224,0, + // 0x0168 Ũ + 104,1,23,38,228,30,3,255,0,1,164,0,40,0,0,15,255,64,124,0,0,63,255,246,252,0,0,63,175,255,244,0,0,188,2,255,224,0,0,180,0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x0169 ũ + 105,1,19,31,155,25,3,255,0,25,0,2,128,0,255,224,11,192,3,255,254,111,128,7,250,255,255,0,15,192,47,253,0,11,64,2,160,0,0,0,0,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x01a0 Ơ + 160,1,31,32,0,32,2,255,0,0,0,0,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0, + // 0x01a1 ơ + 161,1,25,26,182,25,2,255,0,0,0,0,0,255,128,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0, + // 0x01af Ư + 175,1,31,32,0,32,3,255,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0, + // 0x01b0 ư + 176,1,27,26,182,28,3,255,0,0,0,0,0,15,244,0,0,0,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0, + // 0x0303 ̃ + 3,3,15,6,24,0,236,24,1,144,0,40,15,254,0,188,63,255,230,248,127,175,255,244,188,2,255,224,180,0,42,0, + // 0x0309 ̉ + 9,3,8,10,20,0,241,23,255,144,255,248,171,253,0,254,0,253,2,252,47,244,47,128,31,0,5,0, + // 0x0323 ̣ + 35,3,5,6,12,0,241,248,5,0,63,192,127,192,127,192,63,192,5,0, + // 0x0340 ̀ + 64,3,9,7,21,0,249,24,170,128,0,127,224,0,47,240,0,11,252,0,1,254,0,0,127,64,0,31,128, + // 0x0341 ́ + 65,3,9,7,21,0,254,24,0,170,128,2,255,64,3,254,0,15,248,0,47,224,0,127,64,0,189,0,0, + // 0x1ea0 Ạ + 160,30,26,37,3,26,0,248,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,3,253,0,0,0,0,0,3,253,0,0,0,0,0,3,252,0,0,0,0,0,0,80,0,0,0, + // 0x1ea1 ạ + 161,30,18,30,150,23,2,248,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0,0,0,0,0,0,0,0,16,0,0,0,2,253,0,0,0,3,255,0,0,0,3,255,0,0,0,2,253,0,0,0,0,16,0,0, + // 0x1ea2 Ả + 162,30,26,40,24,26,0,0,0,0,31,249,0,0,0,0,0,31,255,64,0,0,0,0,26,191,192,0,0,0,0,0,15,208,0,0,0,0,0,15,192,0,0,0,0,0,127,192,0,0,0,0,3,255,0,0,0,0,0,3,244,0,0,0,0,0,2,240,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1ea3 ả + 163,30,18,34,170,23,2,255,0,11,253,0,0,0,15,255,192,0,0,10,191,224,0,0,0,11,224,0,0,0,11,224,0,0,0,47,208,0,0,1,255,64,0,0,1,248,0,0,0,1,244,0,0,0,0,80,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1ea4 Ấ + 164,30,26,39,17,26,0,0,0,0,0,0,0,255,0,0,0,0,0,1,252,0,0,0,2,169,3,244,0,0,0,15,255,15,192,0,0,0,47,255,197,0,0,0,0,191,95,224,0,0,0,1,252,3,244,0,0,0,3,224,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1ea5 ấ + 165,30,21,34,204,23,2,255,0,0,0,0,21,64,0,0,0,0,255,0,0,0,0,1,253,0,0,3,255,3,244,0,0,15,255,139,192,0,0,47,239,208,0,0,0,191,71,244,0,0,1,252,1,252,0,0,2,224,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,0,6,255,255,253,0,0,11,255,255,255,64,0,7,254,91,255,192,0,2,128,0,127,208,0,0,0,0,63,224,0,0,0,0,47,224,0,0,0,0,31,240,0,0,0,0,31,240,0,0,27,255,255,240,0,3,255,255,255,240,0,31,255,250,191,240,0,127,244,0,31,240,0,255,192,0,31,240,0,255,64,0,47,240,0,255,0,0,47,240,0,255,64,0,63,240,0,255,128,0,255,240,0,255,208,7,255,240,0,127,255,255,223,240,0,47,255,255,75,240,0,7,255,248,7,240,0,0,21,64,0,0,0, + // 0x1ea6 Ầ + 166,30,26,39,17,26,0,0,15,240,0,0,0,0,0,3,244,0,0,0,0,0,1,252,2,168,0,0,0,0,63,15,255,0,0,0,0,5,47,255,192,0,0,0,0,191,95,224,0,0,0,1,252,3,244,0,0,0,3,224,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1ea7 ầ + 167,30,20,34,170,23,0,255,85,0,0,0,0,127,128,0,0,0,31,192,0,0,0,7,240,63,240,0,0,248,255,252,0,0,2,254,254,0,0,7,244,127,64,0,31,192,15,208,0,46,0,2,224,0,0,0,0,0,0,0,0,0,0,0,1,191,249,0,0,111,255,255,208,0,191,255,255,244,0,127,229,191,252,0,40,0,7,253,0,0,0,3,254,0,0,0,2,254,0,0,0,1,255,0,0,0,1,255,0,1,191,255,255,0,63,255,255,255,1,255,255,171,255,7,255,64,1,255,15,252,0,1,255,15,244,0,2,255,15,240,0,2,255,15,244,0,3,255,15,248,0,15,255,15,253,0,127,255,7,255,255,253,255,2,255,255,244,191,0,127,255,128,127,0,1,84,0,0, + // 0x1ea8 Ẩ + 168,30,26,42,38,26,0,0,0,0,0,0,5,0,0,0,0,0,0,47,240,0,0,0,0,0,22,248,0,0,0,0,0,0,188,0,0,0,0,0,1,248,0,0,0,6,168,15,224,0,0,0,15,255,11,64,0,0,0,63,255,133,0,0,0,0,191,95,208,0,0,0,2,252,7,244,0,0,0,7,224,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1ea9 ẩ + 169,30,20,36,180,23,2,255,0,0,0,15,160,0,0,0,15,252,0,0,0,0,125,0,0,0,0,61,0,0,0,2,252,0,3,255,3,208,0,11,255,195,192,0,47,239,224,0,0,127,71,244,0,1,252,0,253,0,2,224,0,46,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eaa Ẫ + 170,30,26,42,38,26,0,0,0,0,127,64,30,0,0,0,1,255,248,125,0,0,0,3,251,255,252,0,0,0,3,192,127,240,0,0,0,1,64,1,64,0,0,0,0,1,84,0,0,0,0,0,11,255,0,0,0,0,0,31,255,128,0,0,0,0,127,159,208,0,0,0,1,253,3,244,0,0,0,3,224,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1eab ẫ + 171,30,18,37,185,23,2,255,0,5,0,5,0,0,127,224,31,0,0,255,254,190,0,2,245,191,252,0,3,192,11,224,0,0,0,0,0,0,0,2,254,0,0,0,11,255,128,0,0,31,255,208,0,0,127,71,240,0,1,252,1,252,0,2,224,0,46,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eac Ậ + 172,30,26,46,66,26,0,248,0,0,6,169,0,0,0,0,0,15,255,0,0,0,0,0,63,255,192,0,0,0,0,191,175,240,0,0,0,1,254,11,248,0,0,0,7,244,1,254,0,0,0,15,128,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,3,254,0,0,0,0,0,3,254,0,0,0,0,0,3,252,0,0,0,0,0,0,80,0,0,0, + // 0x1ead ậ + 173,30,18,39,195,23,2,248,0,2,170,0,0,0,11,255,128,0,0,31,255,208,0,0,63,223,244,0,0,255,3,252,0,3,252,0,255,0,11,224,0,47,128,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0,0,0,0,0,0,0,0,80,0,0,0,3,252,0,0,0,3,253,0,0,0,3,253,0,0,0,3,252,0,0,0,0,80,0,0, + // 0x1eae Ắ + 174,30,26,41,31,26,0,0,0,0,0,5,80,0,0,0,0,0,31,208,0,0,0,0,0,63,64,0,0,0,0,0,190,0,0,0,0,1,65,244,20,0,0,0,3,208,0,124,0,0,0,2,244,0,252,0,0,0,1,255,175,244,0,0,0,0,191,255,224,0,0,0,0,31,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1eaf ắ + 175,30,18,35,175,23,2,255,0,0,11,224,0,0,0,31,208,0,0,0,63,64,0,0,0,189,0,0,2,224,164,46,0,2,240,0,61,0,1,253,1,252,0,0,191,255,244,0,0,63,255,224,0,0,6,169,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eb0 Ằ + 176,30,26,41,31,26,0,0,0,0,85,0,0,0,0,0,0,127,64,0,0,0,0,0,31,192,0,0,0,0,0,7,224,0,0,0,0,1,65,244,20,0,0,0,3,208,0,124,0,0,0,3,240,0,252,0,0,0,1,255,175,244,0,0,0,0,191,255,224,0,0,0,0,31,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1eb1 ằ + 177,30,18,35,175,23,2,255,0,127,64,0,0,0,47,192,0,0,0,11,224,0,0,0,2,240,0,0,2,224,164,62,0,2,240,0,125,0,1,253,1,252,0,0,255,255,244,0,0,63,255,224,0,0,6,169,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eb2 Ẳ + 178,30,26,42,38,26,0,0,0,0,6,160,0,0,0,0,0,7,253,0,0,0,0,0,0,47,0,0,0,0,0,0,31,0,0,0,0,0,0,253,0,0,0,0,1,65,240,20,0,0,0,3,208,64,124,0,0,0,3,240,0,252,0,0,0,1,255,175,244,0,0,0,0,191,255,224,0,0,0,0,31,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1eb3 ẳ + 179,30,18,36,180,23,2,255,0,3,253,0,0,0,2,191,0,0,0,0,15,64,0,0,0,31,0,0,0,0,253,0,0,2,224,240,46,0,2,240,0,62,0,0,253,1,252,0,0,191,255,248,0,0,47,255,224,0,0,2,170,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eb4 Ẵ + 180,30,26,42,38,26,0,0,0,0,127,64,30,0,0,0,1,255,248,125,0,0,0,3,251,255,252,0,0,0,3,192,127,244,0,0,0,1,64,1,64,0,0,0,0,0,0,0,0,0,0,3,208,0,124,0,0,0,3,240,0,252,0,0,0,1,255,175,244,0,0,0,0,191,255,224,0,0,0,0,31,255,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240, + // 0x1eb5 ẵ + 181,30,18,37,185,23,2,255,0,4,0,5,0,0,127,224,15,0,0,255,254,190,0,2,245,191,252,0,3,192,11,240,0,0,0,0,0,0,1,144,0,25,0,2,240,0,61,0,1,249,1,252,0,0,255,255,248,0,0,63,255,224,0,0,6,186,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0, + // 0x1eb6 Ặ + 182,30,26,45,59,26,0,248,0,7,192,0,63,0,0,0,3,224,0,126,0,0,0,3,254,171,252,0,0,0,0,255,255,244,0,0,0,0,127,255,208,0,0,0,0,6,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,169,0,0,0,0,0,11,255,0,0,0,0,0,15,255,0,0,0,0,0,31,255,128,0,0,0,0,47,255,192,0,0,0,0,63,175,208,0,0,0,0,127,95,224,0,0,0,0,255,15,240,0,0,0,1,255,11,244,0,0,0,2,253,7,252,0,0,0,3,252,3,252,0,0,0,7,252,2,254,0,0,0,15,244,1,255,0,0,0,15,240,0,255,64,0,0,47,224,0,191,128,0,0,63,208,0,63,192,0,0,127,192,0,63,208,0,0,191,255,255,255,240,0,0,255,255,255,255,240,0,1,255,255,255,255,248,0,3,255,255,255,255,252,0,3,252,0,0,3,253,0,11,252,0,0,3,254,0,15,248,0,0,1,255,0,31,240,0,0,0,255,64,47,240,0,0,0,191,192,63,208,0,0,0,127,192,127,192,0,0,0,63,224,255,128,0,0,0,47,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,3,254,0,0,0,0,0,3,254,0,0,0,0,0,3,252,0,0,0,0,0,0,80,0,0,0, + // 0x1eb7 ặ + 183,30,18,38,190,23,2,248,3,224,0,31,0,2,240,0,63,0,1,254,170,254,0,0,255,255,252,0,0,47,255,240,0,0,2,170,64,0,0,0,0,0,0,0,0,0,0,0,0,27,255,144,0,6,255,255,253,0,11,255,255,255,64,7,254,91,255,192,2,128,0,127,208,0,0,0,63,224,0,0,0,47,224,0,0,0,31,240,0,0,0,31,240,0,27,255,255,240,3,255,255,255,240,31,255,250,191,240,127,244,0,31,240,255,192,0,31,240,255,64,0,47,240,255,0,0,47,240,255,64,0,63,240,255,128,0,255,240,255,208,7,255,240,127,255,255,223,240,47,255,255,75,240,7,255,248,7,240,0,21,64,0,0,0,0,0,0,0,0,0,80,0,0,0,3,248,0,0,0,11,252,0,0,0,11,252,0,0,0,3,248,0,0,0,0,80,0,0, + // 0x1eb8 Ẹ + 184,30,16,37,148,22,4,248,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,1,64,0,0,15,240,0,0,31,244,0,0,31,244,0,0,15,240,0,0,1,64,0, + // 0x1eb9 ẹ + 185,30,19,30,150,23,2,248,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0,0,0,0,0,0,0,0,20,0,0,0,0,255,0,0,0,1,255,64,0,0,1,255,64,0,0,0,255,0,0,0,0,20,0,0, + // 0x1eba Ẻ + 186,30,16,40,160,22,4,0,0,63,228,0,0,127,254,0,0,42,255,0,0,0,63,64,0,0,63,64,0,1,255,0,0,15,252,0,0,11,208,0,0,11,192,0,0,1,64,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x1ebb ẻ + 187,30,19,34,170,23,2,255,0,3,254,64,0,0,3,255,224,0,0,2,175,244,0,0,0,3,248,0,0,0,3,244,0,0,0,11,240,0,0,0,191,208,0,0,0,190,0,0,0,0,124,0,0,0,0,20,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x1ebc Ẽ + 188,30,16,37,148,22,4,0,0,164,0,25,11,255,64,61,31,255,249,252,63,175,255,248,61,1,255,240,120,0,26,64,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x1ebd ẽ + 189,30,19,31,155,23,2,255,0,25,0,2,128,1,255,224,11,192,3,255,254,111,128,11,251,255,255,0,15,192,63,253,0,15,64,6,160,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x1ebe Ế + 190,30,19,39,195,22,4,0,0,0,0,3,252,0,0,0,11,240,0,26,160,31,192,0,63,252,63,0,0,255,254,20,0,2,253,127,64,0,11,240,31,208,0,31,128,3,240,0,0,0,0,0,0,0,0,0,0,0,170,170,170,169,0,255,255,255,255,0,255,255,255,255,0,255,255,255,255,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,168,0,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,0,255,255,255,255,0,255,255,255,255,0, + // 0x1ebf ế + 191,30,21,34,204,23,2,255,0,0,0,0,21,64,0,0,0,0,127,64,0,0,0,0,254,0,0,2,255,66,248,0,0,11,255,199,208,0,0,31,255,240,0,0,0,63,131,248,0,0,0,253,0,254,0,0,1,224,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,252,0,0,2,255,255,255,64,0,11,255,86,255,192,0,31,244,0,63,224,0,63,224,0,15,240,0,63,192,0,11,244,0,127,192,0,7,248,0,191,128,0,7,252,0,255,255,255,255,252,0,255,255,255,255,252,0,255,255,255,255,252,0,255,128,0,0,0,0,255,128,0,0,0,0,191,192,0,0,0,0,127,192,0,0,0,0,63,224,0,0,0,0,47,248,0,0,16,0,15,255,64,22,240,0,3,255,255,255,240,0,0,255,255,255,240,0,0,27,255,255,64,0,0,0,21,64,0,0, + // 0x1ec0 Ề + 192,30,19,39,195,22,1,0,255,0,0,0,0,63,64,0,0,0,31,192,42,128,0,3,240,255,240,0,0,82,255,248,0,0,11,245,254,0,0,31,192,63,64,0,62,0,11,192,0,0,0,0,0,0,0,0,0,0,2,170,170,170,164,3,255,255,255,252,3,255,255,255,252,3,255,255,255,252,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,255,170,170,160,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,252,0,0,0,3,255,170,170,168,3,255,255,255,252,3,255,255,255,252,3,255,255,255,252, + // 0x1ec1 ề + 193,30,20,34,170,23,1,255,85,0,0,0,0,255,0,0,0,0,63,128,0,0,0,15,208,191,208,0,2,241,255,240,0,0,3,255,252,0,0,15,224,255,0,0,63,64,47,128,0,120,0,7,192,0,0,0,0,0,0,0,0,0,0,0,1,191,228,0,0,31,255,255,0,0,191,255,255,208,2,255,213,191,240,7,253,0,15,248,15,248,0,3,252,15,240,0,2,253,31,240,0,1,254,47,224,0,1,255,63,255,255,255,255,63,255,255,255,255,63,255,255,255,255,63,224,0,0,0,63,224,0,0,0,47,240,0,0,0,31,240,0,0,0,15,248,0,0,0,11,254,0,0,4,3,255,208,5,188,0,255,255,255,252,0,63,255,255,252,0,6,255,255,208,0,0,5,80,0, + // 0x1ec2 Ể + 194,30,18,42,210,22,4,0,0,0,0,84,0,0,0,0,191,192,0,0,0,91,224,0,0,0,2,240,0,0,0,7,224,0,26,160,63,128,0,63,252,61,0,0,255,254,20,0,2,252,127,64,0,11,240,31,208,0,31,128,3,240,0,0,0,0,0,0,0,0,0,0,0,170,170,170,169,0,255,255,255,255,0,255,255,255,255,0,255,255,255,255,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,168,0,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,0,0,0,0,255,234,170,170,0,255,255,255,255,0,255,255,255,255,0,255,255,255,255,0, + // 0x1ec3 ể + 195,30,20,36,180,23,2,255,0,0,0,11,224,0,0,0,15,252,0,0,0,0,62,0,0,0,0,61,0,0,0,2,252,0,3,255,3,224,0,11,255,195,192,0,31,239,224,0,0,127,71,248,0,0,253,0,253,0,2,224,0,46,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x1ec4 Ễ + 196,30,16,42,168,22,4,0,1,253,0,180,11,255,209,240,15,239,255,224,31,1,255,192,20,0,21,0,0,5,80,0,0,63,248,0,0,191,253,0,2,253,191,64,7,240,31,192,31,128,2,240,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x1ec5 ễ + 197,30,19,37,185,23,2,255,0,5,0,5,0,0,127,224,15,0,0,255,255,191,0,1,245,191,252,0,2,208,11,244,0,0,0,0,0,0,0,2,255,0,0,0,7,255,128,0,0,15,255,224,0,0,63,135,244,0,0,253,0,253,0,2,224,0,31,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0, + // 0x1ec6 Ệ + 198,30,16,46,184,22,4,248,0,10,164,0,0,63,253,0,0,191,255,0,2,255,191,192,7,248,31,240,31,224,7,248,47,64,0,189,0,0,0,0,0,0,0,0,170,170,170,169,255,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,168,255,255,255,252,255,255,255,252,255,255,255,252,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,234,170,170,255,255,255,255,255,255,255,255,255,255,255,255,0,0,0,0,0,0,0,0,0,1,64,0,0,15,240,0,0,31,244,0,0,31,244,0,0,15,240,0,0,1,64,0, + // 0x1ec7 ệ + 199,30,19,39,195,23,2,248,0,2,170,0,0,0,11,255,128,0,0,31,255,208,0,0,63,223,244,0,0,255,3,252,0,3,252,0,255,0,7,224,0,31,128,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,127,255,252,0,2,255,255,255,64,11,255,86,255,192,31,244,0,63,224,63,224,0,15,240,63,192,0,11,244,127,192,0,7,248,191,128,0,7,252,255,255,255,255,252,255,255,255,255,252,255,255,255,255,252,255,128,0,0,0,255,128,0,0,0,191,192,0,0,0,127,192,0,0,0,63,224,0,0,0,47,248,0,0,16,15,255,64,22,240,3,255,255,255,240,0,255,255,255,240,0,27,255,255,64,0,0,21,64,0,0,0,0,0,0,0,0,20,0,0,0,0,255,0,0,0,1,255,64,0,0,1,255,64,0,0,0,255,0,0,0,0,20,0,0, + // 0x1ec8 Ỉ + 200,30,12,40,120,14,1,0,1,169,0,3,255,208,3,255,244,0,3,248,0,2,248,0,3,244,0,127,240,0,127,64,0,125,0,0,61,0,0,0,0,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254, + // 0x1ec9 ỉ + 201,30,8,33,66,11,2,0,127,224,191,253,106,255,0,127,0,127,1,254,15,248,15,192,15,192,5,64,0,0,26,144,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224,47,224, + // 0x1eca Ị + 202,30,12,37,111,14,1,248,106,170,169,127,255,254,127,255,254,11,255,228,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,0,255,0,1,255,128,127,255,253,127,255,254,127,255,254,0,0,0,0,0,0,0,20,0,0,255,0,1,255,64,1,255,64,0,255,0,0,20,0, + // 0x1ecb ị + 203,30,5,38,76,11,3,248,42,0,191,128,255,192,255,128,127,0,0,0,0,0,0,0,106,64,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,191,128,0,0,0,0,4,0,191,64,255,192,255,192,127,64,4,0, + // 0x1ecc Ọ + 204,30,27,37,3,31,2,248,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,254,0,0,0,0,0,2,255,0,0,0,0,0,2,255,0,0,0,0,0,1,254,0,0,0,0,0,0,20,0,0,0, + // 0x1ecd ọ + 205,30,21,30,180,24,2,248,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,255,0,0,0,0,1,255,64,0,0,0,1,255,64,0,0,0,0,255,0,0,0,0,0,20,0,0,0, + // 0x1ece Ỏ + 206,30,27,41,31,31,2,255,0,0,1,165,0,0,0,0,0,7,255,192,0,0,0,0,7,255,240,0,0,0,0,0,7,244,0,0,0,0,0,3,244,0,0,0,0,0,7,240,0,0,0,0,0,191,208,0,0,0,0,0,254,64,0,0,0,0,0,188,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x1ecf ỏ + 207,30,21,34,204,24,2,255,0,2,255,64,0,0,0,3,255,240,0,0,0,2,175,248,0,0,0,0,2,252,0,0,0,0,2,248,0,0,0,0,11,244,0,0,0,0,127,224,0,0,0,0,126,0,0,0,0,0,61,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x1ed0 Ố + 208,30,27,40,24,31,2,255,0,0,0,0,0,127,128,0,0,0,0,0,255,0,0,0,1,170,2,252,0,0,0,7,255,131,224,0,0,0,15,255,209,64,0,0,0,63,203,240,0,0,0,0,254,1,252,0,0,0,2,244,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x1ed1 ố + 209,30,21,34,204,24,2,255,0,0,0,0,21,64,0,0,0,0,63,192,0,0,0,0,191,0,0,1,255,129,252,0,0,3,255,211,224,0,0,15,255,240,0,0,0,63,194,252,0,0,0,190,0,191,0,0,0,244,0,31,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x1ed2 Ồ + 210,30,27,40,24,31,2,255,7,248,0,0,0,0,0,1,252,0,0,0,0,0,0,127,1,170,0,0,0,0,31,135,255,128,0,0,0,1,79,255,208,0,0,0,0,63,203,244,0,0,0,0,191,1,252,0,0,0,2,248,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x1ed3 ồ + 211,30,22,34,204,24,1,255,85,0,0,0,0,0,191,64,0,0,0,0,47,192,0,0,0,0,11,224,127,224,0,0,1,244,255,244,0,0,0,3,255,253,0,0,0,11,240,191,0,0,0,47,128,31,192,0,0,61,0,2,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,191,228,0,0,0,31,255,255,128,0,0,191,255,255,240,0,2,255,250,191,252,0,7,255,0,11,254,0,15,252,0,2,255,0,15,244,0,0,255,128,31,240,0,0,191,192,47,224,0,0,127,192,63,224,0,0,63,192,63,208,0,0,63,208,63,208,0,0,63,208,63,224,0,0,63,192,63,224,0,0,63,192,47,240,0,0,127,192,31,240,0,0,191,128,15,248,0,0,255,64,7,253,0,3,255,0,3,255,144,31,253,0,0,255,255,255,244,0,0,63,255,255,208,0,0,7,255,254,0,0,0,0,21,64,0,0, + // 0x1ed4 Ổ + 212,30,27,43,45,31,2,255,0,0,0,0,5,64,0,0,0,0,0,15,248,0,0,0,0,0,5,189,0,0,0,0,0,0,62,0,0,0,0,0,0,125,0,0,0,1,170,3,244,0,0,0,7,255,131,192,0,0,0,15,255,209,64,0,0,0,63,203,240,0,0,0,0,254,1,252,0,0,0,2,244,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x1ed5 ổ + 213,30,21,36,216,24,2,255,0,0,0,7,228,0,0,0,0,7,254,0,0,0,0,0,47,0,0,0,0,0,31,0,0,0,0,1,190,0,0,1,255,130,244,0,0,3,255,209,224,0,0,15,255,240,0,0,0,63,194,252,0,0,0,190,0,191,0,0,0,244,0,31,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x1ed6 Ỗ + 214,30,27,43,45,31,2,255,0,0,47,144,15,0,0,0,0,191,253,47,0,0,0,1,250,255,253,0,0,0,2,224,31,248,0,0,0,1,64,1,64,0,0,0,0,0,85,0,0,0,0,0,3,255,64,0,0,0,0,15,255,208,0,0,0,0,47,219,240,0,0,0,0,190,1,252,0,0,0,2,244,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0, + // 0x1ed7 ỗ + 215,30,21,37,222,24,2,255,0,1,0,1,64,0,0,47,244,11,128,0,0,127,255,175,64,0,0,248,127,254,0,0,0,240,7,248,0,0,0,0,0,0,0,0,0,0,255,64,0,0,0,3,255,192,0,0,0,11,255,240,0,0,0,47,194,252,0,0,0,190,0,127,0,0,0,244,0,11,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0, + // 0x1ed8 Ộ + 216,30,27,46,66,31,2,248,0,0,1,170,0,0,0,0,0,7,255,192,0,0,0,0,15,255,224,0,0,0,0,63,223,244,0,0,0,0,255,67,253,0,0,0,2,252,0,191,64,0,0,7,224,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,255,228,0,0,0,7,255,255,255,64,0,0,47,255,255,255,240,0,0,191,255,239,255,252,0,2,255,224,0,31,255,0,7,255,64,0,2,255,128,15,252,0,0,0,255,208,31,248,0,0,0,63,224,47,240,0,0,0,47,240,63,224,0,0,0,31,244,63,208,0,0,0,15,248,127,192,0,0,0,15,252,127,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,191,192,0,0,0,11,252,127,192,0,0,0,15,252,127,208,0,0,0,15,248,63,224,0,0,0,15,244,63,240,0,0,0,47,240,31,244,0,0,0,63,240,15,252,0,0,0,191,208,11,254,0,0,1,255,192,3,255,192,0,11,255,64,0,255,254,85,191,254,0,0,63,255,255,255,244,0,0,11,255,255,255,208,0,0,0,191,255,249,0,0,0,0,1,85,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1,254,0,0,0,0,0,2,255,0,0,0,0,0,2,255,0,0,0,0,0,1,254,0,0,0,0,0,0,20,0,0,0, + // 0x1ed9 ộ + 217,30,21,39,234,24,2,248,0,0,170,64,0,0,0,3,255,208,0,0,0,11,255,240,0,0,0,31,251,252,0,0,0,127,129,255,0,0,1,254,0,127,128,0,2,244,0,11,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,255,144,0,0,0,127,255,254,0,0,2,255,255,255,192,0,11,255,234,255,240,0,31,252,0,47,248,0,63,240,0,11,252,0,63,208,0,3,254,0,127,192,0,2,255,0,191,128,0,1,255,0,255,128,0,0,255,0,255,64,0,0,255,64,255,64,0,0,255,64,255,128,0,0,255,0,255,128,0,0,255,0,191,192,0,1,255,0,127,192,0,2,254,0,63,224,0,3,253,0,31,244,0,15,252,0,15,254,64,127,244,0,3,255,255,255,208,0,0,255,255,255,64,0,0,31,255,248,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,255,0,0,0,0,1,255,64,0,0,0,1,255,64,0,0,0,0,255,0,0,0,0,0,20,0,0,0, + // 0x1eda Ớ + 218,30,31,39,56,32,2,255,0,0,0,2,170,0,0,0,0,0,0,11,253,0,0,0,0,0,0,31,244,0,0,0,0,0,0,63,208,0,0,0,0,0,0,191,64,0,0,0,0,0,1,253,0,0,0,0,0,0,2,224,0,0,0,0,0,0,0,0,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0, + // 0x1edb ớ + 219,30,25,32,224,25,2,255,0,0,1,170,64,0,0,0,0,3,255,0,0,0,0,0,15,252,0,0,0,0,0,47,240,0,0,0,0,0,63,192,0,0,0,0,0,254,0,0,0,0,0,1,248,0,0,255,128,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0, + // 0x1edc Ờ + 220,30,31,39,56,32,2,255,0,0,170,128,0,0,0,0,0,0,191,208,0,0,0,0,0,0,47,240,0,0,0,0,0,0,11,248,0,0,0,0,0,0,2,253,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,31,128,0,0,0,0,0,0,0,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0, + // 0x1edd ờ + 221,30,25,32,224,25,2,255,0,106,128,0,0,0,0,0,63,240,0,0,0,0,0,31,244,0,0,0,0,0,7,252,0,0,0,0,0,1,255,0,0,0,0,0,0,63,128,0,0,0,0,0,11,192,0,255,128,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0, + // 0x1ede Ở + 222,30,31,41,72,32,2,255,0,0,11,254,0,0,0,0,0,0,11,255,192,0,0,0,0,0,10,175,240,0,0,0,0,0,0,11,240,0,0,0,0,0,0,7,240,0,0,0,0,0,0,31,224,0,0,0,0,0,0,255,128,0,0,0,0,0,0,252,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,80,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0, + // 0x1edf ở + 223,30,25,34,238,25,2,255,0,3,254,64,0,0,0,0,3,255,224,0,0,0,0,2,175,240,0,0,0,0,0,3,244,0,0,0,0,0,3,244,0,0,0,0,0,11,240,0,0,0,0,0,191,208,0,0,0,0,0,189,0,0,0,0,0,0,188,0,0,255,128,0,0,20,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0, + // 0x1ee0 Ỡ + 224,30,31,38,48,32,2,255,0,0,26,0,2,128,0,0,0,0,255,240,11,192,0,0,0,3,255,254,111,192,0,0,0,7,250,255,255,64,0,0,0,11,192,47,254,0,0,0,0,11,64,2,164,0,0,0,0,0,0,0,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0, + // 0x1ee1 ỡ + 225,30,25,31,217,25,2,255,0,10,64,1,144,0,0,0,191,244,3,224,0,0,1,255,255,159,208,0,0,3,250,255,255,192,0,0,3,208,31,255,0,0,0,7,128,1,164,0,255,128,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0, + // 0x1ee2 Ợ + 226,30,31,39,56,32,2,248,0,0,0,0,0,0,5,84,0,0,0,0,0,0,15,248,0,0,27,255,228,0,15,244,0,7,255,255,255,64,15,240,0,47,255,255,255,240,47,224,0,191,255,239,255,252,127,192,2,255,224,0,31,255,255,64,7,255,0,0,2,255,253,0,15,252,0,0,0,255,224,0,31,248,0,0,0,63,224,0,47,240,0,0,0,47,240,0,63,224,0,0,0,31,244,0,63,208,0,0,0,15,248,0,127,192,0,0,0,15,252,0,127,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,191,192,0,0,0,11,252,0,127,192,0,0,0,15,252,0,127,208,0,0,0,15,248,0,63,224,0,0,0,15,244,0,63,240,0,0,0,47,240,0,31,244,0,0,0,63,240,0,15,252,0,0,0,127,208,0,11,254,0,0,1,255,192,0,3,255,192,0,11,255,64,0,0,255,254,85,191,254,0,0,0,63,255,255,255,244,0,0,0,11,255,255,255,208,0,0,0,0,191,255,249,0,0,0,0,0,1,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,1,254,0,0,0,0,0,0,2,255,0,0,0,0,0,0,2,255,0,0,0,0,0,0,1,254,0,0,0,0,0,0,0,20,0,0,0,0, + // 0x1ee3 ợ + 227,30,25,33,231,25,2,248,0,0,0,0,0,255,128,0,0,0,0,0,255,128,0,0,0,0,0,255,0,0,6,255,144,1,255,0,0,127,255,254,3,253,0,2,255,255,255,223,252,0,11,255,234,255,255,240,0,31,248,0,31,255,128,0,63,240,0,7,252,0,0,63,192,0,3,254,0,0,127,192,0,2,255,0,0,191,128,0,1,255,0,0,255,128,0,0,255,0,0,255,64,0,0,255,64,0,255,64,0,0,255,64,0,255,64,0,0,255,0,0,255,128,0,0,255,0,0,191,192,0,1,255,0,0,127,192,0,2,254,0,0,63,224,0,3,253,0,0,31,244,0,15,252,0,0,15,254,64,127,244,0,0,3,255,255,255,208,0,0,0,255,255,255,64,0,0,0,31,255,248,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,255,0,0,0,0,0,0,255,64,0,0,0,0,0,255,64,0,0,0,0,0,255,0,0,0,0,0,0,20,0,0,0,0, + // 0x1ee4 Ụ + 228,30,23,37,222,30,3,248,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0,0,0,0,0,0,0,0,0,1,64,0,0,0,0,31,224,0,0,0,0,47,240,0,0,0,0,47,240,0,0,0,0,31,224,0,0,0,0,1,64,0,0, + // 0x1ee5 ụ + 229,30,19,30,150,25,3,248,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0,0,0,0,0,0,0,0,80,0,0,0,3,252,0,0,0,7,253,0,0,0,7,253,0,0,0,3,252,0,0,0,0,80,0,0, + // 0x1ee6 Ủ + 230,30,23,41,246,30,3,255,0,0,26,64,0,0,0,0,127,252,0,0,0,0,127,255,0,0,0,0,0,191,0,0,0,0,0,63,0,0,0,0,0,191,0,0,0,0,11,253,0,0,0,0,15,224,0,0,0,0,15,192,0,0,0,0,11,128,0,0,0,0,0,0,0,0,42,64,0,0,2,168,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,127,192,0,0,7,252,63,208,0,0,11,248,63,224,0,0,15,244,47,244,0,0,47,240,15,253,0,0,191,224,7,255,229,91,255,192,2,255,255,255,255,0,0,127,255,255,248,0,0,11,255,255,144,0,0,0,21,80,0,0, + // 0x1ee7 ủ + 231,30,19,34,170,25,3,255,0,11,254,0,0,0,15,255,192,0,0,10,175,224,0,0,0,11,240,0,0,0,7,240,0,0,0,31,224,0,0,1,255,128,0,0,0,252,0,0,0,0,248,0,0,0,0,80,0,0,0,0,0,0,0,106,0,0,2,164,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,7,252,255,64,0,11,252,255,64,0,11,252,255,128,0,15,252,191,192,0,31,252,191,208,0,63,252,63,248,6,255,252,47,255,255,247,252,15,255,255,211,252,1,255,254,2,252,0,5,80,0,0, + // 0x1ee8 Ứ + 232,30,31,39,56,32,3,255,0,0,0,42,160,0,0,0,0,0,0,191,208,0,0,0,0,0,0,255,64,0,0,0,0,0,3,253,0,0,0,0,0,0,11,244,0,0,0,0,0,0,31,208,0,0,0,0,0,0,47,64,0,0,0,0,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0, + // 0x1ee9 ứ + 233,30,27,32,224,28,3,255,0,0,2,170,0,0,0,0,0,15,252,0,0,0,0,0,31,244,0,0,0,0,0,63,208,0,0,0,0,0,255,64,0,0,0,0,2,252,0,0,0,0,0,3,224,0,0,15,244,0,0,0,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0, + // 0x1eea Ừ + 234,30,31,39,56,32,3,255,0,10,168,0,0,0,0,0,0,11,253,0,0,0,0,0,0,2,255,0,0,0,0,0,0,0,191,128,0,0,0,0,0,0,47,208,0,0,0,0,0,0,11,240,0,0,0,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0, + // 0x1eeb ừ + 235,30,27,32,224,28,3,255,0,170,64,0,0,0,0,0,191,208,0,0,0,0,0,63,240,0,0,0,0,0,15,248,0,0,0,0,0,3,253,0,0,0,0,0,0,191,0,0,0,0,0,0,47,64,0,15,244,0,0,0,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0, + // 0x1eec Ử + 236,30,31,41,72,32,3,255,0,0,26,80,0,0,0,0,0,0,127,253,0,0,0,0,0,0,127,255,0,0,0,0,0,0,0,127,64,0,0,0,0,0,0,63,64,0,0,0,0,0,0,127,0,0,0,0,0,0,7,254,0,0,0,0,0,0,11,244,0,0,0,0,0,0,11,192,0,0,0,0,0,0,7,192,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0, + // 0x1eed ử + 237,30,27,34,238,28,3,255,0,7,254,0,0,0,0,0,11,255,208,0,0,0,0,6,175,240,0,0,0,0,0,7,240,0,0,0,0,0,7,240,0,0,0,0,0,31,224,0,0,0,0,0,255,128,0,0,0,0,0,252,0,0,0,0,0,0,248,0,0,15,244,0,0,80,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0, + // 0x1eee Ữ + 238,30,31,38,48,32,3,255,0,1,164,0,40,0,0,0,0,15,255,64,124,0,0,0,0,63,255,246,252,0,0,0,0,127,175,255,244,0,0,0,0,188,2,255,224,0,0,0,0,180,0,42,64,0,0,0,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0, + // 0x1eef ữ + 239,30,27,31,217,28,3,255,0,25,0,2,128,0,0,0,255,224,11,192,0,0,3,255,254,111,128,0,0,7,250,255,255,0,0,0,15,192,47,253,0,0,0,11,64,2,160,0,15,244,0,0,0,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0, + // 0x1ef0 Ự + 240,30,31,39,56,32,3,248,0,0,0,0,0,0,5,80,0,0,0,0,0,0,15,248,42,64,0,0,2,168,15,244,127,192,0,0,7,252,31,240,127,192,0,0,7,252,47,224,127,192,0,0,7,252,127,192,127,192,0,0,7,255,255,64,127,192,0,0,7,255,252,0,127,192,0,0,7,255,144,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,127,192,0,0,7,252,0,0,63,192,0,0,11,248,0,0,63,224,0,0,15,244,0,0,47,244,0,0,47,240,0,0,15,253,0,0,191,224,0,0,7,255,229,91,255,192,0,0,2,255,255,255,255,0,0,0,0,127,255,255,252,0,0,0,0,7,255,255,144,0,0,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,0,0,0,0,0,0,15,240,0,0,0,0,0,0,47,240,0,0,0,0,0,0,47,240,0,0,0,0,0,0,15,240,0,0,0,0,0,0,1,64,0,0,0,0, + // 0x1ef1 ự + 241,30,27,33,231,28,3,248,0,0,0,0,0,15,244,0,0,0,0,0,31,244,0,0,0,0,0,31,240,106,0,0,2,164,47,224,255,64,0,7,252,63,192,255,64,0,7,253,255,128,255,64,0,7,255,254,0,255,64,0,7,255,244,0,255,64,0,7,253,64,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,7,252,0,0,255,64,0,11,252,0,0,255,64,0,11,252,0,0,255,128,0,15,252,0,0,191,192,0,31,252,0,0,191,208,0,63,252,0,0,63,248,6,255,252,0,0,47,255,255,247,252,0,0,15,255,255,211,252,0,0,1,255,254,2,252,0,0,0,5,80,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,3,252,0,0,0,0,0,7,253,0,0,0,0,0,7,253,0,0,0,0,0,3,252,0,0,0,0,0,0,80,0,0,0,0, + // 0x1ef2 Ỳ + 242,30,23,38,228,23,0,0,0,10,168,0,0,0,0,11,253,0,0,0,0,2,255,0,0,0,0,0,191,192,0,0,0,0,47,208,0,0,0,0,7,244,0,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x1ef3 ỳ + 243,30,21,41,246,21,0,246,0,42,160,0,0,0,0,47,244,0,0,0,0,11,252,0,0,0,0,2,254,0,0,0,0,0,191,64,0,0,0,0,47,192,0,0,0,0,7,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x1ef4 Ỵ + 244,30,23,37,222,23,0,248,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,31,224,0,0,0,0,63,240,0,0,0,0,63,240,0,0,0,0,31,224,0,0,0,0,1,0,0,0, + // 0x1ef5 ỵ + 245,30,21,32,192,21,0,246,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,1,64,0,0,3,254,11,240,0,0,7,252,15,248,0,0,47,248,15,248,0,127,255,240,11,240,0,127,255,192,1,64,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x1ef6 Ỷ + 246,30,23,40,240,23,0,0,0,0,26,64,0,0,0,0,191,252,0,0,0,0,191,255,0,0,0,0,0,191,0,0,0,0,0,63,0,0,0,0,0,191,0,0,0,0,11,253,0,0,0,0,15,224,0,0,0,0,15,192,0,0,0,0,11,128,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x1ef7 ỷ + 247,30,21,43,2,21,0,246,0,2,255,128,0,0,0,2,255,240,0,0,0,2,171,252,0,0,0,0,1,252,0,0,0,0,1,252,0,0,0,0,7,248,0,0,0,0,63,224,0,0,0,0,63,0,0,0,0,0,62,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, + // 0x1ef8 Ỹ + 248,30,23,37,222,23,0,0,0,1,144,0,40,0,0,15,254,0,188,0,0,63,255,230,248,0,0,127,175,255,244,0,0,188,2,255,224,0,0,180,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,6,168,127,192,0,0,15,248,63,240,0,0,31,240,31,244,0,0,63,224,15,252,0,0,127,192,7,253,0,0,255,128,2,255,0,1,255,0,0,255,64,3,253,0,0,191,192,11,252,0,0,63,208,15,244,0,0,47,240,47,240,0,0,15,244,63,208,0,0,7,252,191,128,0,0,3,254,255,0,0,0,1,255,254,0,0,0,0,255,252,0,0,0,0,127,248,0,0,0,0,63,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0,0,0,31,240,0,0, + // 0x1ef9 ỹ + 249,30,21,40,240,21,0,246,0,6,64,0,160,0,0,127,248,2,240,0,0,255,255,155,224,0,2,254,255,255,192,0,3,240,15,255,64,0,3,208,1,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,64,0,0,106,128,191,192,0,0,255,128,63,208,0,0,255,64,47,224,0,2,255,0,31,240,0,3,254,0,15,244,0,3,252,0,11,252,0,11,252,0,3,252,0,15,244,0,2,254,0,31,240,0,1,255,0,47,224,0,0,255,64,63,208,0,0,191,128,127,192,0,0,63,192,191,128,0,0,47,208,255,0,0,0,31,225,255,0,0,0,15,242,253,0,0,0,11,243,252,0,0,0,3,251,248,0,0,0,2,255,244,0,0,0,1,255,240,0,0,0,0,255,224,0,0,0,0,191,192,0,0,0,0,191,192,0,0,0,0,255,64,0,0,0,1,255,0,0,0,0,3,254,0,0,0,0,7,252,0,0,0,0,47,248,0,0,0,127,255,240,0,0,0,127,255,192,0,0,0,127,254,0,0,0,0,26,144,0,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_10.cpp index 2572cc60c42b..7f04f045f67d 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0020-0x00ff +// Unifont 16pt, capital 'A' height: 10px, width: 100%, range: 0x0020-0x00ff extern const uint8_t Unifont_10[3107] = { 129,10,32,0,255,0,14,254, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_ASCII_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_ASCII_10.cpp index 27f3dcf3259d..6c8d86ae2cac 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_ASCII_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_ASCII_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont ASCII 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0020-0x007e +// Unifont ASCII 16pt, capital 'A' height: 10px, width: 100%, range: 0x0020-0x007e extern const uint8_t Unifont_ASCII_10[1440] = { 129,10,32,0,126,0,14,254, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Cyrillic_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Cyrillic_10.cpp index 1e112a1de1c9..f9128dc84b95 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Cyrillic_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Cyrillic_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Cyrillic 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +// Unifont Cyrillic 16pt, capital 'A' height: 10px, width: 100%, range: 0x0401-0x0491, glyphs: 74 extern const uint8_t Unifont_Cyrillic_10[1243] = { 129,10,1,4,145,4,14,254, // unifont_t // 0x0401 Ё diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Greek_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Greek_10.cpp index 71375485d28d..06552be372b6 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Greek_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Greek_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Greek 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +// Unifont Greek 16pt, capital 'A' height: 10px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 extern const uint8_t Unifont_Greek_10[1061] = { 129,10,134,3,206,3,14,254, // unifont_t // 0x0386 Ά diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Katakana_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Katakana_10.cpp index 1e0d15629daa..67f81299c79f 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Katakana_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Katakana_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Katakana 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +// Unifont Katakana 16pt, capital 'A' height: 10px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 extern const uint8_t Unifont_Katakana_10[3067] = { 161,10,160,48,104,136,14,254, // unifont_t // 0x30a0 ゠ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Korean_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Korean_10.cpp index d1bf3ba514c6..0b226b20348b 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Korean_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Korean_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Korean 16pt, capital 'A' heigth: 10px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +// Unifont Korean 16pt, capital 'A' height: 10px, width: 100%, range: 0xac70-0xd788, glyphs: 110 extern const uint8_t Unifont_Korean_10[3786] = { 161,10,112,172,136,215,14,254, // unifont_t // 0xac70 거 diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Latin_Extended_A_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Latin_Extended_A_10.cpp index 8d381d276acb..6283914108b7 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Latin_Extended_A_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Latin_Extended_A_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Latin Extended-A 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0100-0x017f +// Unifont Latin Extended-A 16pt, capital 'A' height: 10px, width: 100%, range: 0x0100-0x017f extern const uint8_t Unifont_Latin_Extended_A_10[2372] = { 129,10,0,1,127,1,14,254, // unifont_t // 0x0100 Ā diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Simplified_Chinese_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Simplified_Chinese_10.cpp index 3ce396d098ff..7b0ef1630a54 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Simplified_Chinese_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Simplified_Chinese_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Simplified Chinese 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +// Unifont Simplified Chinese 16pt, capital 'A' height: 10px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 extern const uint8_t Unifont_Simplified_Chinese_10[14547] = { 161,10,28,32,26,255,14,254, // unifont_t // 0x201c “ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Symbols_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Symbols_10.cpp index 8776bfba6c8a..b6569f644ae1 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Symbols_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Symbols_10.cpp @@ -20,21 +20,18 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Symbols 16pt, capital 'A' heigth: 10px, width: 100% +// Unifont Symbols 16pt, capital 'A' height: 10px, width: 100% extern const uint8_t Unifont_Symbols_10[44] = { 129,10,8,0,10,0,14,254, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 5,12,12,16,5,0,32,80,80,80,80,112,112,112,248,248,248,112, // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° 4,4,4,8,2,6,96,144,144,96, - // 0x0a - replacement for 0x2026 used in Greek languange files … + // 0x0a - replacement for 0x2026 used in Greek language files … 7,2,2,8,1,0,146,146, }; diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Traditional_Chinese_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Traditional_Chinese_10.cpp index a9b1406441d7..14521a4196ab 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Traditional_Chinese_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Traditional_Chinese_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Traditional Chinese 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +// Unifont Traditional Chinese 16pt, capital 'A' height: 10px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 extern const uint8_t Unifont_Traditional_Chinese_10[12033] = { 161,10,191,34,26,255,14,254, // unifont_t // 0x22bf ⊿ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Vietnamese_10.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Vietnamese_10.cpp index d61d1be71bc6..dfc0bfd1b72e 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Vietnamese_10.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/10px/Unifont_Vietnamese_10.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Vietnamese 16pt, capital 'A' heigth: 10px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +// Unifont Vietnamese 16pt, capital 'A' height: 10px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 extern const uint8_t Unifont_Vietnamese_10[2220] = { 161,10,2,1,249,30,14,254, // unifont_t // 0x0102 Ă diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_20.cpp index 023cc4f97816..92a32bf2b1dc 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0020-0x00ff +// Unifont 32pt, capital 'A' height: 20px, width: 100%, range: 0x0020-0x00ff extern const uint8_t Unifont_20[8545] = { 129,20,32,0,255,0,28,252, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_ASCII_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_ASCII_20.cpp index e28b806b9fa1..47a072cfc0b5 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_ASCII_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_ASCII_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont ASCII 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0020-0x007e +// Unifont ASCII 32pt, capital 'A' height: 20px, width: 100%, range: 0x0020-0x007e extern const uint8_t Unifont_ASCII_20[3770] = { 129,20,32,0,126,0,28,252, // unifont_t // 0x0020 " " diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Cyrillic_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Cyrillic_20.cpp index 8e82a228f1cd..67dd5da87567 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Cyrillic_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Cyrillic_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Cyrillic 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +// Unifont Cyrillic 32pt, capital 'A' height: 20px, width: 100%, range: 0x0401-0x0491, glyphs: 74 extern const uint8_t Unifont_Cyrillic_20[3403] = { 129,20,1,4,145,4,28,252, // unifont_t // 0x0401 Ё diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Greek_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Greek_20.cpp index d5c175977a5d..4116f99c4adb 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Greek_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Greek_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Greek 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +// Unifont Greek 32pt, capital 'A' height: 20px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 extern const uint8_t Unifont_Greek_20[3014] = { 129,20,134,3,206,3,28,252, // unifont_t // 0x0386 Ά diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Katakana_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Katakana_20.cpp index 3b21375016e9..22dafdc2dd0c 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Katakana_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Katakana_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Katakana 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +// Unifont Katakana 32pt, capital 'A' height: 20px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 extern const uint8_t Unifont_Katakana_20[8142] = { 161,20,160,48,104,136,28,252, // unifont_t // 0x30a0 ゠ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Korean_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Korean_20.cpp index ac8dee91ef56..ada872e9f7e2 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Korean_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Korean_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Korean 32pt, capital 'A' heigth: 20px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +// Unifont Korean 32pt, capital 'A' height: 20px, width: 100%, range: 0xac70-0xd788, glyphs: 110 extern const uint8_t Unifont_Korean_20[11304] = { 161,20,112,172,136,215,28,252, // unifont_t // 0xac70 거 diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Latin_Extended_A_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Latin_Extended_A_20.cpp index 9a22047c9a91..06d5132fc210 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Latin_Extended_A_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Latin_Extended_A_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Latin Extended-A 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0100-0x017f +// Unifont Latin Extended-A 32pt, capital 'A' height: 20px, width: 100%, range: 0x0100-0x017f extern const uint8_t Unifont_Latin_Extended_A_20[7160] = { 129,20,0,1,127,1,28,252, // unifont_t // 0x0100 Ā diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Simplified_Chinese_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Simplified_Chinese_20.cpp index 85e0d205d781..7108e485f470 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Simplified_Chinese_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Simplified_Chinese_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Simplified Chinese 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +// Unifont Simplified Chinese 32pt, capital 'A' height: 20px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 extern const uint8_t Unifont_Simplified_Chinese_20[48888] = { 161,20,28,32,26,255,28,252, // unifont_t // 0x201c “ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Symbols_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Symbols_20.cpp index a0d269e02f56..76c763b74681 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Symbols_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Symbols_20.cpp @@ -20,21 +20,18 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Symbols 32pt, capital 'A' heigth: 20px, width: 100% +// Unifont Symbols 32pt, capital 'A' height: 20px, width: 100% extern const uint8_t Unifont_Symbols_20[90] = { 129,20,8,0,10,0,28,252, // unifont_t // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 10,24,48,32,10,0,12,0,12,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,51,0,63,0,63,0,63,0,63,0,63,0,63,0,255,192,255,192,255,192,255,192,255,192,255,192,63,0,63,0, // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° 8,8,8,16,4,12,60,60,195,195,195,195,60,60, - // 0x0a - replacement for 0x2026 used in Greek languange files … + // 0x0a - replacement for 0x2026 used in Greek language files … 14,4,8,16,2,0,195,12,195,12,195,12,195,12, }; diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Traditional_Chinese_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Traditional_Chinese_20.cpp index c541e1401d5d..567049f4ee1c 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Traditional_Chinese_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Traditional_Chinese_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Traditional Chinese 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +// Unifont Traditional Chinese 32pt, capital 'A' height: 20px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 extern const uint8_t Unifont_Traditional_Chinese_20[40418] = { 161,20,191,34,26,255,28,252, // unifont_t // 0x22bf ⊿ diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Vietnamese_20.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Vietnamese_20.cpp index 8c9b29153c17..e1aad183d2d4 100644 --- a/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Vietnamese_20.cpp +++ b/Marlin/src/lcd/tft/fontdata/Unifont/20px/Unifont_Vietnamese_20.cpp @@ -20,14 +20,11 @@ * */ -#include "../../../../../inc/MarlinConfigPre.h" +#include "../../fontdata.h" -#define UNIFONT 123 #if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT -#include - -// Unifont Vietnamese 32pt, capital 'A' heigth: 20px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +// Unifont Vietnamese 32pt, capital 'A' height: 20px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 extern const uint8_t Unifont_Vietnamese_20[6262] = { 161,20,2,1,249,30,28,252, // unifont_t // 0x0102 Ă diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_30.cpp new file mode 100644 index 000000000000..8db077638d7b --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_30.cpp @@ -0,0 +1,416 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont 48pt, capital 'A' height: 30px, width: 100%, range: 0x0020-0x00ff +extern const uint8_t Unifont_30[16801] = { + 129,30,32,0,255,0,42,250, // unifont_t + // 0x0020 " " + 0,0,0,24,0,0, + // 0x0021 ! + 3,30,30,24,12,0,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,0,0,0,224,224,224,224,224,224, + // 0x0022 " + 15,12,24,24,6,24,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14, + // 0x0023 # + 18,30,90,24,3,0,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,255,255,192,255,255,192,255,255,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,255,255,192,255,255,192,255,255,192,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0, + // 0x0024 $ + 21,30,90,24,3,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,0,224,112,0,224,112,0,31,240,0,31,240,0,31,240,0,0,127,192,0,127,192,0,127,192,0,112,56,0,112,56,0,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0, + // 0x0025 % + 21,30,90,24,3,0,31,128,56,31,128,56,31,128,56,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,31,142,0,31,142,0,31,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,143,192,3,143,192,3,143,192,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,224,15,192,224,15,192,224,15,192, + // 0x0026 & + 21,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,240,0,3,240,0,3,240,0,28,112,56,28,112,56,28,112,56,224,14,56,224,14,56,224,14,56,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,240,56,31,240,56,31,240,56, + // 0x0027 ' + 3,12,12,24,12,24,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x0028 ( + 9,36,72,24,9,253,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128, + // 0x0029 ) + 9,36,72,24,6,253,224,0,224,0,224,0,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x002a * + 21,21,63,24,3,3,0,112,0,0,112,0,0,112,0,224,112,56,224,112,56,224,112,56,28,113,192,28,113,192,28,113,192,3,254,0,3,254,0,3,254,0,28,113,192,28,113,192,28,113,192,224,112,56,224,112,56,224,112,56,0,112,0,0,112,0,0,112,0, + // 0x002b + + 21,21,63,24,3,3,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x002c , + 6,12,12,24,9,250,252,252,252,28,28,28,28,28,28,224,224,224, + // 0x002d - + 12,3,6,24,6,12,255,240,255,240,255,240, + // 0x002e . + 6,6,6,24,9,0,252,252,252,252,252,252, + // 0x002f / + 18,30,90,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0030 0 + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0, + // 0x0031 1 + 15,30,60,24,6,0,3,128,3,128,3,128,31,128,31,128,31,128,227,128,227,128,227,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0032 2 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,126,0,0,126,0,0,126,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0033 3 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,3,254,0,3,254,0,3,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0034 4 + 18,30,90,24,3,0,0,14,0,0,14,0,0,14,0,0,126,0,0,126,0,0,126,0,3,142,0,3,142,0,3,142,0,28,14,0,28,14,0,28,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,255,192,255,255,192,255,255,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x0035 5 + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0036 6 + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0037 7 + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0038 8 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0039 9 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,255,192,31,255,192,31,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,31,240,0,31,240,0,31,240,0, + // 0x003a : + 6,21,21,24,9,3,252,252,252,252,252,252,0,0,0,0,0,0,0,0,0,252,252,252,252,252,252, + // 0x003b ; + 6,27,27,24,9,253,252,252,252,252,252,252,0,0,0,0,0,0,0,0,0,252,252,252,28,28,28,28,28,28,224,224,224, + // 0x003c < + 15,27,54,24,6,0,0,14,0,14,0,14,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,0,14,0,14,0,14, + // 0x003d = + 18,15,45,24,3,6,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192, + // 0x003e > + 15,27,54,24,3,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,0,14,0,14,0,14,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x003f ? + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0040 @ + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,224,113,192,224,113,192,224,113,192,227,143,192,227,143,192,227,143,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,127,192,224,127,192,224,127,192,28,0,0,28,0,0,28,0,0,3,255,192,3,255,192,3,255,192, + // 0x0041 A + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0042 B + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0043 C + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0044 D + 18,30,90,24,3,0,255,240,0,255,240,0,255,240,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,255,240,0,255,240,0,255,240,0, + // 0x0045 E + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0046 F + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0047 G + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0048 H + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0049 I + 15,30,60,24,6,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x004a J + 21,30,90,24,3,0,3,255,248,3,255,248,3,255,248,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x004b K + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x004c L + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x004d M + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x004e N + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x004f O + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0050 P + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0051 Q + 21,33,99,24,3,253,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,252,15,192,252,15,192,252,15,192,31,254,0,31,254,0,31,254,0,0,1,248,0,1,248,0,1,248, + // 0x0052 R + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0053 S + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0054 T + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0055 U + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0056 V + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0057 W + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0058 X + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0059 Y + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x005a Z + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x005b [ + 9,36,72,24,12,253,255,128,255,128,255,128,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,255,128,255,128,255,128, + // 0x005c "\" + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x005d ] + 9,36,72,24,3,253,255,128,255,128,255,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,128,255,128,255,128, + // 0x005e ^ + 18,9,27,24,3,27,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192, + // 0x005f _ + 21,3,9,24,3,253,255,255,248,255,255,248,255,255,248, + // 0x0060 ` + 9,9,18,24,6,30,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128, + // 0x0061 a + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0062 b + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0, + // 0x0063 c + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0064 d + 18,33,99,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0065 e + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0066 f + 15,33,66,24,3,0,0,126,0,126,0,126,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128, + // 0x0067 g + 18,33,99,24,3,250,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0068 h + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0069 i + 15,33,66,24,6,0,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x006a j + 15,39,78,24,3,250,0,14,0,14,0,14,0,14,0,14,0,14,0,0,0,0,0,0,0,126,0,126,0,126,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,224,112,224,112,224,112,31,128,31,128,31,128, + // 0x006b k + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x006c l + 15,33,66,24,6,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x006d m + 21,24,72,24,3,0,255,143,192,255,143,192,255,143,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56, + // 0x006e n + 18,24,72,24,3,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x006f o + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0070 p + 18,30,90,24,3,250,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0071 q + 18,30,90,24,3,250,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x0072 r + 18,24,72,24,3,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0073 s + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0074 t + 15,30,60,24,3,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x0075 u + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0076 v + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0, + // 0x0077 w + 21,24,72,24,3,0,224,0,56,224,0,56,224,0,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, + // 0x0078 x + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0079 y + 18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x007a z + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x007b { + 12,39,78,24,6,250,3,240,3,240,3,240,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,240,3,240,3,240, + // 0x007c | + 3,42,42,24,12,250,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x007d } + 12,39,78,24,6,250,252,0,252,0,252,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,252,0,252,0,252,0, + // 0x007e ~ + 21,9,27,24,3,24,31,128,56,31,128,56,31,128,56,224,112,56,224,112,56,224,112,56,224,15,192,224,15,192,224,15,192, + // 0x007f - 0x009a Control Characters + 255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, + // 0x00a0 "�" + 0,0,0,24,0,0, + // 0x00a1 ¡ + 3,30,30,24,12,0,224,224,224,224,224,224,0,0,0,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x00a2 ¢ + 21,30,90,24,3,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x00a3 £ + 21,30,90,24,3,0,0,127,192,0,127,192,0,127,192,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,255,254,0,255,254,0,255,254,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,31,255,192,31,255,192,31,255,192,252,0,56,252,0,56,252,0,56, + // 0x00a4 ¤ + 18,24,72,24,3,3,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192, + // 0x00a5 ¥ + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x00a6 ¦ + 3,30,30,24,12,0,224,224,224,224,224,224,224,224,224,224,224,224,0,0,0,0,0,0,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x00a7 § + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00a8 ¨ + 12,6,12,24,6,36,224,112,224,112,224,112,224,112,224,112,224,112, + // 0x00a9 © + 24,30,90,24,0,0,3,255,192,3,255,192,3,255,192,28,0,56,28,0,56,28,0,56,224,126,7,224,126,7,224,126,7,227,129,199,227,129,199,227,129,199,227,128,7,227,128,7,227,128,7,227,128,7,227,128,7,227,128,7,227,129,199,227,129,199,227,129,199,224,126,7,224,126,7,224,126,7,28,0,56,28,0,56,28,0,56,3,255,192,3,255,192,3,255,192, + // 0x00aa ª + 15,21,42,24,6,15,31,240,31,240,31,240,0,14,0,14,0,14,31,254,31,254,31,254,224,14,224,14,224,14,31,254,31,254,31,254,0,0,0,0,0,0,255,254,255,254,255,254, + // 0x00ab « + 18,27,81,24,3,0,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,112,0,224,112,0,224,112,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192, + // 0x00ac ¬ + 18,12,36,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x00ad ­ + 48,48,32,48,0,250,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,3,254,56,31,128,63,3,254,56,31,128,63,3,254,56,31,128,63,252,0,56,28,113,192,252,0,56,28,113,192,252,0,56,28,113,192,3,240,63,252,14,7,3,240,63,252,14,7,3,240,63,252,14,7,224,14,56,28,14,0,224,14,56,28,14,0,224,14,56,28,14,0,31,240,56,28,14,7,31,240,56,28,14,7,31,240,56,28,14,7,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,0,0,63,252,0,7,0,0,63,252,0,7,0,0,63,252,0,7,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,28,113,199,28,113,199,28,113,199,28,113,199,28,113,199,28,113,199, + // 0x00ae ® + 24,30,90,24,0,0,3,255,192,3,255,192,3,255,192,28,0,56,28,0,56,28,0,56,227,254,7,227,254,7,227,254,7,227,129,199,227,129,199,227,129,199,227,129,199,227,129,199,227,129,199,227,254,7,227,254,7,227,254,7,227,142,7,227,142,7,227,142,7,227,129,199,227,129,199,227,129,199,28,0,56,28,0,56,28,0,56,3,255,192,3,255,192,3,255,192, + // 0x00af ¯ + 18,3,9,24,3,33,255,255,192,255,255,192,255,255,192, + // 0x00b0 ° + 12,12,24,24,6,18,31,128,31,128,31,128,224,112,224,112,224,112,224,112,224,112,224,112,31,128,31,128,31,128, + // 0x00b1 ± + 21,27,81,24,3,3,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,255,255,248,255,255,248,255,255,248, + // 0x00b2 ² + 15,21,42,24,3,12,31,240,31,240,31,240,224,14,224,14,224,14,0,14,0,14,0,14,3,240,3,240,3,240,28,0,28,0,28,0,224,0,224,0,224,0,255,254,255,254,255,254, + // 0x00b3 ³ + 15,21,42,24,3,12,31,240,31,240,31,240,224,14,224,14,224,14,0,14,0,14,0,14,31,240,31,240,31,240,0,14,0,14,0,14,224,14,224,14,224,14,31,240,31,240,31,240, + // 0x00b4 ´ + 9,9,18,24,9,30,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x00b5 µ + 24,30,90,24,0,250,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,31,129,248,31,129,248,31,129,248,28,126,7,28,126,7,28,126,7,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0, + // 0x00b6 ¶ + 21,33,99,24,3,253,31,255,248,31,255,248,31,255,248,255,241,192,255,241,192,255,241,192,255,241,192,255,241,192,255,241,192,255,241,192,255,241,192,255,241,192,31,241,192,31,241,192,31,241,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192,0,113,192, + // 0x00b7 · + 6,6,6,24,9,12,252,252,252,252,252,252, + // 0x00b8 ¸ + 9,6,12,24,6,250,3,128,3,128,3,128,252,0,252,0,252,0, + // 0x00b9 ¹ + 15,21,42,24,3,12,3,128,3,128,3,128,31,128,31,128,31,128,227,128,227,128,227,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00ba º + 15,21,42,24,6,15,31,240,31,240,31,240,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,31,240,31,240,31,240,0,0,0,0,0,0,255,254,255,254,255,254, + // 0x00bb » + 18,27,81,24,3,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,129,192,3,129,192,3,129,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0, + // 0x00bc ¼ + 18,30,90,24,3,0,28,1,192,28,1,192,28,1,192,252,1,192,252,1,192,252,1,192,28,14,0,28,14,0,28,14,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,3,129,192,3,129,192,3,129,192,3,143,192,3,143,192,3,143,192,28,113,192,28,113,192,28,113,192,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192, + // 0x00bd ½ + 18,30,90,24,3,0,28,1,192,28,1,192,28,1,192,252,1,192,252,1,192,252,1,192,28,14,0,28,14,0,28,14,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,3,241,192,3,241,192,3,241,192,28,1,192,28,1,192,28,1,192,224,14,0,224,14,0,224,14,0,224,127,192,224,127,192,224,127,192, + // 0x00be ¾ + 18,30,90,24,3,0,252,1,192,252,1,192,252,1,192,3,129,192,3,129,192,3,129,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,252,112,0,252,112,0,252,112,0,3,129,192,3,129,192,3,129,192,3,143,192,3,143,192,3,143,192,28,113,192,28,113,192,28,113,192,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192, + // 0x00bf ¿ + 18,30,90,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00c0 À + 18,42,126,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c1 Á + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c2 Â + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c3 Ã + 18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c4 Ä + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c5 Å + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00c6 Æ + 21,30,90,24,3,0,3,255,248,3,255,248,3,255,248,28,112,0,28,112,0,28,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,255,255,248,255,255,248,255,255,248,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,127,248,224,127,248,224,127,248, + // 0x00c7 Ç + 18,36,108,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x00c8 È + 18,42,126,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x00c9 É + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x00ca Ê + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x00cb Ë + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x00cc Ì + 15,42,84,24,6,0,31,128,31,128,31,128,0,126,0,126,0,126,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00cd Í + 15,42,84,24,6,0,3,240,3,240,3,240,252,0,252,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00ce Î + 15,42,84,24,6,0,31,128,31,128,31,128,224,112,224,112,224,112,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00cf Ï + 15,42,84,24,6,0,224,112,224,112,224,112,224,112,224,112,224,112,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00d0 Ð + 21,30,90,24,0,0,31,254,0,31,254,0,31,254,0,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,255,240,56,255,240,56,255,240,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,1,192,28,1,192,28,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d1 Ñ + 18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x00d2 Ò + 18,42,126,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d3 Ó + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d4 Ô + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d5 Õ + 18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d6 Ö + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00d7 × + 18,15,45,24,3,6,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192, + // 0x00d8 Ø + 18,36,108,24,3,253,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,28,1,192,28,1,192,28,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0, + // 0x00d9 Ù + 18,42,126,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00da Ú + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00db Û + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00dc Ü + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00dd Ý + 21,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x00de Þ + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,240,0,255,240,0,255,240,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,255,240,0,255,240,0,255,240,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x00df ß + 18,30,90,24,3,0,31,240,0,31,240,0,31,240,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,240,0,227,240,0,227,240,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,129,192,227,129,192,227,129,192,224,126,0,224,126,0,224,126,0, + // 0x00e0 à + 18,36,108,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e1 á + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e2 â + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e3 ã + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e4 ä + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e5 å + 18,39,117,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00e6 æ + 21,24,72,24,3,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,0,112,56,0,112,56,0,112,56,31,255,248,31,255,248,31,255,248,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192, + // 0x00e7 ç + 18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x00e8 è + 18,36,108,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00e9 é + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00ea ê + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00eb ë + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00ec ì + 15,36,72,24,6,0,252,0,252,0,252,0,3,240,3,240,3,240,0,0,0,0,0,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00ed í + 15,36,72,24,6,0,3,240,3,240,3,240,252,0,252,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00ee î + 15,36,72,24,6,0,31,128,31,128,31,128,224,112,224,112,224,112,0,0,0,0,0,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00ef ï + 15,36,72,24,6,0,224,112,224,112,224,112,224,112,224,112,224,112,0,0,0,0,0,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x00f0 ð + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,0,126,0,0,126,0,0,126,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f1 ñ + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x00f2 ò + 18,36,108,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f3 ó + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f4 ô + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f5 õ + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f6 ö + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x00f7 ÷ + 18,21,63,24,3,3,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0, + // 0x00f8 ø + 18,30,90,24,3,253,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,31,254,0,31,254,0,31,254,0,224,0,0,224,0,0,224,0,0, + // 0x00f9 ù + 18,36,108,24,3,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00fa ú + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00fb û + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00fc ü + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x00fd ý + 18,42,126,24,3,250,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x00fe þ + 18,39,117,24,3,250,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x00ff ÿ + 18,42,126,24,3,250,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_ASCII_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_ASCII_30.cpp new file mode 100644 index 000000000000..50744e283c74 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_ASCII_30.cpp @@ -0,0 +1,222 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont ASCII 48pt, capital 'A' height: 30px, width: 100%, range: 0x0020-0x007e +extern const uint8_t Unifont_ASCII_30[7508] = { + 129,30,32,0,126,0,42,250, // unifont_t + // 0x0020 " " + 0,0,0,24,0,0, + // 0x0021 ! + 3,30,30,24,12,0,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,0,0,0,224,224,224,224,224,224, + // 0x0022 " + 15,12,24,24,6,24,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14, + // 0x0023 # + 18,30,90,24,3,0,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,255,255,192,255,255,192,255,255,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,255,255,192,255,255,192,255,255,192,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0, + // 0x0024 $ + 21,30,90,24,3,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,0,224,112,0,224,112,0,31,240,0,31,240,0,31,240,0,0,127,192,0,127,192,0,127,192,0,112,56,0,112,56,0,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0, + // 0x0025 % + 21,30,90,24,3,0,31,128,56,31,128,56,31,128,56,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,31,142,0,31,142,0,31,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,143,192,3,143,192,3,143,192,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,224,15,192,224,15,192,224,15,192, + // 0x0026 & + 21,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,240,0,3,240,0,3,240,0,28,112,56,28,112,56,28,112,56,224,14,56,224,14,56,224,14,56,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,240,56,31,240,56,31,240,56, + // 0x0027 ' + 3,12,12,24,12,24,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x0028 ( + 9,36,72,24,9,253,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128, + // 0x0029 ) + 9,36,72,24,6,253,224,0,224,0,224,0,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x002a * + 21,21,63,24,3,3,0,112,0,0,112,0,0,112,0,224,112,56,224,112,56,224,112,56,28,113,192,28,113,192,28,113,192,3,254,0,3,254,0,3,254,0,28,113,192,28,113,192,28,113,192,224,112,56,224,112,56,224,112,56,0,112,0,0,112,0,0,112,0, + // 0x002b + + 21,21,63,24,3,3,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x002c , + 6,12,12,24,9,250,252,252,252,28,28,28,28,28,28,224,224,224, + // 0x002d - + 12,3,6,24,6,12,255,240,255,240,255,240, + // 0x002e . + 6,6,6,24,9,0,252,252,252,252,252,252, + // 0x002f / + 18,30,90,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0030 0 + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0, + // 0x0031 1 + 15,30,60,24,6,0,3,128,3,128,3,128,31,128,31,128,31,128,227,128,227,128,227,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0032 2 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,126,0,0,126,0,0,126,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0033 3 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,3,254,0,3,254,0,3,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0034 4 + 18,30,90,24,3,0,0,14,0,0,14,0,0,14,0,0,126,0,0,126,0,0,126,0,3,142,0,3,142,0,3,142,0,28,14,0,28,14,0,28,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,255,192,255,255,192,255,255,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x0035 5 + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0036 6 + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0037 7 + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0038 8 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0039 9 + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,255,192,31,255,192,31,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,31,240,0,31,240,0,31,240,0, + // 0x003a : + 6,21,21,24,9,3,252,252,252,252,252,252,0,0,0,0,0,0,0,0,0,252,252,252,252,252,252, + // 0x003b ; + 6,27,27,24,9,253,252,252,252,252,252,252,0,0,0,0,0,0,0,0,0,252,252,252,28,28,28,28,28,28,224,224,224, + // 0x003c < + 15,27,54,24,6,0,0,14,0,14,0,14,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,0,14,0,14,0,14, + // 0x003d = + 18,15,45,24,3,6,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192, + // 0x003e > + 15,27,54,24,3,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,0,14,0,14,0,14,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x003f ? + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0040 @ + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,224,113,192,224,113,192,224,113,192,227,143,192,227,143,192,227,143,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,127,192,224,127,192,224,127,192,28,0,0,28,0,0,28,0,0,3,255,192,3,255,192,3,255,192, + // 0x0041 A + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0042 B + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0043 C + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0044 D + 18,30,90,24,3,0,255,240,0,255,240,0,255,240,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,255,240,0,255,240,0,255,240,0, + // 0x0045 E + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0046 F + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0047 G + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0048 H + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0049 I + 15,30,60,24,6,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x004a J + 21,30,90,24,3,0,3,255,248,3,255,248,3,255,248,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x004b K + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x004c L + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x004d M + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x004e N + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x004f O + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0050 P + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0051 Q + 21,33,99,24,3,253,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,252,15,192,252,15,192,252,15,192,31,254,0,31,254,0,31,254,0,0,1,248,0,1,248,0,1,248, + // 0x0052 R + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0053 S + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0054 T + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0055 U + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0056 V + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0057 W + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0058 X + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0059 Y + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x005a Z + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x005b [ + 9,36,72,24,12,253,255,128,255,128,255,128,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,255,128,255,128,255,128, + // 0x005c "\" + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x005d ] + 9,36,72,24,3,253,255,128,255,128,255,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,128,255,128,255,128, + // 0x005e ^ + 18,9,27,24,3,27,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192, + // 0x005f _ + 21,3,9,24,3,253,255,255,248,255,255,248,255,255,248, + // 0x0060 ` + 9,9,18,24,6,30,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128, + // 0x0061 a + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0062 b + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0, + // 0x0063 c + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0064 d + 18,33,99,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0065 e + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0066 f + 15,33,66,24,3,0,0,126,0,126,0,126,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128, + // 0x0067 g + 18,33,99,24,3,250,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0068 h + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0069 i + 15,33,66,24,6,0,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x006a j + 15,39,78,24,3,250,0,14,0,14,0,14,0,14,0,14,0,14,0,0,0,0,0,0,0,126,0,126,0,126,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,0,14,224,112,224,112,224,112,31,128,31,128,31,128, + // 0x006b k + 18,33,99,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x006c l + 15,33,66,24,6,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x006d m + 21,24,72,24,3,0,255,143,192,255,143,192,255,143,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56, + // 0x006e n + 18,24,72,24,3,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x006f o + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0070 p + 18,30,90,24,3,250,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0071 q + 18,30,90,24,3,250,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x0072 r + 18,24,72,24,3,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0073 s + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0074 t + 15,30,60,24,3,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x0075 u + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0076 v + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0, + // 0x0077 w + 21,24,72,24,3,0,224,0,56,224,0,56,224,0,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, + // 0x0078 x + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0079 y + 18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x007a z + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x007b { + 12,39,78,24,6,250,3,240,3,240,3,240,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,240,3,240,3,240, + // 0x007c | + 3,42,42,24,12,250,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224, + // 0x007d } + 12,39,78,24,6,250,252,0,252,0,252,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,252,0,252,0,252,0, + // 0x007e ~ + 21,9,27,24,3,24,31,128,56,31,128,56,31,128,56,224,112,56,224,112,56,224,112,56,224,15,192,224,15,192,224,15,192, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Cyrillic_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Cyrillic_30.cpp new file mode 100644 index 000000000000..0a4b254b4326 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Cyrillic_30.cpp @@ -0,0 +1,322 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Cyrillic 48pt, capital 'A' height: 30px, width: 100%, range: 0x0401-0x0491, glyphs: 74 +extern const uint8_t Unifont_Cyrillic_30[6865] = { + 129,30,1,4,145,4,42,250, // unifont_t + // 0x0401 Ё + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0402 Ђ + 255, + // 0x0403 Ѓ + 255, + // 0x0404 Є + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,28,1,192,28,1,192,28,1,192,3,254,0,3,254,0,3,254,0, + // 0x0405 Ѕ + 255, + // 0x0406 І + 15,30,60,24,6,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0407 Ї + 15,42,84,24,6,0,224,112,224,112,224,112,224,112,224,112,224,112,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0408 Ј + 255, + // 0x0409 Љ + 255, + // 0x040a Њ + 255, + // 0x040b Ћ + 255, + // 0x040c Ќ + 255, + // 0x040d Ѝ + 255, + // 0x040e Ў + 255, + // 0x040f Џ + 255, + // 0x0410 А + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0411 Б + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0412 В + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0413 Г + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0414 Д + 24,36,108,24,0,250,0,15,248,0,15,248,0,15,248,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,255,255,255,255,255,255,255,255,255,224,0,7,224,0,7,224,0,7,224,0,7,224,0,7,224,0,7, + // 0x0415 Е + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0416 Ж + 21,30,90,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,3,254,0,3,254,0,3,254,0,3,254,0,3,254,0,3,254,0,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56, + // 0x0417 З + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0418 И + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192, + // 0x0419 Й + 18,39,117,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192, + // 0x041a К + 18,30,90,24,3,0,224,15,192,224,15,192,224,15,192,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x041b Л + 18,30,90,24,3,0,3,255,192,3,255,192,3,255,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192, + // 0x041c М + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x041d Н + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x041e О + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x041f П + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0420 Р + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0421 С + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0422 Т + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0423 У + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,31,128,0,31,128,0,31,128,0, + // 0x0424 Ф + 21,33,99,24,3,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0425 Х + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0426 Ц + 21,36,108,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,248,255,255,248,255,255,248,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x0427 Ч + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x0428 Ш + 21,30,90,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,255,255,248,255,255,248,255,255,248, + // 0x0429 Щ + 24,36,108,24,0,250,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,255,255,255,255,255,255,255,255,255,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7, + // 0x042a Ъ + 21,30,90,24,3,0,255,128,0,255,128,0,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,192,3,255,192,3,255,192,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,255,192,3,255,192,3,255,192, + // 0x042b Ы + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,129,192,255,129,192,255,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,255,129,192,255,129,192,255,129,192, + // 0x042c Ь + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x042d Э + 18,30,90,24,3,0,31,240,0,31,240,0,31,240,0,224,14,0,224,14,0,224,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x042e Ю + 18,30,90,24,3,0,224,126,0,224,126,0,224,126,0,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,255,129,192,255,129,192,255,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,126,0,224,126,0,224,126,0, + // 0x042f Я + 18,30,90,24,3,0,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,255,192,31,255,192,31,255,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0430 а + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0431 б + 18,36,108,24,3,0,0,1,192,0,1,192,0,1,192,3,254,0,3,254,0,3,254,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0432 в + 18,24,72,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0433 г + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0434 д + 21,27,81,24,3,253,3,255,192,3,255,192,3,255,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,248,255,255,248,255,255,248,224,0,56,224,0,56,224,0,56, + // 0x0435 е + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0436 ж + 21,24,72,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,28,113,192,28,113,192,28,113,192,3,254,0,3,254,0,3,254,0,3,254,0,3,254,0,3,254,0,28,113,192,28,113,192,28,113,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56, + // 0x0437 з + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0438 и + 18,24,72,24,3,0,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192, + // 0x0439 й + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192, + // 0x043a к + 18,24,72,24,3,0,224,15,192,224,15,192,224,15,192,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x043b л + 18,24,72,24,3,0,3,255,192,3,255,192,3,255,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192, + // 0x043c м + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x043d н + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x043e о + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x043f п + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0440 р + 18,30,90,24,3,250,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0441 с + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0442 т + 21,24,72,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0443 у + 18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,252,0,0,252,0,0,252,0,0, + // 0x0444 ф + 21,39,117,24,3,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0445 х + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0446 ц + 21,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,248,255,255,248,255,255,248,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x0447 ч + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x0448 ш + 21,24,72,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,255,255,248,255,255,248,255,255,248, + // 0x0449 щ + 24,30,90,24,0,250,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,255,255,255,255,255,255,255,255,255,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7, + // 0x044a ъ + 21,24,72,24,3,0,255,128,0,255,128,0,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,192,3,255,192,3,255,192,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,255,192,3,255,192,3,255,192, + // 0x044b ы + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,129,192,255,129,192,255,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,255,129,192,255,129,192,255,129,192, + // 0x044c ь + 18,24,72,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x044d э + 18,24,72,24,3,0,31,240,0,31,240,0,31,240,0,224,14,0,224,14,0,224,14,0,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x044e ю + 18,24,72,24,3,0,224,126,0,224,126,0,224,126,0,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,255,129,192,255,129,192,255,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,126,0,224,126,0,224,126,0, + // 0x044f я + 18,24,72,24,3,0,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,255,192,31,255,192,31,255,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192, + // 0x0450 ѐ + 255, + // 0x0451 ё + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0452 ђ + 255, + // 0x0453 ѓ + 255, + // 0x0454 є + 18,24,72,24,3,0,3,254,0,3,254,0,3,254,0,28,1,192,28,1,192,28,1,192,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,28,1,192,28,1,192,28,1,192,3,254,0,3,254,0,3,254,0, + // 0x0455 ѕ + 255, + // 0x0456 і + 15,33,66,24,6,0,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0457 ї + 15,33,66,24,6,0,224,112,224,112,224,112,224,112,224,112,224,112,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0458 ј + 255, + // 0x0459 љ + 255, + // 0x045a њ + 255, + // 0x045b ћ + 255, + // 0x045c ќ + 255, + // 0x045d ѝ + 255, + // 0x045e ў + 255, + // 0x045f џ + 255, + // 0x0460 Ѡ + 255, + // 0x0461 ѡ + 255, + // 0x0462 Ѣ + 255, + // 0x0463 ѣ + 255, + // 0x0464 Ѥ + 255, + // 0x0465 ѥ + 255, + // 0x0466 Ѧ + 255, + // 0x0467 ѧ + 255, + // 0x0468 Ѩ + 255, + // 0x0469 ѩ + 255, + // 0x046a Ѫ + 255, + // 0x046b ѫ + 255, + // 0x046c Ѭ + 255, + // 0x046d ѭ + 255, + // 0x046e Ѯ + 255, + // 0x046f ѯ + 255, + // 0x0470 Ѱ + 255, + // 0x0471 ѱ + 255, + // 0x0472 Ѳ + 255, + // 0x0473 ѳ + 255, + // 0x0474 Ѵ + 255, + // 0x0475 ѵ + 255, + // 0x0476 Ѷ + 255, + // 0x0477 ѷ + 255, + // 0x0478 Ѹ + 255, + // 0x0479 ѹ + 255, + // 0x047a Ѻ + 255, + // 0x047b ѻ + 255, + // 0x047c Ѽ + 255, + // 0x047d ѽ + 255, + // 0x047e Ѿ + 255, + // 0x047f ѿ + 255, + // 0x0480 Ҁ + 255, + // 0x0481 ҁ + 255, + // 0x0482 ҂ + 255, + // 0x0483 ҃ + 255, + // 0x0484 ҄ + 255, + // 0x0485 ҅ + 255, + // 0x0486 ҆ + 255, + // 0x0487 ҇ + 255, + // 0x0488 ҈ + 255, + // 0x0489 ҉ + 255, + // 0x048a Ҋ + 255, + // 0x048b ҋ + 255, + // 0x048c Ҍ + 255, + // 0x048d ҍ + 255, + // 0x048e Ҏ + 255, + // 0x048f ҏ + 255, + // 0x0490 Ґ + 18,36,108,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0491 ґ + 18,30,90,24,3,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Greek_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Greek_30.cpp new file mode 100644 index 000000000000..f2c55f99a753 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Greek_30.cpp @@ -0,0 +1,178 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Greek 48pt, capital 'A' height: 30px, width: 100%, range: 0x0386-0x03ce, glyphs: 63 +extern const uint8_t Unifont_Greek_30[6228] = { + 129,30,134,3,206,3,42,250, // unifont_t + // 0x0386 Ά + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0387 · + 255, + // 0x0388 Έ + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0389 Ή + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x038a Ί + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x038b ΋ + 255, + // 0x038c Ό + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x038d ΍ + 255, + // 0x038e Ύ + 21,42,126,24,3,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x038f Ώ + 21,45,135,24,3,253,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,255,143,248,255,143,248,255,143,248, + // 0x0390 ΐ + 255, + // 0x0391 Α + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0392 Β + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0, + // 0x0393 Γ + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0394 Δ + 21,30,90,24,3,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,255,255,248,255,255,248,255,255,248, + // 0x0395 Ε + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0396 Ζ + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0397 Η + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0398 Θ + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0399 Ι + 15,30,60,24,6,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x039a Κ + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,252,0,0,227,128,0,227,128,0,227,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x039b Λ + 21,30,90,24,3,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56, + // 0x039c Μ + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x039d Ν + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x039e Ξ + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192, + // 0x039f Ο + 18,30,90,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03a0 Π + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192, + // 0x03a1 Ρ + 18,30,90,24,3,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x03a2 ΢ + 255, + // 0x03a3 Σ + 18,30,90,24,3,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x03a4 Τ + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x03a5 Υ + 21,30,90,24,3,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x03a6 Φ + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248, + // 0x03a7 Χ + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x03a8 Ψ + 21,30,90,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x03a9 Ω + 21,30,90,24,3,0,31,255,192,31,255,192,31,255,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,255,143,248,255,143,248,255,143,248, + // 0x03aa Ϊ + 255, + // 0x03ab Ϋ + 255, + // 0x03ac ά + 18,39,117,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,129,192,31,129,192,31,129,192,224,113,192,224,113,192,224,113,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,113,192,224,113,192,224,113,192,31,129,192,31,129,192,31,129,192, + // 0x03ad έ + 18,39,117,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,31,255,192,31,255,192,31,255,192, + // 0x03ae ή + 18,45,135,24,3,250,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x03af ί + 12,39,78,24,6,0,0,112,0,112,0,112,3,128,3,128,3,128,28,0,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,252,0,252,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,3,240,3,240,3,240, + // 0x03b0 ΰ + 255, + // 0x03b1 α + 18,24,72,24,3,0,31,129,192,31,129,192,31,129,192,224,113,192,224,113,192,224,113,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,113,192,224,113,192,224,113,192,31,129,192,31,129,192,31,129,192, + // 0x03b2 β + 18,36,108,24,3,250,31,240,0,31,240,0,31,240,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x03b3 γ + 21,24,72,24,3,0,31,128,56,31,128,56,31,128,56,224,112,56,224,112,56,224,112,56,0,113,192,0,113,192,0,113,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x03b4 δ + 18,30,90,24,3,0,3,254,0,3,254,0,3,254,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03b5 ε + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03b6 ζ + 15,36,72,24,6,250,224,0,224,0,224,0,224,0,224,0,224,0,31,240,31,240,31,240,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,224,0,31,240,31,240,31,240,0,14,0,14,0,14,31,240,31,240,31,240, + // 0x03b7 η + 18,30,90,24,3,250,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x03b8 θ + 18,30,90,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0, + // 0x03b9 ι + 12,24,48,24,6,0,252,0,252,0,252,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,28,0,3,240,3,240,3,240, + // 0x03ba κ + 15,24,48,24,6,0,224,14,224,14,224,14,224,112,224,112,224,112,227,128,227,128,227,128,252,0,252,0,252,0,252,0,252,0,252,0,227,128,227,128,227,128,224,112,224,112,224,112,224,14,224,14,224,14, + // 0x03bb λ + 18,30,90,24,3,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x03bc μ + 18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,227,241,192,227,241,192,227,241,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x03bd ν + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,227,128,0,227,128,0,227,128,0,252,0,0,252,0,0,252,0,0, + // 0x03be ξ + 18,36,108,24,3,250,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,31,254,0,31,254,0,31,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x03bf ο + 18,24,72,24,3,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03c0 π + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0, + // 0x03c1 ρ + 18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,227,254,0,227,254,0,227,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x03c2 ς + 18,30,90,24,3,250,3,255,192,3,255,192,3,255,192,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,254,0,3,254,0,3,254,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,3,254,0,3,254,0,3,254,0, + // 0x03c3 σ + 21,24,72,24,3,0,31,255,248,31,255,248,31,255,248,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x03c4 τ + 18,24,72,24,3,0,255,255,192,255,255,192,255,255,192,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,126,0,0,126,0,0,126,0, + // 0x03c5 υ + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03c6 φ + 21,30,90,24,3,250,28,15,192,28,15,192,28,15,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x03c7 χ + 24,33,99,24,0,250,252,0,7,252,0,7,252,0,7,3,128,7,3,128,7,3,128,7,3,128,56,3,128,56,3,128,56,0,112,56,0,112,56,0,112,56,0,113,192,0,113,192,0,113,192,0,126,0,0,126,0,0,126,0,3,142,0,3,142,0,3,142,0,28,14,0,28,14,0,28,14,0,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192,224,0,63,224,0,63,224,0,63, + // 0x03c8 ψ + 21,30,90,24,3,250,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x03c9 ω + 21,24,72,24,3,0,28,1,192,28,1,192,28,1,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, + // 0x03ca ϊ + 255, + // 0x03cb ϋ + 255, + // 0x03cc ό + 18,39,117,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03cd ύ + 18,39,117,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x03ce ώ + 21,39,117,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,1,192,28,1,192,28,1,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Katakana_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Katakana_30.cpp new file mode 100644 index 000000000000..f443e717aabd --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Katakana_30.cpp @@ -0,0 +1,238 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Katakana 48pt, capital 'A' height: 30px, width: 100%, range: 0x30a0-0x8868, glyphs: 103 +extern const uint8_t Unifont_Katakana_30[15707] = { + 161,30,160,48,104,136,42,250, // unifont_t + // 0x30a0 ゠ + 160,48,18,15,45,48,15,6,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192, + // 0x30a1 ァ + 161,48,27,24,96,48,6,253,224,1,255,224,224,1,255,224,224,1,255,224,31,254,0,224,31,254,0,224,31,254,0,224,0,14,7,0,0,14,7,0,0,14,7,0,0,1,248,0,0,1,248,0,0,1,248,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0, + // 0x30a2 ア + 162,48,30,36,144,48,6,253,224,1,255,252,224,1,255,252,224,1,255,252,31,254,0,28,31,254,0,28,31,254,0,28,0,0,0,224,0,0,0,224,0,0,0,224,0,14,7,0,0,14,7,0,0,14,7,0,0,1,248,0,0,1,248,0,0,1,248,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0, + // 0x30a3 ィ + 163,48,24,30,90,48,9,253,0,0,7,0,0,7,0,0,7,0,0,56,0,0,56,0,0,56,0,1,192,0,1,192,0,1,192,0,127,192,0,127,192,0,127,192,255,129,192,255,129,192,255,129,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x30a4 イ + 164,48,27,39,156,48,6,253,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,15,192,0,0,15,192,0,0,15,192,0,3,241,192,0,3,241,192,0,3,241,192,0,252,0,56,0,252,0,56,0,252,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0, + // 0x30a5 ゥ + 165,48,24,30,90,48,9,253,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,0,15,255,0,15,255,0,15,255,255,240,7,255,240,7,255,240,7,28,0,7,28,0,7,28,0,7,28,0,56,28,0,56,28,0,56,0,0,56,0,0,56,0,0,56,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0, + // 0x30a6 ウ + 166,48,30,39,156,48,6,253,0,14,0,0,0,14,0,0,0,14,0,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,255,252,0,1,255,252,0,1,255,252,255,254,0,28,255,254,0,28,255,254,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,224,28,0,0,224,28,0,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,7,0,3,128,7,0,3,128,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0, + // 0x30a7 ェ + 167,48,27,21,84,48,9,0,0,1,255,0,0,1,255,0,0,1,255,0,31,254,0,0,31,254,0,0,31,254,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,14,0,0,0,15,255,0,0,15,255,0,0,15,255,0,255,240,0,224,255,240,0,224,255,240,0,224, + // 0x30a8 エ + 168,48,33,27,135,48,6,3,0,0,7,252,0,0,0,7,252,0,0,0,7,252,0,31,255,248,0,0,31,255,248,0,0,31,255,248,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,15,255,252,0,0,15,255,252,0,0,15,255,252,0,255,240,0,3,128,255,240,0,3,128,255,240,0,3,128, + // 0x30a9 ォ + 169,48,24,30,90,48,9,253,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,224,1,255,224,1,255,224,1,255,31,255,192,31,255,192,31,255,192,0,15,192,0,15,192,0,15,192,0,113,192,0,113,192,0,113,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,224,15,192,224,15,192,224,15,192,0,1,192,0,1,192,0,1,192, + // 0x30aa オ + 170,48,33,39,195,48,6,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,224,0,7,255,128,224,0,7,255,128,224,0,7,255,128,31,255,255,0,0,31,255,255,0,0,31,255,255,0,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,28,0,7,0,0,28,0,7,0,0,28,0,7,0,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x30ab カ + 171,48,30,39,156,48,6,253,0,14,0,0,0,14,0,0,0,14,0,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,224,1,255,252,224,1,255,252,224,1,255,252,31,255,192,28,31,255,192,28,31,255,192,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,112,0,224,0,112,0,224,0,112,0,224,0,112,0,224,0,112,0,224,0,112,0,224,3,128,0,224,3,128,0,224,3,128,0,224,28,1,199,0,28,1,199,0,28,1,199,0,224,0,63,0,224,0,63,0,224,0,63,0,0,0,56,0,0,0,56,0,0,0,56,0, + // 0x30ac ガ + 172,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,14,0,224,112,0,14,0,224,112,0,14,0,224,112,0,1,192,28,112,0,1,192,28,112,0,1,192,28,112,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,224,1,255,252,0,224,1,255,252,0,224,1,255,252,0,31,255,192,28,0,31,255,192,28,0,31,255,192,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,28,1,199,0,0,28,1,199,0,0,28,1,199,0,0,224,0,63,0,0,224,0,63,0,0,224,0,63,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0, + // 0x30ad キ + 173,48,33,39,195,48,6,253,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,7,252,0,0,14,7,252,0,0,14,7,252,0,0,15,248,0,0,0,15,248,0,0,0,15,248,0,0,31,241,192,0,0,31,241,192,0,0,31,241,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,199,255,128,0,1,199,255,128,0,1,199,255,128,0,15,248,0,0,0,15,248,0,0,0,15,248,0,0,255,240,56,0,0,255,240,56,0,0,255,240,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x30ae ギ + 174,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,112,0,224,112,0,112,0,224,112,0,112,0,224,112,0,14,0,28,112,0,14,0,28,112,0,14,0,28,112,0,14,7,252,0,0,14,7,252,0,0,14,7,252,0,0,15,248,0,0,0,15,248,0,0,0,15,248,0,0,31,241,192,0,0,31,241,192,0,0,31,241,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,199,255,128,0,1,199,255,128,0,1,199,255,128,0,15,248,0,0,0,15,248,0,0,0,15,248,0,0,255,240,56,0,0,255,240,56,0,0,255,240,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x30af ク + 175,48,27,39,156,48,9,253,3,128,0,0,3,128,0,0,3,128,0,0,0,112,63,224,0,112,63,224,0,112,63,224,0,127,192,224,0,127,192,224,0,127,192,224,0,112,7,0,0,112,7,0,0,112,7,0,3,128,7,0,3,128,7,0,3,128,7,0,3,128,56,0,3,128,56,0,3,128,56,0,28,0,56,0,28,0,56,0,28,0,56,0,224,1,192,0,224,1,192,0,224,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0,28,0,0,0,28,0,0,0,28,0,0,0, + // 0x30b0 グ + 176,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,128,0,224,112,3,128,0,224,112,3,128,0,224,112,0,112,63,28,112,0,112,63,28,112,0,112,63,28,112,0,127,199,28,0,0,127,199,28,0,0,127,199,28,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,56,0,0,3,128,56,0,0,3,128,56,0,0,28,0,56,0,0,28,0,56,0,0,28,0,56,0,0,224,1,192,0,0,224,1,192,0,0,224,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0, + // 0x30b1 ケ + 177,48,33,39,195,48,6,253,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,255,128,0,112,0,255,128,0,112,0,255,128,3,255,255,0,0,3,255,255,0,0,3,255,255,0,0,3,129,192,0,0,3,129,192,0,0,3,129,192,0,0,28,0,56,0,0,28,0,56,0,0,28,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30b2 ゲ + 178,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,128,0,224,112,3,128,0,224,112,3,128,0,224,112,0,112,0,28,112,0,112,0,28,112,0,112,0,28,112,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,255,128,0,112,0,255,128,0,112,0,255,128,3,255,255,0,0,3,255,255,0,0,3,255,255,0,0,3,129,192,0,0,3,129,192,0,0,3,129,192,0,0,28,0,56,0,0,28,0,56,0,0,28,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30b3 コ + 179,48,30,27,108,48,6,3,224,1,255,252,224,1,255,252,224,1,255,252,31,254,0,28,31,254,0,28,31,254,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,15,255,224,0,15,255,224,0,15,255,224,31,240,0,224,31,240,0,224,31,240,0,224, + // 0x30b4 ゴ + 180,48,39,36,180,48,3,3,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,224,1,255,227,128,224,1,255,227,128,224,1,255,227,128,31,254,0,224,0,31,254,0,224,0,31,254,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,15,255,0,0,0,15,255,0,0,0,15,255,0,0,31,240,7,0,0,31,240,7,0,0,31,240,7,0,0, + // 0x30b5 サ + 181,48,33,39,195,48,6,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,224,112,63,255,128,224,112,63,255,128,224,112,63,255,128,31,255,199,0,0,31,255,199,0,0,31,255,199,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0, + // 0x30b6 ザ + 182,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,56,224,112,0,0,56,224,112,0,0,56,224,112,3,128,7,28,112,3,128,7,28,112,3,128,7,28,112,0,112,7,28,0,0,112,7,28,0,0,112,7,28,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,224,112,63,255,128,224,112,63,255,128,224,112,63,255,128,31,255,199,0,0,31,255,199,0,0,31,255,199,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0, + // 0x30b7 シ + 183,48,30,33,132,48,9,0,31,128,0,0,31,128,0,0,31,128,0,0,0,112,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,252,0,0,0,252,0,0,0,3,128,0,28,3,128,0,28,3,128,0,28,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,224,126,0,0,224,126,0,0,224,126,0,0,31,128,0,0,31,128,0,0,31,128,0,0, + // 0x30b8 ジ + 184,48,33,36,180,48,9,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,31,128,7,3,128,31,128,7,3,128,31,128,7,3,128,0,112,0,227,128,0,112,0,227,128,0,112,0,227,128,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,224,126,0,0,0,224,126,0,0,0,224,126,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,0,0, + // 0x30b9 ス + 185,48,30,30,120,48,6,3,28,0,63,224,28,0,63,224,28,0,63,224,3,255,192,224,3,255,192,224,3,255,192,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,199,0,0,1,199,0,0,1,199,0,0,14,0,224,0,14,0,224,0,14,0,224,3,240,0,28,3,240,0,28,3,240,0,28,252,0,0,28,252,0,0,28,252,0,0,28, + // 0x30ba ズ + 186,48,39,36,180,48,3,3,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,28,0,63,227,142,28,0,63,227,142,28,0,63,227,142,3,255,192,227,128,3,255,192,227,128,3,255,192,227,128,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,3,240,0,28,0,3,240,0,28,0,3,240,0,28,0,252,0,0,28,0,252,0,0,28,0,252,0,0,28,0, + // 0x30bb セ + 187,48,33,36,180,48,6,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,7,255,128,0,112,7,255,128,0,112,7,255,128,0,113,248,3,128,0,113,248,3,128,0,113,248,3,128,224,126,0,28,0,224,126,0,28,0,224,126,0,28,0,31,240,0,224,0,31,240,0,224,0,31,240,0,224,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0, + // 0x30bc ゼ + 188,48,36,39,195,48,6,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,128,0,224,112,3,128,0,224,112,3,128,0,224,112,0,112,0,28,112,0,112,0,28,112,0,112,0,28,112,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,7,255,128,0,112,7,255,128,0,112,7,255,128,0,113,248,3,128,0,113,248,3,128,0,113,248,3,128,224,126,0,28,0,224,126,0,28,0,224,126,0,28,0,31,240,0,224,0,31,240,0,224,0,31,240,0,224,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,255,255,128,0,1,255,255,128,0,1,255,255,128, + // 0x30bd ソ + 189,48,27,39,156,48,9,253,0,0,7,0,0,0,7,0,0,0,7,0,224,0,0,224,224,0,0,224,224,0,0,224,28,0,0,224,28,0,0,224,28,0,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,7,0,3,128,7,0,3,128,7,0,3,128,7,0,3,128,7,0,3,128,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0, + // 0x30be ゾ + 190,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,56,224,112,0,0,56,224,112,0,0,56,224,112,224,0,7,28,112,224,0,7,28,112,224,0,7,28,112,28,0,7,28,0,28,0,7,28,0,28,0,7,28,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0, + // 0x30bf タ + 191,48,30,39,156,48,6,253,0,14,0,0,0,14,0,0,0,14,0,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,255,252,0,1,255,252,0,1,255,252,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,224,0,14,0,224,0,14,0,224,0,113,192,224,0,113,192,224,0,113,192,224,3,128,63,0,3,128,63,0,3,128,63,0,28,0,7,0,28,0,7,0,28,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,3,240,0,0,3,240,0,0,3,240,0,0,252,0,0,0,252,0,0,0,252,0,0,0, + // 0x30c0 ダ + 192,48,39,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,14,0,28,14,0,14,0,28,14,0,14,0,28,14,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,255,255,128,0,1,255,255,128,0,1,255,255,128,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,113,192,224,0,0,113,192,224,0,0,113,192,224,0,3,128,56,224,0,3,128,56,224,0,3,128,56,224,0,28,0,7,0,0,28,0,7,0,0,28,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0, + // 0x30c1 チ + 193,48,33,39,195,48,6,253,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,0,0,0,1,248,0,0,0,1,248,0,0,31,254,0,0,0,31,254,0,0,0,31,254,0,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,63,255,128,0,0,63,255,128,0,0,63,255,128,224,15,248,0,0,224,15,248,0,0,224,15,248,0,0,31,240,56,0,0,31,240,56,0,0,31,240,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30c2 ヂ + 194,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,7,224,112,0,0,7,224,112,0,0,7,224,112,0,1,248,28,112,0,1,248,28,112,0,1,248,28,112,31,254,0,28,0,31,254,0,28,0,31,254,0,28,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,63,255,128,0,0,63,255,128,0,0,63,255,128,224,15,248,0,0,224,15,248,0,0,224,15,248,0,0,31,240,56,0,0,31,240,56,0,0,31,240,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30c3 ッ + 195,48,24,24,72,48,9,253,3,128,56,3,128,56,3,128,56,224,112,7,224,112,7,224,112,7,28,112,7,28,112,7,28,112,7,28,0,56,28,0,56,28,0,56,0,0,56,0,0,56,0,0,56,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0, + // 0x30c4 ツ + 196,48,33,33,165,48,6,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,224,14,0,3,128,224,14,0,3,128,224,14,0,3,128,28,1,192,3,128,28,1,192,3,128,28,1,192,3,128,3,129,192,28,0,3,129,192,28,0,3,129,192,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0, + // 0x30c5 ヅ + 197,48,39,39,195,48,3,0,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,3,128,7,3,142,3,128,7,3,142,3,128,7,3,142,0,112,0,227,128,0,112,0,227,128,0,112,0,227,128,224,14,0,224,0,224,14,0,224,0,224,14,0,224,0,28,14,0,224,0,28,14,0,224,0,28,14,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30c6 テ + 198,48,33,36,180,48,6,253,28,1,255,224,0,28,1,255,224,0,28,1,255,224,0,3,254,0,0,0,3,254,0,0,0,3,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,255,128,0,0,7,255,128,0,0,7,255,128,224,15,248,0,0,224,15,248,0,0,224,15,248,0,0,31,240,56,0,0,31,240,56,0,0,31,240,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0, + // 0x30c7 デ + 199,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,224,112,0,0,0,224,112,0,0,0,224,112,28,1,255,28,112,28,1,255,28,112,28,1,255,28,112,3,254,0,28,0,3,254,0,28,0,3,254,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,63,252,0,224,0,63,252,0,224,0,63,252,0,31,255,192,0,0,31,255,192,0,0,31,255,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0, + // 0x30c8 ト + 200,48,21,39,117,48,12,253,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,31,240,0,31,240,0,31,240,0,28,15,192,28,15,192,28,15,192,28,0,56,28,0,56,28,0,56,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x30c9 ド + 201,48,27,42,168,48,9,253,0,0,7,0,0,0,7,0,0,0,7,0,224,1,192,224,224,1,192,224,224,1,192,224,28,0,56,224,28,0,56,224,28,0,56,224,28,0,56,0,28,0,56,0,28,0,56,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,31,240,0,0,31,240,0,0,31,240,0,0,28,15,192,0,28,15,192,0,28,15,192,0,28,0,56,0,28,0,56,0,28,0,56,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0, + // 0x30ca ナ + 202,48,33,39,195,48,6,253,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,224,0,63,255,128,224,0,63,255,128,224,0,63,255,128,31,255,248,0,0,31,255,248,0,0,31,255,248,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0, + // 0x30cb ニ + 203,48,33,24,120,48,6,6,0,0,63,224,0,0,0,63,224,0,0,0,63,224,0,31,255,192,0,0,31,255,192,0,0,31,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128, + // 0x30cc ヌ + 204,48,30,33,132,48,6,0,28,0,63,252,28,0,63,252,28,0,63,252,3,255,192,28,3,255,192,28,3,255,192,28,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,3,254,7,0,3,254,7,0,3,254,7,0,0,1,255,0,0,1,255,0,0,1,255,0,0,0,63,0,0,0,63,0,0,0,63,0,0,1,192,224,0,1,192,224,0,1,192,224,0,14,0,28,0,14,0,28,0,14,0,28,3,240,0,28,3,240,0,28,3,240,0,28,252,0,0,0,252,0,0,0,252,0,0,0, + // 0x30cd ネ + 205,48,33,39,195,48,6,253,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,255,224,0,0,1,255,224,0,0,1,255,224,0,31,254,0,224,0,31,254,0,224,0,31,254,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,15,199,0,0,0,15,199,0,0,0,15,199,0,0,3,241,192,252,0,3,241,192,252,0,3,241,192,252,0,252,1,192,3,128,252,1,192,3,128,252,1,192,3,128,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x30ce ノ + 206,48,24,39,117,48,9,253,0,0,56,0,0,56,0,0,56,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,7,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0, + // 0x30cf ハ + 207,48,36,24,120,48,3,3,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x30d0 バ + 208,48,39,33,165,48,3,3,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,112,7,3,128,0,112,7,3,128,0,112,7,3,128,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x30d1 パ + 209,48,39,36,180,48,3,3,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x30d2 ヒ + 210,48,27,33,132,48,9,0,224,0,0,0,224,0,0,0,224,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,1,255,0,28,1,255,0,28,1,255,0,31,254,0,0,31,254,0,0,31,254,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,3,128,0,0,3,128,0,0,3,128,0,0,0,127,255,224,0,127,255,224,0,127,255,224, + // 0x30d3 ビ + 211,48,30,36,144,48,9,0,0,0,0,224,0,0,0,224,0,0,0,224,224,0,56,28,224,0,56,28,224,0,56,28,28,0,7,28,28,0,7,28,28,0,7,28,28,0,7,0,28,0,7,0,28,0,7,0,28,0,0,0,28,0,0,0,28,0,0,0,28,1,255,0,28,1,255,0,28,1,255,0,31,254,0,0,31,254,0,0,31,254,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,3,128,0,0,3,128,0,0,3,128,0,0,0,127,255,224,0,127,255,224,0,127,255,224, + // 0x30d4 ピ + 212,48,30,36,144,48,9,0,0,0,7,224,0,0,7,224,0,0,7,224,224,0,56,28,224,0,56,28,224,0,56,28,28,0,56,28,28,0,56,28,28,0,56,28,28,0,7,224,28,0,7,224,28,0,7,224,28,0,0,0,28,0,0,0,28,0,0,0,28,1,255,0,28,1,255,0,28,1,255,0,31,254,0,0,31,254,0,0,31,254,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,3,128,0,0,3,128,0,0,3,128,0,0,0,127,255,224,0,127,255,224,0,127,255,224, + // 0x30d5 フ + 213,48,27,33,132,48,9,0,224,1,255,224,224,1,255,224,224,1,255,224,31,254,0,224,31,254,0,224,31,254,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0, + // 0x30d6 ブ + 214,48,36,39,195,48,6,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,224,112,0,0,0,224,112,0,0,0,224,112,224,15,255,28,112,224,15,255,28,112,224,15,255,28,112,31,240,7,28,0,31,240,7,28,0,31,240,7,28,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0, + // 0x30d7 プ + 215,48,36,39,195,48,6,0,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,0,0,224,112,0,0,0,224,112,0,0,0,224,112,224,15,255,224,112,224,15,255,224,112,224,15,255,224,112,31,240,7,31,128,31,240,7,31,128,31,240,7,31,128,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0, + // 0x30d8 ヘ + 216,48,39,18,90,48,3,9,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,56,0,0,0,14,56,0,0,0,14,56,0,0,224,112,7,0,0,224,112,7,0,0,224,112,7,0,0,31,128,0,224,0,31,128,0,224,0,31,128,0,224,0,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,0,0,0,126,0,0,0,0,126,0,0,0,0,126, + // 0x30d9 ベ + 217,48,39,27,135,48,3,9,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,7,3,128,0,0,7,3,128,0,0,7,3,128,0,0,0,227,128,0,0,0,227,128,0,0,0,227,128,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,14,56,0,0,0,14,56,0,0,0,14,56,0,0,224,112,7,0,0,224,112,7,0,0,224,112,7,0,0,31,128,0,224,0,31,128,0,224,0,31,128,0,224,0,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,0,0,0,126,0,0,0,0,126,0,0,0,0,126, + // 0x30da ペ + 218,48,39,27,135,48,3,9,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,7,3,128,0,0,7,3,128,0,0,7,3,128,0,0,7,3,128,0,0,7,3,128,0,0,7,3,128,0,1,192,252,0,0,1,192,252,0,0,1,192,252,0,0,14,56,0,0,0,14,56,0,0,0,14,56,0,0,224,112,7,0,0,224,112,7,0,0,224,112,7,0,0,31,128,0,224,0,31,128,0,224,0,31,128,0,224,0,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,0,0,0,126,0,0,0,0,126,0,0,0,0,126, + // 0x30db ホ + 219,48,30,39,156,48,6,253,0,14,0,0,0,14,0,0,0,14,0,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,224,1,255,252,224,1,255,252,224,1,255,252,31,255,192,0,31,255,192,0,31,255,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,199,0,0,1,199,0,0,1,199,0,3,129,192,224,3,129,192,224,3,129,192,224,3,129,192,28,3,129,192,28,3,129,192,28,28,1,192,28,28,1,192,28,28,1,192,28,224,1,192,0,224,1,192,0,224,1,192,0,0,15,192,0,0,15,192,0,0,15,192,0,0,1,192,0,0,1,192,0,0,1,192,0, + // 0x30dc ボ + 220,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,14,0,224,112,0,14,0,224,112,0,14,0,224,112,0,1,192,28,112,0,1,192,28,112,0,1,192,28,112,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,224,1,255,252,0,224,1,255,252,0,224,1,255,252,0,31,255,192,0,0,31,255,192,0,0,31,255,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,3,129,192,224,0,3,129,192,224,0,3,129,192,224,0,3,129,192,28,0,3,129,192,28,0,3,129,192,28,0,28,1,192,28,0,28,1,192,28,0,28,1,192,28,0,224,1,192,0,0,224,1,192,0,0,224,1,192,0,0,0,15,192,0,0,0,15,192,0,0,0,15,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x30dd ポ + 221,48,36,42,210,48,6,253,0,0,0,31,128,0,0,0,31,128,0,0,0,31,128,0,14,0,224,112,0,14,0,224,112,0,14,0,224,112,0,1,192,224,112,0,1,192,224,112,0,1,192,224,112,0,1,192,31,128,0,1,192,31,128,0,1,192,31,128,224,1,255,252,0,224,1,255,252,0,224,1,255,252,0,31,255,192,0,0,31,255,192,0,0,31,255,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,3,129,192,224,0,3,129,192,224,0,3,129,192,224,0,3,129,192,28,0,3,129,192,28,0,3,129,192,28,0,28,1,192,28,0,28,1,192,28,0,28,1,192,28,0,224,1,192,0,0,224,1,192,0,0,224,1,192,0,0,0,15,192,0,0,0,15,192,0,0,0,15,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x30de マ + 222,48,33,27,135,48,6,3,224,0,63,252,0,224,0,63,252,0,224,0,63,252,0,31,255,192,3,128,31,255,192,3,128,31,255,192,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,3,240,56,0,0,3,240,56,0,0,3,240,56,0,0,0,15,192,0,0,0,15,192,0,0,0,15,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x30df ミ + 223,48,24,39,117,48,9,253,3,128,0,3,128,0,3,128,0,0,126,0,0,126,0,0,126,0,0,1,248,0,1,248,0,1,248,0,0,7,0,0,7,0,0,7,28,0,0,28,0,0,28,0,0,3,240,0,3,240,0,3,240,0,0,15,192,0,15,192,0,15,192,0,0,56,0,0,56,0,0,56,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,248,0,1,248,0,1,248,0,0,7,0,0,7,0,0,7, + // 0x30e0 ム + 224,48,33,33,165,48,6,3,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,0,112,0,252,0,0,112,0,252,0,0,112,0,252,0,227,129,255,3,128,227,129,255,3,128,227,129,255,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128, + // 0x30e1 メ + 225,48,30,39,156,48,6,253,0,0,7,0,0,0,7,0,0,0,7,0,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,126,0,224,0,126,0,224,0,126,0,224,0,1,255,0,0,1,255,0,0,1,255,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,224,0,0,56,224,0,0,56,224,0,0,56,28,0,0,56,28,0,0,56,28,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,3,240,0,0,3,240,0,0,3,240,0,0,252,0,0,0,252,0,0,0,252,0,0,0, + // 0x30e2 モ + 226,48,33,30,150,48,6,3,28,0,63,224,0,28,0,63,224,0,28,0,63,224,0,3,255,192,0,0,3,255,192,0,0,3,255,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,224,15,255,255,128,224,15,255,255,128,224,15,255,255,128,31,254,0,0,0,31,254,0,0,0,31,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0, + // 0x30e3 ャ + 227,48,27,27,108,48,9,253,3,128,0,0,3,128,0,0,3,128,0,0,0,112,63,224,0,112,63,224,0,112,63,224,0,127,192,224,0,127,192,224,0,127,192,224,255,240,7,0,255,240,7,0,255,240,7,0,0,14,56,0,0,14,56,0,0,14,56,0,0,14,0,0,0,14,0,0,0,14,0,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0,0,1,192,0, + // 0x30e4 ヤ + 228,48,33,36,180,48,6,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,7,255,128,0,112,7,255,128,0,112,7,255,128,0,15,248,3,128,0,15,248,3,128,0,15,248,3,128,224,126,0,28,0,224,126,0,28,0,224,126,0,28,0,31,142,0,224,0,31,142,0,224,0,31,142,0,224,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0, + // 0x30e5 ュ + 229,48,27,18,72,48,9,3,0,15,248,0,0,15,248,0,0,15,248,0,31,240,56,0,31,240,56,0,31,240,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,15,255,0,0,15,255,0,0,15,255,0,255,240,0,224,255,240,0,224,255,240,0,224, + // 0x30e6 ユ + 230,48,33,21,105,48,6,6,28,1,255,0,0,28,1,255,0,0,28,1,255,0,0,3,254,7,0,0,3,254,7,0,0,3,254,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128, + // 0x30e7 ョ + 231,48,21,24,72,48,12,0,0,127,248,0,127,248,0,127,248,255,128,56,255,128,56,255,128,56,0,0,56,0,0,56,0,0,56,0,127,248,0,127,248,0,127,248,255,129,192,255,129,192,255,129,192,0,1,192,0,1,192,0,1,192,0,127,192,0,127,192,0,127,192,255,128,56,255,128,56,255,128,56, + // 0x30e8 ヨ + 232,48,27,33,132,48,9,0,0,15,255,224,0,15,255,224,0,15,255,224,255,240,0,224,255,240,0,224,255,240,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,15,255,0,0,15,255,0,0,15,255,0,31,240,7,0,31,240,7,0,31,240,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,15,255,0,0,15,255,0,0,15,255,0,31,240,0,224,31,240,0,224,31,240,0,224, + // 0x30e9 ラ + 233,48,30,36,144,48,6,253,28,1,255,0,28,1,255,0,28,1,255,0,3,254,0,0,3,254,0,0,3,254,0,0,0,0,7,252,0,0,7,252,0,0,7,252,224,15,248,28,224,15,248,28,224,15,248,28,31,240,0,28,31,240,0,28,31,240,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,15,192,0,0,15,192,0,0,15,192,0,3,240,0,0,3,240,0,0,3,240,0,0, + // 0x30ea リ + 234,48,21,39,117,48,12,253,0,1,192,0,1,192,0,1,192,224,0,56,224,0,56,224,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0, + // 0x30eb ル + 235,48,33,33,165,48,6,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,3,128,56,0,0,3,128,56,0,0,3,128,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,3,128,0,112,56,3,128,0,112,56,3,128,0,112,56,3,128,0,112,56,3,128,0,112,56,3,128,0,112,56,28,0,0,112,56,28,0,0,112,56,28,0,3,128,56,28,0,3,128,56,28,0,3,128,56,28,0,3,128,56,224,0,3,128,56,224,0,3,128,56,224,0,28,0,63,0,0,28,0,63,0,0,28,0,63,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0, + // 0x30ec レ + 236,48,27,36,144,48,9,0,224,0,0,0,224,0,0,0,224,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,224,28,0,0,224,28,0,0,224,28,0,7,0,28,0,7,0,28,0,7,0,28,0,56,0,28,0,56,0,28,0,56,0,28,1,192,0,28,1,192,0,28,1,192,0,28,126,0,0,28,126,0,0,28,126,0,0,31,128,0,0,31,128,0,0,31,128,0,0, + // 0x30ed ロ + 237,48,30,27,108,48,6,3,224,1,255,252,224,1,255,252,224,1,255,252,31,254,0,28,31,254,0,28,31,254,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,28,28,0,0,28,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,129,255,224,3,129,255,224,3,129,255,224,3,254,0,28,3,254,0,28,3,254,0,28,3,128,0,0,3,128,0,0,3,128,0,0, + // 0x30ee ヮ + 238,48,27,24,96,48,9,253,224,1,255,224,224,1,255,224,224,1,255,224,31,254,0,224,31,254,0,224,31,254,0,224,28,0,7,0,28,0,7,0,28,0,7,0,3,128,7,0,3,128,7,0,3,128,7,0,3,128,56,0,3,128,56,0,3,128,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0, + // 0x30ef ワ + 239,48,30,36,144,48,6,253,224,1,255,252,224,1,255,252,224,1,255,252,31,254,0,28,31,254,0,28,31,254,0,28,28,0,0,28,28,0,0,28,28,0,0,28,3,128,0,28,3,128,0,28,3,128,0,28,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,3,128,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0, + // 0x30f0 ヰ + 240,48,33,39,195,48,6,253,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,31,254,56,0,0,31,254,56,0,0,31,254,56,0,0,3,128,56,0,0,3,128,56,0,0,3,128,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,113,255,252,0,0,113,255,252,0,0,113,255,252,0,255,254,56,3,128,255,254,56,3,128,255,254,56,3,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0, + // 0x30f1 ヱ + 241,48,33,24,120,48,6,6,0,1,255,224,0,0,1,255,224,0,0,1,255,224,0,31,254,0,224,0,31,254,0,224,0,31,254,0,224,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,1,248,0,0,0,1,248,0,0,0,1,248,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128, + // 0x30f2 ヲ + 242,48,27,36,144,48,9,253,0,15,255,224,0,15,255,224,0,15,255,224,255,240,0,224,255,240,0,224,255,240,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,15,255,0,0,15,255,0,0,15,255,0,31,240,7,0,31,240,7,0,31,240,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,0,14,0,0,0,14,0,0,0,14,0,0,3,240,0,0,3,240,0,0,3,240,0,0,252,0,0,0,252,0,0,0,252,0,0,0, + // 0x30f3 ン + 243,48,30,30,120,48,9,0,252,0,0,0,252,0,0,0,252,0,0,0,3,128,0,28,3,128,0,28,3,128,0,28,0,112,0,28,0,112,0,28,0,112,0,28,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,0,224,0,0,7,0,0,0,7,0,0,0,7,0,0,0,56,0,0,0,56,0,0,0,56,0,0,1,192,0,0,1,192,0,0,1,192,0,224,126,0,0,224,126,0,0,224,126,0,0,31,128,0,0,31,128,0,0,31,128,0,0, + // 0x30f4 ヴ + 244,48,39,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,14,0,28,14,0,14,0,28,14,0,14,0,28,14,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,224,1,255,252,0,224,1,255,252,0,224,1,255,252,0,31,254,0,28,0,31,254,0,28,0,31,254,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0, + // 0x30f5 ヵ + 245,48,24,27,81,48,9,253,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,224,15,255,224,15,255,224,15,255,31,240,7,31,240,7,31,240,7,0,112,7,0,112,7,0,112,7,0,112,7,0,112,7,0,112,7,3,128,7,3,128,7,3,128,7,28,1,248,28,1,248,28,1,248,224,0,56,224,0,56,224,0,56, + // 0x30f6 ヶ + 246,48,24,27,81,48,9,253,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,63,3,128,63,3,128,63,3,255,192,3,255,192,3,255,192,28,1,192,28,1,192,28,1,192,224,1,192,224,1,192,224,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0, + // 0x30f7 ヷ + 247,48,39,45,225,48,6,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,224,1,255,252,0,224,1,255,252,0,224,1,255,252,0,31,254,0,28,0,31,254,0,28,0,31,254,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0, + // 0x30f8 ヸ + 248,48,36,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,0,56,28,0,0,0,56,28,0,0,0,56,28,0,0,0,56,3,128,0,0,56,3,128,0,0,56,3,128,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,31,254,56,0,0,31,254,56,0,0,31,254,56,0,0,3,128,56,0,0,3,128,56,0,0,3,128,56,0,0,0,112,56,0,0,0,112,56,0,0,0,112,56,0,0,0,113,255,252,0,0,113,255,252,0,0,113,255,252,0,255,254,56,3,128,255,254,56,3,128,255,254,56,3,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0, + // 0x30f9 ヹ + 249,48,36,33,165,48,6,6,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,1,255,227,128,0,1,255,227,128,0,1,255,227,128,31,254,0,224,0,31,254,0,224,0,31,254,0,224,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,1,248,0,0,0,1,248,0,0,0,1,248,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,255,252,0,0,1,255,252,0,0,1,255,252,0,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128, + // 0x30fa ヺ + 250,48,36,45,225,48,9,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,15,255,227,128,0,15,255,227,128,0,15,255,227,128,255,240,0,224,0,255,240,0,224,0,255,240,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,15,255,0,0,0,15,255,0,0,0,15,255,0,0,31,240,7,0,0,31,240,7,0,0,31,240,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,3,240,0,0,0,3,240,0,0,0,3,240,0,0,0,252,0,0,0,0,252,0,0,0,0,252,0,0,0,0, + // 0x30fb ・ + 251,48,12,12,24,48,15,12,31,128,31,128,31,128,255,240,255,240,255,240,255,240,255,240,255,240,31,128,31,128,31,128, + // 0x30fc ー + 252,48,36,6,30,48,3,15,224,0,7,255,240,224,0,7,255,240,224,0,7,255,240,31,255,248,0,0,31,255,248,0,0,31,255,248,0,0, + // 0x30fd ヽ + 253,48,21,15,45,48,12,12,252,0,0,252,0,0,252,0,0,3,240,0,3,240,0,3,240,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56, + // 0x30fe ヾ + 254,48,24,21,63,48,12,12,0,0,56,0,0,56,0,0,56,0,14,7,0,14,7,0,14,7,252,1,192,252,1,192,252,1,192,3,240,0,3,240,0,3,240,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56, + // 0x30ff ヿ + 255,48,30,39,156,48,6,253,224,1,255,224,224,1,255,224,224,1,255,224,31,254,0,28,31,254,0,28,31,254,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28, + // 0x4eee 仮 + 238,78,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,0,14,63,252,0,0,0,14,63,252,0,0,0,14,63,252,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,3,240,56,0,0,0,3,240,56,0,0,0,3,240,56,0,0,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,28,112,56,224,14,0,28,112,56,224,14,0,28,112,56,224,14,0,224,112,56,224,14,0,224,112,56,224,14,0,224,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,192,224,14,0,0,126,7,0,1,248,0,126,7,0,1,248,0,126,7,0,1,248, + // 0x540d 名 + 13,84,39,48,240,48,0,250,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,113,192,3,128,0,113,192,3,128,0,113,192,3,128,31,128,56,28,0,31,128,56,28,0,31,128,56,28,0,0,0,56,224,0,0,0,56,224,0,0,0,56,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,0,0,0,1,248,0,0,0,1,248,0,0,0,127,255,255,254,0,127,255,255,254,0,127,255,255,254,255,142,0,0,14,255,142,0,0,14,255,142,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,15,255,255,254,0,15,255,255,254,0,15,255,255,254,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14, + // 0x5b9a 定 + 154,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x7247 片 + 71,114,39,48,240,48,3,250,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,252,0,3,255,255,252,0,3,255,255,252,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0, + // 0x793a 示 + 58,121,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x7fa9 義 + 169,127,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,3,255,192,28,112,0,3,255,192,28,112,0,3,255,192,28,112,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,15,248,28,112,0,0,15,248,28,112,0,0,15,248,28,112,0,31,254,0,3,129,192,31,254,0,3,129,192,31,254,0,3,129,192,0,14,0,28,113,192,0,14,0,28,113,192,0,14,0,28,113,192,0,126,7,224,15,192,0,126,7,224,15,192,0,126,7,224,15,192, + // 0x8868 表 + 104,136,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,126,0,28,112,0,0,126,0,28,112,0,0,126,0,28,112,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,252,14,7,0,126,0,252,14,7,0,126,0,252,14,7,0,126,0,0,14,56,0,1,248,0,14,56,0,1,248,0,14,56,0,1,248,0,15,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Korean_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Korean_30.cpp new file mode 100644 index 000000000000..be59f22fb8f5 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Korean_30.cpp @@ -0,0 +1,252 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Korean 48pt, capital 'A' height: 30px, width: 100%, range: 0xac70-0xd788, glyphs: 110 +extern const uint8_t Unifont_Korean_30[23235] = { + 161,30,112,172,136,215,42,250, // unifont_t + // 0xac70 거 + 112,172,36,39,195,48,9,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,255,240,0,1,192,255,240,0,1,192,255,240,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,252,0,0,0,112,252,0,0,0,112,252,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xace0 고 + 224,172,39,30,150,48,3,0,31,255,255,255,128,31,255,255,255,128,31,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xadf8 그 + 248,173,39,24,120,48,3,6,31,255,255,255,128,31,255,255,255,128,31,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xae09 급 + 9,174,39,39,195,48,3,253,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xae30 기 + 48,174,30,39,156,48,9,253,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,255,255,192,28,255,255,192,28,255,255,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,1,192,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,14,0,28,0,112,0,28,0,112,0,28,0,112,0,28,3,128,0,28,3,128,0,28,3,128,0,28,252,0,0,28,252,0,0,28,252,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28,0,0,0,28, + // 0xae45 깅 + 69,174,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,252,0,0,3,128,252,0,0,3,128,252,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,252,0,0,15,255,252,0,0,15,255,252,0,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,15,255,252,0,0,15,255,252,0,0,15,255,252,0, + // 0xb044 끄 + 68,176,39,24,120,48,3,6,31,255,199,255,240,31,255,199,255,240,31,255,199,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb0b4 내 + 180,176,42,39,234,48,3,253,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,255,192,224,0,0,3,255,192,224,0,0,3,255,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192, + // 0xb178 노 + 120,177,39,36,180,48,3,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb204 누 + 4,178,33,39,195,48,6,253,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0xb274 뉴 + 116,178,39,39,195,48,3,253,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0, + // 0xb2c8 니 + 200,178,36,39,195,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xb2e4 다 + 228,178,42,39,234,48,3,253,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,255,3,128,0,255,255,255,3,128,0,255,255,255,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,255,192,224,0,0,3,255,192,224,0,0,3,255,192,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,255,255,255,3,128,0,255,255,255,3,128,0,255,255,255,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0xb2f9 당 + 249,178,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,127,192,224,0,0,0,127,192,224,0,0,0,127,192,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,128,0,0,1,255,255,128,0,0,1,255,255,128,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,1,255,255,128,0,0,1,255,255,128,0,0,1,255,255,128,0, + // 0xb3c4 도 + 196,179,39,36,180,48,3,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb3cc 돌 + 204,179,39,39,195,48,3,253,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xb3d9 동 + 217,179,39,39,195,48,3,253,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0, + // 0xb418 되 + 24,180,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xb41c 된 + 28,180,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,31,255,255,0,112,31,255,255,0,112,31,255,255,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,31,255,255,0,112,31,255,255,0,112,31,255,255,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,127,255,255,240,0,127,255,255,240,0,127,255,255,240, + // 0xb428 됨 + 40,180,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,31,255,255,0,112,31,255,255,0,112,31,255,255,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,31,255,255,0,112,31,255,255,0,112,31,255,255,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240, + // 0xb4a4 뒤 + 164,180,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,224,112,255,255,255,224,112,255,255,255,224,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,224,112,255,255,255,224,112,255,255,255,224,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0xb4dc 드 + 220,180,39,30,150,48,3,6,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb514 디 + 20,181,36,39,195,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xb77c 라 + 124,183,39,39,195,48,6,253,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,255,255,248,28,0,255,255,248,28,0,255,255,248,28,0,0,0,56,28,0,0,0,56,28,0,0,0,56,28,0,0,0,56,28,0,0,0,56,28,0,0,0,56,28,0,255,255,248,31,254,255,255,248,31,254,255,255,248,31,254,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,255,255,248,28,0,255,255,248,28,0,255,255,248,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0, + // 0xb7ec 러 + 236,183,39,39,195,48,6,253,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,255,255,248,31,254,255,255,248,31,254,255,255,248,31,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0xb808 레 + 8,184,39,39,195,48,6,253,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,0,0,56,3,142,0,0,56,3,142,0,0,56,3,142,0,0,56,3,142,0,0,56,3,142,0,0,56,3,142,255,255,248,255,142,255,255,248,255,142,255,255,248,255,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142, + // 0xb825 력 + 37,184,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,1,192,255,128,0,1,192,255,128,0,1,192,255,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,224,0,0,255,128,224,0,0,255,128,224,0,0,255,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xb85c 로 + 92,184,39,36,180,48,3,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb8cc 료 + 204,184,39,36,180,48,3,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb974 르 + 116,185,39,30,150,48,3,6,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xb9ac 리 + 172,185,33,39,195,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,0,0,56,3,128,0,0,56,3,128,0,0,56,3,128,0,0,56,3,128,0,0,56,3,128,0,0,56,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xb9b0 린 + 176,185,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,128,31,255,255,255,128,31,255,255,255,128, + // 0xb9bd 립 + 189,185,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128, + // 0xb9c1 링 + 193,185,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,252,0,0,15,255,252,0,0,15,255,252,0,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,15,255,252,0,0,15,255,252,0,0,15,255,252,0, + // 0xba48 멈 + 72,186,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,31,240,224,1,192,31,240,224,1,192,31,240,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240, + // 0xba54 메 + 84,186,42,39,234,48,3,253,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,255,255,255,0,113,192,255,255,255,0,113,192,255,255,255,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,31,241,192,224,0,7,31,241,192,224,0,7,31,241,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,255,255,255,0,113,192,255,255,255,0,113,192,255,255,255,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192, + // 0xba74 면 + 116,186,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,31,240,224,1,192,31,240,224,1,192,31,240,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,31,240,224,1,192,31,240,224,1,192,31,240,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240, + // 0xbaa8 모 + 168,186,39,36,180,48,3,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xbabb 못 + 187,186,39,42,210,48,3,253,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,126,0,224,0,0,126,0,224,0,0,126,0,224,0, + // 0xbbf8 미 + 248,187,36,39,195,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,255,255,255,0,112,255,255,255,0,112,255,255,255,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xbc00 밀 + 0,188,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240, + // 0xbc14 바 + 20,188,39,39,195,48,6,253,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,255,255,248,31,254,255,255,248,31,254,255,255,248,31,254,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,255,255,248,28,0,255,255,248,28,0,255,255,248,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0, + // 0xbc84 버 + 132,188,39,39,195,48,6,253,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,255,255,248,31,254,255,255,248,31,254,255,255,248,31,254,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0xbca0 베 + 160,188,39,39,195,48,6,253,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,255,255,248,255,142,255,255,248,255,142,255,255,248,255,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142, + // 0xbca8 벨 + 168,188,36,42,210,48,3,253,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,255,255,199,252,112,255,255,199,252,112,255,255,199,252,112,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,255,255,192,28,112,255,255,192,28,112,255,255,192,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240, + // 0xbcf8 본 + 248,188,39,42,210,48,3,253,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xbe44 비 + 68,190,33,39,195,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xc0ac 사 + 172,192,42,39,234,48,3,253,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,252,0,7,3,128,0,252,0,7,3,128,0,252,0,7,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0xc0bd 삽 + 189,192,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,126,0,0,127,192,0,126,0,0,127,192,0,126,0,0,127,192,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0, + // 0xc0c8 새 + 200,192,42,39,234,48,3,253,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,0,113,192,3,129,192,0,113,192,3,129,192,0,113,192,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,252,0,7,3,129,192,252,0,7,3,129,192,252,0,7,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192, + // 0xc124 설 + 36,193,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,126,0,31,240,0,126,0,31,240,0,126,0,31,240,3,129,192,0,112,3,129,192,0,112,3,129,192,0,112,252,0,56,0,112,252,0,56,0,112,252,0,56,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240, + // 0xc18c 소 + 140,193,39,36,180,48,3,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,3,240,0,28,0,3,240,0,28,0,3,240,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xc18d 속 + 141,193,39,42,210,48,3,253,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xc2a4 스 + 164,194,39,30,150,48,3,6,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,3,240,0,28,0,3,240,0,28,0,3,240,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xc2ac 슬 + 172,194,39,42,210,48,3,253,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc2dc 시 + 220,194,36,39,195,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,113,192,0,112,0,113,192,0,112,0,113,192,0,112,3,128,56,0,112,3,128,56,0,112,3,128,56,0,112,252,0,7,0,112,252,0,7,0,112,252,0,7,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xc2dd 식 + 221,194,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,126,0,0,112,0,126,0,0,112,0,126,0,0,112,3,129,192,0,112,3,129,192,0,112,3,129,192,0,112,252,0,56,0,112,252,0,56,0,112,252,0,56,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,15,255,255,240,0,15,255,255,240,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xc5b4 어 + 180,197,42,39,234,48,3,253,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,3,255,192,0,1,192,3,255,192,0,1,192,3,255,192,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,3,255,192,224,0,7,3,255,192,224,0,7,3,255,192,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,3,255,192,0,1,192,3,255,192,0,1,192,3,255,192,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192, + // 0xc5c6 없 + 198,197,39,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,255,128,224,1,192,255,128,224,1,192,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,255,255,192,3,128,255,255,192,3,128,255,255,192,3,128,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,255,255,199,224,14,255,255,199,224,14,255,255,199,224,14, + // 0xc5d1 엑 + 209,197,33,42,210,48,6,253,0,0,0,227,128,0,0,0,227,128,0,0,0,227,128,31,254,0,227,128,31,254,0,227,128,31,254,0,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,255,227,128,224,1,255,227,128,224,1,255,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,31,254,0,227,128,31,254,0,227,128,31,254,0,227,128,0,0,0,227,128,0,0,0,227,128,0,0,0,227,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xc5d4 엔 + 212,197,33,42,210,48,6,253,0,0,0,227,128,0,0,0,227,128,0,0,0,227,128,31,254,0,227,128,31,254,0,227,128,31,254,0,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,224,1,255,227,128,224,1,255,227,128,224,1,255,227,128,224,1,192,227,128,224,1,192,227,128,224,1,192,227,128,31,254,0,227,128,31,254,0,227,128,31,254,0,227,128,0,0,0,227,128,0,0,0,227,128,0,0,0,227,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc5f4 열 + 244,197,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,255,128,224,1,192,255,128,224,1,192,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,255,128,224,1,192,255,128,224,1,192,255,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128, + // 0xc608 예 + 8,198,42,39,234,48,3,253,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,3,255,192,0,113,192,3,255,192,0,113,192,3,255,192,0,113,192,28,0,56,0,113,192,28,0,56,0,113,192,28,0,56,0,113,192,224,0,7,31,241,192,224,0,7,31,241,192,224,0,7,31,241,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,28,0,56,31,241,192,28,0,56,31,241,192,28,0,56,31,241,192,3,255,192,0,113,192,3,255,192,0,113,192,3,255,192,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192, + // 0xc624 오 + 36,198,39,39,195,48,3,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xc628 온 + 40,198,39,42,210,48,3,253,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc644 완 + 68,198,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,127,192,28,0,7,0,127,192,28,0,7,0,127,192,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,255,255,255,252,112,0,255,255,255,252,112,0,255,255,255,252,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0, + // 0xc6d0 원 + 208,198,36,45,225,48,3,253,3,255,248,0,112,3,255,248,0,112,3,255,248,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,3,255,248,0,112,3,255,248,0,112,3,255,248,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,1,192,255,240,0,1,192,255,240,0,1,192,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240, + // 0xc704 위 + 4,199,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,3,255,248,0,112,3,255,248,0,112,3,255,248,0,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,224,0,0,224,112,28,0,7,0,112,28,0,7,0,112,28,0,7,0,112,3,255,248,0,112,3,255,248,0,112,3,255,248,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0xc73c 으 + 60,199,39,33,165,48,3,6,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xc74c 음 + 76,199,39,42,210,48,3,253,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc774 이 + 116,199,36,39,195,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,3,255,192,0,112,3,255,192,0,112,3,255,192,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,224,0,7,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,3,255,192,0,112,3,255,192,0,112,3,255,192,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xc77c 일 + 124,199,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128, + // 0xc77d 읽 + 125,199,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,254,63,255,128,255,254,63,255,128,255,254,63,255,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,254,0,3,128,255,254,0,3,128,255,254,0,3,128, + // 0xc785 입 + 133,199,33,42,210,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,31,254,0,3,128,31,254,0,3,128,31,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128, + // 0xc790 자 + 144,199,39,39,195,48,6,253,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,255,255,248,28,0,255,255,248,28,0,255,255,248,28,0,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,0,1,192,28,0,0,14,0,31,254,0,14,0,31,254,0,14,0,31,254,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,3,129,192,28,0,3,129,192,28,0,3,129,192,28,0,252,0,56,28,0,252,0,56,28,0,252,0,56,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0, + // 0xc791 작 + 145,199,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,3,241,192,0,112,0,3,241,192,0,112,0,3,241,192,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0, + // 0xc798 잘 + 152,199,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,3,241,192,0,112,0,3,241,192,0,112,0,3,241,192,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0, + // 0xc7a5 장 + 165,199,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,3,241,192,0,112,0,3,241,192,0,112,0,3,241,192,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,252,0,56,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,128,0,0,1,255,255,128,0,0,1,255,255,128,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,1,255,255,128,0,0,1,255,255,128,0,0,1,255,255,128,0, + // 0xc7ac 재 + 172,199,39,39,195,48,6,253,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,255,255,248,28,14,255,255,248,28,14,255,255,248,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,14,0,31,254,0,14,0,31,254,0,14,0,31,254,0,126,0,28,14,0,126,0,28,14,0,126,0,28,14,3,129,192,28,14,3,129,192,28,14,3,129,192,28,14,252,0,56,28,14,252,0,56,28,14,252,0,56,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14,0,0,0,28,14, + // 0xc800 저 + 0,200,39,39,195,48,6,253,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,14,0,31,254,0,14,0,31,254,0,14,0,31,254,0,126,0,0,14,0,126,0,0,14,0,126,0,0,14,3,129,192,0,14,3,129,192,0,14,3,129,192,0,14,252,0,56,0,14,252,0,56,0,14,252,0,56,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0xc804 전 + 4,200,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,31,240,0,14,0,31,240,0,14,0,31,240,3,241,192,0,112,3,241,192,0,112,3,241,192,0,112,252,0,56,0,112,252,0,56,0,112,252,0,56,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240, + // 0xc815 정 + 21,200,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,31,240,0,14,0,31,240,0,14,0,31,240,3,241,192,0,112,3,241,192,0,112,3,241,192,0,112,252,0,56,0,112,252,0,56,0,112,252,0,56,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,128,0,1,255,255,128,0,1,255,255,128,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,1,255,255,128,0,1,255,255,128,0,1,255,255,128, + // 0xc81c 제 + 28,200,39,39,195,48,6,253,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,14,0,255,142,0,14,0,255,142,0,14,0,255,142,0,126,0,3,142,0,126,0,3,142,0,126,0,3,142,3,129,192,3,142,3,129,192,3,142,3,129,192,3,142,252,0,56,3,142,252,0,56,3,142,252,0,56,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142, + // 0xc8fd 죽 + 253,200,39,42,210,48,3,253,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xc900 준 + 0,201,39,42,210,48,3,253,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,128,56,0,0,3,128,56,0,0,3,128,56,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc911 중 + 17,201,39,42,210,48,3,253,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0, + // 0xc990 즐 + 144,201,39,42,210,48,3,253,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xc9c0 지 + 192,201,33,39,195,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,126,0,3,128,0,126,0,3,128,0,126,0,3,128,3,129,192,3,128,3,129,192,3,128,3,129,192,3,128,252,0,56,3,128,252,0,56,3,128,252,0,56,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xcc98 처 + 152,204,39,39,195,48,6,253,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,14,0,31,254,0,14,0,31,254,0,14,0,31,254,0,126,0,0,14,0,126,0,0,14,0,126,0,0,14,3,129,192,0,14,3,129,192,0,14,3,129,192,0,14,252,0,56,0,14,252,0,56,0,14,252,0,56,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0xcd08 초 + 8,205,39,39,195,48,3,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,127,255,252,0,0,127,255,252,0,0,127,255,252,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,126,0,28,0,0,126,0,28,0,0,126,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xcd95 축 + 149,205,39,42,210,48,3,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,126,0,224,0,0,126,0,224,0,0,126,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xcd9c 출 + 156,205,39,42,210,48,3,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,126,0,224,0,0,126,0,224,0,0,126,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xcda4 춤 + 164,205,39,42,210,48,3,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,127,255,224,0,0,127,255,224,0,0,127,255,224,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,199,0,0,0,1,199,0,0,0,1,199,0,0,0,126,0,224,0,0,126,0,224,0,0,126,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xcde8 취 + 232,205,36,42,210,48,3,253,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,31,255,255,0,112,31,255,255,0,112,31,255,255,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,15,192,0,112,0,15,192,0,112,0,15,192,0,112,0,112,56,0,112,0,112,56,0,112,0,112,56,0,112,31,128,7,0,112,31,128,7,0,112,31,128,7,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,255,252,112,255,255,255,252,112,255,255,255,252,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0xce58 치 + 88,206,33,39,195,48,6,253,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,0,1,192,3,128,0,1,192,3,128,0,1,192,3,128,0,14,0,3,128,0,14,0,3,128,0,14,0,3,128,0,126,0,3,128,0,126,0,3,128,0,126,0,3,128,3,129,192,3,128,3,129,192,3,128,3,129,192,3,128,252,0,56,3,128,252,0,56,3,128,252,0,56,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0xce68 침 + 104,206,36,42,210,48,3,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,3,142,0,0,112,3,142,0,0,112,3,142,0,0,112,252,1,192,0,112,252,1,192,0,112,252,1,192,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240, + // 0xce74 카 + 116,206,36,39,195,48,9,253,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,255,255,192,224,0,255,255,192,224,0,255,255,192,224,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,1,192,255,240,0,1,192,255,240,0,1,192,255,240,255,254,0,224,0,255,254,0,224,0,255,254,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,252,0,0,224,0,252,0,0,224,0,252,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0, + // 0xcf1c 켜 + 28,207,36,39,195,48,9,253,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,192,0,112,255,255,192,0,112,255,255,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,255,240,0,1,192,255,240,0,1,192,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,255,254,0,0,112,255,254,0,0,112,255,254,0,0,112,0,14,0,255,240,0,14,0,255,240,0,14,0,255,240,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,252,0,0,0,112,252,0,0,0,112,252,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112, + // 0xd0d1 탑 + 209,208,42,42,252,48,3,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,255,192,0,127,192,255,255,192,0,127,192,255,255,192,0,127,192,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0, + // 0xd130 터 + 48,209,39,39,195,48,6,253,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,248,31,254,255,255,248,31,254,255,255,248,31,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,248,0,14,255,255,248,0,14,255,255,248,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0xd14c 테 + 76,209,39,39,195,48,6,253,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,255,255,248,255,142,255,255,248,255,142,255,255,248,255,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,255,255,248,3,142,255,255,248,3,142,255,255,248,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142,0,0,0,3,142, + // 0xd1a0 토 + 160,209,39,39,195,48,3,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xd2b8 트 + 184,210,39,33,165,48,3,6,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xd39c 펜 + 156,211,36,42,210,48,3,253,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,255,255,255,28,112,255,255,255,28,112,255,255,255,28,112,3,129,192,28,112,3,129,192,28,112,3,129,192,28,112,3,129,199,252,112,3,129,199,252,112,3,129,199,252,112,3,129,192,28,112,3,129,192,28,112,3,129,192,28,112,255,255,255,28,112,255,255,255,28,112,255,255,255,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,127,255,255,240,0,127,255,255,240,0,127,255,255,240, + // 0xd504 프 + 4,213,39,30,150,48,3,6,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254, + // 0xd558 하 + 88,213,39,39,195,48,6,253,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,255,255,248,28,0,255,255,248,28,0,255,255,248,28,0,3,254,0,28,0,3,254,0,28,0,3,254,0,28,0,28,1,192,28,0,28,1,192,28,0,28,1,192,28,0,224,0,56,31,254,224,0,56,31,254,224,0,56,31,254,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,28,1,192,28,0,28,1,192,28,0,28,1,192,28,0,3,254,0,28,0,3,254,0,28,0,3,254,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0, + // 0xd569 합 + 105,213,42,42,252,48,3,253,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0, + // 0xd648 홈 + 72,214,39,45,225,48,3,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,127,255,252,0,0,127,255,252,0,0,127,255,252,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,0,15,255,224,0,0,15,255,224,0,0,15,255,224,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128, + // 0xd654 화 + 84,214,42,42,252,48,3,253,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,31,255,255,3,128,0,31,255,255,3,128,0,31,255,255,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,28,0,7,3,255,192,28,0,7,3,255,192,28,0,7,3,255,192,28,0,7,3,128,0,28,0,7,3,128,0,28,0,7,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,227,128,0,255,255,255,227,128,0,255,255,255,227,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0xd788 히 + 136,215,33,39,195,48,6,253,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,0,112,0,3,128,255,255,248,3,128,255,255,248,3,128,255,255,248,3,128,3,254,0,3,128,3,254,0,3,128,3,254,0,3,128,28,1,192,3,128,28,1,192,3,128,28,1,192,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,28,1,192,3,128,28,1,192,3,128,28,1,192,3,128,3,254,0,3,128,3,254,0,3,128,3,254,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Latin_Extended_A_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Latin_Extended_A_30.cpp new file mode 100644 index 000000000000..5801b894ddad --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Latin_Extended_A_30.cpp @@ -0,0 +1,288 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Latin Extended-A 48pt, capital 'A' height: 30px, width: 100%, range: 0x0100-0x017f +extern const uint8_t Unifont_Latin_Extended_A_30[14555] = { + 129,30,0,1,127,1,42,250, // unifont_t + // 0x0100 Ā + 18,39,117,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0101 ā + 18,33,99,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0102 Ă + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0103 ă + 18,39,117,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0104 Ą + 21,36,108,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,14,0,0,14,0,0,14,0,0,1,248,0,1,248,0,1,248, + // 0x0105 ą + 21,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,14,0,0,14,0,0,14,0,0,1,248,0,1,248,0,1,248, + // 0x0106 Ć + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0107 ć + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0108 Ĉ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0109 ĉ + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x010a Ċ + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x010b ċ + 18,36,108,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x010c Č + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x010d č + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x010e Ď + 18,42,126,24,3,0,224,112,0,224,112,0,224,112,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,240,0,255,240,0,255,240,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,255,240,0,255,240,0,255,240,0, + // 0x010f ď + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0110 Đ + 21,30,90,24,0,0,31,254,0,31,254,0,31,254,0,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,255,240,56,255,240,56,255,240,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,1,192,28,1,192,28,1,192,31,254,0,31,254,0,31,254,0, + // 0x0111 đ + 21,33,99,24,3,0,0,1,192,0,1,192,0,1,192,0,127,248,0,127,248,0,127,248,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0112 Ē + 18,39,117,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0113 ē + 18,33,99,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0114 Ĕ + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0115 ĕ + 18,36,108,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0116 Ė + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0117 ė + 18,36,108,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0118 Ę + 18,36,108,24,3,250,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192,0,112,0,0,112,0,0,112,0,0,15,192,0,15,192,0,15,192, + // 0x0119 ę + 18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,3,128,0,3,128,0,3,128,0,0,126,0,0,126,0,0,126,0, + // 0x011a Ě + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x011b ě + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x011c Ĝ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x011d ĝ + 18,42,126,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x011e Ğ + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x011f ğ + 18,45,135,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0120 Ġ + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0121 ġ + 18,42,126,24,3,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0122 Ģ + 18,36,108,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,127,192,224,127,192,224,127,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x0123 ģ + 18,42,126,24,3,250,0,126,0,0,126,0,0,126,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,28,0,0,28,0,0,28,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0124 Ĥ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0125 ĥ + 18,42,126,24,3,0,31,128,0,31,128,0,31,128,0,224,112,0,224,112,0,224,112,0,0,0,0,0,0,0,0,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0126 Ħ + 24,30,90,24,0,0,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,255,255,255,255,255,255,255,255,255,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,31,255,248,31,255,248,31,255,248,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56, + // 0x0127 ħ + 21,33,99,24,0,0,28,0,0,28,0,0,28,0,0,255,240,0,255,240,0,255,240,0,28,0,0,28,0,0,28,0,0,28,127,192,28,127,192,28,127,192,31,128,56,31,128,56,31,128,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56, + // 0x0128 Ĩ + 18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x0129 ĩ + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x012a Ī + 15,39,78,24,6,0,255,240,255,240,255,240,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x012b ī + 15,33,66,24,6,0,255,240,255,240,255,240,0,0,0,0,0,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x012c Ĭ + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x012d ĭ + 18,36,108,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x012e Į + 15,36,72,24,6,250,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x012f į + 15,39,78,24,6,250,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x0130 İ + 15,42,84,24,6,0,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,0,0,0,0,0,0,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0131 ı + 15,24,48,24,6,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0132 IJ + 18,30,90,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0133 ij + 15,42,84,24,6,250,224,14,224,14,224,14,224,14,224,14,224,14,0,0,0,0,0,0,0,0,0,0,0,0,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,31,142,31,142,31,142,0,14,0,14,0,14,224,14,224,14,224,14,31,240,31,240,31,240, + // 0x0134 Ĵ + 21,42,126,24,3,0,0,126,0,0,126,0,0,126,0,3,129,192,3,129,192,3,129,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,248,3,255,248,3,255,248,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x0135 ĵ + 18,42,126,24,3,250,0,126,0,0,126,0,0,126,0,3,129,192,3,129,192,3,129,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,126,0,0,126,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,112,0,224,112,0,224,112,0,31,128,0,31,128,0,31,128,0, + // 0x0136 Ķ + 21,36,108,24,0,250,28,0,56,28,0,56,28,0,56,28,1,192,28,1,192,28,1,192,28,14,0,28,14,0,28,14,0,28,112,0,28,112,0,28,112,0,31,128,0,31,128,0,31,128,0,31,128,0,31,128,0,31,128,0,28,112,0,28,112,0,28,112,0,28,14,0,28,14,0,28,14,0,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0137 ķ + 21,39,117,24,0,250,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,1,192,28,1,192,28,1,192,28,14,0,28,14,0,28,14,0,28,112,0,28,112,0,28,112,0,31,128,0,31,128,0,31,128,0,28,112,0,28,112,0,28,112,0,28,14,0,28,14,0,28,14,0,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0138 ĸ + 18,24,72,24,3,0,224,1,192,224,1,192,224,1,192,224,14,0,224,14,0,224,14,0,224,112,0,224,112,0,224,112,0,255,128,0,255,128,0,255,128,0,255,128,0,255,128,0,255,128,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192, + // 0x0139 Ĺ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,252,0,0,252,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x013a ĺ + 15,42,84,24,6,0,3,240,3,240,3,240,252,0,252,0,252,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x013b Ļ + 18,36,108,24,3,250,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x013c ļ + 15,39,78,24,6,250,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,252,0,252,0,252,0, + // 0x013d Ľ + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x013e ľ + 15,42,84,24,6,0,224,112,224,112,224,112,31,128,31,128,31,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x013f Ŀ + 18,30,90,24,3,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x0140 ŀ + 15,33,66,24,3,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,142,3,142,3,142,3,142,3,142,3,142,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0141 Ł + 21,30,90,24,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,14,0,28,14,0,28,14,0,28,112,0,28,112,0,28,112,0,31,128,0,31,128,0,31,128,0,252,0,0,252,0,0,252,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,31,255,248,31,255,248,31,255,248, + // 0x0142 ł + 15,33,66,24,6,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,142,3,142,3,142,3,240,3,240,3,240,31,128,31,128,31,128,227,128,227,128,227,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x0143 Ń + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x0144 ń + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0145 Ņ + 21,36,108,24,0,250,28,0,56,28,0,56,28,0,56,31,128,56,31,128,56,31,128,56,31,128,56,31,128,56,31,128,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,14,56,28,14,56,28,14,56,28,14,56,28,14,56,28,14,56,28,1,248,28,1,248,28,1,248,28,1,248,28,1,248,28,1,248,28,0,56,28,0,56,28,0,56,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0146 ņ + 21,30,90,24,0,250,28,127,192,28,127,192,28,127,192,31,128,56,31,128,56,31,128,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0147 Ň + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,252,1,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,227,129,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,113,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192, + // 0x0148 ň + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0149 ʼn + 18,39,117,24,3,0,252,0,0,252,0,0,252,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x014a Ŋ + 18,30,90,24,3,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,126,0,224,126,0,224,126,0, + // 0x014b ŋ + 18,30,90,24,3,250,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,0,126,0,0,126,0,0,126,0, + // 0x014c Ō + 18,39,117,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x014d ō + 18,33,99,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x014e Ŏ + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x014f ŏ + 18,36,108,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0150 Ő + 21,42,126,24,3,0,31,129,248,31,129,248,31,129,248,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0151 ő + 21,36,108,24,3,0,31,129,248,31,129,248,31,129,248,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0152 Œ + 21,30,90,24,3,0,31,143,248,31,143,248,31,143,248,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,127,192,224,127,192,224,127,192,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,31,143,248,31,143,248,31,143,248, + // 0x0153 œ + 21,24,72,24,3,0,31,143,192,31,143,192,31,143,192,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,127,248,224,127,248,224,127,248,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, + // 0x0154 Ŕ + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0155 ŕ + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x0156 Ŗ + 21,36,108,24,0,250,31,255,192,31,255,192,31,255,192,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,31,255,192,31,255,192,31,255,192,28,14,0,28,14,0,28,14,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0157 ŗ + 21,30,90,24,0,250,28,127,192,28,127,192,28,127,192,31,128,56,31,128,56,31,128,56,28,0,56,28,0,56,28,0,56,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,252,0,0,252,0,0,252,0,0, + // 0x0158 Ř + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,254,0,255,254,0,255,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,254,0,255,254,0,255,254,0,224,112,0,224,112,0,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0159 ř + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,254,0,227,254,0,227,254,0,252,1,192,252,1,192,252,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0, + // 0x015a Ś + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x015b ś + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x015c Ŝ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x015d ŝ + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x015e Ş + 18,36,108,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x015f ş + 18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x0160 Š + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0161 š + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,0,0,224,0,0,224,0,0,31,128,0,31,128,0,31,128,0,0,126,0,0,126,0,0,126,0,0,1,192,0,1,192,0,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0162 Ţ + 21,36,108,24,3,250,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,31,128,0,31,128,0, + // 0x0163 ţ + 15,36,72,24,3,250,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,0,126,0,126,0,126,0,112,0,112,0,112,31,128,31,128,31,128, + // 0x0164 Ť + 21,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0165 ť + 15,42,84,24,3,0,28,14,28,14,28,14,3,240,3,240,3,240,0,0,0,0,0,0,0,0,0,0,0,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x0166 Ŧ + 21,30,90,24,3,0,255,255,248,255,255,248,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0167 ŧ + 15,30,60,24,3,0,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,0,126,0,126,0,126, + // 0x0168 Ũ + 18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0169 ũ + 18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x016a Ū + 18,39,117,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x016b ū + 18,33,99,24,3,0,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x016c Ŭ + 18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x016d ŭ + 18,39,117,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x016e Ů + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x016f ů + 18,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0170 Ű + 21,42,126,24,3,0,31,129,248,31,129,248,31,129,248,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0171 ű + 21,36,108,24,3,0,31,129,248,31,129,248,31,129,248,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0172 Ų + 18,36,108,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,3,128,0,3,128,0,3,128,0,0,126,0,0,126,0,0,126,0, + // 0x0173 ų + 21,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,14,0,0,14,0,0,14,0,0,1,248,0,1,248,0,1,248, + // 0x0174 Ŵ + 18,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,227,241,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,252,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0175 ŵ + 21,36,108,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,31,143,192,31,143,192,31,143,192, + // 0x0176 Ŷ + 21,42,126,24,3,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0177 ŷ + 18,42,126,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x0178 Ÿ + 21,42,126,24,3,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x0179 Ź + 18,42,126,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017a ź + 18,36,108,24,3,0,0,126,0,0,126,0,0,126,0,31,128,0,31,128,0,31,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017b Ż + 18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017c ż + 18,36,108,24,3,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017d Ž + 18,42,126,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017e ž + 18,36,108,24,3,0,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,0,1,192,0,1,192,0,1,192,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x017f ſ + 15,33,66,24,3,0,0,126,0,126,0,126,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,128,255,128,255,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Simplified_Chinese_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Simplified_Chinese_30.cpp new file mode 100644 index 000000000000..799e9a435f3f --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Simplified_Chinese_30.cpp @@ -0,0 +1,778 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Simplified Chinese 48pt, capital 'A' height: 30px, width: 100%, range: 0x201c-0xff1a, glyphs: 373 +extern const uint8_t Unifont_Simplified_Chinese_30[23990] = { + 161,30,28,32,26,255,42,250, // unifont_t + // 0x201c “ + 28,32,18,12,36,24,3,24,28,1,192,28,1,192,28,1,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,252,15,192,252,15,192,252,15,192, + // 0x201d ” + 29,32,18,12,36,24,3,24,252,15,192,252,15,192,252,15,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,14,0,224,14,0,224,14,0, + // 0x22bf ⊿ + 191,34,18,18,54,24,3,0,0,1,192,0,1,192,0,1,192,0,15,192,0,15,192,0,15,192,0,113,192,0,113,192,0,113,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,255,255,192,255,255,192,255,255,192, + // 0x4e00 一 + 0,78,45,3,18,48,0,18,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e09 三 + 9,78,45,36,216,48,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e0a 上 + 10,78,45,45,14,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e0b 下 + 11,78,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x4e0d 不 + 13,78,42,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,63,28,0,0,0,0,63,28,0,0,0,0,63,28,0,0,0,1,199,3,128,0,0,1,199,3,128,0,0,1,199,3,128,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x4e13 专 + 19,78,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,1,248,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x4e1d 丝 + 29,78,45,45,14,48,0,253,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,28,0,56,224,1,192,28,0,56,224,1,192,28,0,56,224,1,192,31,255,192,255,254,0,31,255,192,255,254,0,31,255,192,255,254,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e2a 个 + 42,78,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x4e2d 中 + 45,78,33,48,240,48,6,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x4e3a 为 + 58,78,39,48,240,48,0,250,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,112,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,31,255,255,255,254,31,255,255,255,254,31,255,255,255,254,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,224,14,0,0,56,224,14,0,0,56,224,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,1,192,28,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,3,128,0,0,14,3,128,0,0,14,3,128,0,0,14,28,0,0,28,112,28,0,0,28,112,28,0,0,28,112,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128, + // 0x4e3b 主 + 59,78,45,45,14,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e49 义 + 73,78,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x4e4b 之 + 75,78,42,45,14,48,3,253,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,240,0,255,255,255,255,240,0,255,255,255,255,240,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,224,1,255,255,255,192,224,1,255,255,255,192,224,1,255,255,255,192, + // 0x4e86 了 + 134,78,36,45,225,48,3,250,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,14,56,0,0,0,14,56,0,0,0,14,56,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x4e8c 二 + 140,78,45,30,180,48,0,3,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e8e 于 + 142,78,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x4ea4 交 + 164,78,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,28,0,0,0,15,192,28,0,0,0,15,192,28,0,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,252,0,0,0,15,248,252,0,0,0,15,248,252,0,0,0,15,248, + // 0x4eae 亮 + 174,78,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,1,255,252,1,192,224,1,255,252,1,192,224,1,255,252,1,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,3,240,0,28,0,56,3,240,0,28,0,56,3,240,0,28,0,56,252,0,0,3,255,248,252,0,0,3,255,248,252,0,0,3,255,248, + // 0x4ece 从 + 206,78,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,224,1,192,0,0,56,224,1,192,0,0,56,224,1,192,0,0,56, + // 0x4ee4 令 + 228,78,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,56,3,128,0,0,14,56,3,128,0,0,14,56,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x4ee5 以 + 229,78,39,48,240,48,6,250,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,224,14,0,28,0,224,14,0,28,0,224,14,0,28,0,224,1,192,28,0,224,1,192,28,0,224,1,192,28,0,224,1,192,28,0,224,1,192,28,0,224,1,192,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,0,0,224,0,224,112,7,0,0,224,112,7,0,0,224,112,7,0,0,227,128,7,28,0,227,128,7,28,0,227,128,7,28,0,252,0,56,3,128,252,0,56,3,128,252,0,56,3,128,224,1,192,0,112,224,1,192,0,112,224,1,192,0,112,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14, + // 0x4ef6 件 + 246,78,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x4efd 份 + 253,78,45,48,32,48,0,250,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,3,240,56,0,1,192,3,240,56,0,1,192,3,240,56,0,1,192,28,113,199,255,254,56,28,113,199,255,254,56,28,113,199,255,254,56,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0, + // 0x4f11 休 + 17,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,255,128,0,3,240,0,255,128,0,3,240,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,224,112,7,28,112,0,224,112,7,28,112,0,224,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,126,0,28,0,56,0,126,0,28,0,56,0,126,0,28,0,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x4f20 传 + 32,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,240,0,224,0,0,3,240,0,224,0,0,3,240,0,224,0,0,3,241,255,255,255,248,3,241,255,255,255,248,3,241,255,255,255,248,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,224,112,7,0,0,0,224,112,7,0,0,0,224,112,7,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x4f4d 位 + 77,79,45,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,14,0,3,240,0,0,14,0,3,240,0,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x4f4e 低 + 78,79,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,0,14,63,255,128,0,0,14,63,255,128,0,0,14,63,255,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,28,112,63,255,255,248,28,112,63,255,255,248,28,112,63,255,255,248,224,112,56,3,128,0,224,112,56,3,128,0,224,112,56,3,128,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,14,56,0,112,56,0,14,56,0,112,56,0,14,56,0,112,56,224,14,56,0,112,56,224,14,56,0,112,56,224,14,56,0,112,63,3,129,248,0,112,63,3,129,248,0,112,63,3,129,248,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56, + // 0x4f53 体 + 83,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,255,128,0,3,240,0,255,128,0,3,240,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,224,112,7,28,112,0,224,112,7,28,112,0,224,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,199,255,241,192,0,113,199,255,241,192,0,113,199,255,241,192,0,126,0,28,0,56,0,126,0,28,0,56,0,126,0,28,0,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x4f59 余 + 89,79,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,143,255,255,142,0,3,143,255,255,142,0,3,143,255,255,142,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x4f5c 作 + 92,79,45,48,32,48,0,250,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,0,112,56,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,3,240,56,224,0,0,3,240,56,224,0,0,3,240,56,224,0,0,3,241,192,224,0,0,3,241,192,224,0,0,3,241,192,224,0,0,28,112,0,255,254,0,28,112,0,255,254,0,28,112,0,255,254,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0, + // 0x4f7f 使 + 127,79,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,31,129,255,255,255,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,56,3,240,0,3,128,56,3,240,0,3,128,56,3,240,0,3,143,192,0,15,248,3,143,192,0,15,248,3,143,192,0,15,248, + // 0x4f9b 供 + 155,79,45,48,32,48,0,250,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192, + // 0x4fb5 侵 + 181,79,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,224,113,192,0,1,192,224,113,192,0,1,192,224,113,192,0,1,192,0,112,63,255,240,0,0,112,63,255,240,0,0,112,63,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,7,227,240,0,0,112,7,227,240,0,0,112,7,227,240,0,0,113,248,0,15,248,0,113,248,0,15,248,0,113,248,0,15,248, + // 0x4fdd 保 + 221,79,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,56,0,14,0,0,14,56,0,14,0,0,14,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,126,0,28,0,56,0,126,0,28,0,56,0,126,0,28,0,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x4fe1 信 + 225,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,63,255,255,248,0,14,63,255,255,248,0,14,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,7,255,255,192,224,112,7,255,255,192,224,112,7,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192, + // 0x503c 值 + 60,80,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,15,255,255,255,192,0,15,255,255,255,192,0,15,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,28,112,63,255,254,0,28,112,63,255,254,0,28,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x503e 倾 + 62,80,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,31,255,192,3,129,192,31,255,192,3,129,192,31,255,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,255,28,113,192,31,129,255,28,113,192,31,129,255,28,113,192,227,129,192,28,113,192,227,129,192,28,113,192,227,129,192,28,113,192,3,129,192,28,113,192,3,129,192,28,113,192,3,129,192,28,113,192,3,129,192,28,113,192,3,129,192,28,113,192,3,129,192,28,113,192,3,129,199,28,113,192,3,129,199,28,113,192,3,129,199,28,113,192,3,129,248,28,113,192,3,129,248,28,113,192,3,129,248,28,113,192,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,0,56,3,128,0,224,0,56,3,128,0,224,0,56, + // 0x504f 偏 + 79,80,42,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,192,0,0,0,31,129,192,0,0,0,31,129,192,0,0,0,227,129,192,0,0,0,227,129,192,0,0,0,227,129,192,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,248,227,129,192,3,129,248,227,129,192,3,129,248,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,63,255,255,192,3,142,63,255,255,192,3,142,63,255,255,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,240,56,227,129,192,3,240,56,227,129,192,3,240,56,227,129,192,3,128,56,0,15,192,3,128,56,0,15,192,3,128,56,0,15,192, + // 0x505c 停 + 92,80,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,31,128,56,0,14,0,31,128,56,0,14,0,31,128,56,0,14,0,31,128,63,255,254,0,31,128,63,255,254,0,31,128,63,255,254,0,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0, + // 0x50a8 储 + 168,80,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,126,0,255,254,56,0,126,0,255,254,56,0,126,0,255,254,56,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,142,0,3,129,192,3,142,0,3,129,192,3,142,0,31,128,7,255,255,248,31,128,7,255,255,248,31,128,7,255,255,248,31,128,0,3,128,0,31,128,0,3,128,0,31,128,0,3,128,0,227,255,192,28,0,0,227,255,192,28,0,0,227,255,192,28,0,0,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,199,28,1,192,3,129,199,28,1,192,3,129,199,28,1,192,3,129,248,28,1,192,3,129,248,28,1,192,3,129,248,28,1,192,3,129,192,31,255,192,3,129,192,31,255,192,3,129,192,31,255,192,3,129,199,28,1,192,3,129,199,28,1,192,3,129,199,28,1,192,3,129,248,28,1,192,3,129,248,28,1,192,3,129,248,28,1,192,3,129,192,31,255,192,3,129,192,31,255,192,3,129,192,31,255,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192, + // 0x50cf 像 + 207,80,45,48,32,48,0,250,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,255,240,0,0,14,7,255,240,0,0,14,7,255,240,0,0,14,56,0,112,0,0,14,56,0,112,0,0,14,56,0,112,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,126,56,3,129,192,0,126,56,3,129,192,0,126,56,3,129,192,3,240,56,28,1,192,3,240,56,28,1,192,3,240,56,28,1,192,3,240,63,255,255,192,3,240,63,255,255,192,3,240,63,255,255,192,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,224,112,7,28,1,192,224,112,7,28,1,192,224,112,7,28,1,192,0,113,248,227,142,0,0,113,248,227,142,0,0,113,248,227,142,0,0,112,7,3,240,0,0,112,7,3,240,0,0,112,7,3,240,0,0,113,248,31,142,0,0,113,248,31,142,0,0,113,248,31,142,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,113,248,227,128,56,0,113,248,227,128,56,0,113,248,227,128,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x5145 充 + 69,81,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,1,192,28,14,0,0,1,192,28,14,0,0,1,192,28,14,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,31,128,0,3,255,192,31,128,0,3,255,192,31,128,0,3,255,192, + // 0x5148 先 + 72,81,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,252,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,0, + // 0x5149 光 + 73,81,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,252,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,0, + // 0x5165 入 + 101,81,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,224,0,0,0,1,248,224,0,0,0,1,248,224,0,0,0,1,248, + // 0x5168 全 + 104,81,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,143,255,255,142,0,3,143,255,255,142,0,3,143,255,255,142,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192, + // 0x5171 共 + 113,81,42,48,32,48,3,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,31,255,255,255,254,0,31,255,255,255,254,0,31,255,255,255,254,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x5173 关 + 115,81,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x5177 具 + 119,81,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0, + // 0x5197 冗 + 151,81,45,42,252,48,0,250,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,252,0,0,0,15,255,252,0,0,0,15,255,252,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x51b7 冷 + 183,81,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,0,113,192,3,129,248,0,113,192,3,129,248,0,113,192,3,129,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,128,0,0,14,0,255,128,0,0,14,0,255,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x51c6 准 + 198,81,45,48,32,48,0,250,0,0,7,28,0,0,0,0,7,28,0,0,0,0,7,28,0,0,28,0,7,3,128,0,28,0,7,3,128,0,28,0,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,113,248,3,128,0,0,113,248,3,128,0,0,113,248,3,128,0,0,126,63,255,255,192,0,126,63,255,255,192,0,126,63,255,255,192,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,255,128,56,3,128,0,255,128,56,3,128,0,255,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x51fa 出 + 250,81,39,48,240,48,3,250,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0x51fb 击 + 251,81,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0, + // 0x5206 分 + 6,82,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,224,127,255,255,128,56,224,127,255,255,128,56,224,127,255,255,128,56,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0, + // 0x5207 切 + 7,82,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,127,248,28,1,192,0,127,248,28,1,192,0,127,248,28,1,192,255,240,0,28,1,192,255,240,0,28,1,192,255,240,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,126,0,224,1,192,0,126,0,224,1,192,0,126,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0, + // 0x521b 创 + 27,82,42,48,32,48,0,250,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,0,0,227,129,192,28,0,0,227,129,192,28,0,0,227,129,192,227,255,248,3,129,192,227,255,248,3,129,192,227,255,248,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,142,56,3,129,192,3,142,56,3,129,192,3,142,56,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,0,127,255,224,113,192,0,127,255,224,113,192,0,127,255,224,113,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0, + // 0x521d 初 + 29,82,42,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,255,255,192,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,3,241,192,28,1,192,3,241,192,28,1,192,3,241,192,28,1,192,28,126,0,28,1,192,28,126,0,28,1,192,28,126,0,28,1,192,224,113,192,28,1,192,224,113,192,28,1,192,224,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0, + // 0x522b 别 + 43,82,42,48,32,48,0,250,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,255,0,1,192,31,255,255,0,1,192,31,255,255,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,14,56,0,113,192,28,14,56,0,113,192,28,14,56,0,113,192,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0, + // 0x5230 到 + 48,82,42,48,32,48,0,250,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,255,255,255,224,1,192,255,255,255,224,1,192,255,255,255,224,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,0,14,0,227,129,192,0,14,0,227,129,192,0,14,0,227,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,15,255,224,1,192,0,15,255,224,1,192,0,15,255,224,1,192,255,254,0,0,113,192,255,254,0,0,113,192,255,254,0,0,113,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x5236 制 + 54,82,42,48,32,48,0,250,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,255,255,227,129,192,3,255,255,227,129,192,3,255,255,227,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,255,255,255,255,129,192,255,255,255,255,129,192,255,255,255,255,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,3,255,255,227,129,192,3,255,255,227,129,192,3,255,255,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,199,0,1,192,3,129,199,0,1,192,3,129,199,0,1,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x5237 刷 + 55,82,45,48,32,48,0,250,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,3,255,255,252,0,56,3,255,255,252,0,56,3,255,255,252,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,255,255,252,112,56,3,255,255,252,112,56,3,255,255,252,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,255,255,252,112,56,3,255,255,252,112,56,3,255,255,252,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,224,112,63,28,0,56,224,112,63,28,0,56,224,112,63,28,0,56,0,112,56,224,0,56,0,112,56,224,0,56,0,112,56,224,0,56,0,0,56,0,14,56,0,0,56,0,14,56,0,0,56,0,14,56,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x5272 割 + 114,82,42,48,32,48,0,250,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,255,255,255,224,1,192,255,255,255,224,1,192,255,255,255,224,1,192,224,0,0,227,129,192,224,0,0,227,129,192,224,0,0,227,129,192,0,14,7,3,129,192,0,14,7,3,129,192,0,14,7,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,31,255,255,0,113,192,31,255,255,0,113,192,31,255,255,0,113,192,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0, + // 0x529b 力 + 155,82,36,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,3,128,7,0,112,3,128,7,0,112,3,128,7,0,112,28,0,0,227,128,28,0,0,227,128,28,0,0,227,128,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0, + // 0x529f 功 + 159,82,42,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,248,28,0,0,255,255,248,28,0,0,255,255,248,28,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,127,248,224,1,192,0,127,248,224,1,192,0,127,248,224,1,192,255,240,7,0,1,192,255,240,7,0,1,192,255,240,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0, + // 0x52a0 加 + 160,82,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,31,255,192,0,112,0,31,255,192,0,112,0,31,255,192,255,255,248,28,1,192,255,255,248,28,1,192,255,255,248,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,31,255,192,28,14,56,28,1,192,28,14,56,28,1,192,28,14,56,28,1,192,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0, + // 0x52a8 动 + 168,82,42,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,255,255,248,28,1,192,255,255,248,28,1,192,255,255,248,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,28,14,0,224,1,192,28,14,0,224,1,192,28,14,0,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,255,255,199,0,1,192,255,255,199,0,1,192,255,255,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0, + // 0x5316 化 + 22,83,45,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,252,0,0,3,240,0,252,0,0,3,240,0,252,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,224,112,7,224,0,0,224,112,7,224,0,0,224,112,7,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x5347 升 + 71,83,45,48,32,48,0,250,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,3,128,0,0,1,255,227,128,0,0,1,255,227,128,0,0,1,255,227,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0, + // 0x534a 半 + 74,83,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x534f 协 + 79,83,45,48,32,48,0,250,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,255,254,63,255,240,0,255,254,63,255,240,0,255,254,63,255,240,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,56,224,126,0,3,128,56,224,126,0,3,128,56,224,126,0,3,128,56,224,113,192,3,128,56,224,113,192,3,128,56,224,113,192,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,142,0,224,112,56,3,142,0,224,112,56,3,142,0,224,112,56,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0, + // 0x5355 单 + 85,83,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x5361 卡 + 97,83,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5370 印 + 112,83,39,45,225,48,3,250,0,15,192,0,0,0,15,192,0,0,0,15,192,0,0,255,240,7,255,254,255,240,7,255,254,255,240,7,255,254,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,255,255,199,0,14,255,255,199,0,14,255,255,199,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,127,199,28,112,224,127,199,28,112,224,127,199,28,112,255,128,7,3,128,255,128,7,3,128,255,128,7,3,128,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x5371 危 + 113,83,42,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,127,255,255,255,192,28,127,255,255,255,192,28,127,255,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,240,0,0,112,63,255,240,0,0,112,63,255,240,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x5374 却 + 116,83,42,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,31,255,192,31,255,255,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,255,255,255,252,1,192,255,255,255,252,1,192,255,255,255,252,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,28,0,56,28,113,192,28,0,56,28,113,192,28,0,56,28,113,192,255,255,255,28,14,0,255,255,255,28,14,0,255,255,255,28,14,0,28,0,7,28,0,0,28,0,7,28,0,0,28,0,7,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x5378 卸 + 120,83,42,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,31,255,192,3,255,255,31,255,192,3,255,255,31,255,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,3,143,248,28,1,192,3,143,248,28,1,192,3,143,248,28,1,192,3,142,0,28,1,192,3,142,0,28,1,192,3,142,0,28,1,192,3,142,0,28,113,192,3,142,0,28,113,192,3,142,0,28,113,192,3,143,255,28,14,0,3,143,255,28,14,0,3,143,255,28,14,0,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x538b 压 + 139,83,45,45,14,48,0,250,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,143,255,255,255,192,3,143,255,255,255,192,3,143,255,255,255,192,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,127,255,255,255,248,28,127,255,255,255,248,28,127,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x539f 原 + 159,83,45,45,14,48,0,250,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,112,56,224,1,192,28,112,56,224,1,192,28,112,56,224,1,192,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0, + // 0x53cc 双 + 204,83,45,42,252,48,0,250,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,1,192,224,1,192,0,1,192,224,1,192,0,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x53cd 反 + 205,83,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,0,7,28,0,0,28,0,7,28,0,0,28,0,7,28,0,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,224,15,192,0,126,0,224,15,192,0,126,0,224,15,192,0,126,0,3,240,0,0,1,248,3,240,0,0,1,248,3,240,0,0,1,248, + // 0x53d6 取 + 214,83,45,45,14,48,0,250,255,255,255,224,0,0,255,255,255,224,0,0,255,255,255,224,0,0,3,128,56,255,255,192,3,128,56,255,255,192,3,128,56,255,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,129,255,227,142,0,3,129,255,227,142,0,3,129,255,227,142,0,255,254,56,0,112,0,255,254,56,0,112,0,255,254,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56, + // 0x53d8 变 + 216,83,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248, + // 0x53f0 台 + 240,83,39,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,28,0,0,0,14,28,0,0,0,14,28,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128, + // 0x5403 吃 + 3,84,42,45,14,48,3,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,240,56,0,0,0,255,240,56,0,0,0,255,240,56,0,0,0,224,112,63,255,255,192,224,112,63,255,255,192,224,112,63,255,255,192,224,113,192,0,0,0,224,113,192,0,0,0,224,113,192,0,0,0,224,126,0,0,0,0,224,126,0,0,0,0,224,126,0,0,0,0,224,112,63,255,240,0,224,112,63,255,240,0,224,112,63,255,240,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,252,0,0,224,112,0,252,0,0,224,112,0,252,0,0,255,240,7,0,0,0,255,240,7,0,0,0,255,240,7,0,0,0,224,112,56,0,0,0,224,112,56,0,0,0,224,112,56,0,0,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192, + // 0x5408 合 + 8,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,15,255,255,129,248,252,15,255,255,129,248,252,15,255,255,129,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x540d 名 + 13,84,39,48,240,48,0,250,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,1,255,255,240,0,1,255,255,240,0,1,255,255,240,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,113,192,3,128,0,113,192,3,128,0,113,192,3,128,31,128,56,28,0,31,128,56,28,0,31,128,56,28,0,0,0,56,224,0,0,0,56,224,0,0,0,56,224,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,1,248,0,0,0,1,248,0,0,0,1,248,0,0,0,127,255,255,254,0,127,255,255,254,0,127,255,255,254,255,142,0,0,14,255,142,0,0,14,255,142,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14,0,15,255,255,254,0,15,255,255,254,0,15,255,255,254,0,14,0,0,14,0,14,0,0,14,0,14,0,0,14, + // 0x540e 后 + 14,84,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,0,127,255,0,0,0,0,127,255,0,0,0,0,127,255,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,254,0,0,113,255,255,254,0,0,113,255,255,254,0,0,113,192,0,14,0,0,113,192,0,14,0,0,113,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,224,1,255,255,254,0,224,1,255,255,254,0,224,1,255,255,254,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x5411 向 + 17,84,39,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,15,255,224,14,224,15,255,224,14,224,15,255,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,15,255,224,14,224,15,255,224,14,224,15,255,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x5426 否 + 38,84,45,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,1,199,31,128,0,0,1,199,31,128,0,0,1,199,31,128,0,0,14,7,0,126,0,0,14,7,0,126,0,0,14,7,0,126,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,252,0,7,0,0,56,252,0,7,0,0,56,252,0,7,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x542f 启 + 47,84,42,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,224,1,255,255,255,192,224,1,255,255,255,192,224,1,255,255,255,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x544a 告 + 74,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x5468 周 + 104,84,39,45,225,48,0,250,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,143,255,255,142,3,143,255,255,142,3,143,255,255,142,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,0,0,14,3,128,0,0,14,3,128,0,0,14,3,129,255,252,14,3,129,255,252,14,3,129,255,252,14,3,129,192,28,14,3,129,192,28,14,3,129,192,28,14,3,129,192,28,14,3,129,192,28,14,3,129,192,28,14,3,129,255,252,14,3,129,255,252,14,3,129,255,252,14,28,0,0,0,14,28,0,0,0,14,28,0,0,0,14,28,0,0,3,142,28,0,0,3,142,28,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x547d 命 + 125,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,241,255,252,126,0,3,241,255,252,126,0,3,241,255,252,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,248,255,254,0,3,255,248,255,254,0,3,255,248,255,254,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,227,142,0,3,255,248,227,142,0,3,255,248,227,142,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x548c 和 + 140,84,42,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,248,0,0,0,0,15,248,0,0,0,0,15,248,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,126,0,28,1,192,0,126,0,28,1,192,0,126,0,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0, + // 0x54cd 响 + 205,84,39,48,240,48,3,250,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,255,240,7,0,0,255,240,7,0,0,255,240,7,0,0,224,113,255,255,254,224,113,255,255,254,224,113,255,255,254,224,113,192,0,14,224,113,192,0,14,224,113,192,0,14,224,113,192,0,14,224,113,192,0,14,224,113,192,0,14,224,113,199,255,142,224,113,199,255,142,224,113,199,255,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,224,113,199,3,142,255,241,199,3,142,255,241,199,3,142,255,241,199,3,142,224,113,199,255,142,224,113,199,255,142,224,113,199,255,142,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112, + // 0x55b7 喷 + 183,85,42,48,32,48,3,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,1,248,0,14,0,0,1,248,0,14,0,0,1,248,0,14,0, + // 0x5634 嘴 + 52,86,45,48,32,48,0,250,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,56,224,113,192,0,0,56,224,113,192,0,0,56,224,113,192,255,240,56,252,126,0,255,240,56,252,126,0,255,240,56,252,126,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,252,112,56,224,112,56,252,112,56,224,112,56,252,112,56,224,113,255,0,15,248,224,113,255,0,15,248,224,113,255,0,15,248,224,112,7,255,240,0,224,112,7,255,240,0,224,112,7,255,240,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,224,126,56,28,1,192,224,126,56,28,1,192,224,126,56,28,1,192,255,240,63,255,255,192,255,240,63,255,255,192,255,240,63,255,255,192,224,112,56,28,1,192,224,112,56,28,1,192,224,112,56,28,1,192,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,113,192,0,1,192,28,113,192,0,1,192,28,113,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x5668 器 + 104,86,45,45,14,48,0,250,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192, + // 0x5674 噴 + 116,86,42,48,32,48,3,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,255,240,63,255,254,0,255,240,63,255,254,0,255,240,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x56de 回 + 222,86,36,42,210,48,6,253,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x56e0 因 + 224,86,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,192,224,14,224,1,192,224,14,224,1,192,224,14,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,112,0,3,142,224,112,0,3,142,224,112,0,3,142,227,128,0,3,142,227,128,0,3,142,227,128,0,3,142,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x56fa 固 + 250,86,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x56fe 图 + 254,86,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,15,255,252,14,224,15,255,252,14,224,15,255,252,14,224,126,0,224,14,224,126,0,224,14,224,126,0,224,14,227,129,199,0,14,227,129,199,0,14,227,129,199,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,15,199,224,14,224,15,199,224,14,224,15,199,224,14,255,240,0,31,254,255,240,0,31,254,255,240,0,31,254,224,1,248,0,14,224,1,248,0,14,224,1,248,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,15,192,0,14,224,15,192,0,14,224,15,192,0,14,224,0,63,0,14,224,0,63,0,14,224,0,63,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x5728 在 + 40,87,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x574f 坏 + 79,87,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,31,142,0,0,112,0,31,142,0,0,112,0,31,142,0,0,112,0,31,129,192,0,112,0,31,129,192,0,112,0,31,129,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,227,129,192,0,127,199,3,128,56,0,127,199,3,128,56,0,127,199,3,128,56,255,128,56,3,128,56,255,128,56,3,128,56,255,128,56,3,128,56,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x5757 块 + 87,87,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,127,192,227,128,0,0,127,192,227,128,0,0,127,192,227,128,0,255,128,7,0,112,0,255,128,7,0,112,0,255,128,7,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56, + // 0x578b 型 + 139,87,45,45,14,48,0,253,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,255,224,1,192,31,255,255,224,1,192,31,255,255,224,1,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,113,192,3,128,56,0,113,192,3,128,56,0,113,192,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x57ab 垫 + 171,87,45,45,14,48,0,253,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,31,255,199,255,254,0,31,255,199,255,254,0,31,255,199,255,254,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,15,192,28,14,0,0,15,192,28,14,0,0,15,192,28,14,0,0,126,7,252,14,0,0,126,7,252,14,0,0,126,7,252,14,0,31,142,0,28,14,56,31,142,0,28,14,56,31,142,0,28,14,56,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,3,142,0,224,1,248,3,142,0,224,1,248,3,142,0,224,1,248,0,112,7,0,0,56,0,112,7,0,0,56,0,112,7,0,0,56,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x586b 填 + 107,88,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,254,56,0,14,0,3,254,56,0,14,0,3,254,56,0,14,0,255,143,255,255,255,248,255,143,255,255,255,248,255,143,255,255,255,248,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x58f3 壳 + 243,88,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,252,0,0,0,127,248,252,0,0,0,127,248,252,0,0,0,127,248, + // 0x5907 备 + 7,89,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,31,129,192,28,0,0,31,129,192,28,0,0,31,129,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,192,31,240,0,0,127,192,31,240,0,0,127,192,31,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x590d 复 + 13,89,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,127,255,255,240,0,28,127,255,255,240,0,28,127,255,255,240,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,31,129,192,28,0,0,31,129,192,28,0,0,31,129,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,192,31,240,0,0,127,192,31,240,0,0,127,192,31,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248, + // 0x5916 外 + 22,89,42,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,128,56,31,128,0,3,128,56,31,128,0,3,128,56,31,128,0,28,0,56,28,112,0,28,0,56,28,112,0,28,0,56,28,112,0,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,28,14,0,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x591a 多 + 26,89,36,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,31,240,0,224,0,31,240,0,224,0,31,240,0,224,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,7,0,0,0,126,7,0,0,0,126,7,0,0,255,128,63,255,240,255,128,63,255,240,255,128,63,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,126,0,3,128,0,126,0,3,128,0,126,0,3,128,31,129,192,28,0,31,129,192,28,0,31,129,192,28,0,0,0,56,224,0,0,0,56,224,0,0,0,56,224,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,255,128,0,0,0,255,128,0,0,0,255,128,0,0,0, + // 0x5927 大 + 39,89,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x5929 天 + 41,89,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x592a 太 + 42,89,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,56,3,128,0,0,14,56,3,128,0,0,14,56,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x5931 失 + 49,89,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192, + // 0x5934 头 + 52,89,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,28,0,0,0,0,7,28,0,0,0,0,7,28,0,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,3,240,0,0,1,192,3,240,0,0,1,192,3,240,0,0,1,192,252,0,0,0,1,192,252,0,0,0,1,192,252,0,0,0,1,192, + // 0x597d 好 + 125,89,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,199,255,255,248,3,129,199,255,255,248,3,129,199,255,255,248,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,1,192,227,128,0,224,1,192,227,128,0,224,1,192,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x59cb 始 + 203,89,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,199,255,255,248,3,129,199,255,255,248,3,129,199,255,255,248,3,129,192,224,0,56,3,129,192,224,0,56,3,129,192,224,0,56,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,224,0,0,255,255,192,224,0,0,255,255,192,224,0,0,255,255,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192, + // 0x5b50 子 + 80,91,45,45,14,48,0,250,31,255,255,255,254,0,31,255,255,255,254,0,31,255,255,255,254,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5b58 存 + 88,91,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,7,28,0,0,0,112,7,28,0,0,0,112,7,28,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0, + // 0x5b89 安 + 137,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,56,31,128,0,0,0,56,31,128,0,0,0,56,31,128,0,0,15,192,0,112,0,0,15,192,0,112,0,0,15,192,0,112,0,31,240,0,0,14,0,31,240,0,0,14,0,31,240,0,0,14,0, + // 0x5b8c 完 + 140,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,31,128,0,3,255,192,31,128,0,3,255,192,31,128,0,3,255,192, + // 0x5b9a 定 + 154,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x5ba2 客 + 162,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,14,0,0,1,192,224,14,0,0,1,192,224,14,0,0,1,192,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,143,192,28,0,0,3,143,192,28,0,0,3,143,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,192,31,240,0,0,127,192,31,240,0,0,127,192,31,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x5bab 宫 + 171,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0, + // 0x5bf9 对 + 249,91,42,48,32,48,3,250,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,1,199,255,255,192,0,1,199,255,255,192,0,1,199,255,255,192,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,3,142,7,3,128,0,3,142,7,3,128,0,3,142,7,3,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x5c06 将 + 6,92,45,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,255,254,0,0,14,0,255,254,0,0,14,0,255,254,0,0,14,7,0,14,0,0,14,7,0,14,0,0,14,7,0,14,0,28,14,56,0,112,0,28,14,56,0,112,0,28,14,56,0,112,0,3,142,0,227,128,0,3,142,0,227,128,0,3,142,0,227,128,0,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,63,0,112,0,0,14,63,0,112,0,0,14,63,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,142,63,255,255,248,3,142,63,255,255,248,3,142,63,255,255,248,252,14,0,0,112,0,252,14,0,0,112,0,252,14,0,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0, + // 0x5c0f 小 + 15,92,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5c31 就 + 49,92,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,28,112,7,0,15,248,28,112,7,0,15,248,28,112,7,0,15,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0, + // 0x5c4f 屏 + 79,92,42,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,143,255,255,254,0,3,143,255,255,254,0,3,143,255,255,254,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0, + // 0x5de5 工 + 229,93,45,36,216,48,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x5dee 差 + 238,93,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,113,255,255,254,0,0,113,255,255,254,0,0,113,255,255,254,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192, + // 0x5df2 已 + 242,93,36,42,210,48,6,253,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240, + // 0x5e73 平 + 115,94,45,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x5e76 并 + 118,94,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0, + // 0x5e8a 床 + 138,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,143,255,255,255,192,3,143,255,255,255,192,3,143,255,255,255,192,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,252,0,0,3,128,7,252,0,0,3,128,7,252,0,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,112,0,224,1,248,28,112,0,224,1,248,28,112,0,224,1,248,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x5e94 应 + 148,94,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,224,127,255,255,255,248,224,127,255,255,255,248,224,127,255,255,255,248, + // 0x5e9f 废 + 159,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,128,56,224,1,192,3,128,56,224,1,192,3,128,56,224,1,192,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,0,28,112,0,28,112,7,224,14,0,28,112,7,224,14,0,28,112,7,224,14,0,224,1,248,0,1,248,224,1,248,0,1,248,224,1,248,0,1,248, + // 0x5ea6 度 + 166,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,128,0,3,128,63,255,128,0,3,128,63,255,128,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,143,255,255,240,0,3,143,255,255,240,0,3,143,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,7,252,0,0,28,0,7,252,0,0,28,0,7,252,0,0,224,1,248,3,240,0,224,1,248,3,240,0,224,1,248,3,240,0,3,254,0,0,15,248,3,254,0,0,15,248,3,254,0,0,15,248, + // 0x5f00 开 + 0,95,45,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0, + // 0x5f03 弃 + 3,95,42,48,32,48,3,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,254,0,31,255,255,255,254,0,31,255,255,255,254,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x5f0f 式 + 15,95,45,48,32,48,0,250,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,15,255,0,112,56,0,15,255,0,112,56,0,15,255,0,112,56,31,254,0,0,14,56,31,254,0,0,14,56,31,254,0,0,14,56,3,128,0,0,1,248,3,128,0,0,1,248,3,128,0,0,1,248,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56, + // 0x5f15 引 + 21,95,36,48,240,48,3,250,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,248,0,112,255,255,248,0,112,255,255,248,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,31,255,248,0,112,31,255,248,0,112,31,255,248,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,248,0,112,255,255,248,0,112,255,255,248,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,113,192,0,112,0,113,192,0,112,0,113,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0x5f39 弹 + 57,95,45,48,32,48,0,250,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,255,254,0,224,14,0,255,254,0,224,14,0,255,254,0,224,14,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,7,255,255,192,0,14,7,255,255,192,0,14,7,255,255,192,0,14,7,3,129,192,0,14,7,3,129,192,0,14,7,3,129,192,31,254,7,3,129,192,31,254,7,3,129,192,31,254,7,3,129,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,31,254,7,255,255,192,31,254,7,255,255,192,31,254,7,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,63,255,255,248,0,14,63,255,255,248,0,14,63,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x5f52 归 + 82,95,39,48,240,48,3,250,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,224,113,255,255,254,224,113,255,255,254,224,113,255,255,254,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,63,255,254,224,112,63,255,254,224,112,63,255,254,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,224,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,3,128,0,0,14,3,128,0,0,14,3,128,0,0,14,3,129,255,255,254,3,129,255,255,254,3,129,255,255,254,28,0,0,0,14,28,0,0,0,14,28,0,0,0,14,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0, + // 0x5f84 径 + 132,95,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,63,255,254,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,14,0,31,128,0,28,14,0,31,128,0,28,14,0,31,128,0,0,14,0,224,126,0,0,14,0,224,126,0,0,14,0,224,126,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,3,241,248,0,0,56,3,241,248,0,0,56,3,241,248,0,0,56,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,63,255,255,192,224,112,63,255,255,192,224,112,63,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x5f85 待 + 133,95,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,3,240,0,0,112,0,3,240,0,0,112,0,3,240,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x5faa 循 + 170,95,45,48,32,48,0,250,0,112,0,3,255,192,0,112,0,3,255,192,0,112,0,3,255,192,0,113,255,255,128,0,0,113,255,255,128,0,0,113,255,255,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,3,129,199,255,255,192,3,129,199,255,255,192,3,129,199,255,255,192,31,129,199,0,1,192,31,129,199,0,1,192,31,129,199,0,1,192,227,129,199,0,1,192,227,129,199,0,1,192,227,129,199,0,1,192,3,129,199,255,255,192,3,129,199,255,255,192,3,129,199,255,255,192,3,129,199,0,1,192,3,129,199,0,1,192,3,129,199,0,1,192,3,129,199,255,255,192,3,129,199,255,255,192,3,129,199,255,255,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192, + // 0x5fae 微 + 174,95,45,48,32,48,0,250,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,113,199,28,14,0,0,113,199,28,14,0,0,113,199,28,14,0,3,129,199,28,14,0,3,129,199,28,14,0,3,129,199,28,14,0,28,1,199,28,112,0,28,1,199,28,112,0,28,1,199,28,112,0,224,113,255,252,127,248,224,113,255,252,127,248,224,113,255,252,127,248,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,31,143,255,252,113,192,31,143,255,252,113,192,31,143,255,252,113,192,227,128,0,0,113,192,227,128,0,0,113,192,227,128,0,0,113,192,3,129,255,224,113,192,3,129,255,224,113,192,3,129,255,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,252,14,0,3,129,192,252,14,0,3,129,192,252,14,0,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,240,0,3,128,56,3,240,0,3,128,56,3,240,0,3,128,56, + // 0x5fc3 心 + 195,95,45,42,252,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,0,63,255,240,0,0,0,63,255,240,0,0,0,63,255,240,0, + // 0x5ffd 忽 + 253,95,45,45,14,48,0,253,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,224,1,255,255,240,0,224,1,255,255,240,0,224,1,255,255,240,0, + // 0x6027 性 + 39,96,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,126,7,255,255,192,0,126,7,255,255,192,0,126,7,255,255,192,28,113,199,3,128,0,28,113,199,3,128,0,28,113,199,3,128,0,28,112,56,3,128,0,28,112,56,3,128,0,28,112,56,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x603b 总 + 59,96,45,45,14,48,0,253,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,224,1,255,255,240,0,224,1,255,255,240,0,224,1,255,255,240,0, + // 0x6062 恢 + 98,96,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,126,0,224,0,0,0,126,0,224,0,0,0,126,0,224,0,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,7,0,112,56,28,112,7,0,112,56,28,112,7,0,112,56,224,112,7,28,112,56,224,112,7,28,112,56,224,112,7,28,112,56,0,112,7,28,113,192,0,112,7,28,113,192,0,112,7,28,113,192,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,0,56,0,112,7,0,0,56,0,112,7,0,0,56, + // 0x606f 息 + 111,96,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,224,1,255,255,240,0,224,1,255,255,240,0,224,1,255,255,240,0, + // 0x611f 感 + 31,97,45,48,32,48,0,250,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,143,255,227,129,192,3,143,255,227,129,192,3,143,255,227,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,143,255,227,142,0,3,143,255,227,142,0,3,143,255,227,142,0,3,142,0,224,126,0,3,142,0,224,126,0,3,142,0,224,126,0,3,142,0,224,112,56,3,142,0,224,112,56,3,142,0,224,112,56,28,15,255,227,142,56,28,15,255,227,142,56,28,15,255,227,142,56,28,0,0,28,1,248,28,0,0,28,1,248,28,0,0,28,1,248,224,0,0,224,0,56,224,0,0,224,0,56,224,0,0,224,0,56,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,28,14,0,224,1,192,28,14,0,224,1,192,28,14,0,224,1,192,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,224,1,255,255,240,56,224,1,255,255,240,56,224,1,255,255,240,56, + // 0x620f 戏 + 15,98,42,48,32,48,3,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,31,255,192,0,1,192,31,255,192,0,1,192,31,255,192,28,14,63,252,0,0,28,14,63,252,0,0,28,14,63,252,0,0,3,142,0,28,14,0,3,142,0,28,14,0,3,142,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,224,0,0,224,113,192,224,0,0,224,113,192,224,0,0,224,113,192,0,0,7,0,15,192,0,0,7,0,15,192,0,0,7,0,15,192,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x6210 成 + 16,98,45,48,32,48,0,250,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,142,56,3,240,56,3,142,56,3,240,56,3,142,56,3,240,56,28,1,192,28,14,56,28,1,192,28,14,56,28,1,192,28,14,56,28,0,0,224,1,248,28,0,0,224,1,248,28,0,0,224,1,248,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56, + // 0x6237 户 + 55,98,36,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240,3,128,0,0,112,3,128,0,0,112,3,128,0,0,112,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0, + // 0x6240 所 + 64,98,45,48,32,48,0,250,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,255,0,127,192,0,1,255,0,127,192,0,1,255,0,127,192,3,254,0,255,128,0,3,254,0,255,128,0,3,254,0,255,128,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,255,248,224,0,0,3,255,248,224,0,0,3,255,248,224,0,0,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x6247 扇 + 71,98,42,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,31,255,192,3,255,255,31,255,192,3,255,255,31,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,112,7,28,1,192,28,112,7,28,1,192,28,112,7,28,1,192,224,1,199,0,113,192,224,1,199,0,113,192,224,1,199,0,113,192,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0, + // 0x624b 手 + 75,98,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x6253 打 + 83,98,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,227,128,0,28,112,0,227,128,0,28,112,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0, + // 0x6267 执 + 103,98,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,199,255,254,0,255,255,199,255,254,0,255,255,199,255,254,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,113,192,28,14,0,0,113,192,28,14,0,0,113,192,28,14,0,0,126,7,28,14,0,0,126,7,28,14,0,0,126,7,28,14,0,3,240,0,252,14,0,3,240,0,252,14,0,3,240,0,252,14,0,252,112,0,28,14,0,252,112,0,28,14,0,252,112,0,28,14,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,56,0,112,0,227,142,56,0,112,0,227,142,56,0,112,7,0,14,56,0,112,7,0,14,56,0,112,7,0,14,56,28,112,56,0,1,248,28,112,56,0,1,248,28,112,56,0,1,248,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56, + // 0x6279 批 + 121,98,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,255,255,199,0,112,56,255,255,199,0,112,56,255,255,199,0,112,56,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,252,126,0,0,112,7,252,126,0,0,112,7,252,126,0,0,113,199,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,0,126,7,0,112,0,0,126,7,0,112,0,0,126,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,252,112,7,0,112,0,252,112,7,0,112,0,252,112,7,0,112,0,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,28,112,56,0,112,7,28,112,56,0,112,7,28,112,56,0,112,7,224,112,56,0,112,7,224,112,56,0,112,7,224,112,56,28,112,7,0,15,248,28,112,7,0,15,248,28,112,7,0,15,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0, + // 0x6296 抖 + 150,98,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,192,224,112,0,0,113,192,224,112,0,0,113,192,224,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,240,0,0,127,248,3,240,0,0,127,248,3,240,0,0,127,248,252,112,63,255,240,0,252,112,63,255,240,0,252,112,63,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0, + // 0x62a5 报 + 165,98,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,255,255,199,0,113,192,255,255,199,0,113,192,255,255,199,0,113,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,126,7,28,1,192,0,126,7,28,1,192,0,126,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,252,112,7,3,142,0,252,112,7,3,142,0,252,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,28,112,7,28,1,192,28,112,7,28,1,192,28,112,7,28,1,192,3,128,7,224,0,56,3,128,7,224,0,56,3,128,7,224,0,56, + // 0x62ac 抬 + 172,98,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,255,199,0,1,192,255,255,199,0,1,192,255,255,199,0,1,192,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,126,7,255,255,192,0,126,7,255,255,192,0,126,7,255,255,192,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,252,112,7,0,1,192,252,112,7,0,1,192,252,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192, + // 0x62bd 抽 + 189,98,42,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192, + // 0x62d4 拔 + 212,98,45,48,32,48,0,250,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,126,0,255,255,192,0,126,0,255,255,192,0,126,0,255,255,192,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,252,112,7,28,1,192,252,112,7,28,1,192,252,112,7,28,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,28,113,192,28,1,192,28,113,192,28,1,192,28,113,192,28,1,192,3,128,7,224,0,56,3,128,7,224,0,56,3,128,7,224,0,56, + // 0x62e9 择 + 233,98,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,129,255,255,254,0,3,129,255,255,254,0,3,129,255,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,255,240,0,227,128,0,255,240,0,227,128,0,255,240,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,7,227,240,0,3,128,7,227,240,0,3,128,7,227,240,0,3,129,248,28,15,248,3,129,248,28,15,248,3,129,248,28,15,248,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,255,128,63,255,254,0,255,128,63,255,254,0,255,128,63,255,254,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x6309 按 + 9,99,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,254,56,0,0,56,255,254,56,0,0,56,255,254,56,0,0,56,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,126,63,255,255,248,0,126,63,255,255,248,0,126,63,255,255,248,3,240,0,224,14,0,3,240,0,224,14,0,3,240,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,252,112,0,0,112,0,252,112,0,0,112,0,252,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,28,112,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,3,128,63,0,1,192,3,128,63,0,1,192,3,128,63,0,1,192, + // 0x6321 挡 + 33,99,42,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,255,255,199,28,14,0,255,255,199,28,14,0,255,255,199,28,14,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192,3,240,0,0,1,192,3,240,0,0,1,192,3,240,0,0,1,192,252,112,63,255,255,192,252,112,63,255,255,192,252,112,63,255,255,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192, + // 0x6324 挤 + 36,99,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,255,255,199,0,112,0,255,255,199,0,112,0,255,255,199,0,112,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,126,7,227,240,0,0,126,7,227,240,0,0,126,7,227,240,0,3,241,248,0,15,248,3,241,248,0,15,248,3,241,248,0,15,248,252,112,7,0,112,0,252,112,7,0,112,0,252,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,28,112,56,0,112,0,28,112,56,0,112,0,28,112,56,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0, + // 0x635f 损 + 95,99,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,255,192,255,254,0,255,255,192,255,254,0,255,255,192,255,254,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,0,1,192,0,126,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,3,240,7,3,129,192,3,240,7,3,129,192,3,240,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,28,112,0,224,1,192,28,112,0,224,1,192,28,112,0,224,1,192,3,128,63,0,1,192,3,128,63,0,1,192,3,128,63,0,1,192, + // 0x6362 换 + 98,99,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,255,254,56,0,112,0,255,254,56,0,112,0,255,254,56,0,112,0,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,3,240,7,3,129,192,3,240,7,3,129,192,3,240,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,3,129,248,0,0,56,3,129,248,0,0,56,3,129,248,0,0,56, + // 0x6389 掉 + 137,99,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,126,7,0,1,192,0,126,7,0,1,192,0,126,7,0,1,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x63a2 探 + 162,99,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,255,254,7,0,112,0,255,254,7,0,112,0,255,254,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,241,255,255,255,192,3,241,255,255,255,192,3,241,255,255,255,192,255,128,0,28,0,0,255,128,0,28,0,0,255,128,0,28,0,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,143,192,28,1,248,3,143,192,28,1,248,3,143,192,28,1,248,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x63a5 接 + 165,99,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,255,199,0,14,0,255,255,199,0,14,0,255,255,199,0,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,3,241,255,255,255,248,3,241,255,255,255,248,3,241,255,255,255,248,252,112,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,28,112,7,224,126,0,28,112,7,224,126,0,28,112,7,224,126,0,3,129,248,0,1,192,3,129,248,0,1,192,3,129,248,0,1,192, + // 0x63a7 控 + 167,99,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,254,56,0,0,56,255,254,56,0,0,56,255,254,56,0,0,56,0,113,192,224,113,192,0,113,192,224,113,192,0,113,192,224,113,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,126,56,0,1,192,0,126,56,0,1,192,0,126,56,0,1,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,252,112,7,255,255,192,252,112,7,255,255,192,252,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,113,255,255,255,248,28,113,255,255,255,248,28,113,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0, + // 0x63d0 提 + 208,99,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,126,0,0,0,0,0,126,0,0,0,0,0,126,0,0,0,0,3,240,63,255,255,248,3,240,63,255,255,248,3,240,63,255,255,248,252,112,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,28,112,56,227,128,0,28,112,56,227,128,0,28,112,56,227,128,0,3,129,192,31,255,248,3,129,192,31,255,248,3,129,192,31,255,248, + // 0x63d2 插 + 210,99,45,48,32,48,0,250,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,129,255,252,0,0,3,129,255,252,0,0,3,129,255,252,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,142,7,28,0,0,3,142,7,28,0,0,3,142,7,28,0,0,3,241,248,28,127,192,3,241,248,28,127,192,3,241,248,28,127,192,255,129,192,28,1,192,255,129,192,28,1,192,255,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,255,28,127,192,3,129,255,28,127,192,3,129,255,28,127,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192, + // 0x6536 收 + 54,101,42,48,32,48,3,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,7,0,0,0,224,112,7,0,0,0,224,112,7,0,0,0,224,112,7,255,255,192,224,112,7,255,255,192,224,112,7,255,255,192,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,199,0,112,0,224,113,199,0,112,0,224,113,199,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,227,240,0,227,128,0,227,240,0,227,128,0,227,240,0,227,128,0,252,112,0,227,128,0,252,112,0,227,128,0,252,112,0,227,128,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192, + // 0x653e 放 + 62,101,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,224,14,7,0,1,192,224,14,7,0,1,192,224,14,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x6570 数 + 112,101,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,28,14,7,3,128,0,28,14,7,3,128,0,28,14,7,3,128,0,3,142,56,3,128,0,3,142,56,3,128,0,3,142,56,3,128,0,0,14,0,3,255,248,0,14,0,3,255,248,0,14,0,3,255,248,255,255,255,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,28,14,7,28,1,192,28,14,7,28,1,192,28,14,7,28,1,192,224,14,0,227,129,192,224,14,0,227,129,192,224,14,0,227,129,192,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,255,255,248,3,142,0,255,255,248,3,142,0,255,255,248,3,142,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,31,129,192,3,142,0,31,129,192,3,142,0,31,129,192,3,142,0,0,126,0,3,142,0,0,126,0,3,142,0,0,126,0,3,142,0,3,241,192,28,1,192,3,241,192,28,1,192,3,241,192,28,1,192,252,0,56,224,0,56,252,0,56,224,0,56,252,0,56,224,0,56, + // 0x6572 敲 + 114,101,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,255,255,255,0,112,0,255,255,255,0,112,0,255,255,255,0,112,0,0,0,0,0,127,248,0,0,0,0,127,248,0,0,0,0,127,248,31,255,248,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,224,0,7,28,1,192,224,0,7,28,1,192,224,0,7,28,1,192,227,255,199,3,142,0,227,255,199,3,142,0,227,255,199,3,142,0,227,129,199,3,142,0,227,129,199,3,142,0,227,129,199,3,142,0,227,255,199,0,112,0,227,255,199,0,112,0,227,255,199,0,112,0,224,0,7,3,142,0,224,0,7,3,142,0,224,0,7,3,142,0,224,1,199,28,1,192,224,1,199,28,1,192,224,1,199,28,1,192,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56, + // 0x6574 整 + 116,101,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,227,255,248,255,255,255,227,255,248,255,255,255,227,255,248,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,31,255,255,227,129,192,31,255,255,227,129,192,31,255,255,227,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,3,142,56,0,112,0,3,142,56,0,112,0,3,142,56,0,112,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,224,14,0,28,1,248,224,14,0,28,1,248,224,14,0,28,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6599 料 + 153,101,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,28,14,56,28,14,0,28,14,56,28,14,0,28,14,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,143,192,0,14,0,3,143,192,0,14,0,3,143,192,0,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,0,126,0,28,14,0,0,126,0,28,14,0,0,126,0,28,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,3,142,56,0,15,248,3,142,56,0,15,248,3,142,56,0,15,248,3,142,56,255,254,0,3,142,56,255,254,0,3,142,56,255,254,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x659c 斜 + 156,101,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,227,255,248,28,14,0,227,255,248,28,14,0,227,255,248,28,14,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,31,255,255,0,15,248,31,255,255,0,15,248,31,255,255,0,15,248,0,14,0,31,254,0,0,14,0,31,254,0,0,14,0,31,254,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,28,14,7,0,14,0,28,14,7,0,14,0,28,14,7,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0, + // 0x65ad 断 + 173,101,42,48,32,48,3,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,227,142,56,255,240,0,227,142,56,255,240,0,227,142,56,255,240,0,224,127,192,224,0,0,224,127,192,224,0,0,224,127,192,224,0,0,224,14,0,224,0,0,224,14,0,224,0,0,224,14,0,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,224,14,0,255,255,192,224,14,0,255,255,192,224,14,0,255,255,192,224,127,192,224,112,0,224,127,192,224,112,0,224,127,192,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,252,14,56,224,112,0,252,14,56,224,112,0,252,14,56,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,255,255,255,0,112,0,255,255,255,0,112,0,255,255,255,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0, + // 0x65b0 新 + 176,101,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,31,255,255,31,254,0,31,255,255,31,254,0,31,255,255,31,254,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,255,255,255,31,255,248,255,255,255,31,255,248,255,255,255,31,255,248,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,31,255,255,28,14,0,31,255,255,28,14,0,31,255,255,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,28,14,7,28,14,0,28,14,7,28,14,0,28,14,7,28,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x65b9 方 + 185,101,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,255,255,240,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x65e0 无 + 224,101,42,45,14,48,0,250,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x65f6 时 + 246,101,42,48,32,48,3,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,63,255,255,192,224,14,63,255,255,192,224,14,63,255,255,192,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,7,0,112,0,224,14,7,0,112,0,224,14,7,0,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x660e 明 + 14,102,39,45,225,48,3,250,0,0,7,255,254,0,0,7,255,254,0,0,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,255,254,224,14,7,255,254,224,14,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,255,254,224,14,7,255,254,224,14,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0x662f 是 + 47,102,45,48,32,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,224,0,63,255,255,248,224,0,63,255,255,248,224,0,63,255,255,248, + // 0x6682 暂 + 130,102,45,48,32,48,0,250,0,112,0,0,15,192,0,112,0,0,15,192,0,112,0,0,15,192,255,255,248,255,240,0,255,255,248,255,240,0,255,255,248,255,240,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,14,0,224,0,0,28,14,0,224,0,0,28,14,0,224,0,0,31,255,248,255,255,248,31,255,248,255,255,248,31,255,248,255,255,248,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,15,248,224,14,0,0,15,248,224,14,0,0,15,248,224,14,0,255,254,7,0,14,0,255,254,7,0,14,0,255,254,7,0,14,0,28,14,56,0,14,0,28,14,56,0,14,0,28,14,56,0,14,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0, + // 0x66ab 暫 + 171,102,42,48,32,48,3,250,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,255,255,248,255,240,0,255,255,248,255,240,0,255,255,248,255,240,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,224,112,56,255,255,192,224,112,56,255,255,192,224,112,56,255,255,192,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,224,112,56,224,112,0,224,112,56,224,112,0,224,112,56,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0, + // 0x66f4 更 + 244,102,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,1,248,0,0,0,0,1,248,0,0,0,0,1,248,0,0,0,0,126,7,252,0,0,0,126,7,252,0,0,0,126,7,252,0,0,255,128,0,3,255,248,255,128,0,3,255,248,255,128,0,3,255,248, + // 0x6700 最 + 0,103,45,48,32,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,255,248,255,254,0,3,255,248,255,254,0,3,255,248,255,254,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,224,112,0,3,255,248,224,112,0,3,255,248,224,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,143,255,3,128,0,3,143,255,3,128,0,3,143,255,3,128,0,255,240,56,28,112,0,255,240,56,28,112,0,255,240,56,28,112,0,28,0,56,224,14,0,28,0,56,224,14,0,28,0,56,224,14,0,0,0,63,0,1,248,0,0,63,0,1,248,0,0,63,0,1,248, + // 0x6709 有 + 9,103,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,143,255,255,240,0,3,143,255,255,240,0,3,143,255,255,240,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0, + // 0x671f 期 + 31,103,42,48,32,48,0,250,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,31,255,192,31,255,255,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,0,1,192,224,1,192,0,1,192,224,1,192,0,1,192,224,1,192,3,128,56,224,1,192,3,128,56,224,1,192,3,128,56,224,1,192,28,0,7,0,113,192,28,0,7,0,113,192,28,0,7,0,113,192,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0, + // 0x673a 机 + 58,103,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,240,0,0,112,7,255,240,0,0,112,7,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,255,255,199,0,112,0,255,255,199,0,112,0,255,255,199,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,254,7,0,112,0,3,254,7,0,112,0,3,254,7,0,112,0,28,113,199,0,112,0,28,113,199,0,112,0,28,113,199,0,112,0,28,113,199,0,112,0,28,113,199,0,112,0,28,113,199,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,15,248,0,112,56,0,15,248,0,112,56,0,15,248,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0, + // 0x6740 杀 + 64,103,45,48,32,48,0,250,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,1,248,31,128,0,0,1,248,31,128,0,0,1,248,31,128,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,1,248,31,128,0,0,1,248,31,128,0,0,1,248,31,128,0,0,126,0,0,126,0,0,126,0,0,126,0,0,126,0,0,126,0,31,128,7,0,1,192,31,128,7,0,1,192,31,128,7,0,1,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x675f 束 + 95,103,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,63,224,14,0,3,128,63,224,14,0,3,128,63,224,14,0,0,1,199,28,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,3,240,7,0,126,0,3,240,7,0,126,0,3,240,7,0,126,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x6761 条 + 97,103,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,31,129,192,28,0,0,31,129,192,28,0,0,31,129,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,199,31,240,0,0,127,199,31,240,0,0,127,199,31,240,0,255,128,7,0,15,248,255,128,7,0,15,248,255,128,7,0,15,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x6765 来 + 101,103,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,3,240,7,0,126,0,3,240,7,0,126,0,3,240,7,0,126,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x677f 板 + 127,103,45,48,32,48,0,250,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,127,192,0,112,0,0,127,192,0,112,0,0,127,192,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,199,0,0,0,255,255,199,0,0,0,255,255,199,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,3,254,7,28,1,192,3,254,7,28,1,192,3,254,7,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,3,142,0,28,113,199,3,142,0,28,113,199,3,142,0,224,112,7,3,142,0,224,112,7,3,142,0,224,112,7,3,142,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,224,0,56,0,113,192,224,0,56,0,113,192,224,0,56, + // 0x6797 林 + 151,103,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,248,255,255,199,255,255,248,255,255,199,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,240,0,31,240,0,3,240,0,31,240,0,3,240,0,31,240,0,3,254,0,31,240,0,3,254,0,31,240,0,3,254,0,31,240,0,28,113,192,227,142,0,28,113,192,227,142,0,28,113,192,227,142,0,28,112,0,227,142,0,28,112,0,227,142,0,28,112,0,227,142,0,224,112,7,3,129,192,224,112,7,3,129,192,224,112,7,3,129,192,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x67f1 柱 + 241,103,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,254,0,3,128,0,3,254,0,3,128,0,3,254,0,3,128,0,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x6821 校 + 33,104,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,255,255,192,0,0,0,255,255,192,0,0,0,255,255,192,0,0,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,3,254,56,0,0,56,3,254,56,0,0,56,3,254,56,0,0,56,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,63,0,1,248,0,112,63,0,1,248,0,112,63,0,1,248, + // 0x683c 格 + 60,104,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,255,254,63,0,112,0,255,254,63,0,112,0,255,254,63,0,112,0,0,113,192,227,128,0,0,113,192,227,128,0,0,113,192,227,128,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,254,0,227,128,0,3,254,0,227,128,0,3,254,0,227,128,0,28,113,199,0,126,0,28,113,199,0,126,0,28,113,199,0,126,0,28,112,56,0,1,248,28,112,56,0,1,248,28,112,56,0,1,248,224,113,199,255,254,0,224,113,199,255,254,0,224,113,199,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x68af 梯 + 175,104,45,48,32,48,0,250,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,3,254,7,3,128,0,3,254,7,3,128,0,3,254,7,3,128,0,28,113,199,3,128,0,28,113,199,3,128,0,28,113,199,3,128,0,28,112,7,255,255,248,28,112,7,255,255,248,28,112,7,255,255,248,224,112,0,31,128,56,224,112,0,31,128,56,224,112,0,31,128,56,0,112,0,227,128,56,0,112,0,227,128,56,0,112,0,227,128,56,0,112,7,3,142,56,0,112,7,3,142,56,0,112,7,3,142,56,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x68c0 检 + 192,104,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,255,255,199,0,112,0,255,255,199,0,112,0,255,255,199,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,241,199,255,241,248,3,241,199,255,241,248,3,241,199,255,241,248,3,254,0,0,0,0,3,254,0,0,0,0,3,254,0,0,0,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,112,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x69fd 槽 + 253,105,45,48,32,48,0,250,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,0,112,56,224,113,192,0,112,56,224,113,192,0,112,56,224,113,192,3,240,63,255,255,192,3,240,63,255,255,192,3,240,63,255,255,192,3,254,56,224,113,192,3,254,56,224,113,192,3,254,56,224,113,192,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,7,255,254,0,224,112,7,255,254,0,224,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x6a21 模 + 33,106,45,48,32,48,0,250,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,255,255,192,0,0,0,255,255,192,0,0,0,255,255,192,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,3,240,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,3,254,63,255,254,0,3,254,63,255,254,0,3,254,63,255,254,0,28,113,248,0,14,0,28,113,248,0,14,0,28,113,248,0,14,0,28,112,63,255,254,0,28,112,63,255,254,0,28,112,63,255,254,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,248,0,113,192,0,1,248,0,113,192,0,1,248, + // 0x6a59 橙 + 89,106,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,227,129,192,0,113,255,227,129,192,0,113,255,227,129,192,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,56,224,112,56,0,112,56,224,112,56,0,112,56,224,112,56,255,254,7,0,113,192,255,254,7,0,113,192,255,254,7,0,113,192,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,241,199,255,241,192,3,241,199,255,241,192,3,241,199,255,241,192,3,254,0,0,0,56,3,254,0,0,0,56,3,254,0,0,0,56,28,113,255,255,254,0,28,113,255,255,254,0,28,113,255,255,254,0,28,112,56,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x6b62 止 + 98,107,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6b63 正 + 99,107,45,42,252,48,0,253,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6b65 步 + 101,107,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,28,0,0,252,0,0,28,0,0,252,0,0,28,0,0,252,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0, + // 0x6bd4 比 + 212,107,39,45,225,48,6,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,112,224,0,56,0,112,224,0,56,0,112,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,255,254,56,224,0,255,254,56,224,0,255,254,56,224,0,224,0,63,0,0,224,0,63,0,0,224,0,63,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,126,56,0,14,224,126,56,0,14,224,126,56,0,14,255,128,56,0,14,255,128,56,0,14,255,128,56,0,14,224,0,7,255,254,224,0,7,255,254,224,0,7,255,254, + // 0x6ca1 没 + 161,108,45,45,14,48,0,250,3,128,7,255,240,0,3,128,7,255,240,0,3,128,7,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,224,0,7,0,112,0,224,0,7,0,112,0,224,0,7,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,113,192,0,15,248,28,113,192,0,15,248,28,113,192,0,15,248,0,126,0,0,0,0,0,126,0,0,0,0,0,126,0,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,255,128,7,0,14,0,255,128,7,0,14,0,255,128,7,0,14,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,7,227,240,0,3,128,7,227,240,0,3,128,7,227,240,0,0,15,248,0,15,248,0,15,248,0,15,248,0,15,248,0,15,248, + // 0x6ce2 波 + 226,108,45,48,32,48,0,250,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,224,0,56,3,128,56,224,0,56,3,128,56,224,0,56,3,128,56,28,0,56,3,129,192,28,0,56,3,129,192,28,0,56,3,129,192,28,14,56,3,128,0,28,14,56,3,128,0,28,14,56,3,128,0,0,14,63,255,255,192,0,14,63,255,255,192,0,14,63,255,255,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,255,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,3,128,56,28,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,0,14,7,0,1,248,0,14,7,0,1,248,0,14,7,0,1,248, + // 0x6ce8 注 + 232,108,45,45,14,48,0,253,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,255,128,0,28,0,0,255,128,0,28,0,0,255,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248, + // 0x6d17 洗 + 23,109,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,0,112,56,28,0,0,0,112,56,28,0,0,0,112,56,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,224,1,192,28,0,0,224,1,192,28,0,0,224,1,192,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,255,128,7,3,128,0,255,128,7,3,128,0,255,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,129,192,0,127,248,3,129,192,0,127,248,3,129,192,0,127,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0, + // 0x6d3b 活 + 59,109,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,128,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0, + // 0x6d41 流 + 65,109,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,224,0,7,0,112,0,224,0,7,0,112,0,224,0,7,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,1,255,255,255,192,28,1,255,255,255,192,28,1,255,255,255,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,56,3,128,56,28,14,56,3,128,56,28,14,56,3,129,192,28,14,56,3,129,192,28,14,56,3,129,192,28,14,56,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,28,1,248, + // 0x6d4b 测 + 75,109,42,48,32,48,0,250,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,3,129,255,252,1,192,3,129,255,252,1,192,3,129,255,252,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,113,192,0,113,192,28,113,192,0,113,192,28,113,192,224,1,199,28,113,192,224,1,199,28,113,192,224,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,0,113,199,28,113,192,0,113,199,28,113,192,0,113,199,28,113,192,0,113,199,28,113,192,0,113,199,28,113,192,0,113,199,28,113,192,3,129,199,28,113,192,3,129,199,28,113,192,3,129,199,28,113,192,255,129,199,28,113,192,255,129,199,28,113,192,255,129,199,28,113,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,56,224,1,192,3,128,56,224,1,192,3,128,56,224,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,129,192,0,113,192,3,129,192,0,113,192,3,129,192,0,113,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x6d88 消 + 136,109,39,48,240,48,0,250,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,3,128,56,28,14,3,128,56,28,14,3,128,56,28,14,0,112,7,28,14,0,112,7,28,14,0,112,7,28,14,0,112,7,28,112,0,112,7,28,112,0,112,7,28,112,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,28,0,63,255,254,28,0,63,255,254,28,0,63,255,254,28,14,56,0,14,28,14,56,0,14,28,14,56,0,14,0,14,56,0,14,0,14,56,0,14,0,14,56,0,14,0,112,63,255,254,0,112,63,255,254,0,112,63,255,254,0,112,56,0,14,0,112,56,0,14,0,112,56,0,14,255,128,56,0,14,255,128,56,0,14,255,128,56,0,14,3,128,63,255,254,3,128,63,255,254,3,128,63,255,254,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,3,142,3,128,56,3,142,3,128,56,3,142,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112, + // 0x6de1 淡 + 225,109,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,28,14,0,0,113,192,28,14,0,0,113,192,28,14,0,224,0,0,227,128,0,224,0,0,227,128,0,224,0,0,227,128,0,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,28,1,248,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,15,192,0,1,248,0,15,192,0,1,248,0,15,192,0,1,248, + // 0x6df7 混 + 247,109,45,45,14,48,0,250,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,224,1,255,255,255,192,224,1,255,255,255,192,224,1,255,255,255,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,255,129,192,3,128,56,255,129,192,3,128,56,255,129,192,3,128,56,3,129,255,227,143,192,3,129,255,227,143,192,3,129,255,227,143,192,3,129,192,3,240,0,3,129,192,3,240,0,3,129,192,3,240,0,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,199,227,128,56,3,129,199,227,128,56,3,129,199,227,128,56,0,1,248,0,127,248,0,1,248,0,127,248,0,1,248,0,127,248, + // 0x6e05 清 + 5,110,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,224,0,63,255,254,0,224,0,63,255,254,0,224,0,63,255,254,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,255,128,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0, + // 0x6e29 温 + 41,110,45,42,252,48,0,253,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,224,0,63,255,254,0,224,0,63,255,254,0,224,0,63,255,254,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,255,129,192,227,129,192,255,129,192,227,129,192,255,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248, + // 0x6e38 游 + 56,110,45,48,32,48,0,250,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,113,255,227,255,248,0,113,255,227,255,248,0,113,255,227,255,248,224,0,56,3,128,0,224,0,56,3,128,0,224,0,56,3,128,0,28,0,56,28,0,0,28,0,56,28,0,0,28,0,56,28,0,0,28,0,63,227,255,192,28,0,63,227,255,192,28,0,63,227,255,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,255,128,56,227,255,248,255,128,56,227,255,248,255,128,56,227,255,248,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,142,7,227,142,0,3,142,7,227,142,0,3,142,7,227,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x6e90 源 + 144,110,45,45,14,48,0,250,3,129,255,255,255,248,3,129,255,255,255,248,3,129,255,255,255,248,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,224,1,199,255,255,192,224,1,199,255,255,192,224,1,199,255,255,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,255,255,192,28,1,199,255,255,192,28,1,199,255,255,192,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,255,129,192,3,128,0,255,129,192,3,128,0,255,129,192,3,128,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,56,3,128,56,3,142,56,3,128,56,3,142,56,3,128,56,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x6ea2 溢 + 162,110,45,45,14,48,0,253,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,224,1,255,255,255,192,224,1,255,255,255,192,224,1,255,255,255,192,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,128,56,227,142,0,255,128,56,227,142,0,255,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,128,56,227,142,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248, + // 0x6ed1 滑 + 209,110,45,45,14,48,0,250,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,252,14,0,0,112,63,252,14,0,0,112,63,252,14,0,224,0,56,28,14,0,224,0,56,28,14,0,224,0,56,28,14,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,128,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0, + // 0x6f0f 漏 + 15,111,45,45,14,48,0,250,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,0,1,255,255,255,248,0,1,255,255,255,248,0,1,255,255,255,248,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,3,129,248,3,128,56,3,129,248,3,128,56,3,129,248,3,128,56,255,129,248,227,142,56,255,129,248,227,142,56,255,129,248,227,142,56,3,142,56,3,128,56,3,142,56,3,128,56,3,142,56,3,128,56,3,142,56,227,142,56,3,142,56,227,142,56,3,142,56,227,142,56,3,240,56,3,128,56,3,240,56,3,128,56,3,240,56,3,128,56,3,128,56,3,142,56,3,128,56,3,142,56,3,128,56,3,142,56,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x6fc0 激 + 192,111,45,48,32,48,0,250,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,3,143,255,224,112,0,3,143,255,224,112,0,3,143,255,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,0,15,255,227,255,248,0,15,255,227,255,248,0,15,255,227,255,248,224,14,0,227,129,192,224,14,0,227,129,192,224,14,0,227,129,192,28,15,255,252,113,192,28,15,255,252,113,192,28,15,255,252,113,192,28,113,192,0,113,192,28,113,192,0,113,192,28,113,192,0,113,192,0,112,56,0,113,192,0,112,56,0,113,192,0,112,56,0,113,192,3,143,255,252,113,192,3,143,255,252,113,192,3,143,255,252,113,192,255,129,192,0,113,192,255,129,192,0,113,192,255,129,192,0,113,192,3,129,255,224,14,0,3,129,255,224,14,0,3,129,255,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,142,0,224,113,192,3,142,0,224,113,192,3,142,0,224,113,192,3,142,56,224,113,192,3,142,56,224,113,192,3,142,56,224,113,192,0,112,7,3,128,56,0,112,7,3,128,56,0,112,7,3,128,56, + // 0x706f 灯 + 111,112,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,126,0,3,128,0,28,126,0,3,128,0,28,126,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x70b9 点 + 185,112,42,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,28,0,56,28,1,192,28,0,56,28,1,192,28,0,56,28,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192, + // 0x70ed 热 + 237,112,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,199,255,254,0,255,255,199,255,254,0,255,255,199,255,254,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,127,192,252,14,0,0,127,192,252,14,0,0,127,192,252,14,0,3,240,0,28,14,0,3,240,0,28,14,0,3,240,0,28,14,0,252,112,0,227,142,56,252,112,0,227,142,56,252,112,0,227,142,56,0,112,0,227,142,56,0,112,0,227,142,56,0,112,0,227,142,56,28,112,7,0,1,248,28,112,7,0,1,248,28,112,7,0,1,248,3,128,56,0,0,56,3,128,56,0,0,56,3,128,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192, + // 0x7247 片 + 71,114,39,48,240,48,3,250,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,252,0,3,255,255,252,0,3,255,255,252,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0, + // 0x7269 物 + 105,114,42,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,255,255,192,28,112,0,255,255,192,28,112,0,255,255,192,31,255,199,28,113,192,31,255,199,28,113,192,31,255,199,28,113,192,28,112,56,28,113,192,28,112,56,28,113,192,28,112,56,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,127,192,224,113,192,0,127,192,224,113,192,0,127,192,224,113,192,255,240,7,3,129,192,255,240,7,3,129,192,255,240,7,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x7279 特 + 121,114,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,63,255,255,248,224,112,63,255,255,248,224,112,63,255,255,248,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,255,240,7,255,255,248,255,240,7,255,255,248,255,240,7,255,255,248,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x7387 率 + 135,115,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,143,255,224,14,0,3,143,255,224,14,0,3,143,255,224,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x73af 环 + 175,115,45,42,252,48,0,250,255,255,199,255,255,248,255,255,199,255,255,248,255,255,199,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,31,255,192,31,142,0,31,255,192,31,142,0,31,255,192,31,142,0,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,7,3,128,56,0,112,7,3,128,56,0,112,7,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x7528 用 + 40,117,39,45,225,48,0,250,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,3,142,28,0,7,3,142,28,0,7,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x7535 电 + 53,117,39,48,240,48,6,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,142,224,1,192,3,142,224,1,192,3,142,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,1,192,0,14,0,0,63,255,254,0,0,63,255,254,0,0,63,255,254, + // 0x7565 略 + 101,117,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,255,254,0,255,254,0,255,254,0,255,254,0,255,254,0,255,254,0,227,142,7,0,14,0,227,142,7,0,14,0,227,142,7,0,14,0,227,142,63,0,112,0,227,142,63,0,112,0,227,142,63,0,112,0,227,143,192,227,128,0,227,143,192,227,128,0,227,143,192,227,128,0,255,254,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,227,142,0,227,128,0,227,142,0,227,128,0,227,142,0,227,128,0,227,142,7,0,126,0,227,142,7,0,126,0,227,142,7,0,126,0,227,142,56,0,1,248,227,142,56,0,1,248,227,142,56,0,1,248,227,143,199,255,254,0,227,143,199,255,254,0,227,143,199,255,254,0,255,254,7,0,14,0,255,254,7,0,14,0,255,254,7,0,14,0,224,14,7,0,14,0,224,14,7,0,14,0,224,14,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,255,254,0,0,0,7,255,254,0,0,0,7,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0, + // 0x767d 白 + 125,118,33,48,240,48,6,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128, + // 0x7684 的 + 132,118,39,48,240,48,3,250,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,28,0,0,224,0,28,0,0,224,0,28,0,0,224,0,255,255,192,255,254,255,255,192,255,254,255,255,192,255,254,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,248,0,14,224,1,248,0,14,224,1,248,0,14,224,1,192,224,14,224,1,192,224,14,224,1,192,224,14,255,255,192,28,14,255,255,192,28,14,255,255,192,28,14,224,1,192,28,14,224,1,192,28,14,224,1,192,28,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,255,255,192,0,14,255,255,192,0,14,255,255,192,0,14,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0x76d1 监 + 209,118,45,45,14,48,0,253,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,3,129,192,28,0,0,3,129,192,28,0,0,3,129,192,28,0,0,3,129,192,31,255,192,3,129,192,31,255,192,3,129,192,31,255,192,3,129,192,28,0,0,3,129,192,28,0,0,3,129,192,28,0,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,199,0,14,0,3,129,199,0,14,0,3,129,199,0,14,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x76f4 直 + 244,118,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x7701 省 + 1,119,42,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,0,0,252,0,0,28,0,0,252,0,0,28,0,0,252,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,252,112,0,0,14,0,252,112,0,0,14,0,252,112,0,0,14,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0, + // 0x7720 眠 + 32,119,42,45,14,48,3,250,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,255,254,63,255,254,0,255,254,63,255,254,0,255,254,63,255,254,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,3,128,0,224,14,56,3,128,0,224,14,56,3,128,0,255,254,56,3,129,192,255,254,56,3,129,192,255,254,56,3,129,192,224,14,56,224,113,192,224,14,56,224,113,192,224,14,56,224,113,192,0,0,63,0,15,192,0,0,63,0,15,192,0,0,63,0,15,192,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x786e 确 + 110,120,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,192,31,255,192,255,255,192,31,255,192,255,255,192,31,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,255,255,248,3,255,192,224,112,56,3,255,192,224,112,56,3,255,192,224,112,56,31,129,192,224,112,56,31,129,192,224,112,56,31,129,192,224,112,56,31,129,192,255,255,248,31,129,192,255,255,248,31,129,192,255,255,248,227,129,192,224,112,56,227,129,192,224,112,56,227,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,255,255,248,3,255,192,224,112,56,3,255,192,224,112,56,3,255,192,224,112,56,3,129,199,0,112,56,3,129,199,0,112,56,3,129,199,0,112,56,3,128,7,0,14,56,3,128,7,0,14,56,3,128,7,0,14,56,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x79bb 离 + 187,121,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,112,63,224,112,0,0,112,63,224,112,0,0,112,63,224,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,28,0,56,0,1,192,28,0,56,0,1,192,28,0,56,0,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x79fb 移 + 251,121,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,255,240,0,31,255,192,255,240,0,31,255,192,255,240,0,31,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,28,14,0,0,112,7,28,14,0,0,112,7,28,14,0,255,255,192,3,240,0,255,255,192,3,240,0,255,255,192,3,240,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,240,0,28,14,0,3,240,0,28,14,0,3,240,0,28,14,0,3,254,7,224,112,0,3,254,7,224,112,0,3,254,7,224,112,0,28,113,192,3,255,248,28,113,192,3,255,248,28,113,192,3,255,248,28,113,192,28,0,56,28,113,192,28,0,56,28,113,192,28,0,56,224,112,7,227,129,192,224,112,7,227,129,192,224,112,7,227,129,192,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,7,224,0,0,0,112,7,224,0,0,0,112,7,224,0,0, + // 0x7a7a 空 + 122,122,45,45,14,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192, + // 0x7aef 端 + 239,122,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,224,14,63,255,255,248,224,14,63,255,255,248,224,14,63,255,255,248,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,0,127,199,28,113,192,0,127,199,28,113,192,0,127,199,28,113,192,255,128,7,28,113,192,255,128,7,28,113,192,255,128,7,28,113,192,28,0,7,28,113,192,28,0,7,28,113,192,28,0,7,28,113,192,0,0,7,0,15,192,0,0,7,0,15,192,0,0,7,0,15,192, + // 0x7b2c 第 + 44,123,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,224,1,199,0,14,0,224,1,199,0,14,0,224,1,199,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,0,0,63,0,1,192,0,0,63,0,1,192,0,0,63,0,1,192,0,1,199,0,1,192,0,1,199,0,1,192,0,1,199,0,1,192,0,126,7,3,142,0,0,126,7,3,142,0,0,126,7,3,142,0,255,128,7,0,112,0,255,128,7,0,112,0,255,128,7,0,112,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x7b49 等 + 73,123,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,224,1,199,0,14,0,224,1,199,0,14,0,224,1,199,0,14,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,227,128,0,0,1,192,227,128,0,0,1,192,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7bb1 箱 + 177,123,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,3,142,0,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,28,1,199,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,224,14,0,0,0,0,224,14,0,0,0,0,224,14,0,0,0,0,0,14,0,255,255,192,0,14,0,255,255,192,0,14,0,255,255,192,31,255,248,224,1,192,31,255,248,224,1,192,31,255,248,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,126,0,255,255,192,0,126,0,255,255,192,0,126,0,255,255,192,0,127,192,224,1,192,0,127,192,224,1,192,0,127,192,224,1,192,3,142,56,224,1,192,3,142,56,224,1,192,3,142,56,224,1,192,3,142,56,255,255,192,3,142,56,255,255,192,3,142,56,255,255,192,28,14,0,224,1,192,28,14,0,224,1,192,28,14,0,224,1,192,224,14,0,224,1,192,224,14,0,224,1,192,224,14,0,224,1,192,0,14,0,255,255,192,0,14,0,255,255,192,0,14,0,255,255,192, + // 0x7c7b 类 + 123,124,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,199,28,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,31,128,0,0,14,0,31,128,0,0,14,0,31,128,0,0,14,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x7d22 索 + 34,125,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,56,0,0,56,28,0,56,0,0,56,28,0,56,0,0,56,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,0,127,255,252,0,0,0,127,255,252,0,0,0,127,255,252,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,1,248,0,112,0,0,1,248,0,112,0,0,1,248,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0, + // 0x7d2b 紫 + 43,125,42,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,143,248,255,240,0,3,143,248,255,240,0,3,143,248,255,240,0,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,255,240,0,31,255,192,255,240,0,31,255,192,255,240,0,31,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,127,255,252,0,0,0,127,255,252,0,0,0,127,255,252,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,1,248,0,112,0,0,1,248,0,112,0,0,1,248,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0, + // 0x7ea2 红 + 162,126,45,45,14,48,0,253,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,28,0,63,255,255,248,28,0,63,255,255,248,28,0,63,255,255,248, + // 0x7ea7 级 + 167,126,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,255,254,0,224,112,0,255,254,0,224,112,0,255,254,0,224,112,0,0,112,0,224,127,192,0,112,0,224,127,192,0,112,0,224,127,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,28,0,7,28,1,192,28,0,7,28,1,192,28,0,7,28,1,192,255,254,7,28,1,192,255,254,7,28,1,192,255,254,7,28,1,192,28,0,7,3,142,0,28,0,7,3,142,0,28,0,7,3,142,0,0,0,7,3,142,0,0,0,7,3,142,0,0,0,7,3,142,0,0,126,56,0,112,0,0,126,56,0,112,0,0,126,56,0,112,0,255,128,56,3,142,0,255,128,56,3,142,0,255,128,56,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,0,0,7,224,0,56,0,0,7,224,0,56,0,0,7,224,0,56, + // 0x7ebf 线 + 191,126,45,48,32,48,0,250,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,192,28,127,192,3,129,192,28,127,192,3,129,192,28,127,192,28,1,199,255,128,0,28,1,199,255,128,0,28,1,199,255,128,0,255,254,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,0,112,0,28,127,248,0,112,0,28,127,248,0,112,0,28,127,248,3,128,63,255,128,0,3,128,63,255,128,0,3,128,63,255,128,0,28,0,0,28,1,192,28,0,0,28,1,192,28,0,0,28,1,192,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,127,192,28,112,56,0,127,192,28,112,56,0,127,192,28,112,56,255,128,0,224,14,56,255,128,0,224,14,56,255,128,0,224,14,56,28,0,63,0,1,248,28,0,63,0,1,248,28,0,63,0,1,248,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56, + // 0x7ec6 细 + 198,126,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,28,1,199,3,129,192,28,1,199,3,129,192,28,1,199,3,129,192,255,254,7,3,129,192,255,254,7,3,129,192,255,254,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,0,127,199,3,129,192,0,127,199,3,129,192,0,127,199,3,129,192,255,128,7,3,129,192,255,128,7,3,129,192,255,128,7,3,129,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192, + // 0x7ec8 终 + 200,126,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,28,14,63,0,112,0,28,14,63,0,112,0,28,14,63,0,112,0,255,255,192,227,128,0,255,255,192,227,128,0,255,255,192,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,28,0,63,0,126,0,28,0,63,0,126,0,28,0,63,0,126,0,255,255,192,0,1,248,255,255,192,0,1,248,255,255,192,0,1,248,28,0,0,252,0,0,28,0,0,252,0,0,28,0,0,252,0,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,255,128,7,224,0,0,255,128,7,224,0,0,255,128,7,224,0,0,28,0,0,31,128,0,28,0,0,31,128,0,28,0,0,31,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0, + // 0x7ed3 结 + 211,126,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,129,255,255,255,248,3,129,255,255,255,248,3,129,255,255,255,248,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,127,199,0,1,192,0,127,199,0,1,192,0,127,199,0,1,192,255,128,7,0,1,192,255,128,7,0,1,192,255,128,7,0,1,192,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192, + // 0x7ed9 给 + 217,126,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,28,14,56,0,14,0,28,14,56,0,14,0,28,14,56,0,14,0,255,241,192,0,1,248,255,241,192,0,1,248,255,241,192,0,1,248,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,255,254,63,255,254,0,255,254,63,255,254,0,255,254,63,255,254,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,126,56,0,14,0,0,126,56,0,14,0,0,126,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,28,0,63,255,254,0,28,0,63,255,254,0,28,0,63,255,254,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0, + // 0x7edf 统 + 223,126,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,255,254,0,224,14,0,255,254,0,224,14,0,255,254,0,224,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,0,0,224,112,56,28,0,0,224,112,56,28,0,0,224,112,56,255,254,0,224,112,0,255,254,0,224,112,0,255,254,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,126,7,0,112,56,0,126,7,0,112,56,0,126,7,0,112,56,255,128,7,0,112,56,255,128,7,0,112,56,255,128,7,0,112,56,28,0,56,0,15,248,28,0,56,0,15,248,28,0,56,0,15,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0, + // 0x7ee7 继 + 231,126,45,45,14,48,0,253,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,3,129,192,3,128,63,3,129,192,3,128,63,3,129,192,28,14,56,227,142,0,28,14,56,227,142,0,28,14,56,227,142,0,255,240,56,3,128,0,255,240,56,3,128,0,255,240,56,3,128,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,28,0,56,31,240,0,28,0,56,31,240,0,28,0,56,31,240,0,255,254,56,227,142,0,255,254,56,227,142,0,255,254,56,227,142,0,28,0,63,3,129,192,28,0,63,3,129,192,28,0,63,3,129,192,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,126,56,3,128,0,0,126,56,3,128,0,0,126,56,3,128,0,255,128,56,3,128,0,255,128,56,3,128,0,255,128,56,3,128,0,28,0,63,255,255,248,28,0,63,255,255,248,28,0,63,255,255,248, + // 0x7eea 绪 + 234,126,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,3,128,63,255,241,192,3,128,63,255,241,192,3,128,63,255,241,192,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,0,28,112,0,255,241,255,255,255,248,255,241,255,255,255,248,255,241,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,0,7,255,254,0,28,0,7,255,254,0,28,0,7,255,254,0,255,254,63,0,14,0,255,254,63,0,14,0,255,254,63,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,0,0,7,255,254,0,0,0,7,255,254,0,0,0,7,255,254,0,0,126,7,0,14,0,0,126,7,0,14,0,0,126,7,0,14,0,255,128,7,0,14,0,255,128,7,0,14,0,255,128,7,0,14,0,28,0,7,255,254,0,28,0,7,255,254,0,28,0,7,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0, + // 0x7eed 续 + 237,126,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,3,128,0,224,113,192,3,128,0,224,113,192,3,128,0,224,113,192,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,255,255,199,0,112,0,255,255,199,0,112,0,255,255,199,0,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,0,127,192,3,142,0,0,127,192,3,142,0,0,127,192,3,142,0,255,128,0,28,1,192,255,128,0,28,1,192,255,128,0,28,1,192,28,0,0,224,0,56,28,0,0,224,0,56,28,0,0,224,0,56,0,0,63,0,0,56,0,0,63,0,0,56,0,0,63,0,0,56, + // 0x7eff 绿 + 255,126,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,14,7,255,254,0,28,14,7,255,254,0,28,14,7,255,254,0,255,254,0,0,14,0,255,254,0,0,14,0,255,254,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,255,254,56,3,128,56,255,254,56,3,128,56,255,254,56,3,128,56,28,0,7,31,241,192,28,0,7,31,241,192,28,0,7,31,241,192,0,0,0,227,142,0,0,0,0,227,142,0,0,0,0,227,142,0,0,126,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,255,128,56,3,128,56,255,128,56,3,128,56,255,128,56,3,128,56,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7f16 编 + 22,127,42,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,28,14,56,0,1,192,28,14,56,0,1,192,28,14,56,0,1,192,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,28,0,63,255,255,192,28,0,63,255,255,192,28,0,63,255,255,192,255,254,63,28,113,192,255,254,63,28,113,192,255,254,63,28,113,192,28,0,63,28,113,192,28,0,63,28,113,192,28,0,63,28,113,192,0,1,199,255,255,192,0,1,199,255,255,192,0,1,199,255,255,192,0,127,199,28,113,192,0,127,199,28,113,192,0,127,199,28,113,192,255,129,199,28,113,192,255,129,199,28,113,192,255,129,199,28,113,192,28,14,7,28,1,192,28,14,7,28,1,192,28,14,7,28,1,192,0,0,7,0,15,192,0,0,7,0,15,192,0,0,7,0,15,192, + // 0x7f3a 缺 + 58,127,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,127,192,224,14,0,28,127,192,224,14,0,28,127,192,224,14,0,31,129,192,224,14,0,31,129,192,224,14,0,31,129,192,224,14,0,0,1,199,0,1,192,0,1,199,0,1,192,0,1,199,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x7f51 网 + 81,127,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,1,192,3,142,224,1,192,3,142,224,1,192,3,142,227,129,199,3,142,227,129,199,3,142,227,129,199,3,142,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,227,129,199,3,142,227,129,199,3,142,227,129,199,3,142,252,0,56,0,14,252,0,56,0,14,252,0,56,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x7f6e 置 + 110,127,45,48,32,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x7f72 署 + 114,127,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,252,112,0,0,127,255,252,112,0,0,127,255,252,112,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,3,254,0,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,252,15,255,255,240,0,252,15,255,255,240,0,252,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0, + // 0x8005 者 + 5,128,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,3,255,255,252,112,0,3,255,255,252,112,0,3,255,255,252,112,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,28,15,255,255,240,0,28,15,255,255,240,0,28,15,255,255,240,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0, + // 0x806a 聪 + 106,128,45,48,32,48,0,250,0,0,0,224,14,0,0,0,0,224,14,0,0,0,0,224,14,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,31,254,7,0,1,192,31,254,7,0,1,192,31,254,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,31,254,7,255,255,192,31,254,7,255,255,192,31,254,7,255,255,192,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,15,192,28,113,192,28,15,192,28,113,192,28,15,192,28,113,192,31,254,7,28,0,56,31,254,7,28,0,56,31,254,7,28,0,56,252,14,7,28,0,56,252,14,7,28,0,56,252,14,7,28,0,56,0,14,7,28,14,56,0,14,7,28,14,56,0,14,7,28,14,56,0,14,56,3,254,0,0,14,56,3,254,0,0,14,56,3,254,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0, + // 0x80fd 能 + 253,128,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,28,14,0,255,255,255,31,240,0,255,255,255,31,240,0,255,255,255,31,240,0,0,0,7,28,0,0,0,0,7,28,0,0,0,0,7,28,0,0,0,0,0,28,0,56,0,0,0,28,0,56,0,0,0,28,0,56,31,255,248,28,0,56,31,255,248,28,0,56,31,255,248,28,0,56,28,0,56,3,255,248,28,0,56,3,255,248,28,0,56,3,255,248,28,0,56,0,0,0,28,0,56,0,0,0,28,0,56,0,0,0,31,255,248,28,1,192,31,255,248,28,1,192,31,255,248,28,1,192,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,31,240,0,28,0,56,31,240,0,28,0,56,31,240,0,31,255,248,28,0,0,31,255,248,28,0,0,31,255,248,28,0,0,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,14,56,28,0,56,28,14,56,28,0,56,28,14,56,28,0,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248, + // 0x81ea 自 + 234,129,27,48,192,48,9,250,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224, + // 0x81f3 至 + 243,129,45,42,252,48,0,253,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x83dc 菜 + 220,131,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,199,28,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,3,240,7,0,126,0,3,240,7,0,126,0,3,240,7,0,126,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x84dd 蓝 + 221,132,45,45,14,48,0,253,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,227,128,0,3,129,192,227,128,0,3,129,192,227,128,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x86c7 蛇 + 199,134,45,45,14,48,0,253,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,248,0,1,192,28,113,248,0,1,192,28,113,248,0,1,192,28,113,192,224,0,0,28,113,192,224,0,0,28,113,192,224,0,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,31,255,192,224,112,0,31,255,192,224,112,0,31,255,192,224,112,0,28,112,0,227,128,0,28,112,0,227,128,0,28,112,0,227,128,0,0,112,0,252,0,0,0,112,0,252,0,0,0,112,0,252,0,0,0,113,192,224,0,56,0,113,192,224,0,56,0,113,192,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,255,128,56,224,0,56,255,128,56,224,0,56,255,128,56,224,0,56,28,0,0,31,255,248,28,0,0,31,255,248,28,0,0,31,255,248, + // 0x884c 行 + 76,136,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,7,255,255,192,0,14,7,255,255,192,0,14,7,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x88ab 被 + 171,136,45,48,32,48,0,250,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,14,7,0,112,56,0,14,7,0,112,56,0,14,7,0,112,56,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,113,199,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,3,254,7,255,255,192,3,254,7,255,255,192,3,254,7,255,255,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,224,112,7,28,1,192,224,112,7,28,1,192,224,112,7,28,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,224,0,56,0,113,192,224,0,56,0,113,192,224,0,56, + // 0x88c5 装 + 197,136,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,3,142,63,255,255,248,3,142,63,255,255,248,3,142,63,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,252,14,7,255,255,192,252,14,7,255,255,192,252,14,7,255,255,192,0,14,56,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,15,192,224,14,0,0,15,192,224,14,0,0,15,192,224,14,0,3,241,192,28,112,0,3,241,192,28,112,0,3,241,192,28,112,0,252,1,199,3,240,0,252,1,199,3,240,0,252,1,199,3,240,0,0,1,248,0,15,248,0,1,248,0,15,248,0,1,248,0,15,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0, + // 0x8981 要 + 129,137,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,0,14,0,224,0,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,28,14,0,224,112,28,14,0,224,112,28,14,0,224,112,28,14,0,224,112,28,14,0,224,112,28,14,0,224,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,0,112,0,224,0,0,112,0,224,0,0,112,0,224,0,3,254,7,0,0,3,254,7,0,0,3,254,7,0,0,0,1,255,0,0,0,1,255,0,0,0,1,255,0,0,0,15,192,255,128,0,15,192,255,128,0,15,192,255,128,31,240,0,0,112,31,240,0,0,112,31,240,0,0,112, + // 0x89d2 角 + 210,137,39,48,240,48,0,250,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,227,255,255,255,254,227,255,255,255,254,227,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,3,142,28,0,7,3,142,28,0,7,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x8ba1 计 + 161,139,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,241,255,255,255,248,255,241,255,255,255,248,255,241,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x8bae 议 + 174,139,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,255,240,7,0,112,0,255,240,7,0,112,0,255,240,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,126,0,227,128,0,0,126,0,227,128,0,0,126,0,227,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,15,192,0,1,248,0,15,192,0,1,248,0,15,192,0,1,248, + // 0x8bbe 设 + 190,139,45,45,14,48,0,250,3,128,7,255,240,0,3,128,7,255,240,0,3,128,7,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,0,15,248,0,0,56,0,15,248,0,0,56,0,15,248,255,241,192,0,0,0,255,241,192,0,0,0,255,241,192,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,192,227,128,0,0,113,192,227,128,0,0,113,192,227,128,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,0,63,0,126,0,0,0,63,0,126,0,0,0,63,0,126,0,0,15,192,0,1,248,0,15,192,0,1,248,0,15,192,0,1,248, + // 0x8bd5 试 + 213,139,45,48,32,48,0,250,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,1,255,255,255,248,0,1,255,255,255,248,0,1,255,255,255,248,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,240,0,3,128,0,255,240,0,3,128,0,255,240,0,3,128,0,0,113,255,255,128,0,0,113,255,255,128,0,0,113,255,255,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,0,126,7,252,14,56,0,126,7,252,14,56,0,126,7,252,14,56,0,113,255,0,14,56,0,113,255,0,14,56,0,113,255,0,14,56,0,0,56,0,1,248,0,0,56,0,1,248,0,0,56,0,1,248,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56, + // 0x8bef 误 + 239,139,45,45,14,48,0,250,28,0,63,255,254,0,28,0,63,255,254,0,28,0,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,129,255,255,255,192,255,129,255,255,255,192,255,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,142,0,227,128,0,3,142,0,227,128,0,3,142,0,227,128,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,1,192,0,1,248,0,1,192,0,1,248,0,1,192,0,1,248, + // 0x8bf7 请 + 247,139,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,129,255,255,255,248,255,129,255,255,255,248,255,129,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,142,63,255,254,0,3,142,63,255,254,0,3,142,63,255,254,0,3,240,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0, + // 0x8bfb 读 + 251,139,45,48,32,48,0,250,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,255,240,0,0,0,56,255,240,0,0,0,56,255,240,0,0,0,56,0,112,0,224,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,126,0,28,1,192,0,126,0,28,1,192,0,126,0,28,1,192,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,0,63,0,0,56,0,0,63,0,0,56,0,0,63,0,0,56, + // 0x8c03 调 + 3,140,42,45,14,48,0,250,28,1,255,255,255,192,28,1,255,255,255,192,28,1,255,255,255,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,0,1,199,255,241,192,0,1,199,255,241,192,0,1,199,255,241,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,255,129,192,28,1,192,255,129,192,28,1,192,255,129,192,28,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,199,255,241,192,3,129,199,255,241,192,3,129,199,255,241,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,143,199,0,113,192,3,143,199,0,113,192,3,143,199,0,113,192,3,241,199,255,241,192,3,241,199,255,241,192,3,241,199,255,241,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x8d25 败 + 37,141,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,28,1,192,28,0,0,28,1,192,28,0,0,28,1,192,28,0,0,28,113,192,224,0,0,28,113,192,224,0,0,28,113,192,224,0,0,28,113,192,255,255,248,28,113,192,255,255,248,28,113,192,255,255,248,28,113,199,0,14,0,28,113,199,0,14,0,28,113,199,0,14,0,28,113,248,224,14,0,28,113,248,224,14,0,28,113,248,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,28,113,192,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,142,0,28,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56, + // 0x8d2a 贪 + 42,141,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,3,240,0,224,126,0,3,240,0,224,126,0,3,240,0,224,126,0,252,15,255,255,129,248,252,15,255,255,129,248,252,15,255,255,129,248,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,0,56,31,128,0,0,0,56,31,128,0,0,0,56,31,128,0,0,15,192,0,126,0,0,15,192,0,126,0,0,15,192,0,126,0,31,240,0,0,1,192,31,240,0,0,1,192,31,240,0,0,1,192, + // 0x8d77 起 + 119,141,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,255,254,0,0,14,0,255,254,0,0,14,0,255,254,0,31,255,248,0,14,0,31,255,248,0,14,0,31,255,248,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,255,255,248,255,254,0,255,255,248,255,254,0,255,255,248,255,254,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,3,142,0,224,0,0,3,142,0,224,0,0,3,142,0,224,0,0,3,142,0,224,0,0,3,142,0,224,0,0,3,142,0,224,0,0,3,143,248,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,31,255,192,3,142,0,31,255,192,3,142,0,31,255,192,28,126,0,0,0,0,28,126,0,0,0,0,28,126,0,0,0,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x8d85 超 + 133,141,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,7,255,255,192,0,14,7,255,255,192,0,14,7,255,255,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,31,255,248,28,1,192,31,255,248,28,1,192,31,255,248,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,224,113,192,0,14,0,224,113,192,0,14,0,224,113,192,255,255,255,0,14,0,255,255,255,0,14,0,255,255,255,0,14,0,0,14,0,255,255,192,0,14,0,255,255,192,0,14,0,255,255,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,3,142,0,255,255,192,3,142,0,255,255,192,3,142,0,255,255,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,126,0,0,0,0,28,126,0,0,0,0,28,126,0,0,0,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x8ddd 距 + 221,141,45,42,252,48,0,253,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,28,127,199,0,1,192,28,127,199,0,1,192,28,127,199,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,0,0,0,28,112,7,0,0,0,28,112,7,0,0,0,28,127,199,0,0,0,28,127,199,0,0,0,28,127,199,0,0,0,255,128,7,0,0,0,255,128,7,0,0,0,255,128,7,0,0,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248, + // 0x8f6c 转 + 108,143,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,112,63,255,255,248,224,112,63,255,255,248,224,112,63,255,255,248,255,255,192,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,127,192,0,1,192,0,127,192,0,1,192,0,127,192,0,1,192,255,240,0,224,14,0,255,240,0,224,14,0,255,240,0,224,14,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x8f6f 软 + 111,143,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,248,31,255,192,255,255,248,31,255,192,255,255,248,31,255,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,28,14,7,3,128,0,28,14,7,3,128,0,28,14,7,3,128,0,31,255,248,3,128,0,31,255,248,3,128,0,31,255,248,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,15,248,28,112,0,0,15,248,28,112,0,0,15,248,28,112,0,255,254,0,28,112,0,255,254,0,28,112,0,255,254,0,28,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,7,0,1,192,0,14,7,0,1,192,0,14,7,0,1,192,0,14,56,0,0,56,0,14,56,0,0,56,0,14,56,0,0,56, + // 0x8f74 轴 + 116,143,42,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,224,112,7,3,129,192,224,112,7,3,129,192,224,112,7,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,127,199,3,129,192,0,127,199,3,129,192,0,127,199,3,129,192,255,240,7,3,129,192,255,240,7,3,129,192,255,240,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192, + // 0x8f7d 载 + 125,143,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,28,14,0,3,142,0,28,14,0,3,142,0,28,14,0,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,15,255,0,112,56,0,15,255,0,112,56,0,15,255,0,112,56,255,254,0,3,142,56,255,254,0,3,142,56,255,254,0,3,142,56,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56, + // 0x8f91 辑 + 145,143,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,7,255,254,0,3,128,7,255,254,0,3,128,7,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,255,255,199,0,14,0,255,255,199,0,14,0,255,255,199,0,14,0,28,0,7,255,254,0,28,0,7,255,254,0,28,0,7,255,254,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,255,255,199,0,14,0,255,255,199,0,14,0,255,255,199,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,127,199,255,254,0,0,127,199,255,254,0,0,127,199,255,254,0,255,240,7,0,14,0,255,240,7,0,14,0,255,240,7,0,14,0,28,112,7,3,255,248,28,112,7,3,255,248,28,112,7,3,255,248,0,113,255,252,14,0,0,113,255,252,14,0,0,113,255,252,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0, + // 0x8f93 输 + 147,143,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,3,129,199,255,241,248,3,129,199,255,241,248,3,129,199,255,241,248,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,112,63,252,1,192,28,112,63,252,1,192,28,112,63,252,1,192,224,112,56,28,113,192,224,112,56,28,113,192,224,112,56,28,113,192,255,254,56,28,113,192,255,254,56,28,113,192,255,254,56,28,113,192,0,112,63,252,113,192,0,112,63,252,113,192,0,112,63,252,113,192,0,126,56,28,113,192,0,126,56,28,113,192,0,126,56,28,113,192,255,240,56,28,113,192,255,240,56,28,113,192,255,240,56,28,113,192,28,112,63,252,113,192,28,112,63,252,113,192,28,112,63,252,113,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,113,192,0,112,56,28,113,192,0,112,56,28,113,192,0,112,56,252,14,0,0,112,56,252,14,0,0,112,56,252,14,0, + // 0x8fb9 边 + 185,143,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,255,240,0,28,1,192,255,240,0,28,1,192,255,240,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fc1 迁 + 193,143,45,45,14,48,0,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,241,255,255,255,248,255,241,255,255,255,248,255,241,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fd0 运 + 208,143,45,42,252,48,0,253,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,255,255,192,0,1,255,255,255,192,0,1,255,255,255,192,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fd1 近 + 209,143,45,45,14,48,0,253,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,255,240,7,0,112,0,255,240,7,0,112,0,255,240,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fd4 返 + 212,143,45,45,14,48,0,253,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,0,112,63,252,0,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,255,240,56,0,1,192,255,240,56,0,1,192,255,240,56,0,1,192,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,0,1,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fd8 还 + 216,143,45,42,252,48,0,253,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,240,0,252,112,0,255,240,0,252,112,0,255,240,0,252,112,0,0,112,7,28,14,0,0,112,7,28,14,0,0,112,7,28,14,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fdb 进 + 219,143,45,45,14,48,0,253,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,255,240,0,224,112,0,255,240,0,224,112,0,255,240,0,224,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fde 连 + 222,143,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,3,128,0,255,240,63,255,255,192,255,240,63,255,255,192,255,240,63,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8ff7 迷 + 247,143,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,0,112,7,28,14,0,0,112,7,28,14,0,0,112,7,28,14,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,1,255,255,255,192,0,1,255,255,255,192,0,1,255,255,255,192,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9000 退 + 0,144,45,45,14,48,0,253,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,255,240,63,255,254,0,255,240,63,255,254,0,255,240,63,255,254,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,63,0,1,192,0,112,63,0,1,192,0,112,63,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9009 选 + 9,144,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,0,112,56,28,0,0,0,112,56,28,0,0,0,112,56,28,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,241,255,255,255,192,255,241,255,255,255,192,255,241,255,255,255,192,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,113,192,0,127,192,0,113,192,0,127,192,0,113,192,0,127,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x901f 速 + 31,144,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x90e8 部 + 232,144,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,14,0,3,255,248,0,14,0,3,255,248,0,14,0,3,255,248,31,255,255,227,128,56,31,255,255,227,128,56,31,255,255,227,128,56,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,255,255,255,255,129,192,255,255,255,255,129,192,255,255,255,255,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,3,255,255,3,128,56,3,255,255,3,128,56,3,255,255,3,128,56,3,128,7,3,128,56,3,128,7,3,128,56,3,128,7,3,128,56,3,128,7,3,241,192,3,128,7,3,241,192,3,128,7,3,241,192,3,128,7,3,142,0,3,128,7,3,142,0,3,128,7,3,142,0,3,255,255,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x914d 配 + 77,145,45,45,14,48,0,250,255,255,248,0,0,0,255,255,248,0,0,0,255,255,248,0,0,0,3,142,0,255,254,0,3,142,0,255,254,0,3,142,0,255,254,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,255,255,248,0,14,0,255,255,248,0,14,0,255,255,248,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,0,14,0,227,142,56,255,254,0,227,142,56,255,254,0,227,142,56,255,254,0,227,143,248,224,14,0,227,143,248,224,14,0,227,143,248,224,14,0,252,0,56,224,0,0,252,0,56,224,0,0,252,0,56,224,0,0,224,0,56,224,0,0,224,0,56,224,0,0,224,0,56,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,255,255,248,31,255,248,255,255,248,31,255,248,255,255,248,31,255,248,224,0,56,0,0,0,224,0,56,0,0,0,224,0,56,0,0,0, + // 0x91ca 释 + 202,145,45,48,32,48,0,250,0,15,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0,255,240,63,255,255,192,255,240,63,255,255,192,255,240,63,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,3,254,0,28,112,0,3,254,0,28,112,0,3,254,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,192,252,126,0,255,255,192,252,126,0,255,255,192,252,126,0,0,112,63,3,129,248,0,112,63,3,129,248,0,112,63,3,129,248,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,254,7,255,255,192,3,254,7,255,255,192,3,254,7,255,255,192,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,63,255,255,248,224,112,63,255,255,248,224,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x91cd 重 + 205,145,45,45,14,48,0,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x91cf 量 + 207,145,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192, + // 0x9488 针 + 136,148,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,248,3,128,0,0,127,248,3,128,0,0,127,248,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,224,112,63,255,255,248,224,112,63,255,255,248,224,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x94ae 钮 + 174,148,45,45,14,48,0,253,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,3,255,192,28,14,0,3,255,192,28,14,0,3,255,192,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,227,255,192,28,14,0,227,255,192,28,14,0,227,255,192,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,255,255,192,224,14,0,255,255,192,224,14,0,255,255,192,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,192,224,14,0,0,126,0,224,14,0,0,126,0,224,14,0,0,126,0,224,14,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248, + // 0x9519 错 + 25,149,45,48,32,48,0,250,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,254,7,0,112,0,3,254,7,0,112,0,3,254,7,0,112,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,31,254,7,0,112,0,31,254,7,0,112,0,31,254,7,0,112,0,227,143,255,255,255,248,227,143,255,255,255,248,227,143,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,255,254,63,255,254,0,255,254,63,255,254,0,255,254,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0, + // 0x955c 镜 + 92,149,45,48,32,48,0,250,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,254,63,255,254,0,3,254,63,255,254,0,3,254,63,255,254,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,31,241,255,255,255,248,31,241,255,255,255,248,31,241,255,255,255,248,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,142,7,3,128,0,3,142,7,3,128,0,3,142,7,3,128,0,3,240,7,3,128,56,3,240,7,3,128,56,3,240,7,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,3,128,56,0,15,192,0,127,248,0,15,192,0,127,248,0,15,192,0,127,248, + // 0x957f 长 + 127,149,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,56,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,56,0,126,0,0,14,56,0,126,0,0,14,56,0,126,0,0,15,192,0,1,248,0,15,192,0,1,248,0,15,192,0,1,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0, + // 0x95ed 闭 + 237,149,39,48,240,48,3,250,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,3,143,255,255,254,3,143,255,255,254,3,143,255,255,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,63,0,14,224,0,63,0,14,224,0,63,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,112,7,0,14,224,112,7,0,14,224,112,7,0,14,227,128,7,0,14,227,128,7,0,14,227,128,7,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x95f2 闲 + 242,149,39,48,240,48,3,250,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,3,143,255,255,254,3,143,255,255,254,3,143,255,255,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,1,255,0,14,224,1,255,0,14,224,1,255,0,14,224,14,56,224,14,224,14,56,224,14,224,14,56,224,14,224,112,56,28,14,224,112,56,28,14,224,112,56,28,14,227,128,56,3,142,227,128,56,3,142,227,128,56,3,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x95f4 间 + 244,149,39,48,240,48,3,250,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,3,129,255,255,254,3,129,255,255,254,3,129,255,255,254,3,128,0,0,14,3,128,0,0,14,3,128,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,15,255,224,14,224,15,255,224,14,224,15,255,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,15,255,224,14,224,15,255,224,14,224,15,255,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,224,15,255,224,14,224,15,255,224,14,224,15,255,224,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,0,3,142,224,0,0,3,142,224,0,0,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x9608 阈 + 8,150,39,48,240,48,3,250,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,3,143,255,255,254,3,143,255,255,254,3,143,255,255,254,0,0,7,0,14,0,0,7,0,14,0,0,7,0,14,224,0,7,28,14,224,0,7,28,14,224,0,7,28,14,224,0,7,3,142,224,0,7,3,142,224,0,7,3,142,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,127,199,28,14,224,127,199,28,14,224,127,199,28,14,224,113,199,28,14,224,113,199,28,14,224,113,199,28,14,224,127,199,28,14,224,127,199,28,14,224,127,199,28,14,224,0,7,224,14,224,0,7,224,14,224,0,7,224,14,224,15,192,227,142,224,15,192,227,142,224,15,192,227,142,227,240,7,31,142,227,240,7,31,142,227,240,7,31,142,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,0,0,0,126,224,0,0,0,126,224,0,0,0,126, + // 0x964d 降 + 77,150,42,48,32,48,3,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,254,7,0,0,0,255,254,7,0,0,0,255,254,7,0,0,0,224,14,7,255,254,0,224,14,7,255,254,0,224,14,7,255,254,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,199,3,128,0,224,113,199,3,128,0,224,113,199,3,128,0,227,128,0,252,0,0,227,128,0,252,0,0,227,128,0,252,0,0,224,112,63,3,240,0,224,112,63,3,240,0,224,112,63,3,240,0,224,127,192,28,15,192,224,127,192,28,15,192,224,127,192,28,15,192,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,252,113,192,28,0,0,252,113,192,28,0,0,252,113,192,28,0,0,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x9650 限 + 80,150,42,45,14,48,3,250,255,241,255,255,240,0,255,241,255,255,240,0,255,241,255,255,240,0,224,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,227,129,255,255,240,0,227,129,255,255,240,0,227,129,255,255,240,0,252,1,192,0,112,0,252,1,192,0,112,0,252,1,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,227,129,192,0,112,0,224,113,255,255,240,0,224,113,255,255,240,0,224,113,255,255,240,0,224,113,192,224,14,0,224,113,192,224,14,0,224,113,192,224,14,0,224,113,192,224,112,0,224,113,192,224,112,0,224,113,192,224,112,0,252,113,192,31,128,0,252,113,192,31,128,0,252,113,192,31,128,0,227,129,192,28,0,0,227,129,192,28,0,0,227,129,192,28,0,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,199,0,112,0,224,1,199,0,112,0,224,1,199,0,112,0,224,1,248,0,15,192,224,1,248,0,15,192,224,1,248,0,15,192,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0, + // 0x9664 除 + 100,150,42,45,14,48,3,250,255,240,0,224,0,0,255,240,0,224,0,0,255,240,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,56,3,128,0,227,128,56,3,128,0,227,128,56,3,128,0,252,1,192,0,112,0,252,1,192,0,112,0,252,1,192,0,112,0,227,142,63,255,143,192,227,142,63,255,143,192,227,142,63,255,143,192,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,113,255,255,254,0,224,113,255,255,254,0,224,113,255,255,254,0,252,112,0,224,0,0,252,112,0,224,0,0,252,112,0,224,0,0,227,128,56,227,128,0,227,128,56,227,128,0,227,128,56,227,128,0,224,1,192,224,112,0,224,1,192,224,112,0,224,1,192,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,0,56,224,14,0,224,0,56,224,14,0,224,0,56,224,14,0,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0, + // 0x9669 险 + 105,150,42,48,32,48,3,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,255,240,0,224,0,0,255,240,0,224,0,0,255,240,0,224,0,0,224,112,7,28,0,0,224,112,7,28,0,0,224,112,7,28,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,56,3,128,0,227,128,56,3,128,0,227,128,56,3,128,0,252,1,192,0,112,0,252,1,192,0,112,0,252,1,192,0,112,0,227,142,63,255,143,192,227,142,63,255,143,192,227,142,63,255,143,192,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,224,112,0,252,113,192,224,112,0,252,113,192,224,112,0,252,113,192,224,112,0,227,128,56,227,128,0,227,128,56,227,128,0,227,128,56,227,128,0,224,0,56,3,128,0,224,0,56,3,128,0,224,0,56,3,128,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,15,255,255,255,192,224,15,255,255,255,192,224,15,255,255,255,192,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x96f6 零 + 246,150,45,48,32,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,127,199,31,241,192,224,127,199,31,241,192,224,127,199,31,241,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,199,31,240,0,0,127,199,31,240,0,0,127,199,31,240,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,3,240,56,0,126,0,3,240,56,0,126,0,3,240,56,0,126,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,127,255,255,128,0,0,127,255,255,128,0,0,127,255,255,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,1,248,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x9700 需 + 0,151,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,127,199,31,241,192,224,127,199,31,241,192,224,127,199,31,241,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,199,31,240,0,0,127,199,31,240,0,0,127,199,31,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0, + // 0x9752 青 + 82,151,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x975e 非 + 94,151,45,48,32,48,0,250,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0, + // 0x9760 靠 + 96,151,45,48,32,48,0,250,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,3,255,192,31,254,0,3,255,192,31,254,0,3,255,192,31,254,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0, + // 0x9762 面 + 98,151,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0, + // 0x9875 页 + 117,152,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,3,129,199,3,128,3,129,199,3,128,3,129,199,3,128,0,1,192,224,0,0,1,192,224,0,0,1,192,224,0,0,14,0,28,0,0,14,0,28,0,0,14,0,28,0,3,240,0,3,128,3,240,0,3,128,3,240,0,3,128,252,0,0,0,112,252,0,0,0,112,252,0,0,0,112, + // 0x9879 项 + 121,152,45,45,14,48,0,250,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,192,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,127,199,28,1,192,0,127,199,28,1,192,0,127,199,28,1,192,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,28,112,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x9884 预 + 132,152,45,45,14,48,0,250,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,227,128,7,0,1,192,227,128,7,0,1,192,227,128,7,0,1,192,28,0,56,0,0,56,28,0,56,0,0,56,28,0,56,0,0,56, + // 0x9891 频 + 145,152,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,127,192,28,0,0,28,127,192,28,0,0,28,127,192,28,0,0,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,255,255,255,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,224,1,192,28,112,0,224,1,192,28,112,0,224,1,192,28,112,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,252,0,56,0,0,56,252,0,56,0,0,56,252,0,56,0,0,56, + // 0x989d 额 + 157,152,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,14,0,255,255,248,0,14,0,255,255,248,0,14,0,255,255,248,31,255,255,0,112,0,31,255,255,0,112,0,31,255,255,0,112,0,28,0,7,3,128,0,28,0,7,3,128,0,28,0,7,3,128,0,0,112,0,31,255,192,0,112,0,31,255,192,0,112,0,31,255,192,0,127,248,28,1,192,0,127,248,28,1,192,0,127,248,28,1,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,28,113,192,0,14,0,28,113,192,0,14,0,28,113,192,0,14,0,28,113,192,0,113,192,28,113,192,0,113,192,28,113,192,0,113,192,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,31,255,255,28,113,192,31,255,255,28,113,192,31,255,255,28,113,192,227,128,56,3,142,0,227,128,56,3,142,0,227,128,56,3,142,0,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,255,248,28,0,56,3,255,248,28,0,56,3,255,248,28,0,56,3,128,56,224,0,56,3,128,56,224,0,56,3,128,56,224,0,56, + // 0x98ce 风 + 206,152,45,45,14,48,0,250,3,255,255,255,240,0,3,255,255,255,240,0,3,255,255,255,240,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,56,3,128,56,224,112,56,3,128,56,224,112,56,3,129,192,28,14,56,3,129,192,28,14,56,3,129,192,28,14,56,28,14,0,28,14,56,28,14,0,28,14,56,28,14,0,28,14,56,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,1,248,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56, + // 0x9971 饱 + 113,153,45,45,14,48,0,253,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,254,7,0,1,192,3,254,7,0,1,192,3,254,7,0,1,192,28,14,56,0,1,192,28,14,56,0,1,192,28,14,56,0,1,192,28,113,199,255,241,192,28,113,199,255,241,192,28,113,199,255,241,192,224,0,7,0,113,192,224,0,7,0,113,192,224,0,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,255,241,192,3,128,7,255,241,192,3,128,7,255,241,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,3,142,0,3,128,7,3,142,0,3,128,7,3,142,0,3,142,7,0,112,56,3,142,7,0,112,56,3,142,7,0,112,56,3,240,7,0,0,56,3,240,7,0,0,56,3,240,7,0,0,56,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248, + // 0x9a6c 马 + 108,154,42,45,14,48,0,250,31,255,255,255,128,0,31,255,255,255,128,0,31,255,255,255,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,255,255,255,255,129,192,255,255,255,255,129,192,255,255,255,255,129,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0, + // 0x9a71 驱 + 113,154,45,45,14,48,0,250,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,28,1,192,28,14,7,28,1,192,28,14,7,28,1,192,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,31,255,199,0,112,0,31,255,199,0,112,0,31,255,199,0,112,0,0,1,199,0,112,0,0,1,199,0,112,0,0,1,199,0,112,0,0,1,199,3,142,0,0,1,199,3,142,0,0,1,199,3,142,0,0,127,199,3,142,0,0,127,199,3,142,0,0,127,199,3,142,0,255,129,199,28,1,192,255,129,199,28,1,192,255,129,199,28,1,192,28,1,199,224,1,192,28,1,199,224,1,192,28,1,199,224,1,192,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,3,142,7,255,255,248,3,142,7,255,255,248,3,142,7,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x9ad8 高 + 216,154,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,0,0,0,15,192,28,0,0,0,15,192,28,0,0,0,15,192, + // 0x9ec4 黄 + 196,158,45,48,32,48,0,250,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192, + // 0x9ede 點 + 222,158,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,252,113,248,0,112,0,252,113,248,0,112,0,252,113,248,0,112,0,227,254,56,0,127,248,227,254,56,0,127,248,227,254,56,0,127,248,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,255,255,248,255,255,248,255,255,248,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,255,128,0,224,0,56,255,128,0,224,0,56,255,128,0,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,227,142,56,224,0,56,227,142,56,224,0,56,227,142,56,224,0,56,227,142,0,255,255,248,227,142,0,255,255,248,227,142,0,255,255,248,224,0,0,224,0,56,224,0,0,224,0,56,224,0,0,224,0,56, + // 0x9f50 齐 + 80,159,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,14,0,3,129,248,252,14,0,3,129,248,252,14,0,3,129,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0xff1a : + 26,255,12,21,42,48,18,3,255,240,255,240,255,240,255,240,255,240,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,240,255,240,255,240,255,240,255,240,255,240, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Symbols_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Symbols_30.cpp new file mode 100644 index 000000000000..58600e54a756 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Symbols_30.cpp @@ -0,0 +1,38 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Symbols 48pt, capital 'A' height: 30px, width: 100% +extern const uint8_t Unifont_Symbols_30[140] = { + 129,30,8,0,10,0,42,250, // unifont_t + // 0x08 - LCD_STR_THERMOMETER a.k.a 0x1f321 🌡 + 15,36,72,48,15,0,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,28,112,28,112,28,112,28,112,28,112,28,112,31,240,31,240,31,240,31,240,31,240,31,240,31,240,31,240,31,240,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,31,240,31,240,31,240, + // 0x09 - LCD_STR_DEGREE a.k.a 0x00b0 ° + 12,12,24,24,6,18,31,128,31,128,31,128,224,112,224,112,224,112,224,112,224,112,224,112,31,128,31,128,31,128, + // 0x0a - replacement for 0x2026 used in Greek language files … + 21,6,18,24,3,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Traditional_Chinese_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Traditional_Chinese_30.cpp new file mode 100644 index 000000000000..a3b16c4ecac0 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Traditional_Chinese_30.cpp @@ -0,0 +1,646 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Traditional Chinese 48pt, capital 'A' height: 30px, width: 100%, range: 0x22bf-0xff1a, glyphs: 307 +extern const uint8_t Unifont_Traditional_Chinese_30[18862] = { + 161,30,191,34,26,255,42,250, // unifont_t + // 0x22bf ⊿ + 191,34,18,18,54,24,3,0,0,1,192,0,1,192,0,1,192,0,15,192,0,15,192,0,15,192,0,113,192,0,113,192,0,113,192,3,129,192,3,129,192,3,129,192,28,1,192,28,1,192,28,1,192,255,255,192,255,255,192,255,255,192, + // 0x4e00 一 + 0,78,45,3,18,48,0,18,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e09 三 + 9,78,45,36,216,48,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e0a 上 + 10,78,45,45,14,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e0b 下 + 11,78,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x4e0d 不 + 13,78,42,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,63,28,0,0,0,0,63,28,0,0,0,0,63,28,0,0,0,1,199,3,128,0,0,1,199,3,128,0,0,1,199,3,128,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,28,0,7,0,1,192,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x4e26 並 + 38,78,45,45,14,48,0,253,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,0,113,192,28,14,0,0,113,192,28,14,0,0,113,192,28,14,0,0,113,192,28,112,0,0,113,192,28,112,0,0,113,192,28,112,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e2d 中 + 45,78,33,48,240,48,6,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,1,192,3,128,224,1,192,3,128,224,1,192,3,128,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x4e3b 主 + 59,78,45,45,14,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x4e4b 之 + 75,78,42,45,14,48,3,253,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,240,0,255,255,255,255,240,0,255,255,255,255,240,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,224,1,255,255,255,192,224,1,255,255,255,192,224,1,255,255,255,192, + // 0x4ea4 交 + 164,78,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,28,0,0,0,15,192,28,0,0,0,15,192,28,0,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,3,240,0,252,0,0,0,15,248,252,0,0,0,15,248,252,0,0,0,15,248, + // 0x4eae 亮 + 174,78,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,1,255,252,1,192,224,1,255,252,1,192,224,1,255,252,1,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,3,240,0,28,0,56,3,240,0,28,0,56,3,240,0,28,0,56,252,0,0,3,255,248,252,0,0,3,255,248,252,0,0,3,255,248, + // 0x4ee4 令 + 228,78,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,56,3,128,0,0,14,56,3,128,0,0,14,56,3,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x4ef6 件 + 246,78,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x4efd 份 + 253,78,45,48,32,48,0,250,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,14,0,224,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,3,240,56,0,1,192,3,240,56,0,1,192,3,240,56,0,1,192,28,113,199,255,254,56,28,113,199,255,254,56,28,113,199,255,254,56,224,112,0,224,14,0,224,112,0,224,14,0,224,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0, + // 0x4f11 休 + 17,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,255,128,0,3,240,0,255,128,0,3,240,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,28,112,0,255,128,0,224,112,7,28,112,0,224,112,7,28,112,0,224,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,126,0,28,0,56,0,126,0,28,0,56,0,126,0,28,0,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x4f4d 位 + 77,79,45,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,14,0,3,240,0,0,14,0,3,240,0,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x4f4e 低 + 78,79,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,0,14,63,255,128,0,0,14,63,255,128,0,0,14,63,255,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,3,240,56,3,128,0,28,112,63,255,255,248,28,112,63,255,255,248,28,112,63,255,255,248,224,112,56,3,128,0,224,112,56,3,128,0,224,112,56,3,128,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,14,56,0,112,56,0,14,56,0,112,56,0,14,56,0,112,56,224,14,56,0,112,56,224,14,56,0,112,56,224,14,56,0,112,63,3,129,248,0,112,63,3,129,248,0,112,63,3,129,248,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56,0,112,56, + // 0x4f5c 作 + 92,79,45,48,32,48,0,250,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,0,112,56,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,3,240,56,224,0,0,3,240,56,224,0,0,3,240,56,224,0,0,3,241,192,224,0,0,3,241,192,224,0,0,3,241,192,224,0,0,28,112,0,255,254,0,28,112,0,255,254,0,28,112,0,255,254,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0, + // 0x4f9b 供 + 155,79,45,48,32,48,0,250,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192,0,126,0,0,1,192, + // 0x4fdd 保 + 221,79,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,56,0,14,0,0,14,56,0,14,0,0,14,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,126,0,28,0,56,0,126,0,28,0,56,0,126,0,28,0,56,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x4fe1 信 + 225,79,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,63,255,255,248,0,14,63,255,255,248,0,14,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,7,255,255,192,224,112,7,255,255,192,224,112,7,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192, + // 0x500b 個 + 11,80,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,227,129,199,255,241,192,227,129,199,255,241,192,227,129,199,255,241,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,255,241,192,3,129,199,255,241,192,3,129,199,255,241,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192, + // 0x503c 值 + 60,80,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,15,255,255,255,192,0,15,255,255,255,192,0,15,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,56,0,14,0,3,240,56,0,14,0,3,240,56,0,14,0,28,112,63,255,254,0,28,112,63,255,254,0,28,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x504f 偏 + 79,80,42,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,192,0,0,0,31,129,192,0,0,0,31,129,192,0,0,0,227,129,192,0,0,0,227,129,192,0,0,0,227,129,192,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,248,227,129,192,3,129,248,227,129,192,3,129,248,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,63,255,255,192,3,142,63,255,255,192,3,142,63,255,255,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,142,56,227,129,192,3,240,56,227,129,192,3,240,56,227,129,192,3,240,56,227,129,192,3,128,56,0,15,192,3,128,56,0,15,192,3,128,56,0,15,192, + // 0x505c 停 + 92,80,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,31,128,56,0,14,0,31,128,56,0,14,0,31,128,56,0,14,0,31,128,63,255,254,0,31,128,63,255,254,0,31,128,63,255,254,0,227,128,0,0,0,0,227,128,0,0,0,0,227,128,0,0,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0, + // 0x5075 偵 + 117,80,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,31,129,192,0,1,192,31,129,192,0,1,192,31,129,192,0,1,192,31,129,192,0,1,192,31,129,192,0,1,192,31,129,192,0,1,192,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192, + // 0x5099 備 + 153,80,45,48,32,48,0,250,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,63,255,255,248,0,14,63,255,255,248,0,14,63,255,255,248,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,241,255,255,255,248,3,241,255,255,255,248,3,241,255,255,255,248,3,240,0,224,0,0,3,240,0,224,0,0,3,240,0,224,0,0,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,224,112,63,3,129,192,224,112,63,3,129,192,224,112,63,3,129,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,0,15,192,0,112,7,0,15,192,0,112,7,0,15,192, + // 0x50b3 傳 + 179,80,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,255,255,255,192,31,129,192,28,1,192,31,129,192,28,1,192,31,129,192,28,1,192,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x50be 傾 + 190,80,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,31,129,192,224,1,192,31,129,192,224,1,192,31,129,192,224,1,192,31,129,255,224,1,192,31,129,255,224,1,192,31,129,255,224,1,192,227,129,192,255,255,192,227,129,192,255,255,192,227,129,192,255,255,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,199,224,1,192,3,129,199,224,1,192,3,129,199,224,1,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,0,0,56, + // 0x5132 儲 + 50,81,45,48,32,48,0,250,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,31,254,56,0,112,56,31,254,56,0,112,56,31,254,56,3,143,255,0,112,56,3,143,255,0,112,56,3,143,255,0,112,56,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,31,143,255,31,255,248,31,143,255,31,255,248,31,143,255,31,255,248,31,128,0,0,14,0,31,128,0,0,14,0,31,128,0,0,14,0,227,143,255,0,112,0,227,143,255,0,112,0,227,143,255,0,112,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,143,255,31,129,192,3,143,255,31,129,192,3,143,255,31,129,192,3,142,7,227,129,192,3,142,7,227,129,192,3,142,7,227,129,192,3,142,7,3,255,192,3,142,7,3,255,192,3,142,7,3,255,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,143,255,3,129,192,3,143,255,3,129,192,3,143,255,3,129,192,3,142,7,3,255,192,3,142,7,3,255,192,3,142,7,3,255,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192, + // 0x5145 充 + 69,81,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,1,192,28,14,0,0,1,192,28,14,0,0,1,192,28,14,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,31,128,0,3,255,192,31,128,0,3,255,192,31,128,0,3,255,192, + // 0x5148 先 + 72,81,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,252,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,0, + // 0x5149 光 + 73,81,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,3,255,248,3,128,0,3,255,248,3,128,0,3,255,248,252,0,0,0,0,0,252,0,0,0,0,0,252,0,0,0,0,0, + // 0x5165 入 + 101,81,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,224,0,0,0,1,248,224,0,0,0,1,248,224,0,0,0,1,248, + // 0x5168 全 + 104,81,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,143,255,255,142,0,3,143,255,255,142,0,3,143,255,255,142,0,252,0,7,0,1,248,252,0,7,0,1,248,252,0,7,0,1,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192, + // 0x5171 共 + 113,81,42,48,32,48,3,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,31,255,255,255,254,0,31,255,255,255,254,0,31,255,255,255,254,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x5177 具 + 119,81,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0, + // 0x5197 冗 + 151,81,45,42,252,48,0,250,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,252,0,0,0,15,255,252,0,0,0,15,255,252,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x51b7 冷 + 183,81,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,0,113,192,3,129,248,0,113,192,3,129,248,0,113,192,3,129,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,128,0,0,14,0,255,128,0,0,14,0,255,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x51c6 准 + 198,81,45,48,32,48,0,250,0,0,7,28,0,0,0,0,7,28,0,0,0,0,7,28,0,0,28,0,7,3,128,0,28,0,7,3,128,0,28,0,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,113,248,3,128,0,0,113,248,3,128,0,0,113,248,3,128,0,0,126,63,255,255,192,0,126,63,255,255,192,0,126,63,255,255,192,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,255,128,56,3,128,0,255,128,56,3,128,0,255,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x51fa 出 + 250,81,39,48,240,48,3,250,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14, + // 0x5206 分 + 6,82,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,224,127,255,255,128,56,224,127,255,255,128,56,224,127,255,255,128,56,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0, + // 0x5217 列 + 23,82,42,48,32,48,0,250,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,255,224,1,192,31,255,255,224,1,192,31,255,255,224,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,127,255,3,129,192,0,127,255,3,129,192,0,127,255,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,224,14,56,3,129,192,224,14,56,3,129,192,224,14,56,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x521d 初 + 29,82,42,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,255,255,192,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,3,241,192,28,1,192,3,241,192,28,1,192,3,241,192,28,1,192,28,126,0,28,1,192,28,126,0,28,1,192,28,126,0,28,1,192,224,113,192,28,1,192,224,113,192,28,1,192,224,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0, + // 0x5230 到 + 48,82,42,48,32,48,0,250,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,255,255,255,224,1,192,255,255,255,224,1,192,255,255,255,224,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,28,0,7,3,129,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,0,14,0,227,129,192,0,14,0,227,129,192,0,14,0,227,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,15,255,224,1,192,0,15,255,224,1,192,0,15,255,224,1,192,255,254,0,0,113,192,255,254,0,0,113,192,255,254,0,0,113,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0, + // 0x5236 制 + 54,82,42,48,32,48,0,250,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,255,255,227,129,192,3,255,255,227,129,192,3,255,255,227,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,255,255,255,255,129,192,255,255,255,255,129,192,255,255,255,255,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,3,255,255,227,129,192,3,255,255,227,129,192,3,255,255,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,248,224,1,192,3,129,199,0,1,192,3,129,199,0,1,192,3,129,199,0,1,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x5237 刷 + 55,82,45,48,32,48,0,250,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,3,255,255,252,0,56,3,255,255,252,0,56,3,255,255,252,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,255,255,252,112,56,3,255,255,252,112,56,3,255,255,252,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,255,255,252,112,56,3,255,255,252,112,56,3,255,255,252,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,28,112,56,224,112,63,28,0,56,224,112,63,28,0,56,224,112,63,28,0,56,0,112,56,224,0,56,0,112,56,224,0,56,0,112,56,224,0,56,0,0,56,0,14,56,0,0,56,0,14,56,0,0,56,0,14,56,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x5275 創 + 117,82,42,48,32,48,0,250,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,15,192,0,1,192,0,15,192,0,1,192,0,15,192,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,227,255,255,3,129,192,227,255,255,3,129,192,227,255,255,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,3,255,255,3,129,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,224,127,255,0,113,192,224,127,255,0,113,192,224,127,255,0,113,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x529b 力 + 155,82,36,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,0,112,0,0,112,3,128,7,0,112,3,128,7,0,112,3,128,7,0,112,28,0,0,227,128,28,0,0,227,128,28,0,0,227,128,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0, + // 0x52a0 加 + 160,82,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,31,255,192,0,112,0,31,255,192,0,112,0,31,255,192,255,255,248,28,1,192,255,255,248,28,1,192,255,255,248,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,31,255,192,28,14,56,28,1,192,28,14,56,28,1,192,28,14,56,28,1,192,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0, + // 0x52d5 動 + 213,82,42,48,32,48,0,250,0,15,255,3,128,0,0,15,255,3,128,0,0,15,255,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,227,128,0,255,255,255,227,128,0,255,255,255,227,128,0,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,31,255,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,15,255,252,1,192,0,15,255,252,1,192,0,15,255,252,1,192,255,254,0,224,113,192,255,254,0,224,113,192,255,254,0,224,113,192,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0, + // 0x5316 化 + 22,83,45,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,252,0,0,3,240,0,252,0,0,3,240,0,252,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,224,112,7,224,0,0,224,112,7,224,0,0,224,112,7,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,0,112,56,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,31,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x534a 半 + 74,83,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x5354 協 + 84,83,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,0,224,1,192,3,128,0,224,1,192,3,128,0,224,1,192,255,254,0,224,1,192,255,254,0,224,1,192,255,254,0,224,1,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,7,0,113,192,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,143,255,227,255,248,3,143,255,227,255,248,3,143,255,227,255,248,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,142,0,227,128,56,3,142,0,227,128,56,3,142,0,227,128,56,3,142,56,227,142,56,3,142,56,227,142,56,3,142,56,227,142,56,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192, + // 0x5361 卡 + 97,83,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5370 印 + 112,83,39,45,225,48,3,250,0,15,192,0,0,0,15,192,0,0,0,15,192,0,0,255,240,7,255,254,255,240,7,255,254,255,240,7,255,254,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,255,255,199,0,14,255,255,199,0,14,255,255,199,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,127,199,28,112,224,127,199,28,112,224,127,199,28,112,255,128,7,3,128,255,128,7,3,128,255,128,7,3,128,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0,0,0,7,0,0, + // 0x5378 卸 + 120,83,42,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,31,255,192,3,255,255,31,255,192,3,255,255,31,255,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,3,143,248,28,1,192,3,143,248,28,1,192,3,143,248,28,1,192,3,142,0,28,1,192,3,142,0,28,1,192,3,142,0,28,1,192,3,142,0,28,113,192,3,142,0,28,113,192,3,142,0,28,113,192,3,143,255,28,14,0,3,143,255,28,14,0,3,143,255,28,14,0,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x537b 卻 + 123,83,42,48,32,48,0,250,0,113,192,0,0,0,0,113,192,0,0,0,0,113,192,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,3,128,7,31,255,192,3,128,7,31,255,192,3,128,7,31,255,192,28,14,7,28,1,192,28,14,7,28,1,192,28,14,7,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,28,0,7,28,1,192,28,0,7,28,1,192,28,0,7,28,1,192,227,255,248,28,1,192,227,255,248,28,1,192,227,255,248,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x539f 原 + 159,83,45,45,14,48,0,250,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,255,255,240,0,3,129,255,255,240,0,3,129,255,255,240,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,112,56,224,1,192,28,112,56,224,1,192,28,112,56,224,1,192,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0, + // 0x53cd 反 + 205,83,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,0,7,28,0,0,28,0,7,28,0,0,28,0,7,28,0,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,224,15,192,0,126,0,224,15,192,0,126,0,224,15,192,0,126,0,3,240,0,0,1,248,3,240,0,0,1,248,3,240,0,0,1,248, + // 0x53d6 取 + 214,83,45,45,14,48,0,250,255,255,255,224,0,0,255,255,255,224,0,0,255,255,255,224,0,0,3,128,56,255,255,192,3,128,56,255,255,192,3,128,56,255,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,129,255,227,142,0,3,129,255,227,142,0,3,129,255,227,142,0,255,254,56,0,112,0,255,254,56,0,112,0,255,254,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,28,0,56,0,112,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,3,142,0,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56, + // 0x53f0 台 + 240,83,39,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,28,0,0,0,14,28,0,0,0,14,28,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,3,255,255,255,128,3,255,255,255,128,3,255,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128, + // 0x5408 合 + 8,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,15,255,255,129,248,252,15,255,255,129,248,252,15,255,255,129,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x5426 否 + 38,84,45,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,1,199,31,128,0,0,1,199,31,128,0,0,1,199,31,128,0,0,14,7,0,126,0,0,14,7,0,126,0,0,14,7,0,126,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,252,0,7,0,0,56,252,0,7,0,0,56,252,0,7,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x544a 告 + 74,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x547d 命 + 125,84,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,241,255,252,126,0,3,241,255,252,126,0,3,241,255,252,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,248,255,254,0,3,255,248,255,254,0,3,255,248,255,254,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,227,142,0,3,255,248,227,142,0,3,255,248,227,142,0,3,128,56,224,112,0,3,128,56,224,112,0,3,128,56,224,112,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x548c 和 + 140,84,42,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,248,0,0,0,0,15,248,0,0,0,0,15,248,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,31,255,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,255,255,255,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,126,0,28,1,192,0,126,0,28,1,192,0,126,0,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,0,127,192,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,3,142,56,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0, + // 0x555f 啟 + 95,85,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,128,7,3,255,248,3,128,7,3,255,248,3,128,7,3,255,248,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,255,255,28,1,192,3,255,255,28,1,192,3,255,255,28,1,192,3,128,0,227,129,192,3,128,0,227,129,192,3,128,0,227,129,192,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,255,255,3,142,0,3,255,255,3,142,0,3,255,255,3,142,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,28,112,7,3,142,0,28,112,7,3,142,0,28,112,7,3,142,0,224,127,255,3,142,0,224,127,255,3,142,0,224,127,255,3,142,0,0,112,7,28,1,192,0,112,7,28,1,192,0,112,7,28,1,192,0,0,0,224,0,56,0,0,0,224,0,56,0,0,0,224,0,56, + // 0x55ae 單 + 174,85,45,45,14,48,0,250,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,28,0,56,224,1,192,28,0,56,224,1,192,28,0,56,224,1,192,28,0,56,224,1,192,28,0,56,224,1,192,28,0,56,224,1,192,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x5634 嘴 + 52,86,45,48,32,48,0,250,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,56,224,113,192,0,0,56,224,113,192,0,0,56,224,113,192,255,240,56,252,126,0,255,240,56,252,126,0,255,240,56,252,126,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,252,112,56,224,112,56,252,112,56,224,112,56,252,112,56,224,113,255,0,15,248,224,113,255,0,15,248,224,113,255,0,15,248,224,112,7,255,240,0,224,112,7,255,240,0,224,112,7,255,240,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,224,126,56,28,1,192,224,126,56,28,1,192,224,126,56,28,1,192,255,240,63,255,255,192,255,240,63,255,255,192,255,240,63,255,255,192,224,112,56,28,1,192,224,112,56,28,1,192,224,112,56,28,1,192,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,113,192,0,1,192,28,113,192,0,1,192,28,113,192,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x5668 器 + 104,86,45,45,14,48,0,250,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,3,128,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,255,248,31,255,192,3,255,248,31,255,192,3,255,248,31,255,192, + // 0x5674 噴 + 116,86,42,48,32,48,3,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,240,0,28,0,0,255,240,0,28,0,0,255,240,0,28,0,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,113,255,255,255,192,224,113,255,255,255,192,224,113,255,255,255,192,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,255,240,63,255,254,0,255,240,63,255,254,0,255,240,63,255,254,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x56de 回 + 222,86,36,42,210,48,6,253,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,255,255,240,255,255,255,255,240,255,255,255,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x56e0 因 + 224,86,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,192,224,14,224,1,192,224,14,224,1,192,224,14,224,14,0,28,14,224,14,0,28,14,224,14,0,28,14,224,112,0,3,142,224,112,0,3,142,224,112,0,3,142,227,128,0,3,142,227,128,0,3,142,227,128,0,3,142,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x56fa 固 + 250,86,39,45,225,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x5716 圖 + 22,87,39,48,240,48,3,250,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,112,0,28,14,224,112,0,28,14,224,112,0,28,14,224,127,255,252,14,224,127,255,252,14,224,127,255,252,14,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,227,128,0,3,142,227,128,0,3,142,227,128,0,3,142,227,143,255,227,142,227,143,255,227,142,227,143,255,227,142,227,142,0,227,142,227,142,0,227,142,227,142,0,227,142,227,255,255,255,142,227,255,255,255,142,227,255,255,255,142,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14, + // 0x5728 在 + 40,87,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x578b 型 + 139,87,45,45,14,48,0,253,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,255,224,1,192,31,255,255,224,1,192,31,255,255,224,1,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,0,112,56,3,129,192,0,112,56,3,129,192,0,112,56,3,129,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,1,192,3,128,56,0,113,192,3,128,56,0,113,192,3,128,56,0,113,192,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x57f7 執 + 247,87,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,3,142,7,28,14,0,3,142,7,28,14,0,3,142,7,28,14,0,31,255,192,252,14,0,31,255,192,252,14,0,31,255,192,252,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,0,255,255,248,227,142,0,255,255,248,227,142,0,255,255,248,227,142,0,0,112,0,224,14,56,0,112,0,224,14,56,0,112,0,224,14,56,0,112,7,0,14,56,0,112,7,0,14,56,0,112,7,0,14,56,0,112,7,0,1,248,0,112,7,0,1,248,0,112,7,0,1,248,0,112,56,0,0,56,0,112,56,0,0,56,0,112,56,0,0,56, + // 0x584a 塊 + 74,88,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,3,129,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,227,142,0,3,128,0,227,142,0,3,128,0,227,142,0,3,254,0,227,241,192,3,254,0,227,241,192,3,254,0,227,241,192,255,128,7,3,255,192,255,128,7,3,255,192,255,128,7,3,255,192,28,0,7,3,128,56,28,0,7,3,128,56,28,0,7,3,128,56,0,0,56,3,128,56,0,0,56,3,128,56,0,0,56,3,128,56,0,1,192,0,127,248,0,1,192,0,127,248,0,1,192,0,127,248, + // 0x586b 填 + 107,88,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,254,56,0,14,0,3,254,56,0,14,0,3,254,56,0,14,0,255,143,255,255,255,248,255,143,255,255,255,248,255,143,255,255,255,248,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192, + // 0x588a 墊 + 138,88,45,45,14,48,0,253,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,31,255,248,3,128,0,31,255,248,3,128,0,31,255,248,3,128,0,0,14,0,255,254,0,0,14,0,255,254,0,0,14,0,255,254,0,255,255,255,3,142,0,255,255,255,3,142,0,255,255,255,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,31,255,255,31,142,56,31,255,255,31,142,56,31,255,255,31,142,56,0,14,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,56,255,255,255,28,113,248,255,255,255,28,113,248,255,255,255,28,113,248,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x5916 外 + 22,89,42,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,3,128,56,31,128,0,3,128,56,31,128,0,3,128,56,31,128,0,28,0,56,28,112,0,28,0,56,28,112,0,28,0,56,28,112,0,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,28,14,0,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x591a 多 + 26,89,36,48,240,48,3,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,15,255,255,128,0,15,255,255,128,0,15,255,255,128,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,31,240,0,224,0,31,240,0,224,0,31,240,0,224,0,0,14,7,0,0,0,14,7,0,0,0,14,7,0,0,0,1,248,224,0,0,1,248,224,0,0,1,248,224,0,0,126,7,0,0,0,126,7,0,0,0,126,7,0,0,255,128,63,255,240,255,128,63,255,240,255,128,63,255,240,0,1,192,0,112,0,1,192,0,112,0,1,192,0,112,0,126,0,3,128,0,126,0,3,128,0,126,0,3,128,31,129,192,28,0,31,129,192,28,0,31,129,192,28,0,0,0,56,224,0,0,0,56,224,0,0,0,56,224,0,0,0,63,0,0,0,0,63,0,0,0,0,63,0,0,0,127,192,0,0,0,127,192,0,0,0,127,192,0,0,255,128,0,0,0,255,128,0,0,0,255,128,0,0,0, + // 0x5920 夠 + 32,89,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,255,248,28,0,0,3,255,248,28,0,0,3,255,248,28,0,0,28,0,56,31,255,248,28,0,56,31,255,248,28,0,56,31,255,248,227,129,192,224,0,56,227,129,192,224,0,56,227,129,192,224,0,56,0,126,7,0,0,56,0,126,7,0,0,56,0,126,7,0,0,56,0,112,0,31,254,56,0,112,0,31,254,56,0,112,0,31,254,56,3,142,0,28,14,56,3,142,0,28,14,56,3,142,0,28,14,56,252,15,255,28,14,56,252,15,255,28,14,56,252,15,255,28,14,56,0,112,7,28,14,56,0,112,7,28,14,56,0,112,7,28,14,56,3,240,56,31,254,56,3,240,56,31,254,56,3,240,56,31,254,56,28,14,56,28,14,56,28,14,56,28,14,56,28,14,56,28,14,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,3,240,0,0,113,192,3,240,0,0,113,192,3,240,0,0,113,192,252,0,0,0,14,0,252,0,0,0,14,0,252,0,0,0,14,0, + // 0x5927 大 + 39,89,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x5929 天 + 41,89,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,252,0,0,0,1,248,252,0,0,0,1,248,252,0,0,0,1,248, + // 0x5931 失 + 49,89,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192, + // 0x59cb 始 + 203,89,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,199,255,255,248,3,129,199,255,255,248,3,129,199,255,255,248,3,129,192,224,0,56,3,129,192,224,0,56,3,129,192,224,0,56,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,224,0,0,255,255,192,224,0,0,255,255,192,224,0,0,255,255,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192, + // 0x5a92 媒 + 146,90,45,48,32,48,0,250,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,255,254,7,0,112,0,255,254,7,0,112,0,255,254,7,0,112,0,3,142,7,255,240,0,3,142,7,255,240,0,3,142,7,255,240,0,3,142,7,0,112,0,3,142,7,0,112,0,3,142,7,0,112,0,3,142,7,255,240,0,3,142,7,255,240,0,3,142,7,255,240,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,3,142,56,28,15,248,3,142,56,28,15,248,3,142,56,28,15,248,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x5b50 子 + 80,91,45,45,14,48,0,250,31,255,255,255,254,0,31,255,255,255,254,0,31,255,255,255,254,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5b58 存 + 88,91,45,48,32,48,0,250,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,7,28,0,0,0,112,7,28,0,0,0,112,7,28,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0, + // 0x5b89 安 + 137,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,1,248,28,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,56,31,128,0,0,0,56,31,128,0,0,0,56,31,128,0,0,15,192,0,112,0,0,15,192,0,112,0,0,15,192,0,112,0,31,240,0,0,14,0,31,240,0,0,14,0,31,240,0,0,14,0, + // 0x5b8c 完 + 140,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,31,128,0,3,255,192,31,128,0,3,255,192,31,128,0,3,255,192, + // 0x5b9a 定 + 154,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x5ba2 客 + 162,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,14,0,0,1,192,224,14,0,0,1,192,224,14,0,0,1,192,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,143,192,28,0,0,3,143,192,28,0,0,3,143,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,192,31,240,0,0,127,192,31,240,0,0,127,192,31,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x5bb9 容 + 185,91,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,252,127,255,255,241,248,252,127,255,255,241,248,252,127,255,255,241,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x5c0d 對 + 13,92,45,48,32,48,0,250,0,113,192,0,14,0,0,113,192,0,14,0,0,113,192,0,14,0,0,113,192,0,14,0,0,113,192,0,14,0,0,113,192,0,14,0,28,113,199,0,14,0,28,113,199,0,14,0,28,113,199,0,14,0,3,241,248,0,14,0,3,241,248,0,14,0,3,241,248,0,14,0,0,113,192,31,255,248,0,113,192,31,255,248,0,113,192,31,255,248,255,255,255,0,14,0,255,255,255,0,14,0,255,255,255,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,3,255,248,0,14,0,3,255,248,0,14,0,3,255,248,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,15,255,0,14,0,0,15,255,0,14,0,0,15,255,0,14,0,31,254,0,3,142,0,31,254,0,3,142,0,31,254,0,3,142,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0, + // 0x5c0f 小 + 15,92,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x5c31 就 + 49,92,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,224,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,28,112,7,0,15,248,28,112,7,0,15,248,28,112,7,0,15,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0, + // 0x5de5 工 + 229,93,45,36,216,48,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x5dee 差 + 238,93,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,113,255,255,254,0,0,113,255,255,254,0,0,113,255,255,254,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192, + // 0x5df2 已 + 242,93,36,42,210,48,6,253,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,255,255,255,252,0,255,255,255,252,0,255,255,255,252,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,31,255,255,255,240,31,255,255,255,240,31,255,255,255,240, + // 0x5e73 平 + 115,94,45,45,14,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,0,112,0,0,14,7,3,128,0,0,14,7,3,128,0,0,14,7,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x5e8a 床 + 138,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,143,255,255,255,192,3,143,255,255,255,192,3,143,255,255,255,192,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,7,252,0,0,3,128,7,252,0,0,3,128,7,252,0,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,128,56,227,128,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,112,0,224,1,248,28,112,0,224,1,248,28,112,0,224,1,248,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0, + // 0x5ea6 度 + 166,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,56,3,128,0,3,128,63,255,128,0,3,128,63,255,128,0,3,128,63,255,128,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,143,255,255,240,0,3,143,255,255,240,0,3,143,255,255,240,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,7,252,0,0,28,0,7,252,0,0,28,0,7,252,0,0,224,1,248,3,240,0,224,1,248,3,240,0,224,1,248,3,240,0,3,254,0,0,15,248,3,254,0,0,15,248,3,254,0,0,15,248, + // 0x5ee2 廢 + 226,94,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,143,255,28,112,0,3,143,255,28,112,0,3,143,255,28,112,0,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,142,56,0,126,0,3,142,56,0,126,0,3,142,56,0,126,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,254,63,31,241,248,3,254,63,31,241,248,3,254,63,31,241,248,3,128,7,28,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,143,255,224,15,192,3,143,255,224,15,192,3,143,255,224,15,192,3,142,0,31,254,0,3,142,0,31,254,0,3,142,0,31,254,0,3,143,255,28,14,0,3,143,255,28,14,0,3,143,255,28,14,0,28,0,7,3,240,0,28,0,7,3,240,0,28,0,7,3,240,0,28,1,199,28,14,0,28,1,199,28,14,0,28,1,199,28,14,0,224,0,56,224,1,192,224,0,56,224,1,192,224,0,56,224,1,192, + // 0x5efa 建 + 250,94,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,254,63,255,254,0,255,254,63,255,254,0,255,254,63,255,254,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,31,254,0,28,0,0,31,254,0,28,0,0,31,254,0,28,0,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,63,255,254,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,3,241,255,255,255,192,3,241,255,255,255,192,3,241,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,143,192,28,0,0,3,143,192,28,0,0,3,143,192,28,0,0,28,0,63,255,255,248,28,0,63,255,255,248,28,0,63,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x5f15 引 + 21,95,36,48,240,48,3,250,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,255,255,248,0,112,255,255,248,0,112,255,255,248,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,31,255,248,0,112,31,255,248,0,112,31,255,248,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,28,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,255,255,248,0,112,255,255,248,0,112,255,255,248,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112,0,113,192,0,112,0,113,192,0,112,0,113,192,0,112,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0x5f85 待 + 133,95,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,3,240,0,0,112,0,3,240,0,0,112,0,3,240,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,113,255,255,255,248,224,113,255,255,255,248,224,113,255,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x5f8c 後 + 140,95,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,28,14,63,255,128,0,28,14,63,255,128,0,28,14,63,255,128,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,240,63,255,255,192,3,240,63,255,255,192,3,240,63,255,255,192,28,112,0,224,1,192,28,112,0,224,1,192,28,112,0,224,1,192,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,63,0,14,0,0,112,63,0,14,0,0,112,63,0,14,0,0,113,192,224,112,0,0,113,192,224,112,0,0,113,192,224,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,7,224,126,0,0,112,7,224,126,0,0,112,7,224,126,0,0,113,248,0,1,248,0,113,248,0,1,248,0,113,248,0,1,248, + // 0x5f91 徑 + 145,95,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,63,255,255,192,0,14,63,255,255,192,0,14,63,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,14,56,28,14,0,28,14,56,28,14,0,28,14,56,28,14,0,0,15,192,224,112,0,0,15,192,224,112,0,0,15,192,224,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,3,240,7,3,129,192,3,240,7,3,129,192,3,240,7,3,129,192,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,63,255,255,192,224,112,63,255,255,192,224,112,63,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x5f9e 從 + 158,95,45,48,32,48,0,250,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,0,14,56,3,128,56,0,14,56,3,128,56,0,14,56,3,128,56,0,113,192,28,0,56,0,113,192,28,0,56,0,113,192,28,0,56,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,7,3,128,0,224,112,7,3,128,0,224,112,7,3,128,0,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,56,227,128,0,0,112,56,227,128,0,0,112,56,227,128,0,0,112,56,31,128,0,0,112,56,31,128,0,0,112,56,31,128,0,0,113,192,3,255,248,0,113,192,3,255,248,0,113,192,3,255,248,0,126,0,0,0,0,0,126,0,0,0,0,0,126,0,0,0,0, + // 0x5fa9 復 + 169,95,45,48,32,48,0,250,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,14,7,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,28,15,199,255,255,192,28,15,199,255,255,192,28,15,199,255,255,192,0,14,7,0,1,192,0,14,7,0,1,192,0,14,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,7,224,126,0,0,112,7,224,126,0,0,112,7,224,126,0,0,113,248,0,1,248,0,113,248,0,1,248,0,113,248,0,1,248, + // 0x5fae 微 + 174,95,45,48,32,48,0,250,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,113,199,28,14,0,0,113,199,28,14,0,0,113,199,28,14,0,3,129,199,28,14,0,3,129,199,28,14,0,3,129,199,28,14,0,28,1,199,28,112,0,28,1,199,28,112,0,28,1,199,28,112,0,224,113,255,252,127,248,224,113,255,252,127,248,224,113,255,252,127,248,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,31,143,255,252,113,192,31,143,255,252,113,192,31,143,255,252,113,192,227,128,0,0,113,192,227,128,0,0,113,192,227,128,0,0,113,192,3,129,255,224,113,192,3,129,255,224,113,192,3,129,255,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,252,14,0,3,129,192,252,14,0,3,129,192,252,14,0,3,129,192,224,113,192,3,129,192,224,113,192,3,129,192,224,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,240,0,3,128,56,3,240,0,3,128,56,3,240,0,3,128,56, + // 0x5fc3 心 + 195,95,45,42,252,48,0,253,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,0,56,3,129,192,0,0,56,3,129,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,0,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,0,0,63,255,240,0,0,0,63,255,240,0,0,0,63,255,240,0, + // 0x6027 性 + 39,96,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,126,7,255,255,192,0,126,7,255,255,192,0,126,7,255,255,192,28,113,199,3,128,0,28,113,199,3,128,0,28,113,199,3,128,0,28,112,56,3,128,0,28,112,56,3,128,0,28,112,56,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x6062 恢 + 98,96,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,126,0,224,0,0,0,126,0,224,0,0,0,126,0,224,0,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,7,0,112,56,28,112,7,0,112,56,28,112,7,0,112,56,224,112,7,28,112,56,224,112,7,28,112,56,224,112,7,28,112,56,0,112,7,28,113,192,0,112,7,28,113,192,0,112,7,28,113,192,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,0,0,56,0,112,7,0,0,56,0,112,7,0,0,56, + // 0x606f 息 + 111,96,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,224,1,255,255,240,0,224,1,255,255,240,0,224,1,255,255,240,0, + // 0x61b6 憶 + 182,97,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,126,7,0,14,0,0,126,7,0,14,0,0,126,7,0,14,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,255,255,255,248,28,113,255,255,255,248,28,113,255,255,255,248,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,63,255,255,192,224,112,63,255,255,192,224,112,63,255,255,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,199,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,113,199,0,14,56,0,113,199,0,14,56,0,113,199,0,14,56,0,126,0,255,254,56,0,126,0,255,254,56,0,126,0,255,254,56, + // 0x61c9 應 + 201,97,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,255,255,248,3,143,199,224,112,0,3,143,199,224,112,0,3,143,199,224,112,0,3,241,192,255,255,192,3,241,192,255,255,192,3,241,192,255,255,192,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,224,112,0,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,255,255,248,3,129,192,224,0,0,3,129,192,224,0,0,3,129,192,224,0,0,28,0,56,28,1,192,28,0,56,28,1,192,28,0,56,28,1,192,28,112,56,28,14,56,28,112,56,28,14,56,28,112,56,28,14,56,224,112,56,0,14,56,224,112,56,0,14,56,224,112,56,0,14,56,3,128,7,255,254,0,3,128,7,255,254,0,3,128,7,255,254,0, + // 0x6210 成 + 16,98,45,48,32,48,0,250,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,255,255,255,255,248,3,255,255,255,255,248,3,255,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,255,248,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,142,56,3,240,56,3,142,56,3,240,56,3,142,56,3,240,56,28,1,192,28,14,56,28,1,192,28,14,56,28,1,192,28,14,56,28,0,0,224,1,248,28,0,0,224,1,248,28,0,0,224,1,248,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56, + // 0x6236 戶 + 54,98,39,48,240,48,0,250,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,255,254,0,0,0,255,254,0,0,0,255,254,0,127,255,0,0,0,127,255,0,0,0,127,255,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,127,255,255,254,0,127,255,255,254,0,127,255,255,254,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,127,255,255,254,0,127,255,255,254,0,127,255,255,254,0,112,0,0,14,0,112,0,0,14,0,112,0,0,14,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,0,0,0, + // 0x6240 所 + 64,98,45,48,32,48,0,250,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,1,255,0,127,192,0,1,255,0,127,192,0,1,255,0,127,192,3,254,0,255,128,0,3,254,0,255,128,0,3,254,0,255,128,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,255,248,224,0,0,3,255,248,224,0,0,3,255,248,224,0,0,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x6247 扇 + 71,98,42,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,255,255,255,255,192,3,255,255,255,255,192,3,255,255,255,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,255,255,31,255,192,3,255,255,31,255,192,3,255,255,31,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,129,199,0,113,192,3,129,199,0,113,192,3,129,199,0,113,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,112,7,28,1,192,28,112,7,28,1,192,28,112,7,28,1,192,224,1,199,0,113,192,224,1,199,0,113,192,224,1,199,0,113,192,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0, + // 0x624b 手 + 75,98,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0, + // 0x6253 打 + 83,98,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,227,128,0,28,112,0,227,128,0,28,112,0,227,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0, + // 0x6279 批 + 121,98,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,255,255,199,0,112,56,255,255,199,0,112,56,255,255,199,0,112,56,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,252,126,0,0,112,7,252,126,0,0,112,7,252,126,0,0,113,199,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,0,126,7,0,112,0,0,126,7,0,112,0,0,126,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,3,240,7,0,112,0,252,112,7,0,112,0,252,112,7,0,112,0,252,112,7,0,112,0,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,0,112,56,0,112,7,28,112,56,0,112,7,28,112,56,0,112,7,28,112,56,0,112,7,224,112,56,0,112,7,224,112,56,0,112,7,224,112,56,28,112,7,0,15,248,28,112,7,0,15,248,28,112,7,0,15,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0, + // 0x6296 抖 + 150,98,45,48,32,48,0,250,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,192,224,112,0,0,113,192,224,112,0,0,113,192,224,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,240,0,0,127,248,3,240,0,0,127,248,3,240,0,0,127,248,252,112,63,255,240,0,252,112,63,255,240,0,252,112,63,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0, + // 0x62bd 抽 + 189,98,42,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,0,126,7,3,129,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192, + // 0x62d4 拔 + 212,98,45,48,32,48,0,250,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,113,192,224,0,0,0,126,0,255,255,192,0,126,0,255,255,192,0,126,0,255,255,192,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,252,112,7,28,1,192,252,112,7,28,1,192,252,112,7,28,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,28,113,192,28,1,192,28,113,192,28,1,192,28,113,192,28,1,192,3,128,7,224,0,56,3,128,7,224,0,56,3,128,7,224,0,56, + // 0x6309 按 + 9,99,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,254,56,0,0,56,255,254,56,0,0,56,255,254,56,0,0,56,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,126,63,255,255,248,0,126,63,255,255,248,0,126,63,255,255,248,3,240,0,224,14,0,3,240,0,224,14,0,3,240,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,252,112,0,0,112,0,252,112,0,0,112,0,252,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,28,112,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,3,128,63,0,1,192,3,128,63,0,1,192,3,128,63,0,1,192, + // 0x6389 掉 + 137,99,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,126,7,0,1,192,0,126,7,0,1,192,0,126,7,0,1,192,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,252,112,7,3,129,192,252,112,7,3,129,192,252,112,7,3,129,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x63a2 探 + 162,99,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,255,254,7,0,112,0,255,254,7,0,112,0,255,254,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,241,255,255,255,192,3,241,255,255,255,192,3,241,255,255,255,192,255,128,0,28,0,0,255,128,0,28,0,0,255,128,0,28,0,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,143,192,28,1,248,3,143,192,28,1,248,3,143,192,28,1,248,227,128,0,28,0,0,227,128,0,28,0,0,227,128,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0, + // 0x63a5 接 + 165,99,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,255,199,0,14,0,255,255,199,0,14,0,255,255,199,0,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,0,126,0,28,0,0,3,241,255,255,255,248,3,241,255,255,255,248,3,241,255,255,255,248,252,112,0,224,14,0,252,112,0,224,14,0,252,112,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,28,112,7,224,126,0,28,112,7,224,126,0,28,112,7,224,126,0,3,129,248,0,1,192,3,129,248,0,1,192,3,129,248,0,1,192, + // 0x63a7 控 + 167,99,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,254,56,0,0,56,255,254,56,0,0,56,255,254,56,0,0,56,0,113,192,224,113,192,0,113,192,224,113,192,0,113,192,224,113,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,126,56,0,1,192,0,126,56,0,1,192,0,126,56,0,1,192,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,252,112,7,255,255,192,252,112,7,255,255,192,252,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,113,255,255,255,248,28,113,255,255,255,248,28,113,255,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0, + // 0x63d0 提 + 208,99,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,126,0,0,0,0,0,126,0,0,0,0,0,126,0,0,0,0,3,240,63,255,255,248,3,240,63,255,255,248,3,240,63,255,255,248,252,112,0,3,128,0,252,112,0,3,128,0,252,112,0,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,255,192,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,28,112,56,227,128,0,28,112,56,227,128,0,28,112,56,227,128,0,3,129,192,31,255,248,3,129,192,31,255,248,3,129,192,31,255,248, + // 0x63d2 插 + 210,99,45,48,32,48,0,250,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,129,255,252,0,0,3,129,255,252,0,0,3,129,255,252,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,142,7,28,0,0,3,142,7,28,0,0,3,142,7,28,0,0,3,241,248,28,127,192,3,241,248,28,127,192,3,241,248,28,127,192,255,129,192,28,1,192,255,129,192,28,1,192,255,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,255,28,127,192,3,129,255,28,127,192,3,129,255,28,127,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192, + // 0x63db 換 + 219,99,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,56,0,0,56,0,112,56,0,0,56,0,112,56,0,0,56,0,126,56,28,112,56,0,126,56,28,112,56,0,126,56,28,112,56,3,240,56,224,14,56,3,240,56,224,14,56,3,240,56,224,14,56,252,112,56,3,128,56,252,112,56,3,128,56,252,112,56,3,128,56,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,3,129,248,0,0,56,3,129,248,0,0,56,3,129,248,0,0,56, + // 0x64c7 擇 + 199,100,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,56,28,112,56,0,112,56,28,112,56,0,112,56,28,112,56,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,126,63,255,255,248,0,126,63,255,255,248,0,126,63,255,255,248,3,240,0,224,14,0,3,240,0,224,14,0,3,240,0,224,14,0,252,112,0,28,112,0,252,112,0,28,112,0,252,112,0,28,112,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x64ca 擊 + 202,100,45,48,32,48,0,250,0,14,0,3,255,192,0,14,0,3,255,192,0,14,0,3,255,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,3,142,56,3,129,192,3,142,56,3,129,192,3,142,56,3,129,192,3,255,248,28,0,56,3,255,248,28,0,56,3,255,248,28,0,56,3,142,56,3,255,192,3,142,56,3,255,192,3,142,56,3,255,192,255,255,255,227,129,192,255,255,255,227,129,192,255,255,255,227,129,192,28,14,7,0,126,0,28,14,7,0,126,0,28,14,7,0,126,0,31,255,255,31,129,248,31,255,255,31,129,248,31,255,255,31,129,248,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,127,255,252,0,0,0,127,255,252,0,0,0,127,255,252,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0, + // 0x64cb 擋 + 203,100,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,7,28,112,0,3,128,7,28,112,0,3,128,7,28,112,0,3,129,255,255,255,248,3,129,255,255,255,248,3,129,255,255,255,248,255,241,192,0,0,56,255,241,192,0,0,56,255,241,192,0,0,56,3,142,0,0,1,192,3,142,0,0,1,192,3,142,0,0,1,192,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,240,63,255,254,0,3,240,63,255,254,0,3,240,63,255,254,0,255,128,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192, + // 0x64e0 擠 + 224,100,45,48,32,48,0,250,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,255,240,0,227,129,192,255,240,0,227,129,192,255,240,0,227,129,192,3,143,255,28,126,0,3,143,255,28,126,0,3,143,255,28,126,0,3,129,199,28,113,192,3,129,199,28,113,192,3,129,199,28,113,192,3,129,199,28,112,56,3,129,199,28,112,56,3,129,199,28,112,56,3,254,63,28,126,0,3,254,63,28,126,0,3,254,63,28,126,0,255,128,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,227,128,56,0,14,0,227,128,56,0,14,0,227,128,56,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0, + // 0x6536 收 + 54,101,42,48,32,48,3,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,7,0,0,0,224,112,7,0,0,0,224,112,7,0,0,0,224,112,7,255,255,192,224,112,7,255,255,192,224,112,7,255,255,192,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,199,0,112,0,224,113,199,0,112,0,224,113,199,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,224,112,7,0,112,0,227,240,0,227,128,0,227,240,0,227,128,0,227,240,0,227,128,0,252,112,0,227,128,0,252,112,0,227,128,0,252,112,0,227,128,0,224,112,0,28,0,0,224,112,0,28,0,0,224,112,0,28,0,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,113,192,0,1,192,0,113,192,0,1,192,0,113,192,0,1,192, + // 0x653e 放 + 62,101,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,255,248,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,224,14,7,0,1,192,224,14,7,0,1,192,224,14,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x6557 敗 + 87,101,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,255,255,248,28,1,192,255,255,248,28,1,192,255,255,248,31,255,199,0,14,0,31,255,199,0,14,0,31,255,199,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,28,1,248,224,14,0,28,1,248,224,14,0,28,1,248,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,3,142,0,28,112,0,3,142,0,28,112,0,3,142,0,28,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56, + // 0x6574 整 + 116,101,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,227,255,248,255,255,255,227,255,248,255,255,255,227,255,248,0,14,0,28,1,192,0,14,0,28,1,192,0,14,0,28,1,192,31,255,255,227,129,192,31,255,255,227,129,192,31,255,255,227,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,3,142,56,0,112,0,3,142,56,0,112,0,3,142,56,0,112,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,224,14,0,28,1,248,224,14,0,28,1,248,224,14,0,28,1,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6578 數 + 120,101,45,48,32,48,0,250,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,31,255,255,0,112,0,31,255,255,0,112,0,31,255,255,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,255,255,255,227,128,0,255,255,255,227,128,0,255,255,255,227,128,0,28,14,7,3,255,248,28,14,7,3,255,248,28,14,7,3,255,248,31,255,255,28,1,192,31,255,255,28,1,192,31,255,255,28,1,192,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,255,255,255,0,112,0,255,255,255,0,112,0,255,255,255,0,112,0,3,128,7,3,142,0,3,128,7,3,142,0,3,128,7,3,142,0,31,240,56,3,142,0,31,240,56,3,142,0,31,240,56,3,142,0,0,15,192,28,1,192,0,15,192,28,1,192,0,15,192,28,1,192,255,240,63,224,0,56,255,240,63,224,0,56,255,240,63,224,0,56, + // 0x6599 料 + 153,101,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,28,14,56,28,14,0,28,14,56,28,14,0,28,14,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,143,192,0,14,0,3,143,192,0,14,0,3,143,192,0,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,0,126,0,28,14,0,0,126,0,28,14,0,0,126,0,28,14,0,0,127,192,0,14,0,0,127,192,0,14,0,0,127,192,0,14,0,3,142,56,0,15,248,3,142,56,0,15,248,3,142,56,0,15,248,3,142,56,255,254,0,3,142,56,255,254,0,3,142,56,255,254,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0, + // 0x659c 斜 + 156,101,45,48,32,48,0,250,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,28,0,7,0,14,0,28,0,7,0,14,0,28,0,7,0,14,0,227,255,248,28,14,0,227,255,248,28,14,0,227,255,248,28,14,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,31,255,255,0,15,248,31,255,255,0,15,248,31,255,255,0,15,248,0,14,0,31,254,0,0,14,0,31,254,0,0,14,0,31,254,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,56,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,28,14,7,0,14,0,28,14,7,0,14,0,28,14,7,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,3,142,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0, + // 0x65b0 新 + 176,101,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,31,255,255,31,254,0,31,255,255,31,254,0,31,255,255,31,254,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,255,255,255,31,255,248,255,255,255,31,255,248,255,255,255,31,255,248,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,31,255,255,28,14,0,31,255,255,28,14,0,31,255,255,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,3,142,56,28,14,0,28,14,7,28,14,0,28,14,7,28,14,0,28,14,7,28,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x65b7 斷 + 183,101,42,48,32,48,3,250,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,227,128,7,3,254,0,227,128,7,3,254,0,227,128,7,3,254,0,227,254,56,227,128,0,227,254,56,227,128,0,227,254,56,227,128,0,224,112,63,227,128,0,224,112,63,227,128,0,224,112,63,227,128,0,227,142,7,3,128,0,227,142,7,3,128,0,227,142,7,3,128,0,227,254,63,227,255,192,227,254,63,227,255,192,227,254,63,227,255,192,224,14,0,227,142,0,224,14,0,227,142,0,224,14,0,227,142,0,255,255,255,227,142,0,255,255,255,227,142,0,255,255,255,227,142,0,224,112,7,3,142,0,224,112,7,3,142,0,224,112,7,3,142,0,227,128,7,3,142,0,227,128,7,3,142,0,227,128,7,3,142,0,227,254,56,227,142,0,227,254,56,227,142,0,227,254,56,227,142,0,224,112,63,227,142,0,224,112,63,227,142,0,224,112,63,227,142,0,227,142,7,3,142,0,227,142,7,3,142,0,227,142,7,3,142,0,227,254,63,227,142,0,227,254,63,227,142,0,227,254,63,227,142,0,224,14,0,252,14,0,224,14,0,252,14,0,224,14,0,252,14,0,255,255,255,224,14,0,255,255,255,224,14,0,255,255,255,224,14,0, + // 0x65bc 於 + 188,101,45,45,14,48,0,253,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,248,28,112,0,255,255,248,28,112,0,255,255,248,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,255,199,0,1,192,3,255,199,0,1,192,3,255,199,0,1,192,3,129,248,0,0,56,3,129,248,0,0,56,3,129,248,0,0,56,3,129,192,31,128,0,3,129,192,31,128,0,3,129,192,31,128,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,112,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,252,0,0,3,129,192,252,0,0,3,129,192,252,0,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,113,192,0,112,0,28,113,192,0,112,0,28,113,192,0,112,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0, + // 0x6607 昇 + 7,102,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,3,128,0,0,1,255,3,128,0,0,1,255,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x660e 明 + 14,102,39,45,225,48,3,250,0,0,7,255,254,0,0,7,255,254,0,0,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,255,254,224,14,7,255,254,224,14,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,255,254,224,14,7,255,254,224,14,7,255,254,255,254,7,0,14,255,254,7,0,14,255,254,7,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,1,192,3,142,0,1,192,3,142,0,1,192,3,142,0,14,0,0,112,0,14,0,0,112,0,14,0,0,112, + // 0x662f 是 + 47,102,45,48,32,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,3,142,7,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,224,0,63,255,255,248,224,0,63,255,255,248,224,0,63,255,255,248, + // 0x6642 時 + 66,102,42,48,32,48,3,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,255,254,0,28,0,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,15,255,255,255,192,224,15,255,255,255,192,224,15,255,255,255,192,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,63,255,255,192,224,14,63,255,255,192,224,14,63,255,255,192,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,7,0,112,0,224,14,7,0,112,0,224,14,7,0,112,0,255,254,0,224,112,0,255,254,0,224,112,0,255,254,0,224,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x66ab 暫 + 171,102,42,48,32,48,3,250,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,255,255,248,255,240,0,255,255,248,255,240,0,255,255,248,255,240,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,224,112,56,255,255,192,224,112,56,255,255,192,224,112,56,255,255,192,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,224,112,56,224,112,0,224,112,56,224,112,0,224,112,56,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,255,255,255,128,0,3,255,255,255,128,0,3,255,255,255,128,0, + // 0x66f4 更 + 244,102,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,1,248,0,0,0,0,1,248,0,0,0,0,1,248,0,0,0,0,126,7,252,0,0,0,126,7,252,0,0,0,126,7,252,0,0,255,128,0,3,255,248,255,128,0,3,255,248,255,128,0,3,255,248, + // 0x6700 最 + 0,103,45,48,32,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,255,248,255,254,0,3,255,248,255,254,0,3,255,248,255,254,0,3,128,56,224,14,0,3,128,56,224,14,0,3,128,56,224,14,0,3,255,248,224,112,0,3,255,248,224,112,0,3,255,248,224,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,128,56,28,112,0,3,143,255,3,128,0,3,143,255,3,128,0,3,143,255,3,128,0,255,240,56,28,112,0,255,240,56,28,112,0,255,240,56,28,112,0,28,0,56,224,14,0,28,0,56,224,14,0,28,0,56,224,14,0,0,0,63,0,1,248,0,0,63,0,1,248,0,0,63,0,1,248, + // 0x6709 有 + 9,103,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,3,143,255,255,240,0,3,143,255,255,240,0,3,143,255,255,240,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,28,112,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0, + // 0x677f 板 + 127,103,45,48,32,48,0,250,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,127,192,0,112,0,0,127,192,0,112,0,0,127,192,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,199,0,0,0,255,255,199,0,0,0,255,255,199,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,240,7,28,1,192,3,240,7,28,1,192,3,240,7,28,1,192,3,254,7,28,1,192,3,254,7,28,1,192,3,254,7,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,3,142,0,28,113,199,3,142,0,28,113,199,3,142,0,224,112,7,3,142,0,224,112,7,3,142,0,224,112,7,3,142,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,224,0,56,0,113,192,224,0,56,0,113,192,224,0,56, + // 0x67f1 柱 + 241,103,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,3,254,0,3,128,0,3,254,0,3,128,0,3,254,0,3,128,0,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x6821 校 + 33,104,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,255,255,192,0,0,0,255,255,192,0,0,0,255,255,192,0,0,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,240,7,0,1,192,3,240,7,0,1,192,3,240,7,0,1,192,3,254,56,0,0,56,3,254,56,0,0,56,3,254,56,0,0,56,28,113,192,224,14,0,28,113,192,224,14,0,28,113,192,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,224,112,0,28,112,0,224,112,0,28,112,0,224,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,63,0,1,248,0,112,63,0,1,248,0,112,63,0,1,248, + // 0x683c 格 + 60,104,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,255,254,63,0,112,0,255,254,63,0,112,0,255,254,63,0,112,0,0,113,192,227,128,0,0,113,192,227,128,0,0,113,192,227,128,0,3,240,0,28,0,0,3,240,0,28,0,0,3,240,0,28,0,0,3,254,0,227,128,0,3,254,0,227,128,0,3,254,0,227,128,0,28,113,199,0,126,0,28,113,199,0,126,0,28,113,199,0,126,0,28,112,56,0,1,248,28,112,56,0,1,248,28,112,56,0,1,248,224,113,199,255,254,0,224,113,199,255,254,0,224,113,199,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x689d 條 + 157,104,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,3,241,199,28,112,0,3,241,199,28,112,0,3,241,199,28,112,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,113,192,252,126,0,224,113,192,252,126,0,224,113,192,252,126,0,0,113,255,3,129,248,0,113,255,3,129,248,0,113,255,3,129,248,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,227,142,0,0,113,192,227,142,0,0,113,192,227,142,0,0,113,199,3,129,192,0,113,199,3,129,192,0,113,199,3,129,192,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x68c4 棄 + 196,104,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,199,28,0,0,0,1,199,28,0,0,0,1,199,28,0,0,0,126,7,3,240,0,0,126,7,3,240,0,0,126,7,3,240,0,255,128,7,0,15,248,255,128,7,0,15,248,255,128,7,0,15,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x69fd 槽 + 253,105,45,48,32,48,0,250,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,113,255,255,255,248,0,113,255,255,255,248,0,113,255,255,255,248,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,0,112,56,224,113,192,0,112,56,224,113,192,0,112,56,224,113,192,3,240,63,255,255,192,3,240,63,255,255,192,3,240,63,255,255,192,3,254,56,224,113,192,3,254,56,224,113,192,3,254,56,224,113,192,28,113,255,255,255,192,28,113,255,255,255,192,28,113,255,255,255,192,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,112,7,255,254,0,224,112,7,255,254,0,224,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0, + // 0x6a59 橙 + 89,106,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,113,255,227,129,192,0,113,255,227,129,192,0,113,255,227,129,192,0,112,0,227,142,0,0,112,0,227,142,0,0,112,0,227,142,0,0,112,56,224,112,56,0,112,56,224,112,56,0,112,56,224,112,56,255,254,7,0,113,192,255,254,7,0,113,192,255,254,7,0,113,192,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,3,241,199,255,241,192,3,241,199,255,241,192,3,241,199,255,241,192,3,254,0,0,0,56,3,254,0,0,0,56,3,254,0,0,0,56,28,113,255,255,254,0,28,113,255,255,254,0,28,113,255,255,254,0,28,112,56,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,224,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,255,248,0,127,255,255,255,248,0,127,255,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x6a5f 機 + 95,106,45,48,32,48,0,250,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,56,227,142,56,0,112,56,227,142,56,0,112,56,227,142,56,0,112,63,227,143,248,0,112,63,227,143,248,0,112,63,227,143,248,255,254,7,3,129,192,255,254,7,3,129,192,255,254,7,3,129,192,0,112,56,227,142,56,0,112,56,227,142,56,0,112,56,227,142,56,3,240,63,227,143,248,3,240,63,227,143,248,3,240,63,227,143,248,3,254,7,3,129,192,3,254,7,3,129,192,3,254,7,3,129,192,28,113,255,255,255,248,28,113,255,255,255,248,28,113,255,255,255,248,28,112,7,0,112,0,28,112,7,0,112,0,28,112,7,0,112,0,224,112,7,0,113,192,224,112,7,0,113,192,224,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,112,56,224,14,56,0,112,56,224,14,56,0,112,56,224,14,56,0,112,56,28,14,56,0,112,56,28,14,56,0,112,56,28,14,56,0,112,56,0,113,248,0,112,56,0,113,248,0,112,56,0,113,248,0,113,192,3,128,56,0,113,192,3,128,56,0,113,192,3,128,56, + // 0x6aa2 檢 + 162,106,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,255,199,0,1,192,255,255,199,0,1,192,255,255,199,0,1,192,0,112,56,255,254,56,0,112,56,255,254,56,0,112,56,255,254,56,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0,3,254,0,0,0,0,3,254,0,0,0,0,3,254,0,0,0,0,28,113,199,252,127,192,28,113,199,252,127,192,28,113,199,252,127,192,28,113,199,28,113,192,28,113,199,28,113,192,28,113,199,28,113,192,224,112,7,28,113,192,224,112,7,28,113,192,224,112,7,28,113,192,0,112,7,252,127,192,0,112,7,252,127,192,0,112,7,252,127,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,28,113,192,0,112,7,28,113,192,0,112,7,28,113,192,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56, + // 0x6b62 止 + 98,107,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6b63 正 + 99,107,45,42,252,48,0,253,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x6b65 步 + 101,107,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,28,0,0,252,0,0,28,0,0,252,0,0,28,0,0,252,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,0,127,192,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0, + // 0x6b78 歸 + 120,107,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,31,255,192,255,255,192,31,255,192,255,255,192,31,255,192,255,255,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,28,127,199,255,255,192,28,127,199,255,255,192,28,127,199,255,255,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,28,112,7,3,129,192,28,127,199,3,241,192,28,127,199,3,241,192,28,127,199,3,241,192,255,128,7,3,142,0,255,128,7,3,142,0,255,128,7,3,142,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x6bbc 殼 + 188,107,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,31,254,0,0,14,0,31,254,0,0,14,0,31,254,0,31,255,255,28,14,0,31,255,255,28,14,0,31,255,255,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,0,14,0,28,14,0,3,255,248,28,14,0,3,255,248,28,14,0,3,255,248,28,14,0,0,0,0,224,1,248,0,0,0,224,1,248,0,0,0,224,1,248,31,255,255,0,0,0,31,255,255,0,0,0,31,255,255,0,0,0,28,0,7,255,255,192,28,0,7,255,255,192,28,0,7,255,255,192,227,255,248,28,1,192,227,255,248,28,1,192,227,255,248,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,3,255,192,3,142,0,3,255,192,3,142,0,3,255,192,3,142,0,3,129,192,3,142,0,3,129,192,3,142,0,3,129,192,3,142,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,248,3,142,0,3,129,248,3,142,0,3,129,248,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,0,7,224,0,56,224,0,7,224,0,56,224,0,7,224,0,56, + // 0x6bd4 比 + 212,107,39,45,225,48,6,253,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,112,224,0,56,0,112,224,0,56,0,112,224,0,56,3,128,224,0,56,3,128,224,0,56,3,128,224,0,56,28,0,224,0,56,28,0,224,0,56,28,0,255,254,56,224,0,255,254,56,224,0,255,254,56,224,0,224,0,63,0,0,224,0,63,0,0,224,0,63,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,0,224,0,56,0,14,224,0,56,0,14,224,0,56,0,14,224,126,56,0,14,224,126,56,0,14,224,126,56,0,14,255,128,56,0,14,255,128,56,0,14,255,128,56,0,14,224,0,7,255,254,224,0,7,255,254,224,0,7,255,254, + // 0x6c92 沒 + 146,108,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192,28,0,56,3,142,0,28,0,56,3,142,0,28,0,56,3,142,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,0,14,63,255,255,192,0,14,63,255,255,192,0,14,63,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,128,0,224,14,0,255,128,0,224,14,0,255,128,0,224,14,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,7,224,14,0,3,128,7,224,14,0,3,128,7,224,14,0,0,1,248,0,1,248,0,1,248,0,1,248,0,1,248,0,1,248, + // 0x6d88 消 + 136,109,39,48,240,48,0,250,0,0,0,28,0,0,0,0,28,0,0,0,0,28,0,3,128,56,28,14,3,128,56,28,14,3,128,56,28,14,0,112,7,28,14,0,112,7,28,14,0,112,7,28,14,0,112,7,28,112,0,112,7,28,112,0,112,7,28,112,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0,28,0,63,255,254,28,0,63,255,254,28,0,63,255,254,28,14,56,0,14,28,14,56,0,14,28,14,56,0,14,0,14,56,0,14,0,14,56,0,14,0,14,56,0,14,0,112,63,255,254,0,112,63,255,254,0,112,63,255,254,0,112,56,0,14,0,112,56,0,14,0,112,56,0,14,255,128,56,0,14,255,128,56,0,14,255,128,56,0,14,3,128,63,255,254,3,128,63,255,254,3,128,63,255,254,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,0,14,3,128,56,3,142,3,128,56,3,142,3,128,56,3,142,0,0,56,0,112,0,0,56,0,112,0,0,56,0,112, + // 0x6de1 淡 + 225,109,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,28,14,0,0,113,192,28,14,0,0,113,192,28,14,0,224,0,0,227,128,0,224,0,0,227,128,0,224,0,0,227,128,0,28,0,7,0,112,0,28,0,7,0,112,0,28,0,7,0,112,0,28,1,248,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,255,128,56,28,14,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,15,192,0,1,248,0,15,192,0,1,248,0,15,192,0,1,248, + // 0x6e05 清 + 5,110,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,224,0,63,255,254,0,224,0,63,255,254,0,224,0,63,255,254,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,255,128,56,0,14,0,255,128,56,0,14,0,255,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,3,142,0,3,128,56,3,142,0,3,128,56,3,142,0,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0, + // 0x6e2c 測 + 44,110,45,48,32,48,0,250,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,3,129,255,252,0,56,3,129,255,252,0,56,3,129,255,252,0,56,0,113,192,28,0,56,0,113,192,28,0,56,0,113,192,28,0,56,0,113,192,28,112,56,0,113,192,28,112,56,0,113,192,28,112,56,224,1,255,252,112,56,224,1,255,252,112,56,224,1,255,252,112,56,28,1,192,28,112,56,28,1,192,28,112,56,28,1,192,28,112,56,28,1,192,28,112,56,28,1,192,28,112,56,28,1,192,28,112,56,0,113,255,252,112,56,0,113,255,252,112,56,0,113,255,252,112,56,0,113,192,28,112,56,0,113,192,28,112,56,0,113,192,28,112,56,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,28,112,56,255,129,255,252,112,56,255,129,255,252,112,56,255,129,255,252,112,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,56,224,0,56,3,128,56,224,0,56,3,128,56,224,0,56,3,128,56,28,0,56,3,128,56,28,0,56,3,128,56,28,0,56,3,129,192,28,14,56,3,129,192,28,14,56,3,129,192,28,14,56,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192, + // 0x6e90 源 + 144,110,45,45,14,48,0,250,3,129,255,255,255,248,3,129,255,255,255,248,3,129,255,255,255,248,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,3,128,0,0,113,192,28,0,0,0,113,192,28,0,0,0,113,192,28,0,0,224,1,199,255,255,192,224,1,199,255,255,192,224,1,199,255,255,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,255,255,192,28,1,199,255,255,192,28,1,199,255,255,192,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,255,255,192,0,113,199,255,255,192,0,113,199,255,255,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,255,129,192,3,128,0,255,129,192,3,128,0,255,129,192,3,128,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,3,142,7,3,129,192,3,142,7,3,129,192,3,142,7,3,129,192,3,142,56,3,128,56,3,142,56,3,128,56,3,142,56,3,128,56,3,240,0,227,128,0,3,240,0,227,128,0,3,240,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x6e96 準 + 150,110,45,48,32,48,0,250,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,224,0,63,255,255,192,224,0,63,255,255,192,224,0,63,255,255,192,28,112,56,28,0,0,28,112,56,28,0,0,28,112,56,28,0,0,0,113,255,255,254,0,0,113,255,255,254,0,0,113,255,255,254,0,3,142,56,28,0,0,3,142,56,28,0,0,3,142,56,28,0,0,255,128,63,255,254,0,255,128,63,255,254,0,255,128,63,255,254,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,56,28,0,0,3,128,63,255,255,192,3,128,63,255,255,192,3,128,63,255,255,192,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x6eab 溫 + 171,110,45,45,14,48,0,253,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,0,14,56,28,14,0,0,14,56,28,14,0,0,14,56,28,14,0,224,14,56,227,142,0,224,14,56,227,142,0,224,14,56,227,142,0,28,112,63,0,14,0,28,112,63,0,14,0,28,112,63,0,14,0,28,112,63,255,254,0,28,112,63,255,254,0,28,112,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,252,1,255,255,255,192,252,1,255,255,255,192,252,1,255,255,255,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,1,192,227,129,192,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248, + // 0x6fc0 激 + 192,111,45,48,32,48,0,250,0,0,56,0,112,0,0,0,56,0,112,0,0,0,56,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,3,143,255,224,112,0,3,143,255,224,112,0,3,143,255,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,0,15,255,227,255,248,0,15,255,227,255,248,0,15,255,227,255,248,224,14,0,227,129,192,224,14,0,227,129,192,224,14,0,227,129,192,28,15,255,252,113,192,28,15,255,252,113,192,28,15,255,252,113,192,28,113,192,0,113,192,28,113,192,0,113,192,28,113,192,0,113,192,0,112,56,0,113,192,0,112,56,0,113,192,0,112,56,0,113,192,3,143,255,252,113,192,3,143,255,252,113,192,3,143,255,252,113,192,255,129,192,0,113,192,255,129,192,0,113,192,255,129,192,0,113,192,3,129,255,224,14,0,3,129,255,224,14,0,3,129,255,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,142,0,224,113,192,3,142,0,224,113,192,3,142,0,224,113,192,3,142,56,224,113,192,3,142,56,224,113,192,3,142,56,224,113,192,0,112,7,3,128,56,0,112,7,3,128,56,0,112,7,3,128,56, + // 0x7121 無 + 33,113,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,127,255,255,255,192,0,127,255,255,255,192,0,127,255,255,255,192,3,142,56,227,128,0,3,142,56,227,128,0,3,142,56,227,128,0,28,14,56,227,128,0,28,14,56,227,128,0,28,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,0,14,56,227,128,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,28,0,56,28,1,192,28,0,56,28,1,192,28,0,56,28,1,192,224,0,0,0,1,192,224,0,0,0,1,192,224,0,0,0,1,192, + // 0x71b1 熱 + 177,113,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,31,255,192,28,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,255,255,248,28,14,0,255,255,248,28,14,0,255,255,248,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,224,112,56,252,14,0,224,112,56,252,14,0,224,112,56,252,14,0,31,255,192,28,14,0,31,255,192,28,14,0,31,255,192,28,14,0,0,112,0,227,142,56,0,112,0,227,142,56,0,112,0,227,142,56,0,127,192,227,142,56,0,127,192,227,142,56,0,127,192,227,142,56,255,128,7,0,1,248,255,128,7,0,1,248,255,128,7,0,1,248,28,0,56,0,0,56,28,0,56,0,0,56,28,0,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192, + // 0x71c8 燈 + 200,113,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,129,255,227,129,192,3,129,255,227,129,192,3,129,255,227,129,192,3,128,0,227,142,0,3,128,0,227,142,0,3,128,0,227,142,0,3,142,56,224,112,56,3,142,56,224,112,56,3,142,56,224,112,56,227,240,7,0,113,192,227,240,7,0,113,192,227,240,7,0,113,192,227,128,56,0,14,0,227,128,56,0,14,0,227,128,56,0,14,0,227,129,199,255,241,192,227,129,199,255,241,192,227,129,199,255,241,192,227,142,0,0,0,56,227,142,0,0,0,56,227,142,0,0,0,56,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,28,112,56,0,14,0,28,112,56,0,14,0,28,112,56,0,14,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,15,255,255,255,248,28,15,255,255,255,248,28,15,255,255,255,248,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0, + // 0x7247 片 + 71,114,39,48,240,48,3,250,0,0,0,224,0,0,0,0,224,0,0,0,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128,0,0,0,3,255,255,252,0,3,255,255,252,0,3,255,255,252,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,3,128,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,224,0,0,28,0,224,0,0,28,0,224,0,0,28,0, + // 0x7269 物 + 105,114,42,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,224,0,0,28,112,0,255,255,192,28,112,0,255,255,192,28,112,0,255,255,192,31,255,199,28,113,192,31,255,199,28,113,192,31,255,199,28,113,192,28,112,56,28,113,192,28,112,56,28,113,192,28,112,56,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,224,112,0,28,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,112,0,224,113,192,0,127,192,224,113,192,0,127,192,224,113,192,0,127,192,224,113,192,255,240,7,3,129,192,255,240,7,3,129,192,255,240,7,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,28,112,56,3,129,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x7387 率 + 135,115,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,143,255,224,14,0,3,143,255,224,14,0,3,143,255,224,14,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,56,28,14,0,3,128,56,28,14,0,3,128,56,28,14,0,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x7528 用 + 40,117,39,45,225,48,0,250,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,3,142,28,0,7,3,142,28,0,7,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x754c 界 + 76,117,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,15,192,31,128,0,0,15,192,31,128,0,0,15,192,31,128,0,3,241,192,28,126,0,3,241,192,28,126,0,3,241,192,28,126,0,252,1,192,28,1,248,252,1,192,28,1,248,252,1,192,28,1,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x767d 白 + 125,118,33,48,240,48,6,250,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,0,0,0,112,0,0,0,0,112,0,0,0,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128,255,255,255,255,128,255,255,255,255,128,255,255,255,255,128,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128, + // 0x7684 的 + 132,118,39,48,240,48,3,250,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,28,0,0,224,0,28,0,0,224,0,28,0,0,224,0,255,255,192,255,254,255,255,192,255,254,255,255,192,255,254,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,1,248,0,14,224,1,248,0,14,224,1,248,0,14,224,1,192,224,14,224,1,192,224,14,224,1,192,224,14,255,255,192,28,14,255,255,192,28,14,255,255,192,28,14,224,1,192,28,14,224,1,192,28,14,224,1,192,28,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,224,1,192,0,14,255,255,192,0,14,255,255,192,0,14,255,255,192,0,14,224,1,192,28,112,224,1,192,28,112,224,1,192,28,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0x76e3 監 + 227,118,45,42,252,48,0,253,3,255,255,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,255,255,3,255,248,3,255,255,3,255,248,3,255,255,3,255,248,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,255,255,28,112,0,3,255,255,28,112,0,3,255,255,28,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,255,255,0,14,0,3,255,255,0,14,0,3,255,255,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x76f4 直 + 244,118,45,45,14,48,0,253,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x7720 眠 + 32,119,42,45,14,48,3,250,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,255,254,63,255,254,0,255,254,63,255,254,0,255,254,63,255,254,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,255,254,63,255,255,192,255,254,63,255,255,192,255,254,63,255,255,192,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,28,0,0,224,14,56,3,128,0,224,14,56,3,128,0,224,14,56,3,128,0,255,254,56,3,129,192,255,254,56,3,129,192,255,254,56,3,129,192,224,14,56,224,113,192,224,14,56,224,113,192,224,14,56,224,113,192,0,0,63,0,15,192,0,0,63,0,15,192,0,0,63,0,15,192,0,0,56,0,1,192,0,0,56,0,1,192,0,0,56,0,1,192, + // 0x780d 砍 + 13,120,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,0,112,0,31,255,192,0,112,0,31,255,192,0,112,0,31,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,255,199,3,128,0,3,255,199,3,128,0,3,255,199,3,128,0,31,129,192,3,128,0,31,129,192,3,128,0,31,129,192,3,128,0,31,129,192,3,128,0,31,129,192,3,128,0,31,129,192,3,128,0,227,129,192,28,112,0,227,129,192,28,112,0,227,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,129,192,28,112,0,3,255,192,224,14,0,3,255,192,224,14,0,3,255,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x78ba 確 + 186,120,45,48,32,48,0,250,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,3,128,56,227,128,56,3,128,56,227,128,56,3,128,56,227,128,56,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,28,0,7,255,255,248,28,0,7,255,255,248,28,0,7,255,255,248,31,254,7,0,112,0,31,254,7,0,112,0,31,254,7,0,112,0,28,14,63,0,112,0,28,14,63,0,112,0,28,14,63,0,112,0,252,15,199,255,255,248,252,15,199,255,255,248,252,15,199,255,255,248,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,255,255,248,28,14,7,255,255,248,28,14,7,255,255,248,31,254,7,0,112,0,31,254,7,0,112,0,31,254,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,28,14,7,0,112,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x79fb 移 + 251,121,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,255,240,0,31,255,192,255,240,0,31,255,192,255,240,0,31,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,7,28,14,0,0,112,7,28,14,0,0,112,7,28,14,0,255,255,192,3,240,0,255,255,192,3,240,0,255,255,192,3,240,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,240,0,28,14,0,3,240,0,28,14,0,3,240,0,28,14,0,3,254,7,224,112,0,3,254,7,224,112,0,3,254,7,224,112,0,28,113,192,3,255,248,28,113,192,3,255,248,28,113,192,3,255,248,28,113,192,28,0,56,28,113,192,28,0,56,28,113,192,28,0,56,224,112,7,227,129,192,224,112,7,227,129,192,224,112,7,227,129,192,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,126,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,7,224,0,0,0,112,7,224,0,0,0,112,7,224,0,0, + // 0x7a4d 積 + 77,122,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,127,199,255,255,248,0,127,199,255,255,248,0,127,199,255,255,248,255,240,0,3,128,0,255,240,0,3,128,0,255,240,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,248,255,255,199,255,255,248,255,255,199,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,240,7,255,255,192,3,240,7,255,255,192,3,240,7,255,255,192,3,254,7,0,1,192,3,254,7,0,1,192,3,254,7,0,1,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,0,1,192,28,113,199,0,1,192,28,113,199,0,1,192,224,112,7,255,255,192,224,112,7,255,255,192,224,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192, + // 0x7aef 端 + 239,122,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,224,14,63,255,255,248,224,14,63,255,255,248,224,14,63,255,255,248,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,28,112,7,28,113,192,0,127,199,28,113,192,0,127,199,28,113,192,0,127,199,28,113,192,255,128,7,28,113,192,255,128,7,28,113,192,255,128,7,28,113,192,28,0,7,28,113,192,28,0,7,28,113,192,28,0,7,28,113,192,0,0,7,0,15,192,0,0,7,0,15,192,0,0,7,0,15,192, + // 0x7b49 等 + 73,123,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,224,1,199,0,14,0,224,1,199,0,14,0,224,1,199,0,14,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,227,128,0,0,1,192,227,128,0,0,1,192,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7ba1 管 + 161,123,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,224,1,199,0,14,0,224,1,199,0,14,0,224,1,199,0,14,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,224,127,255,255,129,192,224,127,255,255,129,192,224,127,255,255,129,192,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,127,255,255,128,0,0,127,255,255,128,0,0,127,255,255,128,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x7bb1 箱 + 177,123,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,3,142,0,224,112,0,3,142,0,224,112,0,3,142,0,224,112,0,28,1,199,0,14,0,28,1,199,0,14,0,28,1,199,0,14,0,224,14,0,0,0,0,224,14,0,0,0,0,224,14,0,0,0,0,0,14,0,255,255,192,0,14,0,255,255,192,0,14,0,255,255,192,31,255,248,224,1,192,31,255,248,224,1,192,31,255,248,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,0,126,0,255,255,192,0,126,0,255,255,192,0,126,0,255,255,192,0,127,192,224,1,192,0,127,192,224,1,192,0,127,192,224,1,192,3,142,56,224,1,192,3,142,56,224,1,192,3,142,56,224,1,192,3,142,56,255,255,192,3,142,56,255,255,192,3,142,56,255,255,192,28,14,0,224,1,192,28,14,0,224,1,192,28,14,0,224,1,192,224,14,0,224,1,192,224,14,0,224,1,192,224,14,0,224,1,192,0,14,0,255,255,192,0,14,0,255,255,192,0,14,0,255,255,192, + // 0x7cfb 系 + 251,124,39,48,240,48,3,250,0,0,7,255,240,0,0,7,255,240,0,0,7,255,240,31,255,248,0,0,31,255,248,0,0,31,255,248,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,112,0,28,0,0,112,0,28,0,0,112,0,28,0,3,128,0,224,0,3,128,0,224,0,3,128,0,224,0,31,255,255,0,0,31,255,255,0,0,31,255,255,0,0,0,0,56,0,0,0,0,56,0,0,0,0,56,0,0,0,15,192,3,128,0,15,192,3,128,0,15,192,3,128,3,240,0,0,112,3,240,0,0,112,3,240,0,0,112,255,255,255,255,254,255,255,255,255,254,255,255,255,255,254,0,0,56,0,14,0,0,56,0,14,0,0,56,0,14,0,112,56,28,0,0,112,56,28,0,0,112,56,28,0,3,128,56,3,128,3,128,56,3,128,3,128,56,3,128,28,0,56,0,112,28,0,56,0,112,28,0,56,0,112,224,14,56,0,14,224,14,56,0,14,224,14,56,0,14,0,1,192,0,0,0,1,192,0,0,0,1,192,0,0, + // 0x7d05 紅 + 5,125,45,45,14,48,0,253,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,224,0,63,255,255,248,224,0,63,255,255,248,224,0,63,255,255,248, + // 0x7d22 索 + 34,125,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,56,0,0,56,28,0,56,0,0,56,28,0,56,0,0,56,224,1,192,3,129,192,224,1,192,3,129,192,224,1,192,3,129,192,0,127,255,252,0,0,0,127,255,252,0,0,0,127,255,252,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,1,248,0,112,0,0,1,248,0,112,0,0,1,248,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0, + // 0x7d2b 紫 + 43,125,42,48,32,48,0,250,0,14,0,224,0,0,0,14,0,224,0,0,0,14,0,224,0,0,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,143,248,255,240,0,3,143,248,255,240,0,3,143,248,255,240,0,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,3,143,248,224,1,192,255,240,0,31,255,192,255,240,0,31,255,192,255,240,0,31,255,192,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,127,255,252,0,0,0,127,255,252,0,0,0,127,255,252,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,0,7,224,0,0,0,1,248,0,112,0,0,1,248,0,112,0,0,1,248,0,112,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0,0,112,7,3,128,0,0,112,7,3,128,0,0,112,7,3,128,0,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,28,0,56,0,14,0,28,0,56,0,14,0,28,0,56,0,14,0, + // 0x7d30 細 + 48,125,42,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,28,1,199,3,129,192,28,1,199,3,129,192,28,1,199,3,129,192,255,254,7,3,129,192,255,254,7,3,129,192,255,254,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,0,1,199,3,129,192,0,1,199,3,129,192,0,1,199,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,224,0,7,255,255,192,224,0,7,255,255,192,224,0,7,255,255,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192, + // 0x7d42 終 + 66,125,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,142,0,224,1,192,3,142,0,224,1,192,3,142,0,224,1,192,28,14,7,224,14,0,28,14,7,224,14,0,28,14,7,224,14,0,255,240,56,28,112,0,255,240,56,28,112,0,255,240,56,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,255,254,63,0,1,248,255,254,63,0,1,248,255,254,63,0,1,248,0,14,0,31,128,0,0,14,0,31,128,0,0,14,0,31,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,227,142,0,0,14,0,227,142,0,0,14,0,227,142,0,0,14,0,227,142,0,252,0,0,227,142,0,252,0,0,227,142,0,252,0,0,224,0,0,3,128,0,224,0,0,3,128,0,224,0,0,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0, + // 0x7d71 統 + 113,125,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,142,63,255,255,248,3,142,63,255,255,248,3,142,63,255,255,248,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,255,240,0,224,14,0,255,240,0,224,14,0,255,240,0,224,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,255,255,192,224,112,0,255,255,192,224,112,0,255,255,192,224,112,0,0,1,192,224,112,0,0,1,192,224,112,0,0,1,192,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,28,113,199,0,112,56,28,113,199,0,112,56,28,113,199,0,112,56,28,113,199,0,112,56,28,113,199,0,112,56,28,113,199,0,112,56,224,0,56,0,15,248,224,0,56,0,15,248,224,0,56,0,15,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0, + // 0x7d72 絲 + 114,125,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,28,1,199,255,240,0,28,1,199,255,240,0,28,1,199,255,240,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,255,255,192,3,129,192,255,255,192,3,129,192,255,255,192,3,129,192,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,0,0,227,142,0,0,0,0,227,142,0,0,0,0,227,142,0,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,248,3,128,56,28,113,248,3,128,56,28,113,248,3,128,56,224,0,0,227,128,0,224,0,0,227,128,0,224,0,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7da0 綠 + 160,125,45,48,32,48,0,250,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,3,128,0,224,14,0,3,128,0,224,14,0,3,128,0,224,14,0,3,142,7,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,28,14,7,255,240,0,28,14,7,255,240,0,28,14,7,255,240,0,255,240,0,0,112,0,255,240,0,0,112,0,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,255,254,56,3,128,56,255,254,56,3,128,56,255,254,56,3,128,56,0,14,7,31,241,192,0,14,7,31,241,192,0,14,7,31,241,192,0,0,0,227,142,0,0,0,0,227,142,0,0,0,0,227,142,0,227,142,7,3,129,192,227,142,7,3,129,192,227,142,7,3,129,192,227,142,56,3,128,56,227,142,56,3,128,56,227,142,56,3,128,56,224,0,0,227,128,0,224,0,0,227,128,0,224,0,0,227,128,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7db2 網 + 178,125,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,224,14,56,3,128,7,224,14,56,3,128,7,224,14,56,28,14,7,28,112,56,28,14,7,28,112,56,28,14,7,28,112,56,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,112,7,3,128,56,0,112,7,3,128,56,0,112,7,3,128,56,3,128,7,0,112,56,3,128,7,0,112,56,3,128,7,0,112,56,3,128,7,255,255,248,3,128,7,255,255,248,3,128,7,255,255,248,28,14,7,28,0,56,28,14,7,28,0,56,28,14,7,28,0,56,255,241,199,28,0,56,255,241,199,28,0,56,255,241,199,28,0,56,0,0,7,31,254,56,0,0,7,31,254,56,0,0,7,31,254,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,0,56,28,113,199,0,14,56,28,113,199,0,14,56,28,113,199,0,14,56,224,0,7,0,1,192,224,0,7,0,1,192,224,0,7,0,1,192, + // 0x7dd2 緒 + 210,125,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,3,128,7,255,254,56,3,128,7,255,254,56,3,128,7,255,254,56,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,3,129,192,28,1,192,3,142,0,28,1,192,3,142,0,28,1,192,3,142,0,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,14,0,255,255,192,28,14,0,255,255,192,28,14,0,255,255,192,255,255,199,224,1,192,255,255,199,224,1,192,255,255,199,224,1,192,0,1,248,224,1,192,0,1,248,224,1,192,0,1,248,224,1,192,0,0,0,255,255,192,0,0,0,255,255,192,0,0,0,255,255,192,28,113,192,224,1,192,28,113,192,224,1,192,28,113,192,224,1,192,28,113,192,224,1,192,28,113,192,224,1,192,28,113,192,224,1,192,224,0,0,255,255,192,224,0,0,255,255,192,224,0,0,255,255,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192, + // 0x7dda 線 + 218,125,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,224,0,0,0,112,0,224,0,0,0,112,0,224,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,255,240,7,0,1,192,255,240,7,0,1,192,255,240,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,14,0,3,240,56,28,14,0,3,240,56,28,14,0,3,240,56,255,254,63,227,241,192,255,254,63,227,241,192,255,254,63,227,241,192,0,14,0,227,142,0,0,14,0,227,142,0,0,14,0,227,142,0,0,0,7,3,142,0,0,0,7,3,142,0,0,0,7,3,142,0,227,142,7,3,129,192,227,142,7,3,129,192,227,142,7,3,129,192,227,142,56,3,129,192,227,142,56,3,129,192,227,142,56,3,129,192,224,1,192,227,128,56,224,1,192,227,128,56,224,1,192,227,128,56,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0, + // 0x7de8 編 + 232,125,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,7,255,255,248,3,128,7,255,255,248,3,128,7,255,255,248,3,129,199,0,0,56,3,129,199,0,0,56,3,129,199,0,0,56,28,1,199,0,0,56,28,1,199,0,0,56,28,1,199,0,0,56,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,28,14,7,255,255,248,28,14,7,255,255,248,28,14,7,255,255,248,255,255,199,227,142,56,255,255,199,227,142,56,255,255,199,227,142,56,0,1,199,227,142,56,0,1,199,227,142,56,0,1,199,227,142,56,0,0,56,255,255,248,0,0,56,255,255,248,0,0,56,255,255,248,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,224,1,192,227,128,56,224,1,192,227,128,56,224,1,192,227,128,56,0,0,0,224,1,248,0,0,0,224,1,248,0,0,0,224,1,248, + // 0x7e2e 縮 + 46,126,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,3,142,56,0,0,56,3,142,56,0,0,56,3,142,56,0,0,56,28,14,0,224,0,0,28,14,0,224,0,0,28,14,0,224,0,0,255,240,0,255,255,248,255,240,0,255,255,248,255,240,0,255,255,248,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,3,128,63,3,128,0,3,128,63,3,128,0,3,128,63,3,128,0,28,15,199,31,255,192,28,15,199,31,255,192,28,15,199,31,255,192,255,254,7,28,1,192,255,254,7,28,1,192,255,254,7,28,1,192,0,14,7,28,1,192,0,14,7,28,1,192,0,14,7,28,1,192,0,0,7,31,255,192,0,0,7,31,255,192,0,0,7,31,255,192,227,142,7,28,1,192,227,142,7,28,1,192,227,142,7,28,1,192,227,142,7,28,1,192,227,142,7,28,1,192,227,142,7,28,1,192,224,0,7,31,255,192,224,0,7,31,255,192,224,0,7,31,255,192,0,0,7,28,1,192,0,0,7,28,1,192,0,0,7,28,1,192, + // 0x7e3d 總 + 61,126,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,199,3,129,192,3,129,199,3,129,192,3,129,199,3,129,192,28,1,199,31,255,192,28,1,199,31,255,192,28,1,199,31,255,192,255,254,7,224,15,192,255,254,7,224,15,192,255,254,7,224,15,192,0,112,7,28,113,192,0,112,7,28,113,192,0,112,7,28,113,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,1,192,3,128,0,0,1,192,3,128,0,0,1,192,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,28,113,199,28,113,192,28,113,199,28,113,192,28,113,199,28,113,192,28,113,199,28,0,56,28,113,199,28,0,56,28,113,199,28,0,56,224,0,7,28,14,56,224,0,7,28,14,56,224,0,7,28,14,56,0,0,56,3,254,0,0,0,56,3,254,0,0,0,56,3,254,0, + // 0x7e7c 繼 + 124,126,45,48,32,48,0,250,0,112,0,28,1,192,0,112,0,28,1,192,0,112,0,28,1,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,1,192,3,128,56,255,142,56,3,128,56,255,142,56,3,128,56,255,142,56,3,142,56,28,15,248,3,142,56,28,15,248,3,142,56,28,15,248,28,14,56,227,129,192,28,14,56,227,129,192,28,14,56,227,129,192,255,240,56,255,143,248,255,240,56,255,143,248,255,240,56,255,143,248,0,112,56,3,128,56,0,112,56,3,128,56,0,112,56,3,128,56,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,14,56,28,1,192,28,14,56,28,1,192,28,14,56,28,1,192,255,254,56,224,1,192,255,254,56,224,1,192,255,254,56,224,1,192,0,14,56,255,142,56,0,14,56,255,142,56,0,14,56,255,142,56,0,0,56,28,15,248,0,0,56,28,15,248,0,0,56,28,15,248,227,142,56,227,129,192,227,142,56,227,129,192,227,142,56,227,129,192,227,142,56,255,143,248,227,142,56,255,143,248,227,142,56,255,143,248,224,0,56,3,128,56,224,0,56,3,128,56,224,0,56,3,128,56,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248, + // 0x7e8c 續 + 140,126,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,142,7,255,255,192,3,142,7,255,255,192,3,142,7,255,255,192,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,255,240,63,255,255,248,255,240,63,255,255,248,255,240,63,255,255,248,0,112,56,28,112,56,0,112,56,28,112,56,0,112,56,28,112,56,3,128,63,255,255,248,3,128,63,255,255,248,3,128,63,255,255,248,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,1,199,0,1,192,0,1,199,0,1,192,0,1,199,0,1,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,28,113,199,0,1,192,28,113,199,0,1,192,28,113,199,0,1,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,224,0,0,224,14,0,224,0,0,224,14,0,224,0,0,224,14,0,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192, + // 0x7ea2 红 + 162,126,45,45,14,48,0,253,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,255,254,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,255,128,0,3,128,0,28,0,63,255,255,248,28,0,63,255,255,248,28,0,63,255,255,248, + // 0x7f6e 置 + 110,127,45,48,32,48,0,250,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x7f72 署 + 114,127,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,127,255,252,112,0,0,127,255,252,112,0,0,127,255,252,112,0,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,63,0,0,0,0,0,63,0,0,0,0,0,63,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,3,254,0,0,112,0,3,254,0,0,112,0,3,254,0,0,112,0,252,15,255,255,240,0,252,15,255,255,240,0,252,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0, + // 0x8070 聰 + 112,128,45,48,32,48,0,250,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,192,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,254,7,31,255,192,31,254,7,31,255,192,31,254,7,31,255,192,28,14,7,224,15,192,28,14,7,224,15,192,28,14,7,224,15,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,31,254,7,3,129,192,31,254,7,3,129,192,31,254,7,3,129,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,15,192,28,0,0,28,15,192,28,0,0,28,15,192,28,0,0,31,254,0,3,129,192,31,254,0,3,129,192,31,254,0,3,129,192,252,14,56,227,128,56,252,14,56,227,128,56,252,14,56,227,128,56,0,14,56,224,14,56,0,14,56,224,14,56,0,14,56,224,14,56,0,15,192,224,14,0,0,15,192,224,14,0,0,15,192,224,14,0,0,14,0,31,254,0,0,14,0,31,254,0,0,14,0,31,254,0, + // 0x81ea 自 + 234,129,27,48,192,48,9,250,0,14,0,0,0,14,0,0,0,14,0,0,0,112,0,0,0,112,0,0,0,112,0,0,3,128,0,0,3,128,0,0,3,128,0,0,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,224,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,224,0,0,224,224,0,0,224,224,0,0,224, + // 0x85cd 藍 + 205,133,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,255,255,3,255,248,3,255,255,3,255,248,3,255,255,3,255,248,3,128,7,28,0,0,3,128,7,28,0,0,3,128,7,28,0,0,3,255,255,28,112,0,3,255,255,28,112,0,3,255,255,28,112,0,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,255,255,0,14,0,3,255,255,0,14,0,3,255,255,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x884c 行 + 76,136,45,48,32,48,0,250,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,7,255,255,192,0,14,7,255,255,192,0,14,7,255,255,192,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,3,240,0,3,128,0,3,240,0,3,128,0,3,240,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,224,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0, + // 0x8868 表 + 104,136,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,14,0,224,14,0,0,14,0,224,14,0,0,14,0,224,14,0,0,126,0,28,112,0,0,126,0,28,112,0,0,126,0,28,112,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,252,14,7,0,126,0,252,14,7,0,126,0,252,14,7,0,126,0,0,14,56,0,1,248,0,14,56,0,1,248,0,14,56,0,1,248,0,15,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0, + // 0x88ab 被 + 171,136,45,48,32,48,0,250,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,254,7,255,255,248,255,254,7,255,255,248,255,254,7,255,255,248,0,14,7,0,112,56,0,14,7,0,112,56,0,14,7,0,112,56,0,112,7,0,113,192,0,112,7,0,113,192,0,112,7,0,113,192,0,113,199,0,112,0,0,113,199,0,112,0,0,113,199,0,112,0,3,254,7,255,255,192,3,254,7,255,255,192,3,254,7,255,255,192,28,113,199,28,1,192,28,113,199,28,1,192,28,113,199,28,1,192,224,112,7,28,1,192,224,112,7,28,1,192,224,112,7,28,1,192,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,3,142,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,113,192,224,0,56,0,113,192,224,0,56,0,113,192,224,0,56, + // 0x88c5 装 + 197,136,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,3,142,63,255,255,248,3,142,63,255,255,248,3,142,63,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,0,126,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,252,14,7,255,255,192,252,14,7,255,255,192,252,14,7,255,255,192,0,14,56,0,0,0,0,14,56,0,0,0,0,14,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,15,192,224,14,0,0,15,192,224,14,0,0,15,192,224,14,0,3,241,192,28,112,0,3,241,192,28,112,0,3,241,192,28,112,0,252,1,199,3,240,0,252,1,199,3,240,0,252,1,199,3,240,0,0,1,248,0,15,248,0,1,248,0,15,248,0,1,248,0,15,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0, + // 0x88dd 裝 + 221,136,45,48,32,48,0,250,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,0,1,199,255,255,192,0,1,199,255,255,192,0,1,199,255,255,192,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,255,254,0,3,129,192,255,254,0,3,129,192,255,254,0,28,1,248,0,0,0,28,1,248,0,0,0,28,1,248,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,1,199,0,0,0,0,1,199,0,0,0,0,1,199,0,0,0,0,15,192,224,14,0,0,15,192,224,14,0,0,15,192,224,14,0,3,241,192,28,112,0,3,241,192,28,112,0,3,241,192,28,112,0,252,1,199,3,240,0,252,1,199,3,240,0,252,1,199,3,240,0,0,1,248,0,15,248,0,1,248,0,15,248,0,1,248,0,15,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0, + // 0x8907 複 + 7,137,45,48,32,48,0,250,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,255,254,56,0,0,0,255,254,56,0,0,0,255,254,56,0,0,0,0,15,199,255,255,192,0,15,199,255,255,192,0,15,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,3,241,199,0,1,192,3,241,199,0,1,192,3,241,199,0,1,192,28,126,7,255,255,192,28,126,7,255,255,192,28,126,7,255,255,192,224,113,192,224,0,0,224,113,192,224,0,0,224,113,192,224,0,0,0,113,192,255,255,192,0,113,192,255,255,192,0,113,192,255,255,192,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,56,224,112,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,0,31,128,0,0,112,7,224,126,0,0,112,7,224,126,0,0,112,7,224,126,0,0,113,248,0,1,248,0,113,248,0,1,248,0,113,248,0,1,248, + // 0x89d2 角 + 210,137,39,48,240,48,0,250,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,0,0,0,127,255,255,128,0,127,255,255,128,0,127,255,255,128,3,128,0,3,128,3,128,0,3,128,3,128,0,3,128,28,0,0,28,0,28,0,0,28,0,28,0,0,28,0,227,255,255,255,254,227,255,255,255,254,227,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,14,3,128,7,0,14,3,128,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,0,14,28,0,7,3,142,28,0,7,3,142,28,0,7,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x8a08 計 + 8,138,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x8a0a 訊 + 10,138,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,63,255,240,0,0,112,63,255,240,0,0,112,63,255,240,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,255,255,192,224,112,0,255,255,192,224,112,0,255,255,192,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,31,254,63,255,240,0,31,254,63,255,240,0,31,254,63,255,240,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,112,56,28,14,0,224,14,56,28,14,0,224,14,56,28,14,0,224,14,56,31,254,0,224,14,56,31,254,0,224,14,56,31,254,0,224,14,56,28,14,0,224,1,248,28,14,0,224,1,248,28,14,0,224,1,248,0,0,0,224,0,56,0,0,0,224,0,56,0,0,0,224,0,56, + // 0x8a18 記 + 24,138,45,45,14,48,0,253,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,255,255,248,0,1,192,255,255,248,0,1,192,255,255,248,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,192,0,1,192,31,255,192,0,1,192,31,255,192,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,31,255,192,255,255,192,31,255,192,255,255,192,31,255,192,255,255,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,31,255,192,224,0,0,31,255,192,224,0,0,31,255,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,0,28,1,192,224,0,56,28,1,192,224,0,56,28,1,192,224,0,56,31,255,192,224,0,56,31,255,192,224,0,56,31,255,192,224,0,56,28,1,192,31,255,248,28,1,192,31,255,248,28,1,192,31,255,248, + // 0x8a2d 設 + 45,138,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,255,248,224,14,0,255,255,248,224,14,0,255,255,248,224,14,0,0,0,0,224,14,0,0,0,0,224,14,0,0,0,0,224,14,0,31,255,199,0,1,248,31,255,199,0,1,248,31,255,199,0,1,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,0,0,0,224,1,192,0,0,0,224,1,192,0,0,0,224,1,192,31,255,192,224,1,192,31,255,192,224,1,192,31,255,192,224,1,192,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,3,128,0,28,1,192,3,128,0,28,1,192,3,128,0,31,255,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,0,0,63,0,1,248,0,0,63,0,1,248,0,0,63,0,1,248, + // 0x8a66 試 + 102,138,45,48,32,48,0,250,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,31,254,0,0,112,0,31,254,0,0,112,0,31,254,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,31,254,7,252,112,0,31,254,7,252,112,0,31,254,7,252,112,0,0,0,0,224,112,0,0,0,0,224,112,0,0,0,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,255,142,56,28,14,0,255,142,56,28,14,0,255,142,56,31,254,63,224,14,56,31,254,63,224,14,56,31,254,63,224,14,56,28,14,0,0,1,248,28,14,0,0,1,248,28,14,0,0,1,248,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56, + // 0x8a8d 認 + 141,138,45,45,14,48,0,253,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,255,255,199,28,1,192,255,255,199,28,1,192,255,255,199,28,1,192,0,0,7,28,1,192,0,0,7,28,1,192,0,0,7,28,1,192,31,254,56,224,1,192,31,254,56,224,1,192,31,254,56,224,1,192,0,0,0,224,113,192,0,0,0,224,113,192,0,0,0,224,113,192,31,254,7,0,14,0,31,254,7,0,14,0,31,254,7,0,14,0,0,0,56,28,0,0,0,0,56,28,0,0,0,0,56,28,0,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,28,14,0,227,129,192,28,14,0,227,129,192,28,14,0,227,129,192,28,14,56,224,0,56,28,14,56,224,0,56,28,14,56,224,0,56,28,14,56,224,14,56,28,14,56,224,14,56,28,14,56,224,14,56,31,254,56,224,14,56,31,254,56,224,14,56,31,254,56,224,14,56,28,1,192,31,254,0,28,1,192,31,254,0,28,1,192,31,254,0, + // 0x8aa4 誤 + 164,138,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,255,255,199,0,1,192,255,255,199,0,1,192,255,255,199,0,1,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,31,254,0,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,7,255,255,192,31,254,7,255,255,192,31,254,7,255,255,192,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,28,14,63,255,255,248,28,14,63,255,255,248,28,14,63,255,255,248,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,3,128,0,28,14,0,28,112,0,28,14,0,28,112,0,28,14,0,28,112,0,31,254,0,224,14,0,31,254,0,224,14,0,31,254,0,224,14,0,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x8abf 調 + 191,138,42,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,0,7,3,129,192,0,0,7,3,129,192,0,0,7,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,255,255,199,3,129,192,0,0,7,31,241,192,0,0,7,31,241,192,0,0,7,31,241,192,31,254,7,3,129,192,31,254,7,3,129,192,31,254,7,3,129,192,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,31,254,7,0,1,192,31,254,7,0,1,192,31,254,7,0,1,192,0,0,7,31,241,192,0,0,7,31,241,192,0,0,7,31,241,192,31,254,7,28,113,192,31,254,7,28,113,192,31,254,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,28,113,192,28,14,7,31,241,192,28,14,7,31,241,192,28,14,7,31,241,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,31,254,56,0,1,192,31,254,56,0,1,192,31,254,56,0,1,192,28,14,56,0,113,192,28,14,56,0,113,192,28,14,56,0,113,192,0,1,192,0,14,0,0,1,192,0,14,0,0,1,192,0,14,0, + // 0x8acb 請 + 203,138,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,31,254,0,0,0,0,31,254,0,0,0,0,31,254,0,0,0,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,31,254,7,0,1,192,31,254,7,0,1,192,31,254,7,0,1,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,31,254,7,0,1,192,31,254,7,0,1,192,31,254,7,0,1,192,28,14,7,0,113,192,28,14,7,0,113,192,28,14,7,0,113,192,0,0,7,0,14,0,0,0,7,0,14,0,0,0,7,0,14,0, + // 0x8b70 議 + 112,139,45,48,32,48,0,250,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,0,7,255,255,192,0,0,7,255,255,192,0,0,7,255,255,192,31,254,0,3,128,0,31,254,0,3,128,0,31,254,0,3,128,0,0,0,63,255,255,248,0,0,63,255,255,248,0,0,63,255,255,248,31,254,0,28,113,192,31,254,0,28,113,192,31,254,0,28,113,192,0,0,7,224,112,56,0,0,7,224,112,56,0,0,7,224,112,56,31,254,0,224,112,0,31,254,0,224,112,0,31,254,0,224,112,0,28,14,63,255,255,248,28,14,63,255,255,248,28,14,63,255,255,248,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,224,112,0,28,14,0,252,113,192,28,14,0,252,113,192,28,14,0,252,113,192,31,254,63,224,14,56,31,254,63,224,14,56,31,254,63,224,14,56,28,14,0,224,113,248,28,14,0,224,113,248,28,14,0,224,113,248,0,0,7,227,128,56,0,0,7,227,128,56,0,0,7,227,128,56, + // 0x8b80 讀 + 128,139,45,48,32,48,0,250,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,63,255,255,248,31,254,63,255,255,248,31,254,63,255,255,248,0,0,56,28,112,56,0,0,56,28,112,56,0,0,56,28,112,56,31,254,63,255,255,248,31,254,63,255,255,248,31,254,63,255,255,248,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,31,254,7,255,255,192,31,254,7,255,255,192,31,254,7,255,255,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,255,255,192,28,14,7,0,1,192,28,14,7,0,1,192,28,14,7,0,1,192,31,254,7,255,255,192,31,254,7,255,255,192,31,254,7,255,255,192,28,14,0,224,14,0,28,14,0,224,14,0,28,14,0,224,14,0,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192, + // 0x8b8a 變 + 138,139,45,48,32,48,0,250,3,128,7,0,1,192,3,128,7,0,1,192,3,128,7,0,1,192,28,1,255,252,14,0,28,1,255,252,14,0,28,1,255,252,14,0,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,255,240,63,227,255,192,255,240,63,227,255,192,255,240,63,227,255,192,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,28,14,63,224,112,56,28,14,63,224,112,56,28,14,63,224,112,56,255,254,0,3,255,248,255,254,0,3,255,248,255,254,0,3,255,248,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,63,227,142,56,227,142,63,227,142,56,227,142,63,227,142,56,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,127,255,255,254,0,0,127,255,255,254,0,0,127,255,255,254,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,0,1,255,252,0,0,0,1,255,252,0,0,0,1,255,252,0,0,0,126,0,3,240,0,0,126,0,3,240,0,0,126,0,3,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248, + // 0x8cc7 資 + 199,140,45,48,32,48,0,250,28,0,7,0,0,0,28,0,7,0,0,0,28,0,7,0,0,0,3,128,7,255,255,192,3,128,7,255,255,192,3,128,7,255,255,192,0,14,56,28,1,192,0,14,56,28,1,192,0,14,56,28,1,192,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,255,128,0,227,128,0,255,128,0,227,128,0,255,128,0,227,128,0,3,128,7,0,126,0,3,128,7,0,126,0,3,128,7,0,126,0,3,129,248,0,1,248,3,129,248,0,1,248,3,129,248,0,1,248,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x8ddd 距 + 221,141,45,42,252,48,0,253,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,28,1,199,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,28,127,199,0,1,192,28,127,199,0,1,192,28,127,199,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,0,1,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,255,255,192,28,112,7,0,0,0,28,112,7,0,0,0,28,112,7,0,0,0,28,127,199,0,0,0,28,127,199,0,0,0,28,127,199,0,0,0,255,128,7,0,0,0,255,128,7,0,0,0,255,128,7,0,0,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248, + // 0x8eca 車 + 202,142,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0, + // 0x8edf 軟 + 223,142,45,48,32,48,0,250,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,255,255,248,31,255,192,255,255,248,31,255,192,255,255,248,31,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,28,113,199,3,128,0,28,113,199,3,128,0,28,113,199,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,31,255,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,28,113,192,3,128,0,31,255,192,28,112,0,31,255,192,28,112,0,31,255,192,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,255,255,248,28,112,0,255,255,248,28,112,0,255,255,248,28,112,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,56,0,0,56,0,112,56,0,0,56,0,112,56,0,0,56, + // 0x8ef8 軸 + 248,142,42,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,31,255,199,3,129,192,31,255,199,3,129,192,31,255,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,31,255,199,3,129,192,31,255,199,3,129,192,31,255,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,255,255,255,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192, + // 0x8f09 載 + 9,143,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,255,255,227,128,0,255,255,255,227,128,0,255,255,255,227,128,0,0,14,0,3,129,192,0,14,0,3,129,192,0,14,0,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,31,255,255,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,31,255,255,3,142,0,31,255,255,3,142,0,31,255,255,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,28,14,7,3,142,0,31,255,255,0,112,0,31,255,255,0,112,0,31,255,255,0,112,0,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,255,255,255,227,142,56,255,255,255,227,142,56,255,255,255,227,142,56,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,28,1,248,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56, + // 0x8f2f 輯 + 47,143,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,255,255,248,224,14,0,255,255,248,224,14,0,255,255,248,224,14,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,31,255,192,0,0,0,31,255,192,0,0,0,31,255,192,0,0,0,28,113,199,255,255,248,28,113,199,255,255,248,28,113,199,255,255,248,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,28,113,192,255,254,0,28,113,192,255,254,0,28,113,192,255,254,0,31,255,192,224,14,0,31,255,192,224,14,0,31,255,192,224,14,0,0,112,0,255,254,0,0,112,0,255,254,0,0,112,0,255,254,0,255,255,248,224,14,0,255,255,248,224,14,0,255,255,248,224,14,0,0,112,0,224,127,248,0,112,0,224,127,248,0,112,0,224,127,248,0,112,63,255,142,0,0,112,63,255,142,0,0,112,63,255,142,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0, + // 0x8f38 輸 + 56,143,45,48,32,48,0,250,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,0,227,128,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,255,254,56,0,14,0,255,254,56,0,14,0,255,254,56,0,14,0,3,129,199,255,241,248,3,129,199,255,241,248,3,129,199,255,241,248,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,227,142,63,252,1,192,227,142,63,252,1,192,227,142,63,252,1,192,255,254,56,28,113,192,255,254,56,28,113,192,255,254,56,28,113,192,227,142,56,28,113,192,227,142,56,28,113,192,227,142,56,28,113,192,255,254,63,252,113,192,255,254,63,252,113,192,255,254,63,252,113,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,255,254,56,28,113,192,255,254,56,28,113,192,255,254,56,28,113,192,3,128,63,252,113,192,3,128,63,252,113,192,3,128,63,252,113,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,1,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,252,14,0,3,128,56,252,14,0,3,128,56,252,14,0, + // 0x8f49 轉 + 73,143,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,199,255,255,192,255,255,199,255,255,192,255,255,199,255,255,192,0,112,7,3,129,192,0,112,7,3,129,192,0,112,7,3,129,192,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,113,199,3,129,192,28,113,199,3,129,192,28,113,199,3,129,192,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,113,192,3,128,56,28,113,192,3,128,56,28,113,192,3,128,56,31,255,199,255,255,248,31,255,199,255,255,248,31,255,199,255,255,248,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,255,255,199,255,255,248,255,255,199,255,255,248,255,255,199,255,255,248,0,112,7,0,14,0,0,112,7,0,14,0,0,112,7,0,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x8fd1 近 + 209,143,45,45,14,48,0,253,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,3,128,0,0,127,192,3,128,0,0,127,192,3,128,0,0,127,192,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,255,128,0,0,112,7,0,0,0,0,112,7,0,0,0,0,112,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,255,240,7,0,112,0,255,240,7,0,112,0,255,240,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,0,113,192,0,112,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x8fd4 返 + 212,143,45,45,14,48,0,253,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,3,128,0,3,255,192,3,128,0,3,255,192,3,128,0,3,255,192,0,112,63,252,0,0,0,112,63,252,0,0,0,112,63,252,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,63,255,255,192,0,0,63,255,255,192,0,0,63,255,255,192,255,240,56,0,1,192,255,240,56,0,1,192,255,240,56,0,1,192,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,28,112,0,0,112,56,28,112,0,0,112,56,28,112,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,192,224,14,0,0,113,199,0,1,192,0,113,199,0,1,192,0,113,199,0,1,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9000 退 + 0,144,45,45,14,48,0,253,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,56,0,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,0,0,56,0,14,0,255,240,63,255,254,0,255,240,63,255,254,0,255,240,63,255,254,0,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,28,1,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,0,112,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,56,224,14,0,0,112,63,0,1,192,0,112,63,0,1,192,0,112,63,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,0,112,56,0,1,192,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x901f 速 + 31,144,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,56,28,14,0,0,0,56,28,14,0,0,0,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,0,255,128,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,7,28,112,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9023 連 + 35,144,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,1,255,255,255,192,0,1,255,255,255,192,0,1,255,255,255,192,0,1,192,28,1,192,0,1,192,28,1,192,0,1,192,28,1,192,255,129,255,255,255,192,255,129,255,255,255,192,255,129,255,255,255,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,192,28,1,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,28,112,0,28,0,0,224,15,255,255,255,248,224,15,255,255,255,248,224,15,255,255,255,248, + // 0x9032 進 + 50,144,45,45,14,48,0,253,0,0,7,28,0,0,0,0,7,28,0,0,0,0,7,28,0,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,1,248,3,128,0,0,1,248,3,128,0,0,1,248,3,128,0,0,14,63,255,255,192,0,14,63,255,255,192,0,14,63,255,255,192,255,240,56,3,128,0,255,240,56,3,128,0,255,240,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,63,255,255,192,0,112,63,255,255,192,0,112,63,255,255,192,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,3,142,0,0,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x904b 運 + 75,144,45,42,252,48,0,253,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,0,113,192,28,1,192,0,113,192,28,1,192,0,113,192,28,1,192,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,63,255,254,0,0,0,63,255,254,0,0,0,63,255,254,0,255,240,56,28,14,0,255,240,56,28,14,0,255,240,56,28,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,56,28,14,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9054 達 + 84,144,45,45,14,48,0,253,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,1,255,255,255,192,0,1,255,255,255,192,0,1,255,255,255,192,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,255,240,0,227,128,0,255,240,0,227,128,0,255,240,0,227,128,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,63,255,254,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,113,255,255,255,192,0,113,255,255,255,192,0,113,255,255,255,192,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,3,142,0,28,0,0,28,1,255,255,255,248,28,1,255,255,255,248,28,1,255,255,255,248, + // 0x9078 選 + 120,144,45,45,14,48,0,253,0,15,255,3,255,192,0,15,255,3,255,192,0,15,255,3,255,192,28,14,7,3,129,192,28,14,7,3,129,192,28,14,7,3,129,192,3,143,255,3,255,192,3,143,255,3,255,192,3,143,255,3,255,192,3,142,0,227,128,56,3,142,0,227,128,56,3,142,0,227,128,56,0,1,255,224,127,248,0,1,255,224,127,248,0,1,255,224,127,248,0,0,7,0,112,0,0,0,7,0,112,0,0,0,7,0,112,0,255,129,255,255,255,192,255,129,255,255,255,192,255,129,255,255,255,192,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,143,255,255,255,248,3,143,255,255,255,248,3,143,255,255,255,248,3,128,7,0,112,0,3,128,7,0,112,0,3,128,7,0,112,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,129,192,0,1,192,3,129,192,0,1,192,3,129,192,0,1,192,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,15,255,255,255,248,224,15,255,255,255,248,224,15,255,255,255,248, + // 0x9084 還 + 132,144,45,42,252,48,0,253,28,1,255,255,255,192,28,1,255,255,255,192,28,1,255,255,255,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,192,227,129,192,3,129,255,255,255,192,3,129,255,255,255,192,3,129,255,255,255,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,255,248,0,15,255,255,255,248,0,15,255,255,255,248,255,128,0,0,0,0,255,128,0,0,0,0,255,128,0,0,0,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,56,0,14,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,63,255,254,0,3,128,7,28,1,192,3,128,7,28,1,192,3,128,7,28,1,192,3,128,63,3,142,0,3,128,63,3,142,0,3,128,63,3,142,0,3,143,199,224,112,0,3,143,199,224,112,0,3,143,199,224,112,0,28,112,7,0,14,0,28,112,7,0,14,0,28,112,7,0,14,0,224,15,255,255,255,248,224,15,255,255,255,248,224,15,255,255,255,248, + // 0x908a 邊 + 138,144,45,48,32,48,0,250,0,0,0,224,0,0,0,0,0,224,0,0,0,0,0,224,0,0,28,1,255,255,254,0,28,1,255,255,254,0,28,1,255,255,254,0,3,129,199,28,14,0,3,129,199,28,14,0,3,129,199,28,14,0,3,129,192,227,142,0,3,129,192,227,142,0,3,129,192,227,142,0,0,1,255,255,254,0,0,1,255,255,254,0,0,1,255,255,254,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,255,143,255,255,255,192,255,143,255,255,255,192,255,143,255,255,255,192,3,142,56,0,113,192,3,142,56,0,113,192,3,142,56,0,113,192,3,129,192,224,14,0,3,129,192,224,14,0,3,129,192,224,14,0,3,142,63,255,241,192,3,142,63,255,241,192,3,142,63,255,241,192,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,0,0,0,3,128,7,255,240,0,3,128,7,255,240,0,3,128,7,255,240,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,129,192,3,240,0,3,129,192,3,240,0,3,129,192,3,240,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,224,15,255,255,255,248,224,15,255,255,255,248,224,15,255,255,255,248, + // 0x90e8 部 + 232,144,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,14,0,3,255,248,0,14,0,3,255,248,0,14,0,3,255,248,31,255,255,227,128,56,31,255,255,227,128,56,31,255,255,227,128,56,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,3,128,7,3,129,192,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,255,255,255,255,129,192,255,255,255,255,129,192,255,255,255,255,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,129,192,0,0,0,3,128,56,0,0,0,3,128,56,0,0,0,3,128,56,3,255,255,3,128,56,3,255,255,3,128,56,3,255,255,3,128,56,3,128,7,3,128,56,3,128,7,3,128,56,3,128,7,3,128,56,3,128,7,3,241,192,3,128,7,3,241,192,3,128,7,3,241,192,3,128,7,3,142,0,3,128,7,3,142,0,3,128,7,3,142,0,3,255,255,3,128,0,3,255,255,3,128,0,3,255,255,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,3,128,7,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0, + // 0x91cb 釋 + 203,145,45,48,32,48,0,250,0,15,192,0,0,0,0,15,192,0,0,0,0,15,192,0,0,0,255,240,7,255,255,192,255,240,7,255,255,192,255,240,7,255,255,192,0,112,7,28,113,192,0,112,7,28,113,192,0,112,7,28,113,192,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,3,254,0,3,128,0,3,254,0,3,128,0,3,254,0,3,128,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,3,240,0,224,14,0,3,240,0,224,14,0,3,240,0,224,14,0,3,254,0,28,112,0,3,254,0,28,112,0,3,254,0,28,112,0,28,113,199,255,255,192,28,113,199,255,255,192,28,113,199,255,255,192,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,224,112,63,255,255,248,224,112,63,255,255,248,224,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x91cd 重 + 205,145,45,45,14,48,0,253,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,254,0,0,0,0,255,254,0,0,0,0,255,254,0,3,255,255,0,0,0,3,255,255,0,0,0,3,255,255,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248, + // 0x91cf 量 + 207,145,45,45,14,48,0,250,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192, + // 0x91dd 針 + 221,145,45,48,32,48,0,250,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,3,129,192,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,28,0,56,3,128,0,227,255,192,3,128,0,227,255,192,3,128,0,227,255,192,3,128,0,0,112,63,255,255,248,0,112,63,255,255,248,0,112,63,255,255,248,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,224,113,192,3,128,0,224,113,192,3,128,0,224,113,192,3,128,0,28,126,0,3,128,0,28,126,0,3,128,0,28,126,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,0,127,248,3,128,0,0,127,248,3,128,0,0,127,248,3,128,0,255,240,0,3,128,0,255,240,0,3,128,0,255,240,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0, + // 0x9215 鈕 + 21,146,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,3,142,0,28,14,0,3,142,0,28,14,0,3,142,0,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,28,0,0,28,14,0,227,254,0,28,14,0,227,254,0,28,14,0,227,254,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,7,255,254,0,0,112,7,255,254,0,0,112,7,255,254,0,255,255,192,224,14,0,255,255,192,224,14,0,255,255,192,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,0,112,0,224,14,0,224,113,192,224,14,0,224,113,192,224,14,0,224,113,192,224,14,0,28,126,0,224,14,0,28,126,0,224,14,0,28,126,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,28,112,0,224,14,0,0,127,192,224,14,0,0,127,192,224,14,0,0,127,192,224,14,0,255,128,63,255,255,248,255,128,63,255,255,248,255,128,63,255,255,248,28,0,0,0,0,0,28,0,0,0,0,0,28,0,0,0,0,0, + // 0x932f 錯 + 47,147,45,48,32,48,0,250,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,3,142,0,28,14,0,3,142,0,28,14,0,3,142,0,28,14,0,3,129,199,255,255,248,3,129,199,255,255,248,3,129,199,255,255,248,28,0,56,28,14,0,28,0,56,28,14,0,28,0,56,28,14,0,227,255,192,28,14,0,227,255,192,28,14,0,227,255,192,28,14,0,0,112,7,255,255,248,0,112,7,255,255,248,0,112,7,255,255,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,255,255,248,255,255,192,255,255,248,255,255,192,255,255,248,255,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,224,113,192,224,1,192,224,113,192,224,1,192,224,113,192,224,1,192,28,126,0,255,255,192,28,126,0,255,255,192,28,126,0,255,255,192,28,112,0,224,1,192,28,112,0,224,1,192,28,112,0,224,1,192,0,127,248,224,1,192,0,127,248,224,1,192,0,127,248,224,1,192,255,240,0,255,255,192,255,240,0,255,255,192,255,240,0,255,255,192,28,0,0,224,1,192,28,0,0,224,1,192,28,0,0,224,1,192, + // 0x9375 鍵 + 117,147,45,45,14,48,0,253,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,28,113,255,31,255,192,28,113,255,31,255,192,28,113,255,31,255,192,28,14,7,0,113,192,28,14,7,0,113,192,28,14,7,0,113,192,224,0,7,255,255,248,224,0,7,255,255,248,224,0,7,255,255,248,31,240,56,0,113,192,31,240,56,0,113,192,31,240,56,0,113,192,3,128,56,31,255,192,3,128,56,31,255,192,3,128,56,31,255,192,3,129,255,0,112,0,3,129,255,0,112,0,3,129,255,0,112,0,255,240,7,31,255,192,255,240,7,31,255,192,255,240,7,31,255,192,3,129,199,0,112,0,3,129,199,0,112,0,3,129,199,0,112,0,227,129,199,255,255,248,227,129,199,255,255,248,227,129,199,255,255,248,31,240,56,0,112,0,31,240,56,0,112,0,31,240,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,128,56,0,112,0,3,241,199,0,0,0,3,241,199,0,0,0,3,241,199,0,0,0,252,14,0,255,255,248,252,14,0,255,255,248,252,14,0,255,255,248, + // 0x9577 長 + 119,149,45,45,14,48,0,250,0,15,255,255,254,0,0,15,255,255,254,0,0,15,255,255,254,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,0,15,255,255,240,0,0,15,255,255,240,0,0,15,255,255,240,0,0,14,0,0,0,0,0,14,0,0,0,0,0,14,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,112,56,0,0,0,0,112,56,0,0,0,0,112,56,0,0,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,227,128,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,0,28,0,0,0,112,56,3,128,0,0,112,56,3,128,0,0,112,56,3,128,0,0,113,192,0,126,0,0,113,192,0,126,0,0,113,192,0,126,0,0,126,0,0,1,248,0,126,0,0,1,248,0,126,0,0,1,248,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0, + // 0x9589 閉 + 137,149,39,45,225,48,3,250,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,0,7,0,14,224,127,255,255,142,224,127,255,255,142,224,127,255,255,142,224,0,63,0,14,224,0,63,0,14,224,0,63,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,14,7,0,14,224,14,7,0,14,224,14,7,0,14,224,112,7,0,14,224,112,7,0,14,224,112,7,0,14,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,0,56,3,142,224,0,56,3,142,224,0,56,3,142,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112, + // 0x958b 開 + 139,149,36,45,225,48,3,250,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,227,255,255,252,112,227,255,255,252,112,227,255,255,252,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,224,112,7,0,112,224,112,7,0,112,224,112,7,0,112,227,128,7,28,112,227,128,7,28,112,227,128,7,28,112,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128, + // 0x9593 間 + 147,149,36,45,225,48,3,250,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,14,7,0,112,224,14,7,0,112,224,14,7,0,112,255,254,7,255,240,255,254,7,255,240,255,254,7,255,240,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,127,255,224,112,224,127,255,224,112,224,127,255,224,112,224,112,0,224,112,224,112,0,224,112,224,112,0,224,112,224,0,0,0,112,224,0,0,0,112,224,0,0,0,112,224,0,0,28,112,224,0,0,28,112,224,0,0,28,112,224,0,0,3,128,224,0,0,3,128,224,0,0,3,128, + // 0x95dc 關 + 220,149,39,48,240,48,3,250,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,14,0,224,14,224,14,0,224,14,224,14,0,224,14,255,254,0,255,254,255,254,0,255,254,255,254,0,255,254,224,112,0,224,14,224,112,0,224,14,224,112,0,224,14,227,129,199,3,142,227,129,199,3,142,227,129,199,3,142,227,254,7,252,14,227,254,7,252,14,227,254,7,252,14,224,113,192,227,142,224,113,192,227,142,224,113,192,227,142,227,255,199,255,142,227,255,199,255,142,227,255,199,255,142,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,227,129,199,3,142,227,129,199,3,142,227,129,199,3,142,227,255,199,255,142,227,255,199,255,142,227,255,199,255,142,224,1,199,0,14,224,1,199,0,14,224,1,199,0,14,224,14,7,3,142,224,14,7,3,142,224,14,7,3,142,224,112,7,0,112,224,112,7,0,112,224,112,7,0,112, + // 0x964d 降 + 77,150,42,48,32,48,3,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,254,7,0,0,0,255,254,7,0,0,0,255,254,7,0,0,0,224,14,7,255,254,0,224,14,7,255,254,0,224,14,7,255,254,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,113,199,3,128,0,224,113,199,3,128,0,224,113,199,3,128,0,227,128,0,252,0,0,227,128,0,252,0,0,227,128,0,252,0,0,224,112,63,3,240,0,224,112,63,3,240,0,224,112,63,3,240,0,224,127,192,28,15,192,224,127,192,28,15,192,224,127,192,28,15,192,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,252,113,192,28,0,0,252,113,192,28,0,0,252,113,192,28,0,0,227,129,255,255,255,192,227,129,255,255,255,192,227,129,255,255,255,192,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0,224,0,0,28,0,0, + // 0x9664 除 + 100,150,42,45,14,48,3,250,255,240,0,224,0,0,255,240,0,224,0,0,255,240,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,7,28,0,0,227,128,56,3,128,0,227,128,56,3,128,0,227,128,56,3,128,0,252,1,192,0,112,0,252,1,192,0,112,0,252,1,192,0,112,0,227,142,63,255,143,192,227,142,63,255,143,192,227,142,63,255,143,192,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,113,255,255,254,0,224,113,255,255,254,0,224,113,255,255,254,0,252,112,0,224,0,0,252,112,0,224,0,0,252,112,0,224,0,0,227,128,56,227,128,0,227,128,56,227,128,0,227,128,56,227,128,0,224,1,192,224,112,0,224,1,192,224,112,0,224,1,192,224,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,0,56,224,14,0,224,0,56,224,14,0,224,0,56,224,14,0,224,0,7,0,0,0,224,0,7,0,0,0,224,0,7,0,0,0, + // 0x968e 階 + 142,150,42,48,32,48,3,250,0,0,56,3,128,0,0,0,56,3,128,0,0,0,56,3,128,0,255,254,56,3,129,192,255,254,56,3,129,192,255,254,56,3,129,192,224,14,63,227,142,0,224,14,63,227,142,0,224,14,63,227,142,0,224,112,56,3,240,0,224,112,56,3,240,0,224,112,56,3,240,0,224,112,56,227,129,192,224,112,56,227,129,192,224,112,56,227,129,192,227,128,63,3,129,192,227,128,63,3,129,192,227,128,63,3,129,192,224,112,56,28,127,192,224,112,56,28,127,192,224,112,56,28,127,192,224,112,0,224,0,0,224,112,0,224,0,0,224,112,0,224,0,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,63,255,254,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,224,14,56,0,14,0,252,112,63,255,254,0,252,112,63,255,254,0,252,112,63,255,254,0,227,128,56,0,14,0,227,128,56,0,14,0,227,128,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,63,255,254,0,224,0,63,255,254,0,224,0,63,255,254,0,224,0,56,0,14,0,224,0,56,0,14,0,224,0,56,0,14,0, + // 0x96d9 雙 + 217,150,45,48,32,48,0,250,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,31,129,192,252,14,0,31,129,192,252,14,0,31,129,192,252,14,0,227,255,255,31,255,248,227,255,255,31,255,248,227,255,255,31,255,248,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,31,255,248,3,255,255,31,255,248,3,255,255,31,255,248,3,128,0,28,0,0,3,128,0,28,0,0,3,128,0,28,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,0,63,224,0,0,0,127,192,31,240,0,0,127,192,31,240,0,0,127,192,31,240,0,255,128,0,0,15,248,255,128,0,0,15,248,255,128,0,0,15,248, + // 0x96e2 離 + 226,150,42,48,32,48,3,250,3,128,0,28,112,0,3,128,0,28,112,0,3,128,0,28,112,0,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,255,255,248,224,0,0,255,255,248,224,0,0,255,255,248,224,0,0,3,142,0,255,255,192,3,142,0,255,255,192,3,142,0,255,255,192,224,112,63,224,112,0,224,112,63,224,112,0,224,112,63,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,224,0,56,255,255,192,224,0,56,255,255,192,224,0,56,255,255,192,255,255,248,224,112,0,255,255,248,224,112,0,255,255,248,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,0,112,0,224,112,0,255,255,248,255,255,192,255,255,248,255,255,192,255,255,248,255,255,192,227,128,56,224,112,0,227,128,56,224,112,0,227,128,56,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,227,142,56,224,112,0,227,254,56,224,112,0,227,254,56,224,112,0,227,254,56,224,112,0,224,0,56,255,255,192,224,0,56,255,255,192,224,0,56,255,255,192,224,14,56,224,0,0,224,14,56,224,0,0,224,14,56,224,0,0,224,1,192,224,0,0,224,1,192,224,0,0,224,1,192,224,0,0, + // 0x96fb 電 + 251,150,45,48,32,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,248,31,255,255,255,255,248,31,255,255,255,255,248,28,0,7,0,0,56,28,0,7,0,0,56,28,0,7,0,0,56,224,127,199,31,241,192,224,127,199,31,241,192,224,127,199,31,241,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,199,31,240,0,0,127,199,31,240,0,0,127,199,31,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,56,0,0,7,0,0,56,0,0,7,0,0,56,0,0,7,0,0,56,0,0,7,0,0,56,0,0,7,0,0,56,0,0,0,255,255,248,0,0,0,255,255,248,0,0,0,255,255,248, + // 0x9752 青 + 82,151,45,48,32,48,0,250,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,28,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0, + // 0x975e 非 + 94,151,45,48,32,48,0,250,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,31,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,255,255,192,31,255,248,255,255,192,31,255,248,255,255,192,31,255,248,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0, + // 0x9762 面 + 98,151,45,45,14,48,0,250,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,0,1,192,0,0,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,255,252,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0, + // 0x9805 項 + 5,152,45,45,14,48,0,250,0,0,7,255,255,248,0,0,7,255,255,248,0,0,7,255,255,248,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,255,255,192,28,0,0,255,255,192,28,0,0,255,255,192,28,0,0,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,255,255,192,0,112,7,0,1,192,0,112,7,0,1,192,0,112,7,0,1,192,0,127,199,0,1,192,0,127,199,0,1,192,0,127,199,0,1,192,255,128,7,255,255,192,255,128,7,255,255,192,255,128,7,255,255,192,28,0,0,224,14,0,28,0,0,224,14,0,28,0,0,224,14,0,0,0,7,0,1,192,0,0,7,0,1,192,0,0,7,0,1,192,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56, + // 0x9810 預 + 16,152,45,45,14,48,0,250,31,255,192,255,255,248,31,255,192,255,255,248,31,255,192,255,255,248,0,1,192,0,112,0,0,1,192,0,112,0,0,1,192,0,112,0,3,142,0,3,128,0,3,142,0,3,128,0,3,142,0,3,128,0,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,14,0,224,1,192,0,14,0,224,1,192,0,14,0,224,1,192,255,255,248,224,1,192,255,255,248,224,1,192,255,255,248,224,1,192,0,112,56,255,255,192,0,112,56,255,255,192,0,112,56,255,255,192,0,113,192,224,1,192,0,113,192,224,1,192,0,113,192,224,1,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,255,255,192,0,112,0,28,14,0,0,112,0,28,14,0,0,112,0,28,14,0,28,112,0,224,1,192,28,112,0,224,1,192,28,112,0,224,1,192,3,128,7,0,0,56,3,128,7,0,0,56,3,128,7,0,0,56, + // 0x984d 額 + 77,152,45,48,32,48,0,250,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,224,0,56,3,128,0,224,0,56,3,128,0,224,0,56,3,128,0,3,128,0,255,255,192,3,128,0,255,255,192,3,128,0,255,255,192,3,255,192,224,1,192,3,255,192,224,1,192,3,255,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,227,142,0,255,255,192,227,142,0,255,255,192,227,142,0,255,255,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,142,0,255,255,192,3,142,0,255,255,192,3,142,0,255,255,192,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,255,255,248,224,1,192,255,255,248,224,1,192,255,255,248,224,1,192,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,255,255,192,28,1,192,28,14,0,28,1,192,28,14,0,28,1,192,28,14,0,31,255,192,224,1,192,31,255,192,224,1,192,31,255,192,224,1,192,28,1,199,0,0,56,28,1,199,0,0,56,28,1,199,0,0,56, + // 0x985e 類 + 94,152,45,48,32,48,0,250,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,224,112,56,255,255,248,224,112,56,255,255,248,224,112,56,255,255,248,28,113,192,0,112,0,28,113,192,0,112,0,28,113,192,0,112,0,255,255,248,3,128,0,255,255,248,3,128,0,255,255,248,3,128,0,3,240,0,255,255,192,3,240,0,255,255,192,3,240,0,255,255,192,28,113,192,224,1,192,28,113,192,224,1,192,28,113,192,224,1,192,224,112,56,224,1,192,224,112,56,224,1,192,224,112,56,224,1,192,0,0,0,255,255,192,0,0,0,255,255,192,0,0,0,255,255,192,0,113,192,224,1,192,0,113,192,224,1,192,0,113,192,224,1,192,0,112,56,255,255,192,0,112,56,255,255,192,0,112,56,255,255,192,255,255,248,224,1,192,255,255,248,224,1,192,255,255,248,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,0,112,0,224,1,192,3,142,0,255,255,192,3,142,0,255,255,192,3,142,0,255,255,192,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,28,1,192,224,1,192,28,1,192,224,1,192,28,1,192,224,1,192,224,0,7,0,0,56,224,0,7,0,0,56,224,0,7,0,0,56, + // 0x98a8 風 + 168,152,45,45,14,48,0,250,3,255,255,255,254,0,3,255,255,255,254,0,3,255,255,255,254,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,255,142,0,3,128,0,255,142,0,3,128,0,255,142,0,3,143,255,0,14,0,3,143,255,0,14,0,3,143,255,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,128,7,0,14,0,3,143,255,255,142,0,3,143,255,255,142,0,3,143,255,255,142,0,3,142,7,3,142,0,3,142,7,3,142,0,3,142,7,3,142,0,3,142,7,3,142,0,3,142,7,3,142,0,3,142,7,3,142,0,3,143,255,255,142,0,3,143,255,255,142,0,3,143,255,255,142,0,3,142,7,0,14,0,3,142,7,0,14,0,3,142,7,0,14,0,3,128,7,28,14,56,3,128,7,28,14,56,3,128,7,28,14,56,3,128,7,255,142,56,3,128,7,255,142,56,3,128,7,255,142,56,28,127,248,3,142,56,28,127,248,3,142,56,28,127,248,3,142,56,28,14,0,0,1,248,28,14,0,0,1,248,28,14,0,0,1,248,224,0,0,0,0,56,224,0,0,0,0,56,224,0,0,0,0,56, + // 0x98fd 飽 + 253,152,45,48,32,48,0,250,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,14,0,28,0,0,0,113,192,255,255,192,0,113,192,255,255,192,0,113,192,255,255,192,0,112,56,224,1,192,0,112,56,224,1,192,0,112,56,224,1,192,3,142,7,0,1,192,3,142,7,0,1,192,3,142,7,0,1,192,31,255,248,255,241,192,31,255,248,255,241,192,31,255,248,255,241,192,227,128,56,224,113,192,227,128,56,224,113,192,227,128,56,224,113,192,3,255,248,224,113,192,3,255,248,224,113,192,3,255,248,224,113,192,3,128,56,255,241,192,3,128,56,255,241,192,3,128,56,255,241,192,3,255,248,224,1,192,3,255,248,224,1,192,3,255,248,224,1,192,3,128,0,224,113,192,3,128,0,224,113,192,3,128,0,224,113,192,3,142,0,224,14,0,3,142,0,224,14,0,3,142,0,224,14,0,3,129,192,224,0,56,3,129,192,224,0,56,3,129,192,224,0,56,3,142,56,224,0,56,3,142,56,224,0,56,3,142,56,224,0,56,3,240,56,31,255,248,3,240,56,31,255,248,3,240,56,31,255,248,3,128,0,0,0,0,3,128,0,0,0,0,3,128,0,0,0,0, + // 0x9918 餘 + 24,153,45,48,32,48,0,250,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,14,0,0,112,0,0,113,192,3,142,0,0,113,192,3,142,0,0,113,192,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,0,112,56,3,142,0,3,142,7,28,1,192,3,142,7,28,1,192,3,142,7,28,1,192,31,255,248,227,254,56,31,255,248,227,254,56,31,255,248,227,254,56,227,128,56,0,112,0,227,128,56,0,112,0,227,128,56,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,128,56,255,255,248,3,128,56,255,255,248,3,128,56,255,255,248,3,255,248,0,112,0,3,255,248,0,112,0,3,255,248,0,112,0,3,128,0,28,126,0,3,128,0,28,126,0,3,128,0,28,126,0,3,142,0,28,113,192,3,142,0,28,113,192,3,142,0,28,113,192,3,129,192,224,112,56,3,129,192,224,112,56,3,129,192,224,112,56,3,142,63,0,112,56,3,142,63,0,112,56,3,142,63,0,112,56,3,240,56,28,112,0,3,240,56,28,112,0,3,240,56,28,112,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0,3,128,0, + // 0x99ac 馬 + 172,153,39,45,225,48,0,250,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,255,255,255,240,3,255,255,255,240,3,255,255,255,240,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,128,7,0,0,3,255,255,255,254,3,255,255,255,254,3,255,255,255,254,0,0,0,0,14,0,0,0,0,14,0,0,0,0,14,0,112,56,28,14,0,112,56,28,14,0,112,56,28,14,28,14,7,3,142,28,14,7,3,142,28,14,7,3,142,28,14,7,3,142,28,14,7,3,142,28,14,7,3,142,224,0,0,0,14,224,0,0,0,14,224,0,0,0,14,0,0,0,28,112,0,0,0,28,112,0,0,0,28,112,0,0,0,3,128,0,0,0,3,128,0,0,0,3,128, + // 0x9a45 驅 + 69,154,45,45,14,48,0,250,255,254,63,255,255,248,255,254,63,255,255,248,255,254,63,255,255,248,227,128,56,0,0,0,227,128,56,0,0,0,227,128,56,0,0,0,255,254,56,31,255,192,255,254,56,31,255,192,255,254,56,31,255,192,227,128,56,28,1,192,227,128,56,28,1,192,227,128,56,28,1,192,255,254,56,28,1,192,255,254,56,28,1,192,255,254,56,28,1,192,227,128,56,31,255,192,227,128,56,31,255,192,227,128,56,31,255,192,227,128,56,0,0,0,227,128,56,0,0,0,227,128,56,0,0,0,255,254,56,255,143,248,255,254,56,255,143,248,255,254,56,255,143,248,0,14,56,227,142,56,0,14,56,227,142,56,0,14,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,227,142,56,255,143,248,227,142,56,255,143,248,227,142,56,255,143,248,224,14,56,0,0,0,224,14,56,0,0,0,224,14,56,0,0,0,0,14,63,255,255,248,0,14,63,255,255,248,0,14,63,255,255,248,3,240,0,0,0,0,3,240,0,0,0,0,3,240,0,0,0,0, + // 0x9ad4 體 + 212,154,45,48,32,48,0,250,0,0,0,28,112,0,0,0,0,28,112,0,0,0,0,28,112,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,199,28,113,192,28,1,199,28,113,192,28,1,199,28,113,192,31,241,199,255,255,192,31,241,199,255,255,192,31,241,199,255,255,192,28,113,199,28,113,192,28,113,199,28,113,192,28,113,199,28,113,192,255,255,255,255,255,192,255,255,255,255,255,192,255,255,255,255,255,192,224,0,56,0,0,0,224,0,56,0,0,0,224,0,56,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,192,0,0,0,28,1,192,0,0,0,28,1,192,0,0,0,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,199,0,1,192,28,1,199,0,1,192,28,1,199,0,1,192,31,255,199,255,255,192,31,255,199,255,255,192,31,255,199,255,255,192,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,224,14,0,28,1,192,28,112,0,28,1,192,28,112,0,28,1,192,28,112,0,28,113,255,255,255,248,28,113,255,255,255,248,28,113,255,255,255,248,28,14,0,0,0,0,28,14,0,0,0,0,28,14,0,0,0,0, + // 0x9ad8 高 + 216,154,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,14,0,3,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,15,255,255,129,192,28,0,0,0,15,192,28,0,0,0,15,192,28,0,0,0,15,192, + // 0x9ec3 黃 + 195,158,45,48,32,48,0,250,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,15,255,255,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,248,255,255,255,255,255,248,255,255,255,255,255,248,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,112,7,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,14,0,3,128,0,0,14,0,3,128,0,0,14,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x9ede 點 + 222,158,45,48,32,48,0,250,0,0,0,0,112,0,0,0,0,0,112,0,0,0,0,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,252,113,248,0,112,0,252,113,248,0,112,0,252,113,248,0,112,0,227,254,56,0,127,248,227,254,56,0,127,248,227,254,56,0,127,248,224,112,56,0,112,0,224,112,56,0,112,0,224,112,56,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,255,255,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,255,255,248,255,255,248,255,255,248,255,255,248,255,255,248,255,255,248,0,112,0,224,0,56,0,112,0,224,0,56,0,112,0,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,0,127,248,224,0,56,255,128,0,224,0,56,255,128,0,224,0,56,255,128,0,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,0,0,56,224,0,56,227,142,56,224,0,56,227,142,56,224,0,56,227,142,56,224,0,56,227,142,0,255,255,248,227,142,0,255,255,248,227,142,0,255,255,248,224,0,0,224,0,56,224,0,0,224,0,56,224,0,0,224,0,56, + // 0x9f4a 齊 + 74,159,45,48,32,48,0,250,0,0,56,0,0,0,0,0,56,0,0,0,0,0,56,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,0,0,31,255,255,255,255,192,31,255,255,255,255,192,31,255,255,255,255,192,0,1,192,28,0,0,0,1,192,28,0,0,0,1,192,28,0,0,0,0,56,224,15,192,0,0,56,224,15,192,0,0,56,224,15,192,31,255,199,31,240,0,31,255,199,31,240,0,31,255,199,31,240,0,3,129,199,28,112,0,3,129,199,28,112,0,3,129,199,28,112,0,3,129,199,28,112,0,3,129,199,28,112,0,3,129,199,28,112,0,28,1,199,28,14,0,28,1,199,28,14,0,28,1,199,28,14,0,224,15,199,31,129,248,224,15,199,31,129,248,224,15,199,31,129,248,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,127,255,255,240,0,0,127,255,255,240,0,0,127,255,255,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0,3,128,0,0,112,0, + // 0xff1a : + 26,255,12,21,42,48,18,3,255,240,255,240,255,240,255,240,255,240,255,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,240,255,240,255,240,255,240,255,240,255,240, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Vietnamese_30.cpp b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Vietnamese_30.cpp new file mode 100644 index 000000000000..c5a54a797d4d --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/Unifont/30px/Unifont_Vietnamese_30.cpp @@ -0,0 +1,246 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../fontdata.h" + +#if HAS_GRAPHICAL_TFT && TFT_FONT == UNIFONT + +// Unifont Vietnamese 48pt, capital 'A' height: 30px, width: 100%, range: 0x0102-0x1ef9, glyphs: 107 +extern const uint8_t Unifont_Vietnamese_30[12660] = { + 161,30,2,1,249,30,42,250, // unifont_t + // 0x0102 Ă + 2,1,18,42,126,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x0103 ă + 3,1,18,39,117,24,3,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0110 Đ + 16,1,21,30,90,24,0,0,31,254,0,31,254,0,31,254,0,28,1,192,28,1,192,28,1,192,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,255,240,56,255,240,56,255,240,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,0,56,28,1,192,28,1,192,28,1,192,31,254,0,31,254,0,31,254,0, + // 0x0111 đ + 17,1,21,33,99,24,3,0,0,1,192,0,1,192,0,1,192,0,127,248,0,127,248,0,127,248,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,15,192,224,15,192,224,15,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x0128 Ĩ + 40,1,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x0129 ĩ + 41,1,18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,240,0,3,240,0,3,240,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,31,255,192,31,255,192,31,255,192, + // 0x0168 Ũ + 104,1,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x0169 ũ + 105,1,18,36,108,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x01a0 Ơ + 160,1,18,33,99,24,3,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x01a1 ơ + 161,1,18,27,81,24,3,0,0,1,192,0,1,192,0,1,192,31,241,192,31,241,192,31,241,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x01af Ư + 175,1,21,36,108,24,3,0,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x01b0 ư + 176,1,21,30,90,24,3,0,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,0,0,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0, + // 0x0303 ̃ + 3,3,18,6,18,0,235,33,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0, + // 0x0309 ̉ + 9,3,12,15,30,0,238,27,31,128,31,128,31,128,224,112,224,112,224,112,0,112,0,112,0,112,3,128,3,128,3,128,3,128,3,128,3,128, + // 0x0323 ̣ + 35,3,6,6,6,0,241,250,252,252,252,252,252,252, + // 0x0340 ̀ + 64,3,9,9,18,0,235,30,224,0,224,0,224,0,28,0,28,0,28,0,3,128,3,128,3,128, + // 0x0341 ́ + 65,3,9,9,18,0,244,30,3,128,3,128,3,128,28,0,28,0,28,0,224,0,224,0,224,0, + // 0x1ea0 Ạ + 160,30,15,36,72,24,3,250,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,224,14,224,14,224,14,224,14,224,14,224,14,255,254,255,254,255,254,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,0,0,0,0,0,0,3,128,3,128,3,128, + // 0x1ea1 ạ + 161,30,18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1ea2 Ả + 162,30,18,42,126,24,3,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,28,0,0,224,0,0,224,0,0,224,0,0,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,28,14,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192, + // 0x1ea3 ả + 163,30,18,39,117,24,3,0,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1ea4 Ấ + 164,30,18,42,126,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,254,0,255,254,0,255,254,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0, + // 0x1ea5 ấ + 165,30,18,39,117,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1ea6 Ầ + 166,30,18,42,126,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,31,255,192,31,255,192,31,255,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192, + // 0x1ea7 ầ + 167,30,18,39,117,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1ea8 Ẩ + 168,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,227,142,0,227,142,0,227,142,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,254,0,255,254,0,255,254,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0, + // 0x1ea9 ẩ + 169,30,21,42,126,24,3,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,0,113,192,0,113,192,0,113,192,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eaa Ẫ + 170,30,18,42,126,24,6,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,255,254,0,255,254,0,255,254,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0, + // 0x1eab ẫ + 171,30,21,42,126,24,3,0,3,240,56,3,240,56,3,240,56,28,15,192,28,15,192,28,15,192,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eac Ậ + 172,30,15,45,90,24,6,250,3,128,3,128,3,128,28,112,28,112,28,112,224,14,224,14,224,14,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,224,14,224,14,224,14,224,14,224,14,224,14,255,254,255,254,255,254,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,0,0,0,0,0,0,3,128,3,128,3,128, + // 0x1ead ậ + 173,30,18,42,126,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1eae Ắ + 174,30,15,42,84,24,3,0,0,112,0,112,0,112,3,128,3,128,3,128,224,14,224,14,224,14,31,240,31,240,31,240,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,224,14,224,14,224,14,224,14,224,14,224,14,255,254,255,254,255,254,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14, + // 0x1eaf ắ + 175,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eb0 Ằ + 176,30,15,42,84,24,3,0,28,0,28,0,28,0,3,128,3,128,3,128,224,14,224,14,224,14,31,240,31,240,31,240,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,224,14,224,14,224,14,224,14,224,14,224,14,255,254,255,254,255,254,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14, + // 0x1eb1 ằ + 177,30,18,42,126,24,3,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,28,1,192,28,1,192,28,1,192,3,254,0,3,254,0,3,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eb2 Ẳ + 178,30,21,42,126,24,0,0,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,227,240,56,227,240,56,227,240,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,31,255,192,31,255,192,31,255,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192, + // 0x1eb3 ẳ + 179,30,18,42,126,24,3,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eb4 Ẵ + 180,30,21,42,126,24,0,0,3,240,56,3,240,56,3,240,56,28,15,192,28,15,192,28,15,192,224,0,56,224,0,56,224,0,56,31,255,192,31,255,192,31,255,192,0,112,0,0,112,0,0,112,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,31,255,192,31,255,192,31,255,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192, + // 0x1eb5 ẵ + 181,30,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1eb6 Ặ + 182,30,15,42,84,24,3,250,224,14,224,14,224,14,31,240,31,240,31,240,3,128,3,128,3,128,28,112,28,112,28,112,28,112,28,112,28,112,224,14,224,14,224,14,224,14,224,14,224,14,255,254,255,254,255,254,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,224,14,0,0,0,0,0,0,3,128,3,128,3,128, + // 0x1eb7 ặ + 183,30,18,39,117,24,3,250,28,14,0,28,14,0,28,14,0,3,240,0,3,240,0,3,240,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,0,1,192,0,1,192,0,1,192,31,255,192,31,255,192,31,255,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1eb8 Ẹ + 184,30,18,36,108,24,3,250,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1eb9 ẹ + 185,30,18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1eba Ẻ + 186,30,18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ebb ẻ + 187,30,18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ebc Ẽ + 188,30,18,39,117,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ebd ẽ + 189,30,18,33,99,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ebe Ế + 190,30,18,42,126,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ebf ế + 191,30,18,39,117,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ec0 Ề + 192,30,18,42,126,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ec1 ề + 193,30,18,39,117,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ec2 Ể + 194,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,3,129,192,3,129,192,3,129,192,28,113,192,28,113,192,28,113,192,224,14,0,224,14,0,224,14,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ec3 ể + 195,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,3,129,192,3,129,192,3,129,192,28,126,0,28,126,0,28,126,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ec4 Ễ + 196,30,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192, + // 0x1ec5 ễ + 197,30,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ec6 Ệ + 198,30,18,45,135,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,254,0,255,254,0,255,254,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,255,255,192,255,255,192,255,255,192,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ec7 ệ + 199,30,18,42,126,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,255,255,192,255,255,192,255,255,192,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,0,0,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ec8 Ỉ + 200,30,15,42,84,24,6,0,3,128,3,128,3,128,0,112,0,112,0,112,0,112,0,112,0,112,3,128,3,128,3,128,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x1ec9 ỉ + 201,30,15,39,78,24,6,0,28,0,28,0,28,0,3,128,3,128,3,128,3,128,3,128,3,128,28,0,28,0,28,0,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254, + // 0x1eca Ị + 202,30,15,36,72,24,6,250,255,254,255,254,255,254,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,0,0,0,0,0,0,3,128,3,128,3,128, + // 0x1ecb ị + 203,30,15,39,78,24,6,250,3,128,3,128,3,128,3,128,3,128,3,128,0,0,0,0,0,0,31,128,31,128,31,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,3,128,255,254,255,254,255,254,0,0,0,0,0,0,3,128,3,128,3,128, + // 0x1ecc Ọ + 204,30,18,36,108,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ecd ọ + 205,30,18,30,90,24,3,250,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ece Ỏ + 206,30,18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ecf ỏ + 207,30,18,39,117,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed0 Ố + 208,30,18,42,126,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed1 ố + 209,30,18,39,117,24,3,0,0,1,192,0,1,192,0,1,192,3,142,0,3,142,0,3,142,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed2 Ồ + 210,30,18,42,126,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed3 ồ + 211,30,18,39,117,24,3,0,224,0,0,224,0,0,224,0,0,28,112,0,28,112,0,28,112,0,3,142,0,3,142,0,3,142,0,28,1,192,28,1,192,28,1,192,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed4 Ổ + 212,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,3,129,192,3,129,192,3,129,192,28,113,192,28,113,192,28,113,192,224,14,0,224,14,0,224,14,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed5 ổ + 213,30,18,42,126,24,3,0,0,14,0,0,14,0,0,14,0,0,1,192,0,1,192,0,1,192,3,129,192,3,129,192,3,129,192,28,126,0,28,126,0,28,126,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed6 Ỗ + 214,30,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed7 ỗ + 215,30,18,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,3,128,0,3,128,0,3,128,0,28,112,0,28,112,0,28,112,0,224,14,0,224,14,0,224,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ed8 Ộ + 216,30,18,45,135,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ed9 ộ + 217,30,18,42,126,24,3,250,3,240,0,3,240,0,3,240,0,28,14,0,28,14,0,28,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,254,0,31,254,0,31,254,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1eda Ớ + 218,30,21,42,126,24,3,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,1,192,28,1,192,28,1,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1edb ớ + 219,30,21,36,108,24,3,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,28,1,192,28,1,192,28,1,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1edc Ờ + 220,30,21,42,126,24,3,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,113,192,0,113,192,0,113,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1edd ờ + 221,30,21,36,108,24,3,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,113,192,0,113,192,0,113,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1ede Ở + 222,30,21,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,113,192,0,113,192,0,113,192,3,128,56,3,128,56,3,128,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1edf ở + 223,30,21,39,117,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1ee0 Ỡ + 224,30,21,39,117,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,1,192,0,1,192,0,1,192,31,240,56,31,240,56,31,240,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1ee1 ỡ + 225,30,21,39,117,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1ee2 Ợ + 226,30,21,42,126,24,3,250,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1ee3 ợ + 227,30,21,36,108,24,3,250,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,31,240,56,31,240,56,31,240,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1ee4 Ụ + 228,30,18,36,108,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ee5 ụ + 229,30,18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ee6 Ủ + 230,30,18,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ee7 ủ + 231,30,18,39,117,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,15,192,224,15,192,224,15,192,31,241,192,31,241,192,31,241,192, + // 0x1ee8 Ứ + 232,30,21,42,126,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1ee9 ứ + 233,30,21,36,108,24,3,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0, + // 0x1eea Ừ + 234,30,21,42,126,24,3,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1eeb ừ + 235,30,21,36,108,24,3,0,224,0,0,224,0,0,224,0,0,28,0,0,28,0,0,28,0,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0, + // 0x1eec Ử + 236,30,21,42,126,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,113,192,0,113,192,0,113,192,3,128,56,3,128,56,3,128,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1eed ử + 237,30,21,39,117,24,3,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,129,192,3,129,192,3,129,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0, + // 0x1eee Ữ + 238,30,21,42,126,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0, + // 0x1eef ữ + 239,30,21,39,117,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0, + // 0x1ef0 Ự + 240,30,21,42,126,24,3,250,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,31,240,0,31,240,0,31,240,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1ef1 ự + 241,30,21,36,108,24,3,250,0,1,192,0,1,192,0,1,192,0,0,56,0,0,56,0,0,56,224,14,56,224,14,56,224,14,56,224,15,192,224,15,192,224,15,192,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,14,0,224,126,0,224,126,0,224,126,0,31,142,0,31,142,0,31,142,0,0,0,0,0,0,0,0,0,0,3,128,0,3,128,0,3,128,0, + // 0x1ef2 Ỳ + 242,30,21,42,126,24,3,0,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x1ef3 ỳ + 243,30,18,45,135,24,3,250,28,0,0,28,0,0,28,0,0,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ef4 Ỵ + 244,30,21,36,108,24,3,250,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,112,0,0,112,0,0,112,0, + // 0x1ef5 ỵ + 245,30,18,30,90,24,3,250,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0,0,112,0,0,112,0,0,112,0, + // 0x1ef6 Ỷ + 246,30,21,42,126,24,3,0,0,112,0,0,112,0,0,112,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,14,0,0,112,0,0,112,0,0,112,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x1ef7 ỷ + 247,30,18,45,135,24,3,250,3,128,0,3,128,0,3,128,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,3,128,0,3,128,0,3,128,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, + // 0x1ef8 Ỹ + 248,30,21,39,117,24,3,0,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,224,0,56,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,28,1,192,3,142,0,3,142,0,3,142,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0,0,112,0, + // 0x1ef9 ỹ + 249,30,18,42,126,24,3,250,31,129,192,31,129,192,31,129,192,224,126,0,224,126,0,224,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,224,1,192,28,15,192,28,15,192,28,15,192,3,241,192,3,241,192,3,241,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,0,1,192,31,254,0,31,254,0,31,254,0, +}; + +#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/fontdata/fontdata.h b/Marlin/src/lcd/tft/fontdata/fontdata.h new file mode 100644 index 000000000000..9508656a8dd4 --- /dev/null +++ b/Marlin/src/lcd/tft/fontdata/fontdata.h @@ -0,0 +1,117 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#include "../../../inc/MarlinConfigPre.h" + +#define NOTOSANS 1 +#define UNIFONT 2 +#define HELVETICA 3 + +#ifndef TFT_FONT + #define TFT_FONT NOTOSANS +#endif + +#define _LATIN_EXTENDED_A 1 +#define _CYRILLIC 2 +#define _GREEK 3 +#define _KATAKANA 4 +#define _KOREAN 5 +#define _VIETNAMESE 6 +#define _SIMPLIFIED_CHINESE 7 +#define _TRADITIONAL_CHINESE 8 + +#define LCODE_cz _LATIN_EXTENDED_A +#define LCODE_hr _LATIN_EXTENDED_A +#define LCODE_pl _LATIN_EXTENDED_A +#define LCODE_sk _LATIN_EXTENDED_A +#define LCODE_tr _LATIN_EXTENDED_A +#define LCODE_bg _CYRILLIC +#define LCODE_ru _CYRILLIC +#define LCODE_uk _CYRILLIC +#define LCODE_el _GREEK +#define LCODE_el_CY _GREEK +#define LCODE_jp_kana _KATAKANA +#define LCODE_ko_KR _KOREAN +#define LCODE_vi _VIETNAMESE +#define LCODE_zh_CN _SIMPLIFIED_CHINESE +#define LCODE_zh_TW _TRADITIONAL_CHINESE + +#define _LCODE(N) (CAT(LCODE_, LCD_LANGUAGE) == N) + +#if _LCODE(_LATIN_EXTENDED_A) + #define FONT_EXTRA Latin_Extended_A + #define EXTRA_GLYPHS 128 +#elif _LCODE(_CYRILLIC) + #define FONT_EXTRA Cyrillic + #define EXTRA_GLYPHS 145 +#elif _LCODE(_GREEK) + #define FONT_EXTRA Greek + #define EXTRA_GLYPHS 73 +#elif _LCODE(_KATAKANA) + #define FONT_EXTRA Katakana + #define EXTRA_GLYPHS 102 +#elif _LCODE(_KOREAN) + #define FONT_EXTRA Korean + #define EXTRA_GLYPHS 110 +#elif _LCODE(_VIETNAMESE) + #define FONT_EXTRA Vietnamese + #define EXTRA_GLYPHS 107 +#elif _LCODE(_SIMPLIFIED_CHINESE) + #define FONT_EXTRA Simplified_Chinese + #define EXTRA_GLYPHS 373 +#elif _LCODE(_TRADITIONAL_CHINESE) + #define FONT_EXTRA Traditional_Chinese + #define EXTRA_GLYPHS 307 +#else // Basin Latin (0x0020 - 0x007f) and Latin-1 Supplement (0x0080-0x00ff) characters only + #define EXTRA_GLYPHS 0 +#endif + +#undef _LCODE +#undef LCODE_cz +#undef LCODE_hr +#undef LCODE_pl +#undef LCODE_sk +#undef LCODE_tr +#undef LCODE_bg +#undef LCODE_ru +#undef LCODE_uk +#undef LCODE_el +#undef LCODE_el_CY +#undef LCODE_jp_kana +#undef LCODE_ko_KR +#undef LCODE_vi +#undef LCODE_zh_CN +#undef LCODE_zh_TW + +#if TFT_FONT == NOTOSANS + #define FONT_FAMILY NotoSans_Medium +#elif TFT_FONT == UNIFONT + #define FONT_FAMILY Unifont +#elif TFT_FONT == HELVETICA + #define FONT_FAMILY Helvetica + #ifdef FONT_EXTRA + #error "Helvetica font does not have symbols required for selected LCD_LANGUAGE." + #endif +#else + #error "Invalid TFT_FONT value." +#endif diff --git a/Marlin/src/lcd/tft/images/back_32x32x4.cpp b/Marlin/src/lcd/tft/images/back_32x32x4.cpp index 84a6e3aba6f5..d19bc7650981 100644 --- a/Marlin/src/lcd/tft/images/back_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/back_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t back_32x32x4[512] = { +extern const uint8_t back_32x32x4[]; +const tImage Back_32x32x4 = { (void *)back_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t back_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/background_320x30x16.cpp b/Marlin/src/lcd/tft/images/background_320x30x16.cpp index 49c4a84a0c9d..8710bd2ea061 100644 --- a/Marlin/src/lcd/tft/images/background_320x30x16.cpp +++ b/Marlin/src/lcd/tft/images/background_320x30x16.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint16_t background_320x30x16[9600] = { +extern const uint16_t background_320x30x16[]; +const tImage Background320x30x16 = { (void *)background_320x30x16, 320, 30, HIGHCOLOR }; + +const uint16_t background_320x30x16[9600] = { 0x10F2, 0x18D2, 0x18D2, 0x10D2, 0x18D2, 0x18D2, 0x18D2, 0x18D2, 0x18D2, 0x18D2, 0x18D2, 0x18D2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18D2, 0x18F2, 0x18F2, 0x18D2, 0x18D2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F2, 0x18F3, 0x18F3, 0x20F2, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x2112, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x2113, 0x20F2, 0x20F3, 0x20F2, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x2113, 0x28F3, 0x2113, 0x20F3, 0x2113, 0x28F3, 0x20F3, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x28F3, 0x28F3, 0x2113, 0x2113, 0x2113, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2113, 0x2913, 0x2913, 0x2913, 0x2914, 0x2913, 0x2913, 0x28F3, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x28F3, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x28F3, 0x2913, 0x2913, 0x2914, 0x2913, 0x2913, 0x2913, 0x2113, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2913, 0x2113, 0x2113, 0x2113, 0x28F3, 0x28F3, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x2113, 0x20F3, 0x28F3, 0x2113, 0x20F3, 0x2113, 0x28F3, 0x2113, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F2, 0x20F3, 0x20F2, 0x2113, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x2112, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x20F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x20F2, 0x18F3, 0x18F3, 0x18F2, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F3, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x18F2, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D7C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9C, 0x1D9D, 0x1D9D, 0x1D9D, 0x1D9D, 0x259C, 0x1DBC, 0x1D9D, 0x259D, 0x1D9C, 0x259C, 0x259C, 0x259C, 0x259C, 0x259C, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25DD, 0x25DD, 0x25BD, 0x25BD, 0x1DDD, 0x25DD, 0x25DD, 0x25DD, 0x25BD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x2DFD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x2DFD, 0x2DFD, 0x2DFD, 0x2DFD, 0x2DFD, 0x25FD, 0x2DFE, 0x2DFD, 0x2DFD, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E3E, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E3D, 0x2E3D, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3D, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x365E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E3E, 0x365E, 0x2E5E, 0x2E5E, 0x2E5E, 0x365E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E5E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3D, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3D, 0x2E3E, 0x2E3E, 0x2E3E, 0x2E3D, 0x2E3D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E3E, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2E1D, 0x2DFD, 0x2DFD, 0x2DFE, 0x25FD, 0x2DFD, 0x2DFD, 0x2DFD, 0x2DFD, 0x2DFD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x2DFD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25FD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25DD, 0x25BD, 0x25DD, 0x25DD, 0x25DD, 0x1DDD, 0x25BD, 0x25BD, 0x25DD, 0x25DD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x25BD, 0x1C7C, 0x1C7C, 0x1C7C, 0x1C7B, 0x1C7C, 0x1C7C, 0x1C7C, 0x1C7C, 0x1C7C, 0x1C7C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x1C9C, 0x249C, 0x1C9C, 0x1D9D, 0x1D7C, 0x1CFC, 0x1C9C, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x24BC, 0x1CBC, 0x1CBC, 0x24BC, 0x24BC, 0x24BC, 0x1CBC, 0x24DC, 0x24DC, 0x24DC, 0x253D, 0x25BD, 0x253D, 0x24DD, 0x24BC, 0x24BC, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24FD, 0x24DC, 0x24DC, 0x24FD, 0x24FD, 0x24FC, 0x24DD, 0x24FD, 0x251C, 0x25FD, 0x255D, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FC, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x251D, 0x24FD, 0x24FD, 0x251D, 0x2D1D, 0x24FD, 0x2CFD, 0x25BD, 0x25BD, 0x253C, 0x2CFC, 0x2D1D, 0x251D, 0x2CFD, 0x2CFD, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1C, 0x2D5D, 0x2DDE, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D1D, 0x2D3D, 0x2D1D, 0x2D1D, 0x2E1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D3D, 0x2D1D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D3D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2DDE, 0x2D5D, 0x2D1C, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2D1D, 0x2CFD, 0x2CFD, 0x251D, 0x2D1D, 0x2CFC, 0x253C, 0x25BD, 0x25BD, 0x2CFD, 0x24FD, 0x2D1D, 0x251D, 0x24FD, 0x24FD, 0x251D, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x2CFD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x24FC, 0x24FD, 0x24FD, 0x24FD, 0x24FD, 0x255D, 0x25FD, 0x251C, 0x24FD, 0x24DD, 0x24FC, 0x24FD, 0x24FD, 0x24DC, 0x24DC, 0x24FD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24DD, 0x24BC, 0x24BC, 0x24DD, 0x253D, 0x25BD, 0x253D, 0x24DC, 0x24DC, 0x24DC, 0x1CBC, 0x24BC, 0x24BC, 0x24BC, 0x1CBC, 0x1CBC, 0x24BC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, 0x1CBC, diff --git a/Marlin/src/lcd/tft/images/bootscreen_112x38x1.cpp b/Marlin/src/lcd/tft/images/bootscreen_112x38x1.cpp index 2308917b1313..bac075e78bd1 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_112x38x1.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_112x38x1.cpp @@ -21,12 +21,16 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT #include "../../../inc/MarlinConfig.h" -extern const uint8_t marlin_logo_112x38x1[532] = { +extern const uint8_t marlin_logo_112x38x1[]; +const tImage MarlinLogo112x38x1 = { (void *)marlin_logo_112x38x1, 112, 38, GREYSCALE1 }; + +const uint8_t marlin_logo_112x38x1[532] = { B00000001,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111, B00001111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111,B11111111, B00011110,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000111,B11111111,B11111111, diff --git a/Marlin/src/lcd/tft/images/bootscreen_195x59x16.cpp b/Marlin/src/lcd/tft/images/bootscreen_195x59x16.cpp index 2545f845a80f..db49bba73367 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_195x59x16.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_195x59x16.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint16_t marlin_logo_195x59x16[11505] = { +extern const uint16_t marlin_logo_195x59x16[]; +const tImage MarlinLogo195x59x16 = { (void *)marlin_logo_195x59x16, 195, 59, HIGHCOLOR }; + +const uint16_t marlin_logo_195x59x16[11505] = { 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x310E, 0x7A32, 0xAAD3, 0xD395, 0xD395, 0xD395, 0xD375, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD375, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AE, 0x20AD, 0x18AD, 0x496F, 0xAAD3, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD375, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD375, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0x18AD, 0x20AB, 0x18AD, 0x18AD, 0x18AD, 0x20EE, 0x8252, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD3B5, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xDB95, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD396, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, 0xD395, diff --git a/Marlin/src/lcd/tft/images/bootscreen_228x255x2.cpp b/Marlin/src/lcd/tft/images/bootscreen_228x255x2.cpp index 08994071538d..35dc5b5f9c9c 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_228x255x2.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_228x255x2.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t marlin_logo_228x255x2[14535] = { +extern const uint8_t marlin_logo_228x255x2[]; +const tImage MarlinLogo228x255x2 = { (void *)marlin_logo_228x255x2, 228, 255, GREYSCALE2 }; + +const uint8_t marlin_logo_228x255x2[14535] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, diff --git a/Marlin/src/lcd/tft/images/bootscreen_228x255x4.cpp b/Marlin/src/lcd/tft/images/bootscreen_228x255x4.cpp index 3ed61a1b20d2..fe60e173e6b2 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_228x255x4.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_228x255x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t marlin_logo_228x255x4[29070] = { +extern const uint8_t marlin_logo_228x255x4[]; +const tImage MarlinLogo228x255x4 = { (void *)marlin_logo_228x255x4, 228, 255, GREYSCALE4 }; + +const uint8_t marlin_logo_228x255x4[29070] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x9E, 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, 0x2B, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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/Marlin/src/lcd/tft/images/bootscreen_320x240x16.cpp b/Marlin/src/lcd/tft/images/bootscreen_320x240x16.cpp index cad6f1fef1b6..5c2f68beedf6 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_320x240x16.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_320x240x16.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint16_t marlin_logo_320x240x16[76800] = { +extern const uint16_t marlin_logo_320x240x16[]; +const tImage MarlinLogo320x240x16 = { (void *)marlin_logo_320x240x16, 320, 240, HIGHCOLOR }; + +const uint16_t marlin_logo_320x240x16[76800] = { 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AE, 0x20AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x0119, 0x011A, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x20AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x18CE, 0x00F8, 0x0119, 0x0119, 0x0119, 0x0119, 0x08F7, 0x18CE, 0x18AD, 0x20AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x08D5, 0x011A, 0x0119, 0x10D2, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x28EE, 0x8252, 0xCB54, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18CD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x011A, 0x10D2, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18CD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18CD, 0x18CD, 0x18AE, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x08F5, 0x00F9, 0x0119, 0x00F7, 0x00F7, 0x0119, 0x0119, 0x08F5, 0x18AE, 0x18AD, 0x18AD, 0x18CD, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x20AE, 0x08F5, 0x0119, 0x0119, 0x10D2, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AE, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x20AD, 0x394F, 0xB313, 0xD395, 0x7211, 0x18AD, 0x18AD, 0x20CD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x18AD, 0x18AE, 0x0119, 0x00F9, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AE, 0x18AE, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AE, 0x0119, 0x011A, 0x18CD, 0x20AD, 0x18CD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AE, 0x0119, 0x011A, 0x08F3, 0x18AD, 0x18AD, 0x08F4, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x18AE, 0x08F5, 0x0119, 0x00F9, 0x10D2, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AD, 0x18CD, 0x18AD, 0x18AD, 0x496F, 0xCB55, 0xD395, 0xBB54, 0x28CE, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x18AE, 0x18AD, 0x18AD, 0x18CD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18CD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AE, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x20AD, 0x20AD, diff --git a/Marlin/src/lcd/tft/images/bootscreen_480x320x16.cpp b/Marlin/src/lcd/tft/images/bootscreen_480x320x16.cpp index b90228af03a8..ecec2f6e589d 100644 --- a/Marlin/src/lcd/tft/images/bootscreen_480x320x16.cpp +++ b/Marlin/src/lcd/tft/images/bootscreen_480x320x16.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint16_t marlin_logo_480x320x16[153600] = { +extern const uint16_t marlin_logo_480x320x16[]; +const tImage MarlinLogo480x320x16 = { (void *)marlin_logo_480x320x16, 480, 320, HIGHCOLOR }; + +const uint16_t marlin_logo_480x320x16[153600] = { 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x10AE, 0x00F8, 0x00F9, 0x00D6, 0x18AD, 0x188C, 0x188C, 0x18AC, 0x188C, 0x18AC, 0x18AC, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188D, 0x188D, 0x188D, 0x188D, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x011A, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x188D, 0x18AD, 0x18AC, 0x18AC, 0x188D, 0x18AD, 0x18AD, 0x18AC, 0x18AD, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x188D, 0x18AC, 0x18AC, 0x00F9, 0x00F9, 0x18AC, 0x18AD, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188C, 0x188C, 0x18AB, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x10AE, 0x00F7, 0x00F9, 0x00F6, 0x188D, 0x18AC, 0x18AC, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x011A, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AC, 0x18AD, 0x18AD, 0x188D, 0x18AC, 0x18AC, 0x188D, 0x188D, 0x18AC, 0x18AD, 0x18AD, 0x18AD, 0x18AC, 0x18AD, 0x00F9, 0x00F9, 0x18AC, 0x18AD, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x10AF, 0x00F8, 0x00F8, 0x00F7, 0x18AD, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188D, 0x18AC, 0x18AD, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x011A, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x011A, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x0119, 0x0119, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AC, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AD, 0x18AC, 0x18AD, 0x00F9, 0x00F9, 0x18AC, 0x18AD, 0x18AC, 0x18AC, 0x18AD, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x18AC, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188C, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, 0x188B, diff --git a/Marlin/src/lcd/tft/images/btn_rounded_42x39x4.cpp b/Marlin/src/lcd/tft/images/btn_rounded_42x39x4.cpp index bd7b9220ebaa..7045558df595 100644 --- a/Marlin/src/lcd/tft/images/btn_rounded_42x39x4.cpp +++ b/Marlin/src/lcd/tft/images/btn_rounded_42x39x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t btn_rounded_42x39x4[819] = { +extern const uint8_t btn_rounded_42x39x4[]; +const tImage BtnRounded_42x39x4 = { (void *)btn_rounded_42x39x4, 42, 39, GREYSCALE4 }; + +const uint8_t btn_rounded_42x39x4[819] = { 0x87, 0x87, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x87, 0x77, 0xAB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xB9, 0x77, 0x78, 0x87, 0x8E, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xD7, 0x68, diff --git a/Marlin/src/lcd/tft/images/btn_rounded_64x52x4.cpp b/Marlin/src/lcd/tft/images/btn_rounded_64x52x4.cpp index 4768f7e5fc89..c0892a6a6d11 100644 --- a/Marlin/src/lcd/tft/images/btn_rounded_64x52x4.cpp +++ b/Marlin/src/lcd/tft/images/btn_rounded_64x52x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t btn_rounded_64x52x4[1664] = { +extern const uint8_t btn_rounded_64x52x4[]; +const tImage BtnRounded_64x52x4 = { (void *)btn_rounded_64x52x4, 64, 52, GREYSCALE4 }; + +const uint8_t btn_rounded_64x52x4[1664] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x88, 0x88, 0x88, 0x79, 0xCE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEB, 0x87, 0x77, 0x78, diff --git a/Marlin/src/lcd/tft/images/cancel_64x64x4.cpp b/Marlin/src/lcd/tft/images/cancel_64x64x4.cpp index a315e2df1cbe..9198c4b717b8 100644 --- a/Marlin/src/lcd/tft/images/cancel_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/cancel_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t cancel_64x64x4[2048] = { +extern const uint8_t cancel_64x64x4[]; +const tImage Cancel_64x64x4 = { (void *)cancel_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t cancel_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/chamber_64x64x4.cpp b/Marlin/src/lcd/tft/images/chamber_64x64x4.cpp index 23722f616d13..8def3df406d7 100644 --- a/Marlin/src/lcd/tft/images/chamber_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/chamber_64x64x4.cpp @@ -21,10 +21,15 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t chamber_64x64x4[2048] = { +extern const uint8_t chamber_64x64x4[], chamber_heated_64x64x4[]; +const tImage Chamber_64x64x4 = { (void *)chamber_64x64x4, 64, 64, GREYSCALE4 }; +const tImage Chamber_Heated_64x64x4 = { (void *)chamber_heated_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t chamber_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, @@ -91,7 +96,7 @@ extern const uint8_t chamber_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }; -extern const uint8_t chamber_heated_64x64x4[2048] = { +const uint8_t chamber_heated_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/confirm_64x64x4.cpp b/Marlin/src/lcd/tft/images/confirm_64x64x4.cpp index ff623ed34917..2c3da6fb79a3 100644 --- a/Marlin/src/lcd/tft/images/confirm_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/confirm_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t confirm_64x64x4[2048] = { +extern const uint8_t confirm_64x64x4[]; +const tImage Confirm_64x64x4 = { (void *)confirm_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t confirm_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/decrease_64x64x4.cpp b/Marlin/src/lcd/tft/images/decrease_64x64x4.cpp index b58670098622..dd85a1e66c70 100644 --- a/Marlin/src/lcd/tft/images/decrease_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/decrease_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t decrease_64x64x4[2048] = { +extern const uint8_t decrease_64x64x4[]; +const tImage Decrease_64x64x4 = { (void *)decrease_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t decrease_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/directory_32x32x4.cpp b/Marlin/src/lcd/tft/images/directory_32x32x4.cpp index 5fa55c8468f0..847eafd6d403 100644 --- a/Marlin/src/lcd/tft/images/directory_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/directory_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t directory_32x32x4[512] = { +extern const uint8_t directory_32x32x4[]; +const tImage Directory_32x32x4 = { (void *)directory_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t directory_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/down_32x32x4.cpp b/Marlin/src/lcd/tft/images/down_32x32x4.cpp index eabf6f97fec5..2ea8cc33c06f 100644 --- a/Marlin/src/lcd/tft/images/down_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/down_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t down_32x32x4[512] = { +extern const uint8_t down_32x32x4[]; +const tImage Down_32x32x4 = { (void *)down_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t down_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/fan_64x64x4.cpp b/Marlin/src/lcd/tft/images/fan_64x64x4.cpp index 1a154a6ea415..f4a09afe2b96 100644 --- a/Marlin/src/lcd/tft/images/fan_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/fan_64x64x4.cpp @@ -21,10 +21,15 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t fan0_64x64x4[2048] = { +extern const uint8_t fan0_64x64x4[], fan1_64x64x4[]; +const tImage Fan0_64x64x4 = { (void *)fan0_64x64x4, 64, 64, GREYSCALE4 }; +const tImage Fan1_64x64x4 = { (void *)fan1_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t fan0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, @@ -91,7 +96,7 @@ extern const uint8_t fan0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }; -extern const uint8_t fan1_64x64x4[2048] = { +const uint8_t fan1_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/fan_fast_64x64x4.cpp b/Marlin/src/lcd/tft/images/fan_fast_64x64x4.cpp index 4586954ccf57..e5b4bf3ae857 100644 --- a/Marlin/src/lcd/tft/images/fan_fast_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/fan_fast_64x64x4.cpp @@ -21,10 +21,15 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t fan_fast0_64x64x4[2048] = { +extern const uint8_t fan_fast0_64x64x4[], fan_fast1_64x64x4[]; +const tImage Fan_Fast0_64x64x4 = { (void *)fan_fast0_64x64x4, 64, 64, GREYSCALE4 }; +const tImage Fan_Fast1_64x64x4 = { (void *)fan_fast1_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t fan_fast0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, @@ -91,7 +96,7 @@ extern const uint8_t fan_fast0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }; -extern const uint8_t fan_fast1_64x64x4[2048] = { +const uint8_t fan_fast1_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/fan_slow_64x64x4.cpp b/Marlin/src/lcd/tft/images/fan_slow_64x64x4.cpp index 7bbd149ae797..009a7572a72f 100644 --- a/Marlin/src/lcd/tft/images/fan_slow_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/fan_slow_64x64x4.cpp @@ -21,10 +21,15 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t fan_slow0_64x64x4[2048] = { +extern const uint8_t fan_slow0_64x64x4[], fan_slow1_64x64x4[]; +const tImage Fan_Slow0_64x64x4 = { (void *)fan_slow0_64x64x4, 64, 64, GREYSCALE4 }; +const tImage Fan_Slow1_64x64x4 = { (void *)fan_slow1_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t fan_slow0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, @@ -91,7 +96,7 @@ extern const uint8_t fan_slow0_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }; -extern const uint8_t fan_slow1_64x64x4[2048] = { +const uint8_t fan_slow1_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/feedrate_32x32x4.cpp b/Marlin/src/lcd/tft/images/feedrate_32x32x4.cpp index 52f9124fdbd9..c5a51c49a783 100644 --- a/Marlin/src/lcd/tft/images/feedrate_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/feedrate_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t feedrate_32x32x4[512] = { +extern const uint8_t feedrate_32x32x4[]; +const tImage Feedrate_32x32x4 = { (void *)feedrate_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t feedrate_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x87, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x77, 0x8A, 0xCD, 0xA8, 0xCC, 0xB9, 0x87, 0x78, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x77, 0x9C, 0xEF, 0xFF, 0xA8, 0xFF, 0xFF, 0xDA, 0x87, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/flowrate_32x32x4.cpp b/Marlin/src/lcd/tft/images/flowrate_32x32x4.cpp index 2259472f792a..ae98ed235b11 100644 --- a/Marlin/src/lcd/tft/images/flowrate_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/flowrate_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t flowrate_32x32x4[512] = { +extern const uint8_t flowrate_32x32x4[]; +const tImage Flowrate_32x32x4 = { (void *)flowrate_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t flowrate_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x77, 0x77, 0x88, 0x88, 0x88, 0x87, 0x77, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/heated_bed_64x64x4.cpp b/Marlin/src/lcd/tft/images/heated_bed_64x64x4.cpp index 5382ff7558ed..486c5dfaa14c 100644 --- a/Marlin/src/lcd/tft/images/heated_bed_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/heated_bed_64x64x4.cpp @@ -21,10 +21,15 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t bed_64x64x4[2048] = { +extern const uint8_t bed_64x64x4[], bed_heated_64x64x4[]; +const tImage Bed_64x64x4 = { (void *)bed_64x64x4, 64, 64, GREYSCALE4 }; +const tImage Bed_Heated_64x64x4 = { (void *)bed_heated_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t bed_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, @@ -91,7 +96,7 @@ extern const uint8_t bed_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88 }; -extern const uint8_t bed_heated_64x64x4[2048] = { +const uint8_t bed_heated_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/home_64x64x4.cpp b/Marlin/src/lcd/tft/images/home_64x64x4.cpp index 27384c99c0f7..a98978ff25be 100644 --- a/Marlin/src/lcd/tft/images/home_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/home_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t home_64x64x4[2048] = { +extern const uint8_t home_64x64x4[]; +const tImage Home_64x64x4 = { (void *)home_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t home_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/hotend_64x64x4.cpp b/Marlin/src/lcd/tft/images/hotend_64x64x4.cpp index 7b068aa7e404..f3829dd89e42 100644 --- a/Marlin/src/lcd/tft/images/hotend_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/hotend_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t hotend_64x64x4[2048] = { +extern const uint8_t hotend_64x64x4[]; +const tImage HotEnd_64x64x4 = { (void *)hotend_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t hotend_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/increase_64x64x4.cpp b/Marlin/src/lcd/tft/images/increase_64x64x4.cpp index 710fe8e78e13..58b43cf66139 100644 --- a/Marlin/src/lcd/tft/images/increase_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/increase_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t increase_64x64x4[2048] = { +extern const uint8_t increase_64x64x4[]; +const tImage Increase_64x64x4 = { (void *)increase_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t increase_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/left_32x32x4.cpp b/Marlin/src/lcd/tft/images/left_32x32x4.cpp index 486518d5085d..b1d750a8121f 100644 --- a/Marlin/src/lcd/tft/images/left_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/left_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t left_32x32x4[512] = { +extern const uint8_t left_32x32x4[]; +const tImage Left_32x32x4 = { (void *)left_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t left_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x77, 0x77, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/leveling_32x32x4.cpp b/Marlin/src/lcd/tft/images/leveling_32x32x4.cpp index 3243d7f27f35..0863feafba10 100644 --- a/Marlin/src/lcd/tft/images/leveling_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/leveling_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t leveling_32x32x4[512] = { +extern const uint8_t leveling_32x32x4[]; +const tImage Leveling_32x32x4 = { (void *)leveling_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t leveling_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/menu_64x64x4.cpp b/Marlin/src/lcd/tft/images/menu_64x64x4.cpp index bbbe66ab1ba1..2c4454148e9b 100644 --- a/Marlin/src/lcd/tft/images/menu_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/menu_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t menu_64x64x4[2048] = { +extern const uint8_t menu_64x64x4[]; +const tImage Menu_64x64x4 = { (void *)menu_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t menu_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/pause_64x64x4.cpp b/Marlin/src/lcd/tft/images/pause_64x64x4.cpp index 3079b22a17c9..430fa8422c91 100644 --- a/Marlin/src/lcd/tft/images/pause_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/pause_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t pause_64x64x4[2048] = { +extern const uint8_t pause_64x64x4[]; +const tImage Pause_64x64x4 = { (void *)pause_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t pause_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/refresh_32x32x4.cpp b/Marlin/src/lcd/tft/images/refresh_32x32x4.cpp index f8548d2837a4..223e65923369 100644 --- a/Marlin/src/lcd/tft/images/refresh_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/refresh_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t refresh_32x32x4[512] = { +extern const uint8_t refresh_32x32x4[]; +const tImage Refresh_32x32x4 = { (void *)refresh_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t refresh_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/right_32x32x4.cpp b/Marlin/src/lcd/tft/images/right_32x32x4.cpp index ab9c36eae069..67d14967871c 100644 --- a/Marlin/src/lcd/tft/images/right_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/right_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t right_32x32x4[512] = { +extern const uint8_t right_32x32x4[]; +const tImage Right_32x32x4 = { (void *)right_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t right_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x77, 0x77, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/sd_64x64x4.cpp b/Marlin/src/lcd/tft/images/sd_64x64x4.cpp index 3f786f46caa8..805021f21be9 100644 --- a/Marlin/src/lcd/tft/images/sd_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/sd_64x64x4.cpp @@ -21,9 +21,13 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT +extern const uint8_t sd_64x64x4[]; +const tImage SD_64x64x4 = { (void *)sd_64x64x4, 64, 64, GREYSCALE4 }; + extern const uint8_t sd_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/settings_64x64x4.cpp b/Marlin/src/lcd/tft/images/settings_64x64x4.cpp index 093e7ff61ef8..08174051430c 100644 --- a/Marlin/src/lcd/tft/images/settings_64x64x4.cpp +++ b/Marlin/src/lcd/tft/images/settings_64x64x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t settings_64x64x4[2048] = { +extern const uint8_t settings_64x64x4[]; +const tImage Settings_64x64x4 = { (void *)settings_64x64x4, 64, 64, GREYSCALE4 }; + +const uint8_t settings_64x64x4[2048] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/slider_8x16x4.cpp b/Marlin/src/lcd/tft/images/slider_8x16x4.cpp index 2839cd980634..e3d6298aa28d 100644 --- a/Marlin/src/lcd/tft/images/slider_8x16x4.cpp +++ b/Marlin/src/lcd/tft/images/slider_8x16x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t slider_8x16x4[64] = { +extern const uint8_t slider_8x16x4[]; +const tImage Slider8x16x4 = { (void *)slider_8x16x4, 8, 16, GREYSCALE4 }; + +const uint8_t slider_8x16x4[64] = { 0x88, 0xFF, 0xFF, 0x88, 0x8F, 0xFF, 0xFF, 0xF8, 0x8F, 0xFF, 0xFF, 0xF8, diff --git a/Marlin/src/lcd/tft/images/time_elapsed_32x32x4.cpp b/Marlin/src/lcd/tft/images/time_elapsed_32x32x4.cpp index e6626f4c876b..4ba462431f81 100644 --- a/Marlin/src/lcd/tft/images/time_elapsed_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/time_elapsed_32x32x4.cpp @@ -17,10 +17,14 @@ **/ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t time_elapsed_32x32x4[512] = { +extern const uint8_t time_elapsed_32x32x4[]; +const tImage Time_Elapsed_32x32x4 = { (void *)time_elapsed_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t time_elapsed_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0xad, 0xca, 0x98, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0xff, 0xff, 0xfe, 0xb8, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/time_remaining_32x32x4.cpp b/Marlin/src/lcd/tft/images/time_remaining_32x32x4.cpp index 8c64403a2bb3..7088e9dea302 100644 --- a/Marlin/src/lcd/tft/images/time_remaining_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/time_remaining_32x32x4.cpp @@ -17,10 +17,14 @@ **/ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t time_remaining_32x32x4[512] = { +extern const uint8_t time_remaining_32x32x4[]; +const tImage Time_Remaining_32x32x4 = { (void *)time_remaining_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t time_remaining_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x9a, 0xbd, 0xb8, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x89, 0xce, 0xff, 0xff, 0xf9, 0x78, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/images/up_32x32x4.cpp b/Marlin/src/lcd/tft/images/up_32x32x4.cpp index b36a028cc909..9147ea9b2c32 100644 --- a/Marlin/src/lcd/tft/images/up_32x32x4.cpp +++ b/Marlin/src/lcd/tft/images/up_32x32x4.cpp @@ -21,10 +21,14 @@ */ #include "../../../inc/MarlinConfigPre.h" +#include "../tft_image.h" #if HAS_GRAPHICAL_TFT -extern const uint8_t up_32x32x4[512] = { +extern const uint8_t up_32x32x4[]; +const tImage Up_32x32x4 = { (void *)up_32x32x4, 32, 32, GREYSCALE4 }; + +const uint8_t up_32x32x4[512] = { 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, diff --git a/Marlin/src/lcd/tft/tft.h b/Marlin/src/lcd/tft/tft.h index 15464cb0459d..87dea453df90 100644 --- a/Marlin/src/lcd/tft/tft.h +++ b/Marlin/src/lcd/tft/tft.h @@ -23,7 +23,7 @@ #include "tft_queue.h" #include "canvas.h" -#include "tft_color.h" +#include "ui_theme.h" #include "tft_string.h" #include "tft_image.h" #include "../tft_io/tft_io.h" diff --git a/Marlin/src/lcd/tft/tft_color.h b/Marlin/src/lcd/tft/tft_color.h index 66ec41e71143..cd03224615a9 100644 --- a/Marlin/src/lcd/tft/tft_color.h +++ b/Marlin/src/lcd/tft/tft_color.h @@ -67,125 +67,3 @@ #define COLOR_VIVID_GREEN 0x7FE0 // #7FFF00 #define COLOR_DARK_ORANGE 0xFC40 // #FF8C00 #define COLOR_CORAL_RED 0xF9E7 // #FF3F3F - -#ifndef COLOR_BACKGROUND - #define COLOR_BACKGROUND COLOR_MIDNIGHT_BLUE -#endif -#ifndef COLOR_SELECTION_BG - #define COLOR_SELECTION_BG COLOR_DARK_PURPLE -#endif -#ifndef COLOR_WEBSITE_URL - #define COLOR_WEBSITE_URL COLOR_OCEAN_BOAT_BLUE -#endif - -#ifndef COLOR_INACTIVE - #define COLOR_INACTIVE COLOR_GREY -#endif -#ifndef COLOR_COLD - #define COLOR_COLD COLOR_CYAN -#endif -#ifndef COLOR_HOTEND - #define COLOR_HOTEND COLOR_SCARLET -#endif -#ifndef COLOR_HEATED_BED - #define COLOR_HEATED_BED COLOR_DARK_ORANGE -#endif -#ifndef COLOR_CHAMBER - #define COLOR_CHAMBER COLOR_DARK_ORANGE -#endif -#ifndef COLOR_COOLER - #define COLOR_COOLER COLOR_DARK_ORANGE -#endif -#ifndef COLOR_FAN - #define COLOR_FAN COLOR_CYAN -#endif - -#ifndef COLOR_AXIS_HOMED - #define COLOR_AXIS_HOMED COLOR_WHITE -#endif -#ifndef COLOR_AXIS_NOT_HOMED - #define COLOR_AXIS_NOT_HOMED COLOR_YELLOW -#endif - -#ifndef COLOR_RATE_100 - #define COLOR_RATE_100 COLOR_VIVID_GREEN -#endif -#ifndef COLOR_RATE_ALTERED - #define COLOR_RATE_ALTERED COLOR_YELLOW -#endif - -#ifndef COLOR_PRINT_TIME - #define COLOR_PRINT_TIME COLOR_CYAN -#endif - -#ifndef COLOR_PROGRESS_FRAME - #define COLOR_PROGRESS_FRAME COLOR_WHITE -#endif -#ifndef COLOR_PROGRESS_BAR - #define COLOR_PROGRESS_BAR COLOR_BLUE -#endif -#ifndef COLOR_PROGRESS_BG - #define COLOR_PROGRESS_BG COLOR_BLACK -#endif - -#ifndef COLOR_STATUS_MESSAGE - #define COLOR_STATUS_MESSAGE COLOR_YELLOW -#endif - -#ifndef COLOR_CONTROL_ENABLED - #define COLOR_CONTROL_ENABLED COLOR_WHITE -#endif -#ifndef COLOR_CONTROL_DISABLED - #define COLOR_CONTROL_DISABLED COLOR_GREY -#endif -#ifndef COLOR_CONTROL_CANCEL - #define COLOR_CONTROL_CANCEL COLOR_SCARLET -#endif -#ifndef COLOR_CONTROL_CONFIRM - #define COLOR_CONTROL_CONFIRM COLOR_VIVID_GREEN -#endif -#ifndef COLOR_BUSY - #define COLOR_BUSY COLOR_SILVER -#endif - -#ifndef COLOR_MENU_TEXT - #define COLOR_MENU_TEXT COLOR_YELLOW -#endif -#ifndef COLOR_MENU_VALUE - #define COLOR_MENU_VALUE COLOR_WHITE -#endif - -#ifndef COLOR_SLIDER - #define COLOR_SLIDER COLOR_WHITE -#endif -#ifndef COLOR_SLIDER_INACTIVE - #define COLOR_SLIDER_INACTIVE COLOR_GREY -#endif - -#ifndef COLOR_UBL - #define COLOR_UBL COLOR_WHITE -#endif - -#ifndef COLOR_TOUCH_CALIBRATION - #define COLOR_TOUCH_CALIBRATION COLOR_WHITE -#endif - -#ifndef COLOR_KILL_SCREEN_BG - #define COLOR_KILL_SCREEN_BG COLOR_MAROON -#endif -#ifndef COLOR_KILL_SCREEN_TEXT - #define COLOR_KILL_SCREEN_TEXT COLOR_WHITE -#endif - -#ifndef E_BTN_COLOR - #define E_BTN_COLOR COLOR_YELLOW -#endif -#ifndef X_BTN_COLOR - #define X_BTN_COLOR COLOR_CORAL_RED -#endif -#ifndef Y_BTN_COLOR - #define Y_BTN_COLOR COLOR_VIVID_GREEN -#endif -#ifndef Z_BTN_COLOR - #define Z_BTN_COLOR COLOR_LIGHT_BLUE -#endif diff --git a/Marlin/src/lcd/tft/tft_font.h b/Marlin/src/lcd/tft/tft_font.h index 6c8838ed7c48..114c1b735e58 100644 --- a/Marlin/src/lcd/tft/tft_font.h +++ b/Marlin/src/lcd/tft/tft_font.h @@ -21,10 +21,6 @@ */ #pragma once -#include "../../inc/MarlinConfigPre.h" - -#if HAS_GRAPHICAL_TFT - #define JOIN(A,B,C) CAT(CAT(A, B), C) #define MENU_FONT_NAME JOIN(FONT_FAMILY, _, FONT_SIZE) #define SYMBOLS_FONT_NAME JOIN(FONT_FAMILY, _Symbols_, FONT_SIZE) @@ -36,5 +32,3 @@ extern const uint8_t SYMBOLS_FONT_NAME[]; #define EXTRA_FONT_NAME JOIN(FONT_FAMILY, JOIN(_, FONT_EXTRA, _), FONT_SIZE) extern const uint8_t EXTRA_FONT_NAME[]; #endif - -#endif // HAS_GRAPHICAL_TFT diff --git a/Marlin/src/lcd/tft/tft_image.cpp b/Marlin/src/lcd/tft/tft_image.cpp index 6309de032ebb..1a5851948d1e 100644 --- a/Marlin/src/lcd/tft/tft_image.cpp +++ b/Marlin/src/lcd/tft/tft_image.cpp @@ -27,58 +27,10 @@ #include "tft_image.h" #include "ui_common.h" -const tImage NoLogo = { nullptr, 0, 0, NOCOLORS }; - -#if ENABLED(SHOW_BOOTSCREEN) - const tImage MarlinLogo112x38x1 = { (void *)marlin_logo_112x38x1, 112, 38, GREYSCALE1 }; - const tImage MarlinLogo228x255x2 = { (void *)marlin_logo_228x255x2, 228, 255, GREYSCALE2 }; - const tImage MarlinLogo228x255x4 = { (void *)marlin_logo_228x255x4, 228, 255, GREYSCALE4 }; - const tImage MarlinLogo195x59x16 = { (void *)marlin_logo_195x59x16, 195, 59, HIGHCOLOR }; - const tImage MarlinLogo320x240x16 = { (void *)marlin_logo_320x240x16, 320, 240, HIGHCOLOR }; - const tImage MarlinLogo480x320x16 = { (void *)marlin_logo_480x320x16, 480, 320, HIGHCOLOR }; -#endif -const tImage Background320x30x16 = { (void *)background_320x30x16, 320, 30, HIGHCOLOR }; - -const tImage HotEnd_64x64x4 = { (void *)hotend_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Bed_64x64x4 = { (void *)bed_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Bed_Heated_64x64x4 = { (void *)bed_heated_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Chamber_64x64x4 = { (void *)chamber_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Chamber_Heated_64x64x4 = { (void *)chamber_heated_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan0_64x64x4 = { (void *)fan0_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan1_64x64x4 = { (void *)fan1_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan_Slow0_64x64x4 = { (void *)fan_slow0_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan_Slow1_64x64x4 = { (void *)fan_slow1_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan_Fast0_64x64x4 = { (void *)fan_fast0_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Fan_Fast1_64x64x4 = { (void *)fan_fast1_64x64x4, 64, 64, GREYSCALE4 }; -const tImage SD_64x64x4 = { (void *)sd_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Home_64x64x4 = { (void *)home_64x64x4, 64, 64, GREYSCALE4 }; -const tImage BtnRounded_64x52x4 = { (void *)btn_rounded_64x52x4, 64, 52, GREYSCALE4 }; -const tImage BtnRounded_42x39x4 = { (void *)btn_rounded_42x39x4, 42, 39, GREYSCALE4 }; -const tImage Menu_64x64x4 = { (void *)menu_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Settings_64x64x4 = { (void *)settings_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Confirm_64x64x4 = { (void *)confirm_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Cancel_64x64x4 = { (void *)cancel_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Increase_64x64x4 = { (void *)increase_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Decrease_64x64x4 = { (void *)decrease_64x64x4, 64, 64, GREYSCALE4 }; -const tImage Pause_64x64x4 = { (void *)pause_64x64x4, 64, 64, GREYSCALE4 }; - -const tImage Feedrate_32x32x4 = { (void *)feedrate_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Flowrate_32x32x4 = { (void *)flowrate_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Directory_32x32x4 = { (void *)directory_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Back_32x32x4 = { (void *)back_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Up_32x32x4 = { (void *)up_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Down_32x32x4 = { (void *)down_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Left_32x32x4 = { (void *)left_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Right_32x32x4 = { (void *)right_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Refresh_32x32x4 = { (void *)refresh_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Leveling_32x32x4 = { (void *)leveling_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Time_Elapsed_32x32x4 = { (void *)time_elapsed_32x32x4, 32, 32, GREYSCALE4 }; -const tImage Time_Remaining_32x32x4 = { (void *)time_remaining_32x32x4, 32, 32, GREYSCALE4 }; - -const tImage Slider8x16x4 = { (void *)slider_8x16x4, 8, 16, GREYSCALE4 }; +const tImage NoLogo = { nullptr, 0, 0, NOCOLORS }; const tImage images[imgCount] = { - TERN(SHOW_BOOTSCREEN, TERN(BOOT_MARLIN_LOGO_SMALL, MarlinLogo195x59x16, MARLIN_LOGO_FULL_SIZE), NoLogo), + TERN(SHOW_BOOTSCREEN, BOOTSCREEN_LOGO, NoLogo), HotEnd_64x64x4, Bed_64x64x4, Bed_Heated_64x64x4, diff --git a/Marlin/src/lcd/tft/tft_image.h b/Marlin/src/lcd/tft/tft_image.h index 7761a72dc34e..7087ea44ba99 100644 --- a/Marlin/src/lcd/tft/tft_image.h +++ b/Marlin/src/lcd/tft/tft_image.h @@ -25,47 +25,6 @@ #include -extern const uint8_t marlin_logo_112x38x1[]; -extern const uint8_t marlin_logo_228x255x2[]; -extern const uint8_t marlin_logo_228x255x4[]; -extern const uint16_t marlin_logo_195x59x16[]; -extern const uint16_t marlin_logo_320x240x16[]; -extern const uint16_t marlin_logo_480x320x16[]; -extern const uint16_t background_320x30x16[]; - -extern const uint8_t hotend_64x64x4[]; -extern const uint8_t bed_64x64x4[], bed_heated_64x64x4[]; -extern const uint8_t chamber_64x64x4[], chamber_heated_64x64x4[]; -extern const uint8_t fan0_64x64x4[], fan1_64x64x4[]; -extern const uint8_t fan_slow0_64x64x4[], fan_slow1_64x64x4[]; -extern const uint8_t fan_fast0_64x64x4[], fan_fast1_64x64x4[]; -extern const uint8_t sd_64x64x4[]; -extern const uint8_t home_64x64x4[]; -extern const uint8_t btn_rounded_64x52x4[]; -extern const uint8_t btn_rounded_42x39x4[]; -extern const uint8_t menu_64x64x4[]; -extern const uint8_t settings_64x64x4[]; -extern const uint8_t confirm_64x64x4[]; -extern const uint8_t cancel_64x64x4[]; -extern const uint8_t increase_64x64x4[]; -extern const uint8_t decrease_64x64x4[]; -extern const uint8_t pause_64x64x4[]; - -extern const uint8_t feedrate_32x32x4[]; -extern const uint8_t flowrate_32x32x4[]; -extern const uint8_t directory_32x32x4[]; -extern const uint8_t back_32x32x4[]; -extern const uint8_t up_32x32x4[]; -extern const uint8_t down_32x32x4[]; -extern const uint8_t left_32x32x4[]; -extern const uint8_t right_32x32x4[]; -extern const uint8_t refresh_32x32x4[]; -extern const uint8_t leveling_32x32x4[]; -extern const uint8_t time_elapsed_32x32x4[]; -extern const uint8_t time_remaining_32x32x4[]; - -extern const uint8_t slider_8x16x4[]; - enum MarlinImage : uint8_t { imgBootScreen = 0x00, imgHotEnd, diff --git a/Marlin/src/lcd/tft/tft_string.h b/Marlin/src/lcd/tft/tft_string.h index 420a3cc2b559..ae05df40f00d 100644 --- a/Marlin/src/lcd/tft/tft_string.h +++ b/Marlin/src/lcd/tft/tft_string.h @@ -51,98 +51,7 @@ #define FONT_MARLIN_HIEROGLYPHS_2BPP 0xA2 #define FONT_MARLIN_HIEROGLYPHS_4BPP 0xA4 -#define _LATIN_EXTENDED_A 1 -#define _CYRILLIC 2 -#define _GREEK 3 -#define _KATAKANA 4 -#define _KOREAN 5 -#define _VIETNAMESE 6 -#define _SIMPLIFIED_CHINESE 7 -#define _TRADITIONAL_CHINESE 8 - -#define LCODE_cz _LATIN_EXTENDED_A -#define LCODE_hr _LATIN_EXTENDED_A -#define LCODE_pl _LATIN_EXTENDED_A -#define LCODE_sk _LATIN_EXTENDED_A -#define LCODE_tr _LATIN_EXTENDED_A -#define LCODE_bg _CYRILLIC -#define LCODE_ru _CYRILLIC -#define LCODE_uk _CYRILLIC -#define LCODE_el _GREEK -#define LCODE_el_CY _GREEK -#define LCODE_jp_kana _KATAKANA -#define LCODE_ko_KR _KOREAN -#define LCODE_vi _VIETNAMESE -#define LCODE_zh_CN _SIMPLIFIED_CHINESE -#define LCODE_zh_TW _TRADITIONAL_CHINESE - -#define _LCODE(N) (CAT(LCODE_, LCD_LANGUAGE) == N) - -#if _LCODE(_LATIN_EXTENDED_A) - #define FONT_EXTRA Latin_Extended_A - #define EXTRA_GLYPHS 128 -#elif _LCODE(_CYRILLIC) - #define FONT_EXTRA Cyrillic - #define EXTRA_GLYPHS 145 -#elif _LCODE(_GREEK) - #define FONT_EXTRA Greek - #define EXTRA_GLYPHS 73 -#elif _LCODE(_KATAKANA) - #define FONT_EXTRA Katakana - #define EXTRA_GLYPHS 102 -#elif _LCODE(_KOREAN) - #define FONT_EXTRA Korean - #define EXTRA_GLYPHS 110 -#elif _LCODE(_VIETNAMESE) - #define FONT_EXTRA Vietnamese - #define EXTRA_GLYPHS 107 -#elif _LCODE(_SIMPLIFIED_CHINESE) - #define FONT_EXTRA Simplified_Chinese - #define EXTRA_GLYPHS 373 -#elif _LCODE(_TRADITIONAL_CHINESE) - #define FONT_EXTRA Traditional_Chinese - #define EXTRA_GLYPHS 307 -#else // Basin Latin (0x0020 - 0x007f) and Latin-1 Supplement (0x0080-0x00ff) characters only - #define EXTRA_GLYPHS 0 -#endif - -#undef _LCODE -#undef LCODE_cz -#undef LCODE_hr -#undef LCODE_pl -#undef LCODE_sk -#undef LCODE_tr -#undef LCODE_bg -#undef LCODE_ru -#undef LCODE_uk -#undef LCODE_el -#undef LCODE_el_CY -#undef LCODE_jp_kana -#undef LCODE_ko_KR -#undef LCODE_vi -#undef LCODE_zh_CN -#undef LCODE_zh_TW - -#define NOTOSANS 1 -#define UNIFONT 2 -#define HELVETICA 3 - -#ifndef TFT_FONT - #define TFT_FONT NOTOSANS -#endif - -#if TFT_FONT == NOTOSANS - #define FONT_FAMILY NotoSans_Medium -#elif TFT_FONT == UNIFONT - #define FONT_FAMILY Unifont -#elif TFT_FONT == HELVETICA - #define FONT_FAMILY Helvetica - #ifdef FONT_EXTRA - #error "Helvetica font does not have symbols required for selected LCD_LANGUAGE." - #endif -#else - #error "Invalid TFT_FONT value." -#endif +#include "fontdata/fontdata.h" // TFT font with unicode support typedef struct __attribute__((__packed__)) { diff --git a/Marlin/src/lcd/tft/themes/theme_ANET_BLACK.h b/Marlin/src/lcd/tft/themes/theme_ANET_BLACK.h new file mode 100644 index 000000000000..8db729a04b4e --- /dev/null +++ b/Marlin/src/lcd/tft/themes/theme_ANET_BLACK.h @@ -0,0 +1,53 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +// Anet ET4/ET5 Black Theme + +#define COLOR_RED2 0xF003 // #F70019 +#define COLOR_ORANGE2 0xFDE0 // #FFBE00 +#define COLOR_LIME2 0xA7E0 // #A5FF00 +#define COLOR_BLACK2 0x2124 // #212421 + +#define COLOR_BACKGROUND COLOR_BLACK2 +#define COLOR_SELECTION_BG COLOR_ORANGE2 +#define COLOR_COLD COLOR_WHITE +#define COLOR_HOTEND COLOR_RED2 +#define COLOR_HEATED_BED COLOR_RED2 +#define COLOR_CHAMBER COLOR_WHITE +#define COLOR_FAN COLOR_WHITE +#define COLOR_AXIS_FRAME COLOR_WHITE +#define COLOR_AXIS_HOMED COLOR_ORANGE2 +#define COLOR_AXIS_NOT_HOMED COLOR_ORANGE2 +#define COLOR_RATE_100 COLOR_LIME2 +#define COLOR_RATE_ALTERED COLOR_ORANGE2 +#define COLOR_PRINT_TIME COLOR_WHITE +#define COLOR_PROGRESS_BAR COLOR_ORANGE2 +#define COLOR_STATUS_MESSAGE COLOR_ORANGE2 +#define COLOR_SD_ENABLED COLOR_CONTROL_ENABLED +#define COLOR_SD_DISABLED COLOR_CONTROL_DISABLED +#define COLOR_MENU_TEXT COLOR_WHITE +#define COLOR_MENU_VALUE_FONT COLOR_ORANGE2 +#define COLOR_SLIDER COLOR_ORANGE2 +#define COLOR_INCREASE COLOR_WHITE +#define COLOR_DECREASE COLOR_WHITE +#define COLOR_TICK COLOR_VIVID_GREEN diff --git a/Marlin/src/lcd/tft/themes/theme_BLACK_MARLIN.h b/Marlin/src/lcd/tft/themes/theme_BLACK_MARLIN.h new file mode 100644 index 000000000000..4af483b4929a --- /dev/null +++ b/Marlin/src/lcd/tft/themes/theme_BLACK_MARLIN.h @@ -0,0 +1,30 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#define MOVE_AXIS_SCREEN // Special "Move Axis" screen activated by touching coordinates area + +#ifndef COLOR_BACKGROUND + #define COLOR_BACKGROUND COLOR_BLACK +#endif +#define COLOR_COLD COLOR_WHITE +#define COLOR_FAN COLOR_WHITE diff --git a/Marlin/src/lcd/tft/themes/theme_BLUE_MARLIN.h b/Marlin/src/lcd/tft/themes/theme_BLUE_MARLIN.h new file mode 100644 index 000000000000..9e0a518badb0 --- /dev/null +++ b/Marlin/src/lcd/tft/themes/theme_BLUE_MARLIN.h @@ -0,0 +1,133 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#define MOVE_AXIS_SCREEN // Special "Move Axis" screen activated by touching coordinates area + +#ifndef COLOR_BACKGROUND + #define COLOR_BACKGROUND COLOR_MIDNIGHT_BLUE +#endif +#ifndef COLOR_SELECTION_BG + #define COLOR_SELECTION_BG COLOR_DARK_PURPLE +#endif +#ifndef COLOR_WEBSITE_URL + #define COLOR_WEBSITE_URL COLOR_OCEAN_BOAT_BLUE +#endif + +#ifndef COLOR_INACTIVE + #define COLOR_INACTIVE COLOR_GREY +#endif +#ifndef COLOR_COLD + #define COLOR_COLD COLOR_CYAN +#endif +#ifndef COLOR_HOTEND + #define COLOR_HOTEND COLOR_SCARLET +#endif +#ifndef COLOR_HEATED_BED + #define COLOR_HEATED_BED COLOR_DARK_ORANGE +#endif +#ifndef COLOR_CHAMBER + #define COLOR_CHAMBER COLOR_DARK_ORANGE +#endif +#ifndef COLOR_COOLER + #define COLOR_COOLER COLOR_DARK_ORANGE +#endif +#ifndef COLOR_FAN + #define COLOR_FAN COLOR_CYAN +#endif + +#ifndef COLOR_AXIS_HOMED + #define COLOR_AXIS_HOMED COLOR_WHITE +#endif +#ifndef COLOR_AXIS_NOT_HOMED + #define COLOR_AXIS_NOT_HOMED COLOR_YELLOW +#endif + +#ifndef COLOR_RATE_100 + #define COLOR_RATE_100 COLOR_VIVID_GREEN +#endif +#ifndef COLOR_RATE_ALTERED + #define COLOR_RATE_ALTERED COLOR_YELLOW +#endif + +#ifndef COLOR_PRINT_TIME + #define COLOR_PRINT_TIME COLOR_CYAN +#endif + +#ifndef COLOR_PROGRESS_FRAME + #define COLOR_PROGRESS_FRAME COLOR_WHITE +#endif +#ifndef COLOR_PROGRESS_BAR + #define COLOR_PROGRESS_BAR COLOR_BLUE +#endif +#ifndef COLOR_PROGRESS_BG + #define COLOR_PROGRESS_BG COLOR_BLACK +#endif + +#ifndef COLOR_STATUS_MESSAGE + #define COLOR_STATUS_MESSAGE COLOR_YELLOW +#endif + +#ifndef COLOR_CONTROL_ENABLED + #define COLOR_CONTROL_ENABLED COLOR_WHITE +#endif +#ifndef COLOR_CONTROL_DISABLED + #define COLOR_CONTROL_DISABLED COLOR_GREY +#endif +#ifndef COLOR_CONTROL_CANCEL + #define COLOR_CONTROL_CANCEL COLOR_SCARLET +#endif +#ifndef COLOR_CONTROL_CONFIRM + #define COLOR_CONTROL_CONFIRM COLOR_VIVID_GREEN +#endif +#ifndef COLOR_BUSY + #define COLOR_BUSY COLOR_SILVER +#endif + +#ifndef COLOR_MENU_TEXT + #define COLOR_MENU_TEXT COLOR_YELLOW +#endif +#ifndef COLOR_MENU_VALUE + #define COLOR_MENU_VALUE COLOR_WHITE +#endif + +#ifndef COLOR_SLIDER + #define COLOR_SLIDER COLOR_WHITE +#endif +#ifndef COLOR_SLIDER_INACTIVE + #define COLOR_SLIDER_INACTIVE COLOR_GREY +#endif + +#ifndef COLOR_UBL + #define COLOR_UBL COLOR_WHITE +#endif + +#ifndef COLOR_TOUCH_CALIBRATION + #define COLOR_TOUCH_CALIBRATION COLOR_WHITE +#endif + +#ifndef COLOR_KILL_SCREEN_BG + #define COLOR_KILL_SCREEN_BG COLOR_MAROON +#endif +#ifndef COLOR_KILL_SCREEN_TEXT + #define COLOR_KILL_SCREEN_TEXT COLOR_WHITE +#endif diff --git a/Marlin/src/lcd/tft/themes/theme_CUSTOM.h b/Marlin/src/lcd/tft/themes/theme_CUSTOM.h new file mode 100644 index 000000000000..4af483b4929a --- /dev/null +++ b/Marlin/src/lcd/tft/themes/theme_CUSTOM.h @@ -0,0 +1,30 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#define MOVE_AXIS_SCREEN // Special "Move Axis" screen activated by touching coordinates area + +#ifndef COLOR_BACKGROUND + #define COLOR_BACKGROUND COLOR_BLACK +#endif +#define COLOR_COLD COLOR_WHITE +#define COLOR_FAN COLOR_WHITE diff --git a/Marlin/src/lcd/tft/themes/theme_default.h b/Marlin/src/lcd/tft/themes/theme_default.h new file mode 100644 index 000000000000..c2e1770904f6 --- /dev/null +++ b/Marlin/src/lcd/tft/themes/theme_default.h @@ -0,0 +1,144 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#ifndef COLOR_BACKGROUND + #define COLOR_BACKGROUND COLOR_MIDNIGHT_BLUE +#endif +#ifndef COLOR_SELECTION_BG + #define COLOR_SELECTION_BG COLOR_DARK_PURPLE +#endif +#ifndef COLOR_WEBSITE_URL + #define COLOR_WEBSITE_URL COLOR_OCEAN_BOAT_BLUE +#endif + +#ifndef COLOR_INACTIVE + #define COLOR_INACTIVE COLOR_GREY +#endif +#ifndef COLOR_COLD + #define COLOR_COLD COLOR_CYAN +#endif +#ifndef COLOR_HOTEND + #define COLOR_HOTEND COLOR_SCARLET +#endif +#ifndef COLOR_HEATED_BED + #define COLOR_HEATED_BED COLOR_DARK_ORANGE +#endif +#ifndef COLOR_CHAMBER + #define COLOR_CHAMBER COLOR_DARK_ORANGE +#endif +#ifndef COLOR_COOLER + #define COLOR_COOLER COLOR_DARK_ORANGE +#endif +#ifndef COLOR_FAN + #define COLOR_FAN COLOR_CYAN +#endif + +#ifndef COLOR_AXIS_HOMED + #define COLOR_AXIS_HOMED COLOR_WHITE +#endif +#ifndef COLOR_AXIS_NOT_HOMED + #define COLOR_AXIS_NOT_HOMED COLOR_YELLOW +#endif + +#ifndef COLOR_RATE_100 + #define COLOR_RATE_100 COLOR_VIVID_GREEN +#endif +#ifndef COLOR_RATE_ALTERED + #define COLOR_RATE_ALTERED COLOR_YELLOW +#endif + +#ifndef COLOR_PRINT_TIME + #define COLOR_PRINT_TIME COLOR_CYAN +#endif + +#ifndef COLOR_PROGRESS_FRAME + #define COLOR_PROGRESS_FRAME COLOR_WHITE +#endif +#ifndef COLOR_PROGRESS_BAR + #define COLOR_PROGRESS_BAR COLOR_BLUE +#endif +#ifndef COLOR_PROGRESS_BG + #define COLOR_PROGRESS_BG COLOR_BLACK +#endif + +#ifndef COLOR_STATUS_MESSAGE + #define COLOR_STATUS_MESSAGE COLOR_YELLOW +#endif + +#ifndef COLOR_CONTROL_ENABLED + #define COLOR_CONTROL_ENABLED COLOR_WHITE +#endif +#ifndef COLOR_CONTROL_DISABLED + #define COLOR_CONTROL_DISABLED COLOR_GREY +#endif +#ifndef COLOR_CONTROL_CANCEL + #define COLOR_CONTROL_CANCEL COLOR_SCARLET +#endif +#ifndef COLOR_CONTROL_CONFIRM + #define COLOR_CONTROL_CONFIRM COLOR_VIVID_GREEN +#endif +#ifndef COLOR_BUSY + #define COLOR_BUSY COLOR_SILVER +#endif + +#ifndef COLOR_MENU_TEXT + #define COLOR_MENU_TEXT COLOR_YELLOW +#endif +#ifndef COLOR_MENU_VALUE + #define COLOR_MENU_VALUE COLOR_WHITE +#endif + +#ifndef COLOR_SLIDER + #define COLOR_SLIDER COLOR_WHITE +#endif +#ifndef COLOR_SLIDER_INACTIVE + #define COLOR_SLIDER_INACTIVE COLOR_GREY +#endif + +#ifndef COLOR_UBL + #define COLOR_UBL COLOR_WHITE +#endif + +#ifndef COLOR_TOUCH_CALIBRATION + #define COLOR_TOUCH_CALIBRATION COLOR_WHITE +#endif + +#ifndef COLOR_KILL_SCREEN_BG + #define COLOR_KILL_SCREEN_BG COLOR_MAROON +#endif +#ifndef COLOR_KILL_SCREEN_TEXT + #define COLOR_KILL_SCREEN_TEXT COLOR_WHITE +#endif + +#ifndef E_BTN_COLOR + #define E_BTN_COLOR COLOR_YELLOW +#endif +#ifndef X_BTN_COLOR + #define X_BTN_COLOR COLOR_CORAL_RED +#endif +#ifndef Y_BTN_COLOR + #define Y_BTN_COLOR COLOR_VIVID_GREEN +#endif +#ifndef Z_BTN_COLOR + #define Z_BTN_COLOR COLOR_LIGHT_BLUE +#endif diff --git a/Marlin/src/lcd/tft/touch.cpp b/Marlin/src/lcd/tft/touch.cpp index 0c742071ff1c..3de0f4f42aa4 100644 --- a/Marlin/src/lcd/tft/touch.cpp +++ b/Marlin/src/lcd/tft/touch.cpp @@ -247,10 +247,6 @@ void Touch::touch(touch_control_t *control) { case UBL: hold(control, UBL_REPEAT_DELAY); ui.encoderPosition += control->data; break; #endif - case MOVE_AXIS: - ui.goto_screen((screenFunc_t)ui.move_axis_screen); - break; - // TODO: TOUCH could receive data to pass to the callback case BUTTON: ((screenFunc_t)control->data)(); break; @@ -323,11 +319,4 @@ bool MarlinUI::touch_pressed() { return touch.is_clicked(); } -void add_control(uint16_t x, uint16_t y, TouchControlType control_type, intptr_t data, MarlinImage image, bool is_enabled, uint16_t color_enabled, uint16_t color_disabled) { - const uint16_t width = images[image].width, height = images[image].height; - tft.canvas(x, y, width, height); - tft.add_image(0, 0, image, is_enabled ? color_enabled : color_disabled); - if (is_enabled) touch.add_control(control_type, x, y, width, height, data); -} - #endif // TOUCH_SCREEN diff --git a/Marlin/src/lcd/tft/touch.h b/Marlin/src/lcd/tft/touch.h index 91e863573b92..16f51bfaaa31 100644 --- a/Marlin/src/lcd/tft/touch.h +++ b/Marlin/src/lcd/tft/touch.h @@ -23,9 +23,6 @@ #include "../../inc/MarlinConfigPre.h" -#include "tft_color.h" -#include "tft_image.h" - #if ENABLED(TOUCH_SCREEN_CALIBRATION) #include "../tft_io/touch_calibration.h" #endif @@ -64,17 +61,10 @@ enum TouchControlType : uint16_t { FEEDRATE, FLOWRATE, UBL, - MOVE_AXIS, STOP, BUTTON, }; -typedef void (*screenFunc_t)(); - -void add_control(uint16_t x, uint16_t y, TouchControlType control_type, intptr_t data, MarlinImage image, bool is_enabled = true, uint16_t color_enabled = COLOR_CONTROL_ENABLED, uint16_t color_disabled = COLOR_CONTROL_DISABLED); -inline void add_control(uint16_t x, uint16_t y, TouchControlType control_type, MarlinImage image, bool is_enabled = true, uint16_t color_enabled = COLOR_CONTROL_ENABLED, uint16_t color_disabled = COLOR_CONTROL_DISABLED) { add_control(x, y, control_type, 0, image, is_enabled, color_enabled, color_disabled); } -inline void add_control(uint16_t x, uint16_t y, screenFunc_t screen, MarlinImage image, bool is_enabled = true, uint16_t color_enabled = COLOR_CONTROL_ENABLED, uint16_t color_disabled = COLOR_CONTROL_DISABLED) { add_control(x, y, MENU_SCREEN, (intptr_t)screen, image, is_enabled, color_enabled, color_disabled); } - typedef struct __attribute__((__packed__)) { TouchControlType type; uint16_t x; @@ -109,7 +99,7 @@ class Touch { static bool get_point(int16_t *x, int16_t *y); static void touch(touch_control_t *control); - static void hold(touch_control_t *control, millis_t delay = 0); + static void hold(touch_control_t *control, millis_t delay=0); public: static void init(); @@ -131,7 +121,10 @@ class Touch { static void sleepTimeout(); static void wakeUp(); #endif - static void add_control(TouchControlType type, uint16_t x, uint16_t y, uint16_t width, uint16_t height, intptr_t data = 0); + static void add_control(TouchControlType type, uint16_t x, uint16_t y, uint16_t width, uint16_t height, intptr_t data=0); + static void add_control(TouchControlType type, uint16_t x, uint16_t y, uint16_t width, uint16_t height, void (*handler)()) { + add_control(type, x, y, width, height, intptr_t(handler)); + } }; extern Touch touch; diff --git a/Marlin/src/lcd/tft/ui_1024x600.cpp b/Marlin/src/lcd/tft/ui_1024x600.cpp deleted file mode 100644 index ddb606674ccf..000000000000 --- a/Marlin/src/lcd/tft/ui_1024x600.cpp +++ /dev/null @@ -1,1083 +0,0 @@ -/** - * Marlin 3D Printer Firmware - * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] - * - * Based on Sprinter and grbl. - * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -#include "../../inc/MarlinConfigPre.h" - -#if HAS_UI_1024x600 - -#include "ui_common.h" - -#include "../marlinui.h" -#include "../menu/menu.h" -#include "../../libs/numtostr.h" - -#include "../../sd/cardreader.h" -#include "../../module/temperature.h" -#include "../../module/printcounter.h" -#include "../../module/planner.h" -#include "../../module/motion.h" - -#if DISABLED(LCD_PROGRESS_BAR) && ALL(FILAMENT_LCD_DISPLAY, HAS_MEDIA) - #include "../../feature/filwidth.h" - #include "../../gcode/parser.h" -#endif - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #include "../../feature/bedlevel/bedlevel.h" -#endif - -void MarlinUI::tft_idle() { - #if ENABLED(TOUCH_SCREEN) - if (TERN0(HAS_TOUCH_SLEEP, lcd_sleep_task())) return; - if (draw_menu_navigation) { - add_control(164, TFT_HEIGHT - 50, PAGE_UP, imgPageUp, encoderTopLine > 0); - add_control(796, TFT_HEIGHT - 50, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items); - add_control(480, TFT_HEIGHT - 50, BACK, imgBack); - draw_menu_navigation = false; - } - #endif - - tft.queue.async(); - - TERN_(TOUCH_SCREEN, if (tft.queue.is_empty()) touch.idle()); // Touch driver is not DMA-aware, so only check for touch controls after screen drawing is completed -} - -#if ENABLED(SHOW_BOOTSCREEN) - - void MarlinUI::show_bootscreen() { - tft.queue.reset(); - - tft.canvas(0, 0, TFT_WIDTH, TFT_HEIGHT); - #if ENABLED(BOOT_MARLIN_LOGO_SMALL) - #define BOOT_LOGO_W 195 // MarlinLogo195x59x16 - #define BOOT_LOGO_H 59 - #define SITE_URL_Y (TFT_HEIGHT - 70) - tft.set_background(COLOR_BACKGROUND); - #else - #define BOOT_LOGO_W TFT_WIDTH // MarlinLogo480x320x16 - #define BOOT_LOGO_H TFT_HEIGHT - #define SITE_URL_Y (TFT_HEIGHT - 90) - #endif - tft.add_image((TFT_WIDTH - BOOT_LOGO_W) / 2, (TFT_HEIGHT - BOOT_LOGO_H) / 2, imgBootScreen); - #ifdef WEBSITE_URL - tft_string.set(WEBSITE_URL); - tft.add_text(tft_string.center(TFT_WIDTH), SITE_URL_Y, COLOR_WEBSITE_URL, tft_string); - #endif - - tft.queue.sync(); - } - - void MarlinUI::bootscreen_completion(const millis_t sofar) { - if ((BOOTSCREEN_TIMEOUT) > sofar) safe_delay((BOOTSCREEN_TIMEOUT) - sofar); - clear_lcd(); - } - -#endif - -void MarlinUI::draw_kill_screen() { - tft.queue.reset(); - tft.fill(0, 0, TFT_WIDTH, TFT_HEIGHT, COLOR_KILL_SCREEN_BG); - - uint16_t line = 2; - - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - line++; - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT_F(MSG_HALTED)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT_F(MSG_PLEASE_RESET)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - tft.queue.sync(); -} - -void draw_heater_status(uint16_t x, uint16_t y, const int8_t heater) { - MarlinImage image = imgHotEnd; - celsius_t currentTemperature, targetTemperature; - - if (heater >= 0) { // HotEnd - #if HAS_EXTRUDERS - currentTemperature = thermalManager.wholeDegHotend(heater); - targetTemperature = thermalManager.degTargetHotend(heater); - #else - return; - #endif - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - currentTemperature = thermalManager.wholeDegBed(); - targetTemperature = thermalManager.degTargetBed(); - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - currentTemperature = thermalManager.wholeDegChamber(); - #if HAS_HEATED_CHAMBER - targetTemperature = thermalManager.degTargetChamber(); - #else - targetTemperature = ABSOLUTE_ZERO; - #endif - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - currentTemperature = thermalManager.wholeDegCooler(); - targetTemperature = TERN(HAS_COOLER, thermalManager.degTargetCooler(), ABSOLUTE_ZERO); - } - #endif - else return; - - TERN_(TOUCH_SCREEN, if (targetTemperature >= 0) touch.add_control(HEATER, x, y, 80, 120, heater)); - tft.canvas(x, y, 80, 120); - tft.set_background(COLOR_BACKGROUND); - - uint16_t color = currentTemperature < 0 ? COLOR_INACTIVE : COLOR_COLD; - - if (heater >= 0) { // HotEnd - if (currentTemperature >= 50) color = COLOR_HOTEND; - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - if (currentTemperature >= 50) color = COLOR_HEATED_BED; - image = targetTemperature > 0 ? imgBedHeated : imgBed; - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - if (currentTemperature >= 50) color = COLOR_CHAMBER; - image = targetTemperature > 0 ? imgChamberHeated : imgChamber; - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - if (currentTemperature <= 26) color = COLOR_COLD; - if (currentTemperature > 26) color = COLOR_RED; - image = targetTemperature > 26 ? imgCoolerHot : imgCooler; - } - #endif - - tft.add_image(8, 28, image, color); - - tft_string.set(i16tostr3rj(currentTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 2, 82, color, tft_string); - - if (targetTemperature >= 0) { - tft_string.set(i16tostr3rj(targetTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 2, 8, color, tft_string); - } -} - -void draw_fan_status(uint16_t x, uint16_t y, const bool blink) { - TERN_(TOUCH_SCREEN, touch.add_control(FAN, x, y, 80, 120)); - tft.canvas(x, y, 80, 120); - tft.set_background(COLOR_BACKGROUND); - - uint8_t fanSpeed = thermalManager.fan_speed[0]; - MarlinImage image; - - if (fanSpeed >= 127) - image = blink ? imgFanFast1 : imgFanFast0; - else if (fanSpeed > 0) - image = blink ? imgFanSlow1 : imgFanSlow0; - else - image = imgFanIdle; - - tft.add_image(8, 20, image, COLOR_FAN); - - tft_string.set(ui8tostr4pctrj(thermalManager.fan_speed[0])); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 6, 82, COLOR_FAN, tft_string); -} - -void MarlinUI::draw_status_screen() { - const bool blink = get_blink(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - // Statuses of heaters and fans - uint16_t y = TFT_STATUS_TOP_Y; - for (uint16_t i = 0 ; i < ITEMS_COUNT; i++) { - const uint16_t x = (TFT_WIDTH / ITEMS_COUNT - 80) / 2 + (TFT_WIDTH * i / ITEMS_COUNT); - switch (i) { - #if HAS_EXTRUDERS - case ITEM_E0: draw_heater_status(x, y, H_E0); break; - #endif - #if HAS_MULTI_HOTEND - case ITEM_E1: draw_heater_status(x, y, H_E1); break; - #endif - #if HOTENDS > 2 - case ITEM_E2: draw_heater_status(x, y, H_E2); break; - #endif - #if HAS_HEATED_BED - case ITEM_BED: draw_heater_status(x, y, H_BED); break; - #endif - #if HAS_TEMP_CHAMBER - case ITEM_CHAMBER: draw_heater_status(x, y, H_CHAMBER); break; - #endif - #if HAS_TEMP_COOLER - case ITEM_COOLER: draw_heater_status(x, y, H_COOLER); break; - #endif - #if HAS_FAN - case ITEM_FAN: draw_fan_status(x, y, blink); break; - #endif - } - } - - y += 200; - - // Coordinates - tft.canvas(4, y, TFT_WIDTH - 8, FONT_LINE_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, TFT_WIDTH - 8, FONT_LINE_HEIGHT, COLOR_AXIS_HOMED); - - if (TERN0(LCD_SHOW_E_TOTAL, printingIsActive())) { - #if ENABLED(LCD_SHOW_E_TOTAL) - tft.add_text(200, 3, COLOR_AXIS_HOMED, "E"); - const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm - tft_string.set(ftostr4sign(e_move_accumulator / escale)); - tft_string.add(escale == 10 ? 'c' : 'm'); - tft_string.add('m'); - tft.add_text(500 - tft_string.width(), 3, COLOR_AXIS_HOMED, tft_string); - #endif - } - else { - #if HAS_X_AXIS - tft.add_text(200, 3, COLOR_AXIS_HOMED, "X"); - const bool nhx = axis_should_home(X_AXIS); - if (blink && nhx) - tft_string.set('?'); - else - tft_string.set(ftostr4sign(LOGICAL_X_POSITION(current_position.x))); - tft.add_text(300 - tft_string.width(), 3, nhx ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - - #if HAS_Y_AXIS - tft.add_text(500, 3, COLOR_AXIS_HOMED, "Y"); - const bool nhy = axis_should_home(Y_AXIS); - if (blink && nhy) - tft_string.set('?'); - else - tft_string.set(ftostr4sign(LOGICAL_Y_POSITION(current_position.y))); - tft.add_text(600 - tft_string.width(), 3, nhy ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - } - - #if HAS_Z_AXIS - tft.add_text(800, 3, COLOR_AXIS_HOMED, "Z"); - uint16_t offset = 32; - const bool nhz = axis_should_home(Z_AXIS); - if (blink && nhz) - tft_string.set('?'); - else { - const float z = LOGICAL_Z_POSITION(current_position.z); - tft_string.set(ftostr52sp((int16_t)z)); - tft_string.rtrim(); - offset += tft_string.width(); - - tft_string.set(ftostr52sp(z)); - offset -= tft_string.width(); - } - tft.add_text(900 - tft_string.width() - offset, 3, nhz ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif // HAS_Z_AXIS - - TERN_(TOUCH_SCREEN, touch.add_control(MOVE_AXIS, 4, y, TFT_WIDTH - 8, FONT_LINE_HEIGHT)); - - y += 100; - // Feed rate - tft.canvas(274, y, 200, 32); - tft.set_background(COLOR_BACKGROUND); - uint16_t color = feedrate_percentage == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - tft.add_image(0, 0, imgFeedRate, color); - tft_string.set(i16tostr3rj(feedrate_percentage)); - tft_string.add('%'); - tft.add_text(36, 1, color, tft_string); - TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, 274, y, 200, 32)); - - // Flow rate - #if HAS_EXTRUDERS - tft.canvas(650, y, 128, 32); - tft.set_background(COLOR_BACKGROUND); - color = planner.flow_percentage[0] == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - tft.add_image(0, 0, imgFlowRate, color); - tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder])); - tft_string.add('%'); - tft.add_text(36, 1, color, tft_string); - TERN_(TOUCH_SCREEN, touch.add_control(FLOWRATE, 650, y, 200, 32, active_extruder)); - #endif - - #if ENABLED(TOUCH_SCREEN) - add_control(900, y, menu_main, imgSettings); - #if HAS_MEDIA - const bool cm = card.isMounted(), pa = printingIsActive(); - if (cm && pa) - add_control(12, y, STOP, imgCancel, true, COLOR_CONTROL_CANCEL); - else - add_control(12, y, menu_media, imgSD, cm && !pa, COLOR_CONTROL_ENABLED, COLOR_CONTROL_DISABLED); - #endif - #endif - - y += 100; - const progress_t progress = TERN(HAS_PRINT_PROGRESS_PERMYRIAD, get_progress_permyriad, get_progress_percent)(); - #if ENABLED(SHOW_ELAPSED_TIME) && DISABLED(SHOW_REMAINING_TIME) - // Print duration so far (time elapsed) - centered - char elapsed_str[22]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toString(elapsed_str); - - // Same width constraints as feedrate/flowrate controls - constexpr uint16_t time_str_width = 476, image_width = 36; - - tft.canvas((TFT_WIDTH - time_str_width) / 2, y, time_str_width, 32); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(elapsed_str); - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft.add_text(text_pos_x + image_width, 1, COLOR_PRINT_TIME, tft_string); - - #elif DISABLED(SHOW_ELAPSED_TIME) && ENABLED(SHOW_REMAINING_TIME) - // Print time remaining estimation - centered - char estimate_str[22]; - duration_t elapsed = print_job_timer.duration(); - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toString(estimate_str); - tft_string.set(estimate_str); - } - - // Same width constraints as feedrate/flowrate controls - constexpr uint16_t time_str_width = 476, image_width = 36; - - tft.canvas((TFT_WIDTH - time_str_width) / 2, y, time_str_width, 32); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeRemaining, color); - tft.add_text(text_pos_x + image_width, 1, color, tft_string); - - #elif ALL(SHOW_REMAINING_TIME, SHOW_ELAPSED_TIME) - // Print duration so far (time elapsed) - aligned under feed rate - char elapsed_str[22]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toString(elapsed_str); - - tft.canvas(274, y, 200, 32); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft_string.set(elapsed_str); - tft.add_text(36, 1, COLOR_PRINT_TIME, tft_string); - - // Print time remaining estimation - aligned under flow rate - char estimate_str[22]; - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toString(estimate_str); - tft_string.set(estimate_str); - } - - // Push out the estimate to the screen - tft.canvas(650, y, 200, 32); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - tft.add_image(0, 0, imgTimeRemaining, color); - tft.add_text(36, 1, color, tft_string); - #endif - - y += 50; - // Progress bar - tft.canvas(4, y, TFT_WIDTH - 8, 9); - tft.set_background(COLOR_PROGRESS_BG); - tft.add_rectangle(0, 0, TFT_WIDTH - 8, 9, COLOR_PROGRESS_FRAME); - if (progress) - tft.add_bar(1, 1, ((TFT_WIDTH - 10) * progress / (PROGRESS_SCALE)) / 100, 7, COLOR_PROGRESS_BAR); - - y += 50; - // Status message - const uint16_t status_height = TFT_HEIGHT - y; - tft.canvas(0, y, TFT_WIDTH, status_height); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), (status_height - FONT_LINE_HEIGHT) / 2, COLOR_STATUS_MESSAGE, tft_string); -} - -// Low-level draw_edit_screen can be used to draw an edit screen from anyplace -void MenuEditItemBase::draw_edit_screen(FSTR_P const fstr, const char * const value/*=nullptr*/) { - ui.encoder_direction_normal(); - TERN_(TOUCH_SCREEN, touch.clear()); - - uint16_t line = 1; - - menu_line(line++); - tft_string.set(fstr, itemIndex, itemStringC, itemStringF); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - - TERN_(AUTO_BED_LEVELING_UBL, if (ui.external_control) line++); // ftostr52() will overwrite *value so *value has to be displayed first - - menu_line(line); - tft_string.set(value); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(AUTO_BED_LEVELING_UBL) - if (ui.external_control) { - menu_line(line - 1); - - tft_string.set(X_LBL); - tft.add_text((TFT_WIDTH / 2 - 120), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.x))); - tft_string.trim(); - tft.add_text((TFT_WIDTH / 2 - 16) - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft_string.set(Y_LBL); - tft.add_text((TFT_WIDTH / 2 + 16), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.y))); - tft_string.trim(); - tft.add_text((TFT_WIDTH / 2 + 120) - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - } - #endif - - if (ui.can_show_slider()) { - - #define SLIDER_LENGTH 600 - #define SLIDER_Y_POSITION 200 - - tft.canvas((TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION, SLIDER_LENGTH, 16); - tft.set_background(COLOR_BACKGROUND); - - int16_t position = (SLIDER_LENGTH - 2) * ui.encoderPosition / maxEditValue; - tft.add_bar(0, 7, 1, 2, ui.encoderPosition == 0 ? COLOR_SLIDER_INACTIVE : COLOR_SLIDER); - tft.add_bar(1, 6, position, 4, COLOR_SLIDER); - tft.add_bar(position + 1, 6, SLIDER_LENGTH - 2 - position, 4, COLOR_SLIDER_INACTIVE); - tft.add_bar(SLIDER_LENGTH - 1, 7, 1, 2, int32_t(ui.encoderPosition) == maxEditValue ? COLOR_SLIDER : COLOR_SLIDER_INACTIVE); - - #if ENABLED(TOUCH_SCREEN) - tft.add_image((SLIDER_LENGTH - 8) * ui.encoderPosition / maxEditValue, 0, imgSlider, COLOR_SLIDER); - touch.add_control(SLIDER, (TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION - 8, SLIDER_LENGTH, 32, maxEditValue); - #endif - } - - tft.draw_edit_screen_buttons(); -} - -void TFT::draw_edit_screen_buttons() { - #if ENABLED(TOUCH_SCREEN) - add_control(164, TFT_HEIGHT - 64, DECREASE, imgDecrease); - add_control(796, TFT_HEIGHT - 64, INCREASE, imgIncrease); - add_control(480, TFT_HEIGHT - 64, CLICK, imgConfirm); - #endif -} - -// The Select Screen presents a prompt and two "buttons" -void MenuItem_confirm::draw_select_screen(FSTR_P const yes, FSTR_P const no, const bool yesno, FSTR_P const pref, const char * const string/*=nullptr*/, FSTR_P const suff/*=nullptr*/) { - uint16_t line = 1; - - if (!string) line++; - - menu_line(line++); - tft_string.set(pref); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - if (string) { - menu_line(line++); - tft_string.set(string); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - - if (suff) { - menu_line(line); - tft_string.set(suff); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - #if ENABLED(TOUCH_SCREEN) - add_control(88, TFT_HEIGHT - 64, CANCEL, imgCancel, true, yesno ? HALF(COLOR_CONTROL_CANCEL) : COLOR_CONTROL_CANCEL); - add_control(328, TFT_HEIGHT - 64, CONFIRM, imgConfirm, true, yesno ? COLOR_CONTROL_CONFIRM : HALF(COLOR_CONTROL_CONFIRM)); - #else - menu_line(++line); - if (no) { - tft_string.set(no); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH / 2), 0, !yesno ? COLOR_RED : COLOR_MENU_TEXT, tft_string); - } - - if (yes) { - tft_string.set(yes); - tft_string.trim(); - tft.add_text(TFT_WIDTH / 2 + tft_string.center(TFT_WIDTH / 2), 0, yesno ? COLOR_RED : COLOR_MENU_TEXT, tft_string); - } - #endif -} - -#if ENABLED(ADVANCED_PAUSE_FEATURE) - - void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) { - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - touch.add_control(RESUME_CONTINUE, 0, 0, TFT_WIDTH, TFT_HEIGHT); - #endif - - menu_line(row); - tft_string.set(GET_TEXT_F(MSG_FILAMENT_CHANGE_NOZZLE)); - tft_string.add('E'); - tft_string.add((char)('1' + extruder)); - tft_string.add(' '); - tft_string.add(i16tostr3rj(thermalManager.wholeDegHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.add(F(" / ")); - tft_string.add(i16tostr3rj(thermalManager.degTargetHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - -#endif // ADVANCED_PAUSE_FEATURE - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #define GRID_OFFSET_X 8 - #define GRID_OFFSET_Y 8 - #define GRID_WIDTH 192 - #define GRID_HEIGHT 192 - #define CONTROL_OFFSET 16 - - void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) { - - tft.canvas(GRID_OFFSET_X, GRID_OFFSET_Y, GRID_WIDTH, GRID_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, GRID_WIDTH, GRID_HEIGHT, COLOR_WHITE); - - for (uint16_t x = 0; x < (GRID_MAX_POINTS_X); x++) - for (uint16_t y = 0; y < (GRID_MAX_POINTS_Y); y++) - if (position_is_reachable({ bedlevel.get_mesh_x(x), bedlevel.get_mesh_y(y) })) - tft.add_bar(1 + (x * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2, GRID_HEIGHT - 3 - ((y * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 2, 2, COLOR_UBL); - - tft.add_rectangle((x_plot * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2 - 1, GRID_HEIGHT - 5 - ((y_plot * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 6, 6, COLOR_UBL); - - const xy_pos_t pos = { bedlevel.get_mesh_x(x_plot), bedlevel.get_mesh_y(y_plot) }, - lpos = pos.asLogical(); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(X_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.x)); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Y_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.y)); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Z_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(isnan(bedlevel.z_values[x_plot][y_plot]) ? "-----" : ftostr43sign(bedlevel.z_values[x_plot][y_plot])); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - constexpr uint8_t w = (TFT_WIDTH) / 10; - tft.canvas(GRID_OFFSET_X + (GRID_WIDTH - w) / 2, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET - 5, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(x_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET + 16 - 24, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(y_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + CONTROL_OFFSET, UBL, ENCODER_STEPS_PER_MENU_ITEM * GRID_MAX_POINTS_X, imgUp); - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT - CONTROL_OFFSET - 32, UBL, - ENCODER_STEPS_PER_MENU_ITEM * GRID_MAX_POINTS_X, imgDown); - add_control(GRID_OFFSET_X + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, - ENCODER_STEPS_PER_MENU_ITEM, imgLeft); - add_control(GRID_OFFSET_X + GRID_WIDTH - CONTROL_OFFSET - 32, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, ENCODER_STEPS_PER_MENU_ITEM, imgRight); - add_control(320, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, CLICK, imgLeveling); - add_control(224, TFT_HEIGHT - 34, BACK, imgBack); - #endif - } -#endif // AUTO_BED_LEVELING_UBL - -#if ENABLED(BABYSTEP_ZPROBE_OFFSET) - #include "../../feature/babystep.h" -#endif - -#if HAS_BED_PROBE - #include "../../module/probe.h" -#endif - -#define Z_SELECTION_Z 1 -#define Z_SELECTION_Z_PROBE -1 - -struct { - #if HAS_X_AXIS - xy_int_t xValuePos; - #endif - #if HAS_Y_AXIS - xy_int_t yValuePos; - #endif - #if HAS_Z_AXIS - xy_int_t zValuePos, zTypePos; - int z_selection = Z_SELECTION_Z; - #endif - #if HAS_EXTRUDERS - xy_int_t eValuePos, eNamePos; - uint8_t e_selection = 0; - #endif - xy_int_t stepValuePos; - float currentStepSize = 10.0; - bool blocked = false; - char message[32]; -} motionAxisState; - -#define BTN_WIDTH 64 -#define BTN_HEIGHT 52 -#define X_MARGIN 20 -#define Y_MARGIN 15 - -static void quick_feedback() { - #if HAS_CHIRP - ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle? - #if ALL(HAS_MARLINUI_MENU, HAS_BEEPER) - for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); } - #elif HAS_MARLINUI_MENU - delay(10); - #endif - #endif -} - -#define CUR_STEP_VALUE_WIDTH 104 -static void drawCurStepValue() { - tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); - tft_string.add(F("mm")); - tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(tft_string.center(CUR_STEP_VALUE_WIDTH), 0, COLOR_AXIS_HOMED, tft_string); -} - -#if HAS_Z_AXIS - static void drawCurZSelection() { - tft_string.set('Z'); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), 34); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - tft.queue.sync(); - tft_string.set(F("Offset")); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + 34, tft_string.width(), 34); - tft.set_background(COLOR_BACKGROUND); - #if HAS_BED_PROBE - if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - #endif - } -#endif - -#if HAS_EXTRUDERS - static void drawCurESelection() { - tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set('E'); - tft.add_text(0, 0, E_BTN_COLOR, tft_string); - tft.add_text(tft_string.width(), 0, E_BTN_COLOR, ui8tostr3rj(motionAxisState.e_selection)); - } -#endif - -static void drawMessage(PGM_P const msg) { - tft.canvas(X_MARGIN, TFT_HEIGHT - Y_MARGIN - 34, TFT_HEIGHT / 2, 34); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, COLOR_YELLOW, msg); -} - -static void drawMessage(FSTR_P const fmsg) { drawMessage(FTOP(fmsg)); } - -static void drawAxisValue(const AxisEnum axis) { - const float value = ( - TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) - ui.manual_move.axis_value(axis) - ); - xy_int_t pos; - uint16_t color; - switch (axis) { - #if HAS_X_AXIS - case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; - #endif - #if HAS_Y_AXIS - case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; - #endif - #if HAS_Z_AXIS - case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; - #endif - #if HAS_EXTRUDERS - case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; - #endif - default: return; - } - tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ftostr52sp(value)); - tft.add_text(0, 0, color, tft_string); -} - -static void moveAxis(const AxisEnum axis, const int8_t direction) { - quick_feedback(); - - #if HAS_EXTRUDERS - if (axis == E_AXIS && thermalManager.tooColdToExtrude(motionAxisState.e_selection)) { - drawMessage(F("Too cold")); - return; - } - #endif - - const float diff = motionAxisState.currentStepSize * direction; - - #if HAS_BED_PROBE - - if (axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE) { - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - const int16_t babystep_increment = direction * BABYSTEP_SIZE_Z; - const bool do_probe = DISABLED(BABYSTEP_HOTEND_Z_OFFSET) || active_extruder == 0; - const float bsDiff = planner.mm_per_step[Z_AXIS] * babystep_increment, - new_probe_offset = probe.offset.z + bsDiff, - new_offs = TERN(BABYSTEP_HOTEND_Z_OFFSET - , do_probe ? new_probe_offset : hotend_offset[active_extruder].z - bsDiff - , new_probe_offset - ); - if (WITHIN(new_offs, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) { - babystep.add_steps(Z_AXIS, babystep_increment); - if (do_probe) - probe.offset.z = new_offs; - else - TERN(BABYSTEP_HOTEND_Z_OFFSET, hotend_offset[active_extruder].z = new_offs, NOOP); - drawMessage(F("")); // Clear the error - drawAxisValue(axis); - } - else - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - - #else - // Only change probe.offset.z - probe.offset.z += diff; - if (direction < 0 && current_position.z < Z_PROBE_OFFSET_RANGE_MIN) { - current_position.z = Z_PROBE_OFFSET_RANGE_MIN; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else if (direction > 0 && current_position.z > Z_PROBE_OFFSET_RANGE_MAX) { - current_position.z = Z_PROBE_OFFSET_RANGE_MAX; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else - drawMessage(F("")); // Clear the error - - drawAxisValue(axis); - #endif - } - - #endif // HAS_BED_PROBE - - if (!ui.manual_move.processing) { - // Get motion limit from software endstops, if any - float min, max; - soft_endstop.get_manual_axis_limits(axis, min, max); - - // Delta limits XY based on the current offset from center - // This assumes the center is 0,0 - #if ENABLED(DELTA) - if (axis != Z_AXIS && TERN1(HAS_EXTRUDERS, axis != E_AXIS)) { - max = SQRT(sq(float(PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis])); // (Y_AXIS - axis) == the other axis - min = -max; - } - #endif - - // Get the new position - const bool limited = ui.manual_move.apply_diff(axis, diff, min, max); - #if IS_KINEMATIC - UNUSED(limited); - #else - FSTR_P const msg = limited ? GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS) : FPSTR(NUL_STR); - drawMessage(msg); - #endif - - ui.manual_move.soon(axis OPTARG(MULTI_E_MANUAL, motionAxisState.e_selection)); - } - - drawAxisValue(axis); -} - -#if HAS_EXTRUDERS - static void e_plus() { moveAxis(E_AXIS, 1); } - static void e_minus() { moveAxis(E_AXIS, -1); } -#endif -#if HAS_X_AXIS - static void x_minus() { moveAxis(X_AXIS, -1); } - static void x_plus() { moveAxis(X_AXIS, 1); } -#endif -#if HAS_Y_AXIS - static void y_plus() { moveAxis(Y_AXIS, 1); } - static void y_minus() { moveAxis(Y_AXIS, -1); } -#endif -#if HAS_Z_AXIS - static void z_plus() { moveAxis(Z_AXIS, 1); } - static void z_minus() { moveAxis(Z_AXIS, -1); } -#endif - -#if ENABLED(TOUCH_SCREEN) - #if HAS_EXTRUDERS - static void e_select() { - if (++motionAxisState.e_selection >= EXTRUDERS) - motionAxisState.e_selection = 0; - quick_feedback(); - drawCurESelection(); - drawAxisValue(E_AXIS); - } - #endif - - static void do_home() { - quick_feedback(); - drawMessage(GET_TEXT_F(MSG_LEVEL_BED_HOMING)); - queue.inject_P(G28_STR); - // Disable touch until home is done - touch.disable(); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - TERN_(HAS_X_AXIS, drawAxisValue(X_AXIS)); - TERN_(HAS_Y_AXIS, drawAxisValue(Y_AXIS)); - TERN_(HAS_Z_AXIS, drawAxisValue(Z_AXIS)); - } - - static void step_size() { - motionAxisState.currentStepSize = motionAxisState.currentStepSize / 10.0; - if (motionAxisState.currentStepSize < 0.0015) motionAxisState.currentStepSize = 10.0; - quick_feedback(); - drawCurStepValue(); - } -#endif - -#if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - static void z_select() { - motionAxisState.z_selection *= -1; - quick_feedback(); - drawCurZSelection(); - drawAxisValue(Z_AXIS); - } -#endif - -static void disable_steppers() { - quick_feedback(); - queue.inject(F("M84")); -} - -static void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled=true) { - const uint16_t width = images[imgBtn52Rounded].width, - height = images[imgBtn52Rounded].height; - - if (!enabled) bgColor = COLOR_CONTROL_DISABLED; - - tft.canvas(x, y, width, height); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgBtn52Rounded, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - // TODO: Make an add_text() taking a font arg - if (label) { - tft_string.set(label); - tft_string.trim(); - tft.add_text(tft_string.center(width), height / 2 - tft_string.font_height() / 2, bgColor, tft_string); - } - else - tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - TERN_(TOUCH_SCREEN, if (enabled) touch.add_control(BUTTON, x, y, width, height, data)); -} - -void MarlinUI::move_axis_screen() { - // Reset - defer_status_screen(true); - motionAxisState.blocked = false; - TERN_(TOUCH_SCREEN, touch.enable()); - - ui.clear_lcd(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - const bool busy = printingIsActive(); - - // Babysteps during printing? Select babystep for Z probe offset - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; - #endif - - // ROW 1 -> E- Y- CurY Z+ - int x = X_MARGIN, y = Y_MARGIN, spacing = 0; - - TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", (intptr_t)e_plus, imgUp, E_BTN_COLOR, !busy)); - - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - x += BTN_WIDTH + spacing; - - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", (intptr_t)y_plus, imgUp, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH; - - // Cur Y - #if HAS_Y_AXIS - motionAxisState.yValuePos.set(x + 2, y); - drawAxisValue(Y_AXIS); - #endif - - x += spacing; - #if HAS_Z_AXIS - drawBtn(x, y, "Z+", (intptr_t)z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step - #endif - - // ROW 2 -> "Ex" X- HOME X+ "Z" - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; - - #if HAS_EXTRUDERS - motionAxisState.eNamePos.set(x, y); - drawCurESelection(); - TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select)); - #endif - - x += BTN_WIDTH + spacing; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; //imgHome is 64x64 - - #if ALL(HAS_X_AXIS, TOUCH_SCREEN) - add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy); - #endif - - x += BTN_WIDTH + spacing; - const uint16_t xplus_x = x; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", (intptr_t)x_plus, imgRight, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - #if HAS_Z_AXIS - motionAxisState.zTypePos.set(x, y); - drawCurZSelection(); - #endif - - #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, (intptr_t)z_select); - #endif - - // ROW 3 -> E- CurX Y- Z- - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - - #if HAS_EXTRUDERS - drawBtn(x, y, "E-", (intptr_t)e_minus, imgDown, E_BTN_COLOR, !busy); - motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - #endif - - // Cur X - #if HAS_X_AXIS - motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); - drawAxisValue(X_AXIS); - #endif - - x += BTN_WIDTH + spacing; - - // Cur Y - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", (intptr_t)y_minus, imgDown, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - // Cur Z - #if HAS_Z_AXIS - drawBtn(x, y, "Z-", (intptr_t)z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have babystep - motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); - drawAxisValue(Z_AXIS); - #endif - - // ROW 4 -> step_size disable steppers back - y = TFT_HEIGHT - Y_MARGIN - 32; - x = TFT_WIDTH / 2 - CUR_STEP_VALUE_WIDTH / 2; - motionAxisState.stepValuePos.set(x, y); - if (!busy) { - drawCurStepValue(); - TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, x, y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size)); - } - - // Aligned with x+ - drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy); - - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); -} - -#endif // HAS_UI_1024x600 diff --git a/Marlin/src/lcd/tft/ui_1024x600.h b/Marlin/src/lcd/tft/ui_1024x600.h index c6b5d9f85ec1..669f1258b73a 100644 --- a/Marlin/src/lcd/tft/ui_1024x600.h +++ b/Marlin/src/lcd/tft/ui_1024x600.h @@ -19,31 +19,283 @@ * along with this program. If not, see . * */ -#pragma once -#define MARLIN_LOGO_FULL_SIZE MarlinLogo480x320x16 +#include "../../inc/MarlinConfigPre.h" -#include "ui_common.h" +// -------------------------------- Core Parameters -------------------------------- -#define TFT_STATUS_TOP_Y 4 -#define TFT_TOP_LINE_Y 4 +#define MENU_TEXT_X 16 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) -#define MENU_TEXT_X_OFFSET 16 -#define MENU_TEXT_Y_OFFSET tft_string.vcenter(MENU_ITEM_HEIGHT) +#define MENU_ITEM_ICON_X 5 +#define MENU_ITEM_ICON_Y 5 +#define MENU_ITEM_ICON_SPACE 42 -#define MENU_ITEM_ICON_X 5 -#define MENU_ITEM_ICON_Y 5 -#define MENU_ITEM_ICON_SPACE 42 +#define MENU_ITEM_HEIGHT 43 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 4 -#define MENU_ITEM_HEIGHT 43 -#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) - -#if (TFT_FONT == NOTOSANS) || (TFT_FONT == HELVETICA) - #define FONT_SIZE 19 +#if TFT_FONT == NOTOSANS || TFT_FONT == HELVETICA + #define FONT_SIZE 19 #elif TFT_FONT == UNIFONT - #define FONT_SIZE 20 + #define FONT_SIZE 20 +#endif + +#define FONT_LINE_HEIGHT 34 + +// --------------------------------------------------------------------------------- + +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) + +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 70) + #else + #define BOOTSCREEN_LOGO MarlinLogo480x320x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 90) + #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 164 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 50 + #define NAVIGATION_PAGE_DOWN_X 796 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 50 + #define NAVIGATION_BACK_X 480 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 50 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 164 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 80 + #define BUTTON_INCREASE_X 796 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 80 + #define BUTTON_CLICK_X 480 + #define BUTTON_CLICK_Y TFT_HEIGHT - 80 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 256 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 80 + #define BUTTON_CONFIRM_X 704 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 80 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 94 + #define KILL_SCREEN_HALTED_Y 184 + #define KILL_SCREEN_RESET_Y 229 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 80 + #define TEMP_FAN_CONTROL_H 120 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X 8 + #define TEMP_ICON_Y 28 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X 8 + #define FAN_ICON_Y 20 #endif -#define FONT_LINE_HEIGHT 34 +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 80 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 6 + VCENTER +#endif -#include "tft_font.h" +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 80 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 12 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 4 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT + #define COORDINATES_X 4 + #define COORDINATES_Y 204 +#endif + +#if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 572 + #define E_MARK_Y VCENTER + #define E_VALUE_X 672 - tft_string.width() + #define E_VALUE_Y VCENTER +#endif + +#if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 64 + #define X_MARK_Y VCENTER + #define X_VALUE_X 164 - tft_string.width() + #define X_VALUE_Y VCENTER +#endif + +#if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 318 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 418 - tft_string.width() + #define Y_VALUE_Y VCENTER +#endif + +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 826 + #define Z_MARK_Y VCENTER + #define Z_VALUE_X 965 - tft_string.width() + #define Z_VALUE_Y VCENTER + #define Z_VALUE_OFFSET 32 +#endif + +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 120 + #define FEEDRATE_H 32 + #define FEEDRATE_X 274 + #define FEEDRATE_Y 304 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 120 + #define FLOWRATE_H 32 + #define FLOWRATE_X 650 + #define FLOWRATE_Y 304 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 900 + #define MENU_ICON_Y 304 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 60 + #define SDCARD_ICON_Y 304 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define ELAPSED_TIME_W (TFT_WIDTH / 2) + #define ELAPSED_TIME_X (TFT_WIDTH / 2) - ELAPSED_TIME_W + #elif ENABLED(SHOW_ELAPSED_TIME) + #define ELAPSED_TIME_W TFT_WIDTH + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 + #endif + + #define ELAPSED_TIME_H 32 + #define ELAPSED_TIME_Y 404 +#endif + +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_W (TFT_WIDTH / 2) + #define REMAINING_TIME_X (TFT_WIDTH / 2) + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_W TFT_WIDTH + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 + #endif + + #define REMAINING_TIME_H 32 + #define REMAINING_TIME_Y 404 +#endif + +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 12 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 454 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 504 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 720 + #define SLIDER_Y 320 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 120) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 120) - tft_string.width() + #endif + + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 192 + #define UBL_GRID_H 192 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 16 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 120 + #define UBL_COORDINATES_X 320 + + #define UBL_X_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT + #define UBL_Y_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + #define UBL_Z_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT + #endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X UBL_COORDINATES_X + #define UBL_ACTION_Y UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_240x320.h b/Marlin/src/lcd/tft/ui_240x320.h new file mode 100644 index 000000000000..c542e00e4f8a --- /dev/null +++ b/Marlin/src/lcd/tft/ui_240x320.h @@ -0,0 +1,294 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +// -------------------------------- Core Parameters -------------------------------- + +#define MENU_TEXT_X 10 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) + +#define MENU_ITEM_ICON_X 0 +#define MENU_ITEM_ICON_Y 0 +#define MENU_ITEM_ICON_SPACE 32 + +#define MENU_ITEM_HEIGHT 32 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 2 + +#if TFT_FONT == NOTOSANS || TFT_FONT == HELVETICA + #define FONT_SIZE 14 +#elif TFT_FONT == UNIFONT + #define FONT_SIZE 10 +#endif + +#define FONT_LINE_HEIGHT 24 + +// --------------------------------------------------------------------------------- + +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) + +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 48) + #else + #define BOOTSCREEN_LOGO MarlinLogo320x240x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 54) + #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 24 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 34 + #define NAVIGATION_PAGE_DOWN_X 186 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 34 + #define NAVIGATION_BACK_X 104 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 34 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 8 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 64 + #define BUTTON_INCREASE_X 168 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 64 + #define BUTTON_CLICK_X 88 + #define BUTTON_CLICK_Y TFT_HEIGHT - 64 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 20 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 64 + #define BUTTON_CONFIRM_X 156 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 64 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 104 + #define KILL_SCREEN_HALTED_Y 172 + #define KILL_SCREEN_RESET_Y 206 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 60 + #define TEMP_FAN_CONTROL_H 100 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X -2 + #define TEMP_ICON_Y 18 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X -2 + #define FAN_ICON_Y 10 +#endif + +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 69 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 5 + VCENTER +#endif + +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 69 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 4 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 2 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT * 2 + #define COORDINATES_X 4 + #define COORDINATES_Y 104 +#endif + +#if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 10 + #define E_MARK_Y VCENTER + FONT_LINE_HEIGHT + #define E_VALUE_X 77 - tft_string.width() + #define E_VALUE_Y VCENTER + FONT_LINE_HEIGHT +#endif + +#if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 10 + #define X_MARK_Y VCENTER + #define X_VALUE_X 77 - tft_string.width() + #define X_VALUE_Y VCENTER +#endif + +#if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 129 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 197 - tft_string.width() + #define Y_VALUE_Y VCENTER +#endif + +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 129 + #define Z_MARK_Y VCENTER + FONT_LINE_HEIGHT + #define Z_VALUE_X 222 - tft_string.width() + #define Z_VALUE_Y VCENTER + FONT_LINE_HEIGHT + #define Z_VALUE_OFFSET 25 +#endif + +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 90 + #define FEEDRATE_H 32 + #define FEEDRATE_X 20 + #define FEEDRATE_Y 166 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 90 + #define FLOWRATE_H 32 + #define FLOWRATE_X 134 + #define FLOWRATE_Y 166 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 176 + #define MENU_ICON_Y 210 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 0 + #define SDCARD_ICON_Y 210 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #define ELAPSED_TIME_H 32 + #define ELAPSED_TIME_W 112 + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 + #define ELAPSED_TIME_Y 246 +#endif + +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_Y 210 + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_Y 246 + #endif + + #define REMAINING_TIME_H 32 + #define REMAINING_TIME_W 112 + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 +#endif + +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 9 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 282 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 292 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 220 + #define SLIDER_Y 140 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 104) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 104) - tft_string.width() + #endif + + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 144 + #define UBL_GRID_H 144 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 8 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 120 + #define UBL_COORDINATES_X 20 + + #define UBL_X_COORDINATE_Y 196 + #define UBL_Y_COORDINATE_Y 220 + #define UBL_Z_COORDINATE_Y 244 + #endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X 180 + #define UBL_ACTION_Y 220 + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_320x240.cpp b/Marlin/src/lcd/tft/ui_320x240.cpp deleted file mode 100644 index dcbfa935b476..000000000000 --- a/Marlin/src/lcd/tft/ui_320x240.cpp +++ /dev/null @@ -1,1221 +0,0 @@ -/** - * Marlin 3D Printer Firmware - * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] - * - * Based on Sprinter and grbl. - * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -#include "../../inc/MarlinConfigPre.h" - -#if HAS_UI_320x240 - -#include "ui_common.h" - -#include "../marlinui.h" -#include "../menu/menu.h" -#include "../../libs/numtostr.h" - -#include "../../sd/cardreader.h" -#include "../../module/temperature.h" -#include "../../module/printcounter.h" -#include "../../module/planner.h" -#include "../../module/motion.h" - -#if DISABLED(LCD_PROGRESS_BAR) && ALL(FILAMENT_LCD_DISPLAY, HAS_MEDIA) - #include "../../feature/filwidth.h" - #include "../../gcode/parser.h" -#endif - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #include "../../feature/bedlevel/bedlevel.h" -#endif - -void MarlinUI::tft_idle() { - #if ENABLED(TOUCH_SCREEN) - if (TERN0(HAS_TOUCH_SLEEP, lcd_sleep_task())) return; - if (draw_menu_navigation) { - constexpr uint16_t cx = TERN(TFT_COLOR_UI_PORTRAIT, 16, 48), - cy = TERN(TFT_COLOR_UI_PORTRAIT, 286, 206); - add_control(cx, cy, PAGE_UP, imgPageUp, encoderTopLine > 0); - add_control(cx + 192, cy, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items); - add_control(cx + 96, cy, BACK, imgBack); - draw_menu_navigation = false; - } - #endif - - tft.queue.async(); - - TERN_(TOUCH_SCREEN, if (tft.queue.is_empty()) touch.idle()); // Touch driver is not DMA-aware, so only check for touch controls after screen drawing is completed -} - -#if ENABLED(SHOW_BOOTSCREEN) - - void MarlinUI::show_bootscreen() { - tft.queue.reset(); - - tft.canvas(0, 0, TFT_WIDTH, TFT_HEIGHT); - #if ENABLED(BOOT_MARLIN_LOGO_SMALL) - #define BOOT_LOGO_W 195 // MarlinLogo195x59x16 - #define BOOT_LOGO_H 59 - #define SITE_URL_Y (TFT_HEIGHT - 48) - tft.set_background(COLOR_BACKGROUND); - #else - #define BOOT_LOGO_W TFT_WIDTH // MarlinLogo320x240x16 - #define BOOT_LOGO_H TFT_HEIGHT - #define SITE_URL_Y (TFT_HEIGHT - 54) - #endif - tft.add_image((TFT_WIDTH - BOOT_LOGO_W) / 2, (TFT_HEIGHT - BOOT_LOGO_H) / 2, imgBootScreen); - #ifdef WEBSITE_URL - tft_string.set(WEBSITE_URL); - tft.add_text(tft_string.center(TFT_WIDTH), SITE_URL_Y, COLOR_WEBSITE_URL, tft_string); - #endif - - tft.queue.sync(); - } - - void MarlinUI::bootscreen_completion(const millis_t sofar) { - if ((BOOTSCREEN_TIMEOUT) > sofar) safe_delay((BOOTSCREEN_TIMEOUT) - sofar); - clear_lcd(); - } - -#endif - -void MarlinUI::draw_kill_screen() { - tft.queue.reset(); - tft.fill(0, 0, TFT_WIDTH, TFT_HEIGHT, COLOR_KILL_SCREEN_BG); - - tft.canvas(0, 60, TFT_WIDTH, FONT_LINE_HEIGHT); - tft.set_background(COLOR_KILL_SCREEN_BG); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_KILL_SCREEN_TEXT, tft_string); - - tft.canvas(0, 120, TFT_WIDTH, FONT_LINE_HEIGHT); - tft.set_background(COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT(MSG_HALTED)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_KILL_SCREEN_TEXT, tft_string); - - tft.canvas(0, 160, TFT_WIDTH, FONT_LINE_HEIGHT); - tft.set_background(COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT(MSG_PLEASE_RESET)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_KILL_SCREEN_TEXT, tft_string); - - tft.queue.sync(); -} - -void draw_heater_status(uint16_t x, uint16_t y, const int8_t heater) { - MarlinImage image = imgHotEnd; - celsius_t currentTemperature, targetTemperature; - - if (heater >= 0) { // HotEnd - #if HAS_EXTRUDERS - currentTemperature = thermalManager.wholeDegHotend(heater); - targetTemperature = thermalManager.degTargetHotend(heater); - #else - return; - #endif - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - currentTemperature = thermalManager.wholeDegBed(); - targetTemperature = thermalManager.degTargetBed(); - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - currentTemperature = thermalManager.wholeDegChamber(); - #if HAS_HEATED_CHAMBER - targetTemperature = thermalManager.degTargetChamber(); - #else - targetTemperature = ABSOLUTE_ZERO; - #endif - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - currentTemperature = thermalManager.wholeDegCooler(); - targetTemperature = TERN(HAS_COOLER, thermalManager.degTargetCooler(), ABSOLUTE_ZERO); - } - #endif - else return; - - TERN_(TOUCH_SCREEN, if (targetTemperature >= 0) touch.add_control(HEATER, x, y, 64, 100, heater)); - tft.canvas(x, y, 64, 100); - tft.set_background(COLOR_BACKGROUND); - - uint16_t color = currentTemperature < 0 ? COLOR_INACTIVE : COLOR_COLD; - - if (heater >= 0) { // HotEnd - if (currentTemperature >= 50) color = COLOR_HOTEND; - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - if (currentTemperature >= 50) color = COLOR_HEATED_BED; - image = targetTemperature > 0 ? imgBedHeated : imgBed; - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - if (currentTemperature >= 50) color = COLOR_CHAMBER; - image = targetTemperature > 0 ? imgChamberHeated : imgChamber; - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - if (currentTemperature <= 26) color = COLOR_COLD; - if (currentTemperature > 26) color = COLOR_RED; - image = targetTemperature > 26 ? imgCoolerHot : imgCooler; - } - #endif - - tft.add_image(0, 18, image, color); - - tft_string.set(i16tostr3rj(currentTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(64) + 2, 69 + tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - - if (targetTemperature >= 0) { - tft_string.set(i16tostr3rj(targetTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(64) + 2, 5 + tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - } -} - -void draw_fan_status(uint16_t x, uint16_t y, const bool blink) { - TERN_(TOUCH_SCREEN, touch.add_control(FAN, x, y, 64, 100)); - tft.canvas(x, y, 64, 100); - tft.set_background(COLOR_BACKGROUND); - - uint8_t fanSpeed = thermalManager.fan_speed[0]; - MarlinImage image; - - if (fanSpeed >= 127) - image = blink ? imgFanFast1 : imgFanFast0; - else if (fanSpeed > 0) - image = blink ? imgFanSlow1 : imgFanSlow0; - else - image = imgFanIdle; - - tft.add_image(0, 10, image, COLOR_FAN); - - tft_string.set(ui8tostr4pctrj(thermalManager.fan_speed[0])); - tft_string.trim(); - tft.add_text(tft_string.center(64) + 6, 69 + tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_FAN, tft_string); -} - -void MarlinUI::draw_status_screen() { - const bool blink = get_blink(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - // Statuses of heaters and fans - constexpr uint16_t y = TFT_STATUS_TOP_Y; - for (uint16_t i = 0 ; i < ITEMS_COUNT; i++) { - const uint16_t x = (TFT_WIDTH / ITEMS_COUNT - 64) / 2 + (TFT_WIDTH * i / ITEMS_COUNT); - switch (i) { - #if HAS_EXTRUDERS - case ITEM_E0: draw_heater_status(x, y, H_E0); break; - #endif - #if HAS_MULTI_HOTEND - case ITEM_E1: draw_heater_status(x, y, H_E1); break; - #endif - #if HOTENDS > 2 - case ITEM_E2: draw_heater_status(x, y, H_E2); break; - #endif - #if HAS_HEATED_BED - case ITEM_BED: draw_heater_status(x, y, H_BED); break; - #endif - #if HAS_TEMP_CHAMBER - case ITEM_CHAMBER: draw_heater_status(x, y, H_CHAMBER); break; - #endif - #if HAS_TEMP_COOLER - case ITEM_COOLER: draw_heater_status(x, y, H_COOLER); break; - #endif - #if HAS_FAN - case ITEM_FAN: draw_fan_status(x, y, blink); break; - #endif - } - } - - // 2nd horizontal group - current coordinates (height = 24, top margin = 3) - uint16_t width = TERN(TFT_COLOR_UI_PORTRAIT, 232, 312), - height = FONT_LINE_HEIGHT * TERN(TFT_COLOR_UI_PORTRAIT, 2, 1); - tft.canvas(4, 103, width, height); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, width, height, COLOR_AXIS_HOMED); - - if (TERN0(LCD_SHOW_E_TOTAL, printingIsActive())) { - #if ENABLED(LCD_SHOW_E_TOTAL) - tft.add_text(10, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, "E"); - const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm - tft_string.set(ftostr4sign(e_move_accumulator / escale)); - tft_string.add(escale == 10 ? 'c' : 'm'); - tft_string.add('m'); - tft.add_text(127 - tft_string.width(), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, tft_string); - #endif - } - else { - #if HAS_X_AXIS - tft.add_text(TERN(TFT_COLOR_UI_PORTRAIT, 32, 10), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, "X"); - const bool nhx = axis_should_home(X_AXIS); - tft_string.set(blink && nhx ? "?" : ftostr4sign(LOGICAL_X_POSITION(current_position.x))); - uint16_t pos_x = TERN(TFT_COLOR_UI_PORTRAIT, 32 - tft_string.width() / 2, 68 - tft_string.width()), - pos_y = SUM_TERN(TFT_COLOR_UI_PORTRAIT, tft_string.vcenter(FONT_LINE_HEIGHT), FONT_LINE_HEIGHT); - tft.add_text(pos_x, pos_y, nhx ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - - #if HAS_Y_AXIS - tft.add_text(TERN(TFT_COLOR_UI_PORTRAIT, 110, 127), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, "Y"); - const bool nhy = axis_should_home(Y_AXIS); - tft_string.set(blink && nhy ? "?" : ftostr4sign(LOGICAL_Y_POSITION(current_position.y))); - tft.add_text( - #if ENABLED(TFT_COLOR_UI_PORTRAIT) - 110 - tft_string.width() / 2, FONT_LINE_HEIGHT + tft_string.vcenter(FONT_LINE_HEIGHT), - #else - 185 - tft_string.width(), tft_string.vcenter(FONT_LINE_HEIGHT), - #endif - nhy ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string - ); - #endif - } - - #if HAS_Z_AXIS - tft.add_text(TERN(TFT_COLOR_UI_PORTRAIT, 192, 219), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, "Z"); - const bool nhz = axis_should_home(Z_AXIS); - uint16_t offset = 25; - if (blink && nhz) - tft_string.set('?'); - else { - const float z = LOGICAL_Z_POSITION(current_position.z); - tft_string.set(ftostr52sp((int16_t)z)); - tft_string.rtrim(); - offset += tft_string.width(); - - tft_string.set(ftostr52sp(z)); - offset -= tft_string.width(); - } - #endif - - uint16_t pos_x = TERN(TFT_COLOR_UI_PORTRAIT, 192 - tft_string.width() / 2, 301 - tft_string.width() - offset), - pos_y = SUM_TERN(TFT_COLOR_UI_PORTRAIT, tft_string.vcenter(FONT_LINE_HEIGHT), FONT_LINE_HEIGHT); - tft.add_text(pos_x, pos_y, nhz ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - - // 3rd horizontal group - controls and times (height = 64, top margin = 3) - // 3rd group, subgroup A - controls (on the sides) - #if ENABLED(TOUCH_SCREEN) - width = TERN(TFT_COLOR_UI_PORTRAIT, 232, 312); - height = TERN(TFT_COLOR_UI_PORTRAIT, FONT_LINE_HEIGHT * 2, FONT_LINE_HEIGHT); - touch.add_control(MOVE_AXIS, 0, 103, width, height); - add_control(256, 130, menu_main, imgSettings); - TERN_(SDSUPPORT, add_control(0, 130, menu_media, imgSD, !printingIsActive(), COLOR_CONTROL_ENABLED, card.isMounted() && printingIsActive() ? COLOR_BUSY : COLOR_CONTROL_DISABLED)); - #endif - - // 3rd group, subgroup B - speeds (center, top half) - - // Feed rate - tft.canvas( - TERN(TFT_COLOR_UI_PORTRAIT, 30, 70), - TERN(TFT_COLOR_UI_PORTRAIT, 172, 132), - TERN(TFT_COLOR_UI_PORTRAIT, 80, 88), - MENU_ITEM_HEIGHT - ); - tft.set_background(COLOR_BACKGROUND); - uint16_t color = feedrate_percentage == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - tft.add_image(0, 0, imgFeedRate, color); - tft_string.set(i16tostr3rj(feedrate_percentage)); - tft_string.add('%'); - tft.add_text(32, tft_string.vcenter(30), color, tft_string); - TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, - TERN(TFT_COLOR_UI_PORTRAIT, 30, 70), - TERN(TFT_COLOR_UI_PORTRAIT, 172, 132), - 80, MENU_ITEM_HEIGHT - )); - - // Flow rate - tft.canvas( - TERN(TFT_COLOR_UI_PORTRAIT, 140, 162), - TERN(TFT_COLOR_UI_PORTRAIT, 172, 132), - TERN(TFT_COLOR_UI_PORTRAIT, 80, 88), - MENU_ITEM_HEIGHT - ); - tft.set_background(COLOR_BACKGROUND); - color = planner.flow_percentage[0] == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - tft.add_image(0, 0, imgFlowRate, color); - tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder])); - tft_string.add('%'); - tft.add_text(32, tft_string.vcenter(30), color, tft_string); - #if ENABLED(TOUCH_SCREEN) - touch.add_control(FLOWRATE, - TERN(TFT_COLOR_UI_PORTRAIT, 140, 170), - TERN(TFT_COLOR_UI_PORTRAIT, 172, 132), - 80, MENU_ITEM_HEIGHT, active_extruder - ); - #endif - - // 3rd group, subgroup C - times (center, bottom half) - const progress_t progress = TERN(HAS_PRINT_PROGRESS_PERMYRIAD, get_progress_permyriad, get_progress_percent)(); - const uint16_t time_str_width = 180, image_width = 34; - pos_x = (TFT_WIDTH - time_str_width) / 2; - pos_y = TERN(TFT_COLOR_UI_PORTRAIT, 256, 164); - #if ENABLED(SHOW_ELAPSED_TIME) && DISABLED(SHOW_REMAINING_TIME) - // Print duration so far (time elapsed) - centered - char elapsed_str[18]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toCompactString(elapsed_str); - - tft.canvas(pos_x, pos_y, time_str_width, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(elapsed_str); - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft.add_text(text_pos_x + image_width, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_PRINT_TIME, tft_string); - - #elif DISABLED(SHOW_ELAPSED_TIME) && ENABLED(SHOW_REMAINING_TIME) - // Print time remaining estimation - centered - char estimate_str[18]; - duration_t elapsed = print_job_timer.duration(); - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toCompactString(estimate_str); - tft_string.set(estimate_str); - } - - tft.canvas(pos_x, pos_y, time_str_width, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeRemaining, color); - tft.add_text(text_pos_x + image_width, tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - - #elif ALL(SHOW_REMAINING_TIME, SHOW_ELAPSED_TIME) - // Print duration so far (time elapsed) - aligned under feed rate - char elapsed_str[18]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toCompactString(elapsed_str); - - tft.canvas(pos_x, pos_y, time_str_width / 2 - 2, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft_string.set(elapsed_str); - tft.add_text(32, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_PRINT_TIME, tft_string); - - // Print time remaining estimation - aligned under flow rate - char estimate_str[18]; - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toCompactString(estimate_str); - tft_string.set(estimate_str); - } - - // Push out the estimate to the screen - tft.canvas(pos_x + time_str_width / 2 + 2, pos_y, time_str_width / 2 - 2, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - tft.add_image(0, 0, imgTimeRemaining, color); - tft.add_text(32, tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - #endif - - // Fourth horizontal group - progress bar (height = 9, top margin = 4) - pos_y = TERN(TFT_COLOR_UI_PORTRAIT, 278, 198); - tft.canvas(4, pos_y, TFT_WIDTH - 8, 9); - tft.set_background(COLOR_PROGRESS_BG); - tft.add_rectangle(0, 0, TFT_WIDTH - 8, 9, COLOR_PROGRESS_FRAME); - if (progress) - tft.add_bar(1, 1, ((TFT_WIDTH - 10) * progress / (PROGRESS_SCALE)) / 100, 7, COLOR_PROGRESS_BAR); - - // Status message - pos_y += 9 + 7; - tft.canvas(0, pos_y, TFT_WIDTH, TFT_HEIGHT - pos_y); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_STATUS_MESSAGE, tft_string); - - #if ENABLED(TOUCH_SCREEN) - { - add_control( - TERN(TFT_COLOR_UI_PORTRAIT, 176, 256), - TERN(TFT_COLOR_UI_PORTRAIT, 210, 130), - menu_main, imgSettings - ); - #if HAS_MEDIA - const bool cm = card.isMounted(), pa = printingIsActive(); - if (cm && pa) - add_control(0, TERN(TFT_COLOR_UI_PORTRAIT, 210, 130), STOP, imgCancel, true, COLOR_CONTROL_CANCEL); - else - add_control(0, TERN(TFT_COLOR_UI_PORTRAIT, 210, 130), menu_media, imgSD, cm && !pa, COLOR_CONTROL_ENABLED, COLOR_CONTROL_DISABLED); - #endif - } - #endif // TOUCH_SCREEN -} - -// Low-level draw_edit_screen can be used to draw an edit screen from anyplace -void MenuEditItemBase::draw_edit_screen(FSTR_P const fstr, const char * const value/*=nullptr*/) { - ui.encoder_direction_normal(); - TERN_(TOUCH_SCREEN, touch.clear()); - - uint16_t line = 1; - - menu_line(line++); - tft_string.set(fstr, itemIndex, itemStringC, itemStringF); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - - TERN_(AUTO_BED_LEVELING_UBL, if (ui.external_control) line++); // ftostr52() will overwrite *value so *value has to be displayed first - - menu_line(line); - tft_string.set(value); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(AUTO_BED_LEVELING_UBL) - if (ui.external_control) { - menu_line(line - 1); - - tft_string.set(X_LBL); - tft.add_text(TFT_WIDTH / 2 - 120, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.x))); - tft_string.trim(); - tft.add_text(TFT_WIDTH / 2 - 16 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft_string.set(Y_LBL); - tft.add_text(TFT_WIDTH / 2 + 16, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.y))); - tft_string.trim(); - tft.add_text(TFT_WIDTH / 2 + 120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - } - #endif - - if (ui.can_show_slider()) { - - #define SLIDER_LENGTH 224 - #define SLIDER_Y_POSITION 140 - - tft.canvas((TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION, SLIDER_LENGTH, 16); - tft.set_background(COLOR_BACKGROUND); - - int16_t position = (SLIDER_LENGTH - 2) * ui.encoderPosition / maxEditValue; - tft.add_bar(0, 7, 1, 2, ui.encoderPosition == 0 ? COLOR_SLIDER_INACTIVE : COLOR_SLIDER); - tft.add_bar(1, 6, position, 4, COLOR_SLIDER); - tft.add_bar(position + 1, 6, SLIDER_LENGTH - 2 - position, 4, COLOR_SLIDER_INACTIVE); - tft.add_bar(SLIDER_LENGTH - 1, 7, 1, 2, int32_t(ui.encoderPosition) == maxEditValue ? COLOR_SLIDER : COLOR_SLIDER_INACTIVE); - - #if ENABLED(TOUCH_SCREEN) - tft.add_image((SLIDER_LENGTH - 8) * ui.encoderPosition / maxEditValue, 0, imgSlider, COLOR_SLIDER); - touch.add_control(SLIDER, (TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION - 8, SLIDER_LENGTH, 32, maxEditValue); - #endif - } - - tft.draw_edit_screen_buttons(); -} - -void TFT::draw_edit_screen_buttons() { - #if ENABLED(TOUCH_SCREEN) - add_control(TERN(TFT_COLOR_UI_PORTRAIT, 16, 32), TFT_HEIGHT - 64, DECREASE, imgDecrease); - add_control(TERN(TFT_COLOR_UI_PORTRAIT, 172, 224), TFT_HEIGHT - 64, INCREASE, imgIncrease); - add_control(TERN(TFT_COLOR_UI_PORTRAIT, 96, 128), TFT_HEIGHT - 64, CLICK, imgConfirm); - #endif -} - -// The Select Screen presents a prompt and two "buttons" -void MenuItem_confirm::draw_select_screen(FSTR_P const yes, FSTR_P const no, const bool yesno, FSTR_P const pref, const char * const string/*=nullptr*/, FSTR_P const suff/*=nullptr*/) { - uint16_t line = 1; - - if (!string) line++; - - menu_line(line++); - tft_string.set(pref); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - - if (string) { - menu_line(line++); - tft_string.set(string); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - } - - if (suff) { - menu_line(line); - tft_string.set(suff); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - } - #if ENABLED(TOUCH_SCREEN) - if (no) add_control(TERN(TFT_COLOR_UI_PORTRAIT, 32,48), TFT_HEIGHT - 64, CANCEL, imgCancel, true, yesno ? HALF(COLOR_CONTROL_CANCEL) : COLOR_CONTROL_CANCEL); - if (yes) add_control(TERN(TFT_COLOR_UI_PORTRAIT, 172, 208), TFT_HEIGHT - 64, CONFIRM, imgConfirm, true, yesno ? COLOR_CONTROL_CONFIRM : HALF(COLOR_CONTROL_CONFIRM)); - #endif -} - -#if ENABLED(ADVANCED_PAUSE_FEATURE) - - void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) { - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - touch.add_control(RESUME_CONTINUE, 0, 0, TFT_WIDTH, TFT_HEIGHT); - #endif - - menu_line(row); - tft_string.set(GET_TEXT(MSG_FILAMENT_CHANGE_NOZZLE)); - tft_string.add('E'); - tft_string.add((char)('1' + extruder)); - tft_string.add(' '); - tft_string.add(i16tostr3rj(thermalManager.wholeDegHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.add(F(" / ")); - tft_string.add(i16tostr3rj(thermalManager.degTargetHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - } - -#endif // ADVANCED_PAUSE_FEATURE - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #define GRID_OFFSET_X 8 - #define GRID_OFFSET_Y 8 - #define GRID_WIDTH 144 - #define GRID_HEIGHT 144 - #define CONTROL_OFFSET 8 - - void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) { - - tft.canvas(GRID_OFFSET_X, GRID_OFFSET_Y, GRID_WIDTH, GRID_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, GRID_WIDTH, GRID_HEIGHT, COLOR_WHITE); - - for (uint16_t x = 0; x < (GRID_MAX_POINTS_X); x++) - for (uint16_t y = 0; y < (GRID_MAX_POINTS_Y); y++) - if (position_is_reachable({ bedlevel.get_mesh_x(x), bedlevel.get_mesh_y(y) })) - tft.add_bar(1 + (x * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2, GRID_HEIGHT - 3 - ((y * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 2, 2, COLOR_UBL); - - tft.add_rectangle((x_plot * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2 - 1, GRID_HEIGHT - 5 - ((y_plot * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 6, 6, COLOR_UBL); - - const xy_pos_t pos = { bedlevel.get_mesh_x(x_plot), bedlevel.get_mesh_y(y_plot) }, - lpos = pos.asLogical(); - - tft.canvas(216, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT, 96, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(X_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.x)); - tft_string.trim(); - tft.add_text(96 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(216, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2, 96, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Y_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.y)); - tft_string.trim(); - tft.add_text(96 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(216, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT, 96, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Z_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(isnan(bedlevel.z_values[x_plot][y_plot]) ? "-----" : ftostr43sign(bedlevel.z_values[x_plot][y_plot])); - tft_string.trim(); - tft.add_text(96 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - constexpr uint8_t w = (TFT_WIDTH) / 10; - tft.canvas(GRID_OFFSET_X + (GRID_WIDTH - w) / 2, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET - 1, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(x_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + (GRID_HEIGHT - 27) / 2, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(y_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + CONTROL_OFFSET, UBL, (ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgUp); - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT - CONTROL_OFFSET - 32, UBL, -(ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgDown); - add_control(GRID_OFFSET_X + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, -(ENCODER_STEPS_PER_MENU_ITEM), imgLeft); - add_control(GRID_OFFSET_X + GRID_WIDTH - CONTROL_OFFSET - 32, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, ENCODER_STEPS_PER_MENU_ITEM, imgRight); - add_control(224, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, CLICK, imgLeveling); - add_control(144, 206, BACK, imgBack); - #endif - } -#endif // AUTO_BED_LEVELING_UBL - -#if ENABLED(BABYSTEP_ZPROBE_OFFSET) - #include "../../feature/babystep.h" -#endif - -#if HAS_BED_PROBE - #include "../../module/probe.h" -#endif - -#define Z_SELECTION_Z 1 -#define Z_SELECTION_Z_PROBE -1 - -struct { - #if HAS_X_AXIS - xy_int_t xValuePos; - #endif - #if HAS_Y_AXIS - xy_int_t yValuePos; - #endif - #if HAS_Z_AXIS - xy_int_t zValuePos, zTypePos; - int z_selection = Z_SELECTION_Z; - #endif - #if HAS_EXTRUDERS - xy_int_t eValuePos, eNamePos; - uint8_t e_selection = 0; - #endif - xy_int_t stepValuePos; - float currentStepSize = 10.0; - bool blocked = false; - char message[32]; -} motionAxisState; - -#define BTN_WIDTH 48 -#define BTN_HEIGHT 39 -#define X_MARGIN 15 -#define Y_MARGIN 11 - -static void quick_feedback() { - #if HAS_CHIRP - ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle? - #if ALL(HAS_MARLINUI_MENU, HAS_BEEPER) - for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); } - #elif HAS_MARLINUI_MENU - delay(10); - #endif - #endif -} - -#define CUR_STEP_VALUE_WIDTH 38 -static void drawCurStepValue() { - tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); - tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, 20); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(CUR_STEP_VALUE_WIDTH - tft_string.width(), 0, COLOR_AXIS_HOMED, tft_string); - tft.queue.sync(); - tft_string.set(F("mm")); - tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y + 20, CUR_STEP_VALUE_WIDTH, 20); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(CUR_STEP_VALUE_WIDTH - tft_string.width(), 0, COLOR_AXIS_HOMED, tft_string); -} - -#if HAS_Z_AXIS - static void drawCurZSelection() { - tft_string.set('Z'); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), 20); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - tft.queue.sync(); - tft_string.set(F("Offset")); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + 34, tft_string.width(), 20); - tft.set_background(COLOR_BACKGROUND); - #if HAS_BED_PROBE - if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - #endif - } -#endif - -#if HAS_EXTRUDERS - static void drawCurESelection() { - tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set('E'); - tft.add_text(0, 0, E_BTN_COLOR, tft_string); - tft.add_text(tft_string.width(), 0, E_BTN_COLOR, ui8tostr3rj(motionAxisState.e_selection)); - } -#endif - -static void drawMessage(PGM_P const msg) { - tft.canvas(X_MARGIN, - #if ENABLED(TFT_COLOR_UI_PORTRAIT) - TFT_HEIGHT - 2 * BTN_HEIGHT, TFT_WIDTH - X_MARGIN - #else - TFT_HEIGHT - Y_MARGIN - 29, (TFT_WIDTH / 2) - (BTN_WIDTH / 2) - X_MARGIN - #endif - , FONT_LINE_HEIGHT - ); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, COLOR_STATUS_MESSAGE, msg); -} - -static void drawMessage(FSTR_P const fmsg) { drawMessage(FTOP(fmsg)); } - -static void drawAxisValue(const AxisEnum axis) { - const float value = ( - TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) - ui.manual_move.axis_value(axis) - ); - xy_int_t pos; - uint16_t color; - switch (axis) { - #if HAS_X_AXIS - case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; - #endif - #if HAS_Y_AXIS - case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; - #endif - #if HAS_Z_AXIS - case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; - #endif - #if HAS_EXTRUDERS - case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; - #endif - default: return; - } - tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, FONT_LINE_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ftostr52sp(value)); - tft.add_text(0, 0, color, tft_string); -} - -static void moveAxis(const AxisEnum axis, const int8_t direction) { - quick_feedback(); - - #if HAS_EXTRUDERS - if (axis == E_AXIS && thermalManager.tooColdToExtrude(motionAxisState.e_selection)) { - drawMessage(F("Too cold")); - return; - } - #endif - - const float diff = motionAxisState.currentStepSize * direction; - - #if HAS_BED_PROBE - - if (axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE) { - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - const int16_t babystep_increment = direction * BABYSTEP_SIZE_Z; - const bool do_probe = DISABLED(BABYSTEP_HOTEND_Z_OFFSET) || active_extruder == 0; - const float bsDiff = planner.mm_per_step[Z_AXIS] * babystep_increment, - new_probe_offset = probe.offset.z + bsDiff, - new_offs = TERN(BABYSTEP_HOTEND_Z_OFFSET - , do_probe ? new_probe_offset : hotend_offset[active_extruder].z - bsDiff - , new_probe_offset - ); - if (WITHIN(new_offs, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) { - babystep.add_steps(Z_AXIS, babystep_increment); - if (do_probe) - probe.offset.z = new_offs; - else - TERN(BABYSTEP_HOTEND_Z_OFFSET, hotend_offset[active_extruder].z = new_offs, NOOP); - drawMessage(NUL_STR); // Clear the error - drawAxisValue(axis); - } - else - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - - #else - // Only change probe.offset.z - probe.offset.z += diff; - if (direction < 0 && current_position.z < Z_PROBE_OFFSET_RANGE_MIN) { - current_position.z = Z_PROBE_OFFSET_RANGE_MIN; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else if (direction > 0 && current_position.z > Z_PROBE_OFFSET_RANGE_MAX) { - current_position.z = Z_PROBE_OFFSET_RANGE_MAX; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else - drawMessage(NUL_STR); // Clear the error - - drawAxisValue(axis); - #endif - } - - #endif // HAS_BED_PROBE - - if (!ui.manual_move.processing) { - // Get motion limit from software endstops, if any - float min, max; - soft_endstop.get_manual_axis_limits(axis, min, max); - - // Delta limits XY based on the current offset from center - // This assumes the center is 0,0 - #if ENABLED(DELTA) - if (axis != Z_AXIS && TERN1(HAS_EXTRUDERS, axis != E_AXIS)) { - max = SQRT(sq(float(PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis])); // (Y_AXIS - axis) == the other axis - min = -max; - } - #endif - - // Get the new position - const bool limited = ui.manual_move.apply_diff(axis, diff, min, max); - #if IS_KINEMATIC - UNUSED(limited); - #else - PGM_P const msg = limited ? GET_TEXT(MSG_LCD_SOFT_ENDSTOPS) : NUL_STR; - drawMessage(msg); - #endif - - ui.manual_move.soon(axis OPTARG(MULTI_E_MANUAL, motionAxisState.e_selection)); - } - - drawAxisValue(axis); -} - -#if HAS_EXTRUDERS - static void e_plus() { moveAxis(E_AXIS, 1); } - static void e_minus() { moveAxis(E_AXIS, -1); } -#endif -#if HAS_X_AXIS - static void x_minus() { moveAxis(X_AXIS, -1); } - static void x_plus() { moveAxis(X_AXIS, 1); } -#endif -#if HAS_Y_AXIS - static void y_plus() { moveAxis(Y_AXIS, 1); } - static void y_minus() { moveAxis(Y_AXIS, -1); } -#endif -#if HAS_Z_AXIS - static void z_plus() { moveAxis(Z_AXIS, 1); } - static void z_minus() { moveAxis(Z_AXIS, -1); } -#endif - -#if ENABLED(TOUCH_SCREEN) - #if HAS_EXTRUDERS - static void e_select() { - if (++motionAxisState.e_selection >= EXTRUDERS) - motionAxisState.e_selection = 0; - quick_feedback(); - drawCurESelection(); - drawAxisValue(E_AXIS); - } - #endif - - static void do_home() { - quick_feedback(); - drawMessage(GET_TEXT_F(MSG_LEVEL_BED_HOMING)); - queue.inject_P(G28_STR); - // Disable touch until home is done - touch.disable(); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - TERN_(HAS_X_AXIS, drawAxisValue(X_AXIS)); - TERN_(HAS_Y_AXIS, drawAxisValue(Y_AXIS)); - TERN_(HAS_Z_AXIS, drawAxisValue(Z_AXIS)); - } - - static void step_size() { - motionAxisState.currentStepSize = motionAxisState.currentStepSize / 10.0; - if (motionAxisState.currentStepSize < 0.0015) motionAxisState.currentStepSize = 10.0; - quick_feedback(); - drawCurStepValue(); - } - - #if HAS_BED_PROBE - static void z_select() { - motionAxisState.z_selection *= -1; - quick_feedback(); - drawCurZSelection(); - drawAxisValue(Z_AXIS); - } - #endif - -#endif // TOUCH_SCREEN - -static void disable_steppers() { - quick_feedback(); - queue.inject(F("M84")); -} - -static void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled=true) { - const uint16_t width = images[imgBtn39Rounded].width, - height = images[imgBtn39Rounded].height; - - if (!enabled) bgColor = COLOR_CONTROL_DISABLED; - - tft.canvas(x, y, width, height); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgBtn39Rounded, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - // TODO: Make an add_text() taking a font arg - if (label) { - tft_string.set(label); - tft_string.trim(); - tft.add_text(tft_string.center(width), height / 2 - tft_string.font_height() / 2, bgColor, tft_string); - } - else - tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - TERN_(TOUCH_SCREEN, if (enabled) touch.add_control(BUTTON, x, y, width, height, data)); -} - -void MarlinUI::move_axis_screen() { - // Reset - defer_status_screen(true); - motionAxisState.blocked = false; - TERN_(TOUCH_SCREEN, touch.enable()); - - ui.clear_lcd(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - const bool busy = printingIsActive(); - - // Babysteps during printing? Select babystep for Z probe offset - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; - #endif - - #if ENABLED(TFT_COLOR_UI_PORTRAIT) - - // ROW 1 -> E+ Y+ Z+ - int x = X_MARGIN, y = Y_MARGIN, spacing = 0; - - TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", (intptr_t)e_plus, imgUp, E_BTN_COLOR, !busy)); - - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - x += BTN_WIDTH + spacing; - uint16_t yplus_x = x; - - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", (intptr_t)y_plus, imgUp, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - uint16_t zplus_x = x; - - #if HAS_Z_AXIS - drawBtn(x, y, "Z+", (intptr_t)z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step - #endif - - // ROW 2 -> "Ex" CurY "Z" - x = X_MARGIN; - y += BTN_HEIGHT + 2; - - #if HAS_EXTRUDERS - motionAxisState.eNamePos.set(x, y); - drawCurESelection(); - TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select)); - #endif - - #if HAS_Y_AXIS - motionAxisState.yValuePos.set(yplus_x, y); - drawAxisValue(Y_AXIS); - #endif - - #if HAS_Z_AXIS - motionAxisState.zTypePos.set(zplus_x, y); - drawCurZSelection(); - #endif - - // ROW 3 -> X- HOME X+ - y += (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3 - 2; - x = X_MARGIN; - - #if HAS_X_AXIS - drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy); - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy)); - drawBtn(zplus_x, y, "X+", (intptr_t)x_plus, imgRight, X_BTN_COLOR, !busy); - #endif - - #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, (intptr_t)z_select); - #endif - - // ROW 4 -> Cur X - y += BTN_HEIGHT + 2; - - #if HAS_X_AXIS - motionAxisState.xValuePos.set(x, y); - drawAxisValue(X_AXIS); - #endif - - // ROW 5 -> E- CurX Y- Z- - y += (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3 - 2; - x = X_MARGIN; - - #if HAS_EXTRUDERS - drawBtn(x, y, "E-", (intptr_t)e_minus, imgDown, E_BTN_COLOR, !busy); - motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - #endif - - x += BTN_WIDTH + spacing; - - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", (intptr_t)y_minus, imgDown, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - #if HAS_Z_AXIS - drawBtn(x, y, "Z-", (intptr_t)z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); //only enabled when not busy or have baby step - motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); - drawAxisValue(Z_AXIS); - #endif - - // ROW 6 -> step_size disable steppers back - y = TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT; - x = zplus_x - CUR_STEP_VALUE_WIDTH - 10; - motionAxisState.stepValuePos.set(X_MARGIN + BTN_WIDTH - CUR_STEP_VALUE_WIDTH, y); - - if (!busy) { - drawCurStepValue(); - TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size)); - } - - // Aligned with x+ - drawBtn(yplus_x, y, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy); - - #else // !TFT_COLOR_UI_PORTRAIT - - // ROW 1 -> E+ Y+ CurY Z+ - int x = X_MARGIN, y = Y_MARGIN, spacing = 0; - - TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", (intptr_t)e_plus, imgUp, E_BTN_COLOR, !busy)); - - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - x += BTN_WIDTH + spacing; - uint16_t yplus_x = x; - - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", (intptr_t)y_plus, imgUp, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH; - - #if HAS_Y_AXIS - motionAxisState.yValuePos.set(x + 2, y); - drawAxisValue(Y_AXIS); - #endif - - x += spacing; - - #if HAS_Z_AXIS - drawBtn(x, y, "Z+", (intptr_t)z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); //only enabled when not busy or have baby step - #endif - - // ROW 2 -> "Ex" X- HOME X+ "Z" - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; - - #if HAS_EXTRUDERS - motionAxisState.eNamePos.set(x, y); - drawCurESelection(); - TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select)); - #endif - - x += BTN_WIDTH + spacing; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; //imgHome is 64x64 - - #if ALL(HAS_X_AXIS, TOUCH_SCREEN) - add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy); - #endif - - x += BTN_WIDTH + spacing; - const uint16_t xplus_x = x; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", (intptr_t)x_plus, imgRight, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - #if HAS_Z_AXIS - motionAxisState.zTypePos.set(x, y); - drawCurZSelection(); - #endif - - #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, (intptr_t)z_select); - #endif - - // ROW 3 -> E- CurX Y- Z- - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - - #if HAS_EXTRUDERS - drawBtn(x, y, "E-", (intptr_t)e_minus, imgDown, E_BTN_COLOR, !busy); - motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - #endif - - // Cur X - #if HAS_X_AXIS - motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); - drawAxisValue(X_AXIS); - #endif - - x += BTN_WIDTH + spacing; - - // Cur Y - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", (intptr_t)y_minus, imgDown, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - // Cur Z - #if HAS_Z_AXIS - drawBtn(x, y, "Z-", (intptr_t)z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); //only enabled when not busy or have baby step - motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); - drawAxisValue(Z_AXIS); - #endif - - // ROW 4 -> step_size disable steppers back - y = TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT; - x = xplus_x - CUR_STEP_VALUE_WIDTH - 10; - motionAxisState.stepValuePos.set(yplus_x + BTN_WIDTH - CUR_STEP_VALUE_WIDTH, y); - if (!busy) { - drawCurStepValue(); - TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size)); - } - - // Aligned with x+ - drawBtn(xplus_x, y, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy); - - #endif // !TFT_COLOR_UI_PORTRAIT - - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); -} - -#endif // HAS_UI_320x240 diff --git a/Marlin/src/lcd/tft/ui_320x240.h b/Marlin/src/lcd/tft/ui_320x240.h index 1d3aa86f8124..5725a8ed2d91 100644 --- a/Marlin/src/lcd/tft/ui_320x240.h +++ b/Marlin/src/lcd/tft/ui_320x240.h @@ -19,32 +19,285 @@ * along with this program. If not, see . * */ -#pragma once -#define MARLIN_LOGO_FULL_SIZE MarlinLogo320x240x16 +#include "../../inc/MarlinConfigPre.h" -#include "ui_common.h" +// -------------------------------- Core Parameters -------------------------------- -#define TFT_STATUS_TOP_Y 0 -#define TFT_TOP_LINE_Y 2 +#define MENU_TEXT_X 10 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) -#define MENU_TEXT_X_OFFSET 10 -#define MENU_TEXT_Y_OFFSET tft_string.vcenter(MENU_ITEM_HEIGHT) +#define MENU_ITEM_ICON_X 0 +#define MENU_ITEM_ICON_Y 0 +#define MENU_ITEM_ICON_SPACE 32 -#define MENU_ITEM_ICON_X 0 -#define MENU_ITEM_ICON_Y 0 -#define MENU_ITEM_ICON_SPACE 32 +#define MENU_ITEM_HEIGHT 32 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 2 -#define MENU_ITEM_HEIGHT 32 -#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) -#define FONT_LINE_HEIGHT 24 - -#if (TFT_FONT == NOTOSANS) || (TFT_FONT == HELVETICA) - #define FONT_SIZE 14 +#if TFT_FONT == NOTOSANS || TFT_FONT == HELVETICA + #define FONT_SIZE 14 #elif TFT_FONT == UNIFONT - #define FONT_SIZE 10 + #define FONT_SIZE 10 +#endif + +#define FONT_LINE_HEIGHT 24 + +// --------------------------------------------------------------------------------- + +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) + +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 48) + #else + #define BOOTSCREEN_LOGO MarlinLogo320x240x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 54) + #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 48 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 34 + #define NAVIGATION_PAGE_DOWN_X 240 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 34 + #define NAVIGATION_BACK_X 144 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 34 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 32 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 64 + #define BUTTON_INCREASE_X 224 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 64 + #define BUTTON_CLICK_X 128 + #define BUTTON_CLICK_Y TFT_HEIGHT - 64 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 48 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 64 + #define BUTTON_CONFIRM_X 208 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 64 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 60 + #define KILL_SCREEN_HALTED_Y 120 + #define KILL_SCREEN_RESET_Y 160 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 64 + #define TEMP_FAN_CONTROL_H 100 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X 0 + #define TEMP_ICON_Y 18 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X 0 + #define FAN_ICON_Y 10 +#endif + +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 69 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 5 + VCENTER +#endif + +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 69 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 5 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 2 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT + #define COORDINATES_X 4 + #define COORDINATES_Y 103 +#endif + +#if ENABLED(LCD_SHOW_E_TOTAL) + #if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 10 + #define E_MARK_Y VCENTER + #define E_VALUE_X 127 - tft_string.width() + #define E_VALUE_Y VCENTER + #endif +#else + #if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 10 + #define X_MARK_Y VCENTER + #define X_VALUE_X 68 - tft_string.width() + #define X_VALUE_Y VCENTER + #endif + + #if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 114 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 172 - tft_string.width() + #define Y_VALUE_Y VCENTER + #endif +#endif + +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 219 + #define Z_MARK_Y VCENTER + #define Z_VALUE_X 301 - tft_string.width() + #define Z_VALUE_Y VCENTER + #define Z_VALUE_OFFSET 25 +#endif + +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 86 + #define FEEDRATE_H 32 + #define FEEDRATE_X 70 + #define FEEDRATE_Y 134 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 86 + #define FLOWRATE_H 32 + #define FLOWRATE_X 170 + #define FLOWRATE_Y 134 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 256 + #define MENU_ICON_Y 130 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 0 + #define SDCARD_ICON_Y 130 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define ELAPSED_TIME_W 96 + #define ELAPSED_TIME_X (TFT_WIDTH / 2) - ELAPSED_TIME_W + #elif ENABLED(SHOW_ELAPSED_TIME) + #define ELAPSED_TIME_W 192 + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 + #endif + + #define ELAPSED_TIME_H 32 + #define ELAPSED_TIME_Y 168 +#endif + +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 96 + #define REMAINING_TIME_X (TFT_WIDTH / 2) + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 192 + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 + #endif + + #define REMAINING_TIME_H 32 + #define REMAINING_TIME_Y 168 #endif -#define FONT_LINE_HEIGHT 24 +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 9 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 202 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 212 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 224 + #define SLIDER_Y 140 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 120) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 120) - tft_string.width() + #endif -#include "tft_font.h" + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 144 + #define UBL_GRID_H 144 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 8 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 96 + #define UBL_COORDINATES_X 216 + + #define UBL_X_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT + #define UBL_Y_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + #define UBL_Z_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT + #endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X 224 + #define UBL_ACTION_Y UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_320x480.h b/Marlin/src/lcd/tft/ui_320x480.h new file mode 100644 index 000000000000..87f6b4ebe48f --- /dev/null +++ b/Marlin/src/lcd/tft/ui_320x480.h @@ -0,0 +1,294 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +// -------------------------------- Core Parameters -------------------------------- + +#define MENU_TEXT_X 16 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) + +#define MENU_ITEM_ICON_X 5 +#define MENU_ITEM_ICON_Y 5 +#define MENU_ITEM_ICON_SPACE 42 + +#define MENU_ITEM_HEIGHT 43 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 4 + +#if TFT_FONT == NOTOSANS || TFT_FONT == HELVETICA + #define FONT_SIZE 19 +#elif TFT_FONT == UNIFONT + #define FONT_SIZE 20 +#endif + +#define FONT_LINE_HEIGHT 34 + +// --------------------------------------------------------------------------------- + +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) + +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 70) + #else + #define BOOTSCREEN_LOGO MarlinLogo480x320x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 90) + #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 48 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 38 + #define NAVIGATION_PAGE_DOWN_X 240 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 38 + #define NAVIGATION_BACK_X 144 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 38 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 32 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 64 + #define BUTTON_INCREASE_X 224 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 64 + #define BUTTON_CLICK_X 128 + #define BUTTON_CLICK_Y TFT_HEIGHT - 64 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 48 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 64 + #define BUTTON_CONFIRM_X 208 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 64 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 139 + #define KILL_SCREEN_HALTED_Y 229 + #define KILL_SCREEN_RESET_Y 274 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 80 + #define TEMP_FAN_CONTROL_H 120 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X 0 + #define TEMP_ICON_Y 28 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X 0 + #define FAN_ICON_Y 20 +#endif + +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 80 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 6 + VCENTER +#endif + +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 80 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 4 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 4 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT * 2 + #define COORDINATES_X 4 + #define COORDINATES_Y 132 +#endif + +#if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 10 + #define E_MARK_Y VCENTER + FONT_LINE_HEIGHT + #define E_VALUE_X 103 - tft_string.width() + #define E_VALUE_Y VCENTER + FONT_LINE_HEIGHT +#endif + +#if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 10 + #define X_MARK_Y VCENTER + #define X_VALUE_X 103 - tft_string.width() + #define X_VALUE_Y VCENTER +#endif + +#if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 176 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 265 - tft_string.width() + #define Y_VALUE_Y VCENTER +#endif + +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 176 + #define Z_MARK_Y VCENTER + FONT_LINE_HEIGHT + #define Z_VALUE_X 297 - tft_string.width() + #define Z_VALUE_Y VCENTER + FONT_LINE_HEIGHT + #define Z_VALUE_OFFSET 32 +#endif + +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 120 + #define FEEDRATE_H 32 + #define FEEDRATE_X 24 + #define FEEDRATE_Y 218 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 120 + #define FLOWRATE_H 32 + #define FLOWRATE_X 176 + #define FLOWRATE_Y 218 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 250 + #define MENU_ICON_Y 354 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 6 + #define SDCARD_ICON_Y 354 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #define ELAPSED_TIME_W 168 + #define ELAPSED_TIME_H 29 + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 + #define ELAPSED_TIME_Y 388 +#endif + +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_Y 354 + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_Y 388 + #endif + + #define REMAINING_TIME_H 29 + #define REMAINING_TIME_W 168 + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 +#endif + +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 12 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 422 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 440 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 288 + #define SLIDER_Y 280 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 120) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 120) - tft_string.width() + #endif + + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 192 + #define UBL_GRID_H 192 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 16 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 168 + #define UBL_COORDINATES_X 20 + + #define UBL_X_COORDINATE_Y 283 + #define UBL_Y_COORDINATE_Y 326 + #define UBL_Z_COORDINATE_Y 369 + #endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X 240 + #define UBL_ACTION_Y 332 + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_480x272.h b/Marlin/src/lcd/tft/ui_480x272.h new file mode 100644 index 000000000000..83f9e5c21aa4 --- /dev/null +++ b/Marlin/src/lcd/tft/ui_480x272.h @@ -0,0 +1,306 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +// -------------------------------- Core Parameters -------------------------------- + +#define MENU_TEXT_X 16 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) + +#define MENU_ITEM_ICON_X 5 +#define MENU_ITEM_ICON_Y 5 +#define MENU_ITEM_ICON_SPACE 42 + +#define MENU_ITEM_HEIGHT 36 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 4 + +#if TFT_FONT == NOTOSANS + #define FONT_SIZE 16 + #define FONT_LINE_HEIGHT 26 +#elif TFT_FONT == UNIFONT + #define FONT_SIZE 10 + #define FONT_LINE_HEIGHT 24 +#elif TFT_FONT == HELVETICA + #define FONT_SIZE 14 + #define FONT_LINE_HEIGHT 24 +#endif + +// --------------------------------------------------------------------------------- + +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) + +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 70) + #else + #define BOOTSCREEN_LOGO MarlinLogo480x320x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 90) + #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 104 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 34 + #define NAVIGATION_PAGE_DOWN_X 344 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 34 + #define NAVIGATION_BACK_X 224 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 34 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 64 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 64 + #define BUTTON_INCREASE_X 352 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 64 + #define BUTTON_CLICK_X 208 + #define BUTTON_CLICK_Y TFT_HEIGHT - 64 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 88 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 64 + #define BUTTON_CONFIRM_X 328 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 64 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 62 + #define KILL_SCREEN_HALTED_Y 136 + #define KILL_SCREEN_RESET_Y 172 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 80 + #define TEMP_FAN_CONTROL_H 112 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X 8 + #define TEMP_ICON_Y 24 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X 8 + #define FAN_ICON_Y 16 +#endif + +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 76 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 2 + VCENTER +#endif + +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 76 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 5 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 4 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT + #define COORDINATES_X 4 + #define COORDINATES_Y 122 +#endif + +#if ENABLED(LCD_SHOW_E_TOTAL) + #if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 16 + #define E_MARK_Y VCENTER + #define E_VALUE_X 192 - tft_string.width() + #define E_VALUE_Y VCENTER + #endif +#else + #if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 16 + #define X_MARK_Y VCENTER + #define X_VALUE_X 102 - tft_string.width() + #define X_VALUE_Y VCENTER + #endif + + #if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 192 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 280 - tft_string.width() + #define Y_VALUE_Y VCENTER + #endif +#endif + +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 330 + #define Z_MARK_Y VCENTER + #define Z_VALUE_X 455 - tft_string.width() + #define Z_VALUE_Y VCENTER + #define Z_VALUE_OFFSET 32 +#endif + +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 120 + #define FEEDRATE_H 32 + #define FEEDRATE_X 96 + #define FEEDRATE_Y 156 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 120 + #define FLOWRATE_H 32 + #define FLOWRATE_X 284 + #define FLOWRATE_Y 156 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 404 + #define MENU_ICON_Y 156 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 12 + #define SDCARD_ICON_Y 156 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define ELAPSED_TIME_W 164 + #define ELAPSED_TIME_X (TFT_WIDTH / 2) - ELAPSED_TIME_W + #elif ENABLED(SHOW_ELAPSED_TIME) + #define ELAPSED_TIME_W 288 + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 + #endif + + #define ELAPSED_TIME_H 29 + #define ELAPSED_TIME_Y 192 +#endif + +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 164 + #define REMAINING_TIME_X (TFT_WIDTH / 2) + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 288 + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 + #endif + + #define REMAINING_TIME_H 29 + #define REMAINING_TIME_Y 192 +#endif + +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 12 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 228 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 242 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 336 + #define SLIDER_Y 160 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 120) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 120) - tft_string.width() + #endif + + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 192 + #define UBL_GRID_H 192 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 16 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 120 + #define UBL_COORDINATES_X 320 + + #define UBL_X_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT + #define UBL_Y_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + #define UBL_Z_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT +#endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X UBL_COORDINATES_X + #define UBL_ACTION_Y UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_480x320.cpp b/Marlin/src/lcd/tft/ui_480x320.cpp deleted file mode 100644 index 8e554cf413a5..000000000000 --- a/Marlin/src/lcd/tft/ui_480x320.cpp +++ /dev/null @@ -1,1196 +0,0 @@ -/** - * Marlin 3D Printer Firmware - * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] - * - * Based on Sprinter and grbl. - * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - */ - -#include "../../inc/MarlinConfigPre.h" - -#if HAS_UI_480x320 || HAS_UI_480x272 - -#include "ui_common.h" - -#include "../marlinui.h" -#include "../menu/menu.h" -#include "../../libs/numtostr.h" - -#include "../../sd/cardreader.h" -#include "../../module/temperature.h" -#include "../../module/printcounter.h" -#include "../../module/planner.h" -#include "../../module/motion.h" - -#if DISABLED(LCD_PROGRESS_BAR) && ALL(FILAMENT_LCD_DISPLAY, HAS_MEDIA) - #include "../../feature/filwidth.h" - #include "../../gcode/parser.h" -#endif - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #include "../../feature/bedlevel/bedlevel.h" -#endif - -void MarlinUI::tft_idle() { - #if ENABLED(TOUCH_SCREEN) - if (TERN0(HAS_TOUCH_SLEEP, lcd_sleep_task())) return; - if (draw_menu_navigation) { - add_control(TFT_WIDTH / 6 - 16, TFT_HEIGHT - 34, PAGE_UP, imgPageUp, encoderTopLine > 0); - add_control(TFT_WIDTH / 2 - 16, TFT_HEIGHT - 34, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items); - add_control(5 * TFT_WIDTH / 6 - 16, TFT_HEIGHT - 34, BACK, imgBack); - draw_menu_navigation = false; - } - #endif - - tft.queue.async(); - - TERN_(TOUCH_SCREEN, if (tft.queue.is_empty()) touch.idle()); // Touch driver is not DMA-aware, so only check for touch controls after screen drawing is completed -} - -#if ENABLED(SHOW_BOOTSCREEN) - - void MarlinUI::show_bootscreen() { - tft.queue.reset(); - - tft.canvas(0, 0, TFT_WIDTH, TFT_HEIGHT); - #if ENABLED(BOOT_MARLIN_LOGO_SMALL) - #define BOOT_LOGO_W 195 // MarlinLogo195x59x16 - #define BOOT_LOGO_H 59 - #define SITE_URL_Y (TFT_HEIGHT - 70) - tft.set_background(COLOR_BACKGROUND); - #else - #define BOOT_LOGO_W TFT_WIDTH // MarlinLogo480x320x16 - #define BOOT_LOGO_H TFT_HEIGHT - #define SITE_URL_Y (TFT_HEIGHT - 90) - #endif - tft.add_image((TFT_WIDTH - BOOT_LOGO_W) / 2, (TFT_HEIGHT - BOOT_LOGO_H) / 2, imgBootScreen); - #ifdef WEBSITE_URL - tft_string.set(WEBSITE_URL); - tft.add_text(tft_string.center(TFT_WIDTH), SITE_URL_Y, COLOR_WEBSITE_URL, tft_string); - #endif - - tft.queue.sync(); - } - - void MarlinUI::bootscreen_completion(const millis_t sofar) { - if ((BOOTSCREEN_TIMEOUT) > sofar) safe_delay((BOOTSCREEN_TIMEOUT) - sofar); - clear_lcd(); - } - -#endif - -void MarlinUI::draw_kill_screen() { - tft.queue.reset(); - tft.fill(0, 0, TFT_WIDTH, TFT_HEIGHT, COLOR_KILL_SCREEN_BG); - - uint16_t line = 2; - - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - line++; - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT(MSG_HALTED)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - menu_line(line++, COLOR_KILL_SCREEN_BG); - tft_string.set(GET_TEXT(MSG_PLEASE_RESET)); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - tft.queue.sync(); -} - -void draw_heater_status(uint16_t x, uint16_t y, const int8_t heater) { - MarlinImage image = imgHotEnd; - celsius_t currentTemperature, targetTemperature; - - if (heater >= 0) { // HotEnd - #if HAS_EXTRUDERS - currentTemperature = thermalManager.wholeDegHotend(heater); - targetTemperature = thermalManager.degTargetHotend(heater); - #else - return; - #endif - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - currentTemperature = thermalManager.wholeDegBed(); - targetTemperature = thermalManager.degTargetBed(); - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - currentTemperature = thermalManager.wholeDegChamber(); - #if HAS_HEATED_CHAMBER - targetTemperature = thermalManager.degTargetChamber(); - #else - targetTemperature = ABSOLUTE_ZERO; - #endif - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - currentTemperature = thermalManager.wholeDegCooler(); - targetTemperature = TERN(HAS_COOLER, thermalManager.degTargetCooler(), ABSOLUTE_ZERO); - } - #endif - else return; - - TERN_(TOUCH_SCREEN, if (targetTemperature >= 0) touch.add_control(HEATER, x, y, 80, 120, heater)); - tft.canvas(x, y, 80, 120); - tft.set_background(COLOR_BACKGROUND); - - uint16_t color = currentTemperature < 0 ? COLOR_INACTIVE : COLOR_COLD; - - if (heater >= 0) { // HotEnd - if (currentTemperature >= 50) color = COLOR_HOTEND; - } - #if HAS_HEATED_BED - else if (heater == H_BED) { - if (currentTemperature >= 50) color = COLOR_HEATED_BED; - image = targetTemperature > 0 ? imgBedHeated : imgBed; - } - #endif - #if HAS_TEMP_CHAMBER - else if (heater == H_CHAMBER) { - if (currentTemperature >= 50) color = COLOR_CHAMBER; - image = targetTemperature > 0 ? imgChamberHeated : imgChamber; - } - #endif - #if HAS_TEMP_COOLER - else if (heater == H_COOLER) { - if (currentTemperature <= 26) color = COLOR_COLD; - if (currentTemperature > 26) color = COLOR_RED; - image = targetTemperature > 26 ? imgCoolerHot : imgCooler; - } - #endif - - tft.add_image(8, 28, image, color); - - tft_string.set(i16tostr3rj(currentTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 2, 80 + tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - - if (targetTemperature >= 0) { - tft_string.set(i16tostr3rj(targetTemperature)); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 2, 6 + tft_string.vcenter(FONT_LINE_HEIGHT), color, tft_string); - } -} - -void draw_fan_status(uint16_t x, uint16_t y, const bool blink) { - TERN_(TOUCH_SCREEN, touch.add_control(FAN, x, y, 80, 120)); - tft.canvas(x, y, 80, 120); - tft.set_background(COLOR_BACKGROUND); - - uint8_t fanSpeed = thermalManager.fan_speed[0]; - MarlinImage image; - - if (fanSpeed >= 127) - image = blink ? imgFanFast1 : imgFanFast0; - else if (fanSpeed > 0) - image = blink ? imgFanSlow1 : imgFanSlow0; - else - image = imgFanIdle; - - tft.add_image(8, 20, image, COLOR_FAN); - - tft_string.set(ui8tostr4pctrj(thermalManager.fan_speed[0])); - tft_string.trim(); - tft.add_text(tft_string.center(80) + 6, 80 + tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_FAN, tft_string); -} - -void MarlinUI::draw_status_screen() { - const bool blink = get_blink(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - // Statuses of heaters and fans - uint16_t y = STATUS_MARGIN_SIZE; - for (uint16_t i = 0; i < ITEMS_COUNT; i++) { - uint16_t x = (TFT_WIDTH / ITEMS_COUNT - 80) / 2 + (TFT_WIDTH * i / ITEMS_COUNT); - switch (i) { - #if HAS_EXTRUDERS - case ITEM_E0: draw_heater_status(x, y, H_E0); break; - #endif - #if HAS_MULTI_HOTEND - case ITEM_E1: draw_heater_status(x, y, H_E1); break; - #endif - #if HOTENDS > 2 - case ITEM_E2: draw_heater_status(x, y, H_E2); break; - #endif - #if HAS_HEATED_BED - case ITEM_BED: draw_heater_status(x, y, H_BED); break; - #endif - #if HAS_TEMP_CHAMBER - case ITEM_CHAMBER: draw_heater_status(x, y, H_CHAMBER); break; - #endif - #if HAS_TEMP_COOLER - case ITEM_COOLER: draw_heater_status(x, y, H_COOLER); break; - #endif - #if HAS_FAN - case ITEM_FAN: draw_fan_status(x, y, blink); break; - #endif - } - } - - y += STATUS_MARGIN_SIZE + 114; - - // Coordinates - constexpr uint16_t coords_width = TFT_WIDTH - 8; - tft.canvas((TFT_WIDTH - coords_width) / 2, y, coords_width, FONT_LINE_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, coords_width, FONT_LINE_HEIGHT, COLOR_AXIS_HOMED); - - if (TERN0(LCD_SHOW_E_TOTAL, printingIsActive())) { - #if ENABLED(LCD_SHOW_E_TOTAL) - tft.add_text(16, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, "E"); - const uint8_t escale = e_move_accumulator >= 100000.0f ? 10 : 1; // After 100m switch to cm - tft_string.set(ftostr4sign(e_move_accumulator / escale)); - tft_string.add(escale == 10 ? 'c' : 'm'); - tft_string.add('m'); - tft.add_text(192 - tft_string.width(), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, tft_string); - #endif - } - else { - // Coords in mask "X____Y____Z____" - #if HAS_X_AXIS - tft_string.set("X"); - tft.add_text(coords_width / 30 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, tft_string); - - const bool nhx = axis_should_home(X_AXIS); - tft_string.set(blink && nhx ? "?" : ftostr4sign(LOGICAL_X_POSITION(current_position.x))); - tft_string.ltrim(); - tft.add_text(coords_width / 5 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), nhx ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - - #if HAS_Y_AXIS - tft_string.set("Y"); - tft.add_text(11 * coords_width / 30 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, tft_string); - - const bool nhy = axis_should_home(Y_AXIS); - tft_string.set(blink && nhy ? "?" : ftostr4sign(LOGICAL_Y_POSITION(current_position.y))); - tft_string.ltrim(); - tft.add_text(8 * coords_width / 15 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), nhy ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - } - - #if HAS_Z_AXIS - tft_string.set("Z"); - tft.add_text(7 * coords_width / 10 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_AXIS_HOMED, tft_string); - - const bool nhz = axis_should_home(Z_AXIS); - tft_string.set(blink && nhz ? "?" : ftostr52sp(LOGICAL_Z_POSITION(current_position.z))); - tft_string.ltrim(); - tft_string.rtrim(); - tft.add_text(13 * coords_width / 15 - tft_string.width() / 2, tft_string.vcenter(FONT_LINE_HEIGHT), nhz ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); - #endif - - TERN_(TOUCH_SCREEN, touch.add_control(MOVE_AXIS, 4, y, TFT_WIDTH - 8, FONT_LINE_HEIGHT)); - - y += STATUS_MARGIN_SIZE + 34; - - // Feed rate (preparing) - tft_string.set(i16tostr3rj(feedrate_percentage)); - tft_string.add("%"); - uint16_t component_width = 36 + tft_string.width(); // 32px icon size + 4px margin before text - uint16_t color = feedrate_percentage == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - uint16_t x = FEEDRATE_X(component_width); - - // Feed rate (drawing) - tft.canvas(x, y, component_width, 32); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgFeedRate, color); - tft.add_text(36, tft_string.vcenter(30), color, tft_string); - TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, x, y, component_width, 32)); - - #if HAS_EXTRUDERS - // Flow rate (preparing) - tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder])); - tft_string.add('%'); - component_width = 36 + tft_string.width(); - color = planner.flow_percentage[0] == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; - x = FLOWRATE_X(component_width); - - // Flow rate (drawing) - tft.canvas(x, y, component_width, 32); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgFlowRate, color); - tft.add_text(36, tft_string.vcenter(30), color, tft_string); - TERN_(TOUCH_SCREEN, touch.add_control(FLOWRATE, x, y, component_width, 32, active_extruder)); - #endif - - y += TERN(HAS_UI_480x272, 36, 44); - - const progress_t progress = TERN(HAS_PRINT_PROGRESS_PERMYRIAD, get_progress_permyriad, get_progress_percent)(); - #if ENABLED(SHOW_ELAPSED_TIME) && DISABLED(SHOW_REMAINING_TIME) - // Print duration so far (time elapsed) - centered - char elapsed_str[22]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toString(elapsed_str); - - // Same width constraints as feedrate/flowrate controls - constexpr uint16_t time_str_width = 288, image_width = 36; - - tft.canvas((TFT_WIDTH - time_str_width) / 2, y, time_str_width, 32); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(elapsed_str); - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft.add_text(text_pos_x + image_width, tft_string.vcenter(29), COLOR_PRINT_TIME, tft_string); - - #elif DISABLED(SHOW_ELAPSED_TIME) && ENABLED(SHOW_REMAINING_TIME) - // Print time remaining estimation - centered - char estimate_str[22]; - duration_t elapsed = print_job_timer.duration(); - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toString(estimate_str); - tft_string.set(estimate_str); - } - - // Same width constraints as feedrate/flowrate controls - constexpr uint16_t time_str_width = 288, image_width = 36; - - tft.canvas((TFT_WIDTH - time_str_width) / 2, y, time_str_width, 32); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - uint16_t text_pos_x = tft_string.center(time_str_width - image_width); - tft.add_image(text_pos_x, 0, imgTimeRemaining, color); - tft.add_text(text_pos_x + image_width, tft_string.vcenter(29), color, tft_string); - - #elif ALL(SHOW_REMAINING_TIME, SHOW_ELAPSED_TIME) - // Print duration so far (time elapsed) - aligned under feed rate - char elapsed_str[18]; - duration_t elapsed = print_job_timer.duration(); - elapsed.toCompactString(elapsed_str); - - tft.canvas(96, y, 144, 32); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgTimeElapsed, COLOR_PRINT_TIME); - tft_string.set(elapsed_str); - tft.add_text(36, tft_string.vcenter(29), COLOR_PRINT_TIME, tft_string); - - // Print time remaining estimation - aligned under flow rate - char estimate_str[18]; - - // Get the estimate, first from M73 - uint32_t estimate_remaining = (0 - #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) - + get_remaining_time() - #endif - ); - // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress - if (!estimate_remaining && progress > 0) - estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; - - // Generate estimate string - if (!estimate_remaining) - tft_string.set("-"); - else { - duration_t estimation = estimate_remaining; - estimation.toCompactString(estimate_str); - tft_string.set(estimate_str); - } - - // Push out the estimate to the screen - tft.canvas(256, y, 144, 32); - tft.set_background(COLOR_BACKGROUND); - color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; - tft.add_image(0, 0, imgTimeRemaining, color); - tft.add_text(36, tft_string.vcenter(29), color, tft_string); - #endif - - y += TERN(HAS_UI_480x272, 36, 44); - - // Progress bar - // TODO: print percentage text for SHOW_PROGRESS_PERCENT - tft.canvas(4, y, TFT_WIDTH - 8, 9); - tft.set_background(COLOR_PROGRESS_BG); - tft.add_rectangle(0, 0, TFT_WIDTH - 8, 9, COLOR_PROGRESS_FRAME); - if (progress) - tft.add_bar(1, 1, ((TFT_WIDTH - 10) * progress / (PROGRESS_SCALE)) / 100, 7, COLOR_PROGRESS_BAR); - - y += 12; - // Status message - // Canvas height should be 40px on 480x320 and 28 on 480x272 - const uint16_t status_height = TFT_HEIGHT - y; - tft.canvas(0, y, TFT_WIDTH, status_height); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(status_message); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), tft_string.vcenter(FONT_LINE_HEIGHT), COLOR_STATUS_MESSAGE, tft_string); -} - -// Low-level draw_edit_screen can be used to draw an edit screen from anyplace -void MenuEditItemBase::draw_edit_screen(FSTR_P const fstr, const char * const value/*=nullptr*/) { - ui.encoder_direction_normal(); - TERN_(TOUCH_SCREEN, touch.clear()); - - uint16_t line = 1; - - menu_line(line++); - tft_string.set(fstr, itemIndex, itemStringC, itemStringF); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - - TERN_(AUTO_BED_LEVELING_UBL, if (ui.external_control) line++); // ftostr52() will overwrite *value so *value has to be displayed first - - menu_line(line); - tft_string.set(value); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(AUTO_BED_LEVELING_UBL) - if (ui.external_control) { - menu_line(line - 1); - - tft_string.set(X_LBL); - tft.add_text((TFT_WIDTH / 2 - 120), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.x))); - tft_string.trim(); - tft.add_text((TFT_WIDTH / 2 - 16) - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft_string.set(Y_LBL); - tft.add_text((TFT_WIDTH / 2 + 16), MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.y))); - tft_string.trim(); - tft.add_text((TFT_WIDTH / 2 + 120) - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - } - #endif - - if (ui.can_show_slider()) { - - #define SLIDER_LENGTH TFT_WIDTH * 0.7 - #define SLIDER_Y_POSITION 186 - - tft.canvas((TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION, SLIDER_LENGTH, 16); - tft.set_background(COLOR_BACKGROUND); - - int16_t position = (SLIDER_LENGTH - 2) * ui.encoderPosition / maxEditValue; - tft.add_bar(0, 7, 1, 2, ui.encoderPosition == 0 ? COLOR_SLIDER_INACTIVE : COLOR_SLIDER); - tft.add_bar(1, 6, position, 4, COLOR_SLIDER); - tft.add_bar(position + 1, 6, SLIDER_LENGTH - 2 - position, 4, COLOR_SLIDER_INACTIVE); - tft.add_bar(SLIDER_LENGTH - 1, 7, 1, 2, int32_t(ui.encoderPosition) == maxEditValue ? COLOR_SLIDER : COLOR_SLIDER_INACTIVE); - - #if ENABLED(TOUCH_SCREEN) - tft.add_image((SLIDER_LENGTH - 8) * ui.encoderPosition / maxEditValue, 0, imgSlider, COLOR_SLIDER); - touch.add_control(SLIDER, (TFT_WIDTH - SLIDER_LENGTH) / 2, SLIDER_Y_POSITION - 8, SLIDER_LENGTH, 32, maxEditValue); - #endif - } - - tft.draw_edit_screen_buttons(); -} - -void TFT::draw_edit_screen_buttons() { - #if ENABLED(TOUCH_SCREEN) - add_control((TFT_WIDTH - 3 * 64) / 6, TFT_HEIGHT - 64, DECREASE, imgDecrease); - add_control((TFT_WIDTH - 64) / 2, TFT_HEIGHT - 64, INCREASE, imgIncrease); - add_control((TFT_WIDTH * 5 - 3 * 64) / 6, TFT_HEIGHT - 64, CLICK, imgConfirm); - #endif -} - -// The Select Screen presents a prompt and two "buttons" -void MenuItem_confirm::draw_select_screen(FSTR_P const yes, FSTR_P const no, const bool yesno, FSTR_P const pref, const char * const string/*=nullptr*/, FSTR_P const suff/*=nullptr*/) { - uint16_t line = 1; - - if (!string) line++; - - menu_line(line++); - tft_string.set(pref); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - - if (string) { - menu_line(line++); - tft_string.set(string); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - - if (suff) { - menu_line(line); - tft_string.set(suff); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - #if ENABLED(TOUCH_SCREEN) - if (no) add_control(TFT_WIDTH / 4 - 32, TFT_HEIGHT - 64, CANCEL, imgCancel, true, yesno ? HALF(COLOR_CONTROL_CANCEL) : COLOR_CONTROL_CANCEL); - if (yes) add_control(TFT_WIDTH * 3 / 4 - 32, TFT_HEIGHT - 64, CONFIRM, imgConfirm, true, yesno ? COLOR_CONTROL_CONFIRM : HALF(COLOR_CONTROL_CONFIRM)); - #endif -} - -#if ENABLED(ADVANCED_PAUSE_FEATURE) - - void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) { - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - touch.add_control(RESUME_CONTINUE, 0, 0, TFT_WIDTH, TFT_HEIGHT); - #endif - - menu_line(row); - tft_string.set(GET_TEXT(MSG_FILAMENT_CHANGE_NOZZLE)); - tft_string.add('E'); - tft_string.add((char)('1' + extruder)); - tft_string.add(' '); - tft_string.add(i16tostr3rj(thermalManager.wholeDegHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.add(F(" / ")); - tft_string.add(i16tostr3rj(thermalManager.degTargetHotend(extruder))); - tft_string.add(LCD_STR_DEGREE); - tft_string.trim(); - tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); - } - -#endif // ADVANCED_PAUSE_FEATURE - -#if ENABLED(AUTO_BED_LEVELING_UBL) - #define GRID_OFFSET_X 8 - #define GRID_OFFSET_Y 8 - #define GRID_WIDTH 192 - #define GRID_HEIGHT 192 - #define CONTROL_OFFSET 16 - - void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) { - - tft.canvas(GRID_OFFSET_X, GRID_OFFSET_Y, GRID_WIDTH, GRID_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_rectangle(0, 0, GRID_WIDTH, GRID_HEIGHT, COLOR_WHITE); - - for (uint16_t x = 0; x < (GRID_MAX_POINTS_X); x++) - for (uint16_t y = 0; y < (GRID_MAX_POINTS_Y); y++) - if (position_is_reachable({ bedlevel.get_mesh_x(x), bedlevel.get_mesh_y(y) })) - tft.add_bar(1 + (x * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2, GRID_HEIGHT - 3 - ((y * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 2, 2, COLOR_UBL); - - tft.add_rectangle((x_plot * 2 + 1) * (GRID_WIDTH - 4) / (GRID_MAX_POINTS_X) / 2 - 1, GRID_HEIGHT - 5 - ((y_plot * 2 + 1) * (GRID_HEIGHT - 4) / (GRID_MAX_POINTS_Y) / 2), 6, 6, COLOR_UBL); - - const xy_pos_t pos = { bedlevel.get_mesh_x(x_plot), bedlevel.get_mesh_y(y_plot) }, - lpos = pos.asLogical(); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(X_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.x)); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Y_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(ftostr52(lpos.y)); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(320, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT, 120, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(Z_LBL); - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); - tft_string.set(isnan(bedlevel.z_values[x_plot][y_plot]) ? "-----" : ftostr43sign(bedlevel.z_values[x_plot][y_plot])); - tft_string.trim(); - tft.add_text(120 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - constexpr uint8_t w = (TFT_WIDTH) / 10; - tft.canvas(GRID_OFFSET_X + (GRID_WIDTH - w) / 2, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET - 5, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(x_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - tft.canvas(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET + 16 - 24, GRID_OFFSET_Y + (GRID_HEIGHT - MENU_ITEM_HEIGHT) / 2, w, MENU_ITEM_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ui8tostr3rj(y_plot)); - tft_string.trim(); - tft.add_text(tft_string.center(w), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); - - #if ENABLED(TOUCH_SCREEN) - touch.clear(); - draw_menu_navigation = false; - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + CONTROL_OFFSET, UBL, (ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgUp); - add_control(GRID_OFFSET_X + GRID_WIDTH + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT - CONTROL_OFFSET - 32, UBL, -(ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgDown); - add_control(GRID_OFFSET_X + CONTROL_OFFSET, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, -(ENCODER_STEPS_PER_MENU_ITEM), imgLeft); - add_control(GRID_OFFSET_X + GRID_WIDTH - CONTROL_OFFSET - 32, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, UBL, ENCODER_STEPS_PER_MENU_ITEM, imgRight); - add_control(320, GRID_OFFSET_Y + GRID_HEIGHT + CONTROL_OFFSET, CLICK, imgLeveling); - add_control(224, TFT_HEIGHT - 34, BACK, imgBack); - #endif - } -#endif // AUTO_BED_LEVELING_UBL - -#if ENABLED(BABYSTEP_ZPROBE_OFFSET) - #include "../../feature/babystep.h" -#endif - -#if HAS_BED_PROBE - #include "../../module/probe.h" -#endif - -#define Z_SELECTION_Z 1 -#define Z_SELECTION_Z_PROBE -1 - -struct { - #if HAS_X_AXIS - xy_int_t xValuePos; - #endif - #if HAS_Y_AXIS - xy_int_t yValuePos; - #endif - #if HAS_Z_AXIS - xy_int_t zValuePos, zTypePos; - int z_selection = Z_SELECTION_Z; - #endif - #if HAS_EXTRUDERS - xy_int_t eValuePos, eNamePos; - uint8_t e_selection = 0; - #endif - xy_int_t stepValuePos; - float currentStepSize = 10.0; - bool blocked = false; - char message[32]; -} motionAxisState; - -#define BTN_WIDTH 64 -#define BTN_HEIGHT 52 -#define X_MARGIN 20 -#define Y_MARGIN 15 -#define Y_OFFSET TERN(HAS_UI_480x272, 28, 34) - -static void quick_feedback() { - #if HAS_CHIRP - ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle? - #if ALL(HAS_MARLINUI_MENU, HAS_BEEPER) - for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); } - #elif HAS_MARLINUI_MENU - delay(10); - #endif - #endif -} - -#define CUR_STEP_VALUE_WIDTH 104 -static void drawCurStepValue() { - tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); - tft_string.trim(); - tft_string.add(F("mm")); - tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, COLOR_AXIS_HOMED, tft_string); -} - -#if HAS_Z_AXIS - static void drawCurZSelection() { - tft_string.set('Z'); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), FONT_LINE_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - - tft.queue.sync(); - - tft_string.set(F("Offset")); - tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + Y_OFFSET, tft_string.width(), Y_OFFSET TERN_(HAS_UI_480x272, - 10)); - tft.set_background(COLOR_BACKGROUND); - #if HAS_BED_PROBE - if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) - tft.add_text(0, 0, Z_BTN_COLOR, tft_string); - #endif - } -#endif - -#if HAS_EXTRUDERS - static void drawCurESelection() { - tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); - tft.set_background(COLOR_BACKGROUND); - tft_string.set('E'); - tft_string.add(utostr3(motionAxisState.e_selection)); - tft.add_text(tft_string.center(BTN_WIDTH), 0, E_BTN_COLOR, tft_string); - } -#endif - -static void drawMessage(PGM_P const msg) { - #if ENABLED(TFT_COLOR_UI_PORTRAIT) - tft.canvas(X_MARGIN, TFT_HEIGHT - 2 * MOVE_AXIS_MARGIN_SIZE - BTN_HEIGHT - FONT_LINE_HEIGHT, TFT_WIDTH - X_MARGIN * 2, FONT_LINE_HEIGHT); - #else - tft.canvas(X_MARGIN, TFT_HEIGHT - Y_MARGIN - Y_OFFSET, TFT_HEIGHT / 2, Y_OFFSET); - #endif - tft.set_background(COLOR_BACKGROUND); - tft.add_text(0, 0, COLOR_YELLOW, msg); -} - -static void drawMessage(FSTR_P const fmsg) { drawMessage(FTOP(fmsg)); } - -static void drawAxisValue(const AxisEnum axis) { - const float value = ( - TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) - ui.manual_move.axis_value(axis) - ); - xy_int_t pos; - uint16_t color; - switch (axis) { - #if HAS_X_AXIS - case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; - #endif - #if HAS_Y_AXIS - case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; - #endif - #if HAS_Z_AXIS - case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; - #endif - #if HAS_EXTRUDERS - case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; - #endif - default: return; - } - tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, BTN_HEIGHT TERN_(HAS_UI_480x272, / 2)); - tft.set_background(COLOR_BACKGROUND); - tft_string.set(ftostr52sp(value)); - tft_string.trim(); - tft.add_text(tft_string.center(BTN_WIDTH + X_MARGIN), 0, color, tft_string); -} - -static void moveAxis(const AxisEnum axis, const int8_t direction) { - quick_feedback(); - - #if HAS_EXTRUDERS - if (axis == E_AXIS && thermalManager.tooColdToExtrude(motionAxisState.e_selection)) { - drawMessage(F("Too cold")); - return; - } - #endif - - const float diff = motionAxisState.currentStepSize * direction; - - #if HAS_BED_PROBE - - if (axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE) { - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - const int16_t babystep_increment = direction * BABYSTEP_SIZE_Z; - const bool do_probe = DISABLED(BABYSTEP_HOTEND_Z_OFFSET) || active_extruder == 0; - const float bsDiff = planner.mm_per_step[Z_AXIS] * babystep_increment, - new_probe_offset = probe.offset.z + bsDiff, - new_offs = TERN(BABYSTEP_HOTEND_Z_OFFSET - , do_probe ? new_probe_offset : hotend_offset[active_extruder].z - bsDiff - , new_probe_offset - ); - if (WITHIN(new_offs, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) { - babystep.add_steps(Z_AXIS, babystep_increment); - if (do_probe) - probe.offset.z = new_offs; - else - TERN(BABYSTEP_HOTEND_Z_OFFSET, hotend_offset[active_extruder].z = new_offs, NOOP); - drawMessage(NUL_STR); // Clear the error - drawAxisValue(axis); - } - else - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - - #else - // Only change probe.offset.z - probe.offset.z += diff; - if (direction < 0 && current_position.z < Z_PROBE_OFFSET_RANGE_MIN) { - current_position.z = Z_PROBE_OFFSET_RANGE_MIN; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else if (direction > 0 && current_position.z > Z_PROBE_OFFSET_RANGE_MAX) { - current_position.z = Z_PROBE_OFFSET_RANGE_MAX; - drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); - } - else - drawMessage(NUL_STR); // Clear the error - - drawAxisValue(axis); - #endif - } - - #endif // HAS_BED_PROBE - - if (!ui.manual_move.processing) { - // Get motion limit from software endstops, if any - float min, max; - soft_endstop.get_manual_axis_limits(axis, min, max); - - // Delta limits XY based on the current offset from center - // This assumes the center is 0,0 - #if ENABLED(DELTA) - if (axis != Z_AXIS && TERN1(HAS_EXTRUDERS, axis != E_AXIS)) { - max = SQRT(sq(float(PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis])); // (Y_AXIS - axis) == the other axis - min = -max; - } - #endif - - // Get the new position - const bool limited = ui.manual_move.apply_diff(axis, diff, min, max); - #if IS_KINEMATIC - UNUSED(limited); - #else - PGM_P const msg = limited ? GET_TEXT(MSG_LCD_SOFT_ENDSTOPS) : NUL_STR; - drawMessage(msg); - #endif - - ui.manual_move.soon(axis OPTARG(MULTI_E_MANUAL, motionAxisState.e_selection)); - } - - drawAxisValue(axis); -} - -#if HAS_EXTRUDERS - static void e_plus() { moveAxis(E_AXIS, 1); } - static void e_minus() { moveAxis(E_AXIS, -1); } -#endif -#if HAS_X_AXIS - static void x_minus() { moveAxis(X_AXIS, -1); } - static void x_plus() { moveAxis(X_AXIS, 1); } -#endif -#if HAS_Y_AXIS - static void y_plus() { moveAxis(Y_AXIS, 1); } - static void y_minus() { moveAxis(Y_AXIS, -1); } -#endif -#if HAS_Z_AXIS - static void z_plus() { moveAxis(Z_AXIS, 1); } - static void z_minus() { moveAxis(Z_AXIS, -1); } -#endif - -#if ENABLED(TOUCH_SCREEN) - #if HAS_EXTRUDERS - static void e_select() { - if (++motionAxisState.e_selection >= EXTRUDERS) - motionAxisState.e_selection = 0; - quick_feedback(); - drawCurESelection(); - drawAxisValue(E_AXIS); - } - #endif - - static void do_home() { - quick_feedback(); - drawMessage(GET_TEXT_F(MSG_LEVEL_BED_HOMING)); - queue.inject_P(G28_STR); - // Disable touch until home is done - touch.disable(); - TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); - TERN_(HAS_X_AXIS, drawAxisValue(X_AXIS)); - TERN_(HAS_Y_AXIS, drawAxisValue(Y_AXIS)); - TERN_(HAS_Z_AXIS, drawAxisValue(Z_AXIS)); - } - - static void step_size() { - motionAxisState.currentStepSize = motionAxisState.currentStepSize / 10.0; - if (motionAxisState.currentStepSize < 0.0015) motionAxisState.currentStepSize = 10.0; - quick_feedback(); - drawCurStepValue(); - } -#endif // TOUCH_SCREEN - -#if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - static void z_select() { - motionAxisState.z_selection *= -1; - quick_feedback(); - drawCurZSelection(); - drawAxisValue(Z_AXIS); - } -#endif - -static void disable_steppers() { - quick_feedback(); - queue.inject(F("M84")); -} - -static void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled=true) { - const uint16_t width = images[imgBtn52Rounded].width, - height = images[imgBtn52Rounded].height; - - if (!enabled) bgColor = COLOR_CONTROL_DISABLED; - - tft.canvas(x, y, width, height); - tft.set_background(COLOR_BACKGROUND); - tft.add_image(0, 0, imgBtn52Rounded, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - // TODO: Make an add_text() taking a font arg - if (label) { - tft_string.set(label); - tft_string.trim(); - tft.add_text(tft_string.center(width), height / 2 - tft_string.font_height() / 2, bgColor, tft_string); - } - else - tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); - - TERN_(TOUCH_SCREEN, if (enabled) touch.add_control(BUTTON, x, y, width, height, data)); -} - -void MarlinUI::move_axis_screen() { - // Reset - defer_status_screen(true); - motionAxisState.blocked = false; - TERN_(TOUCH_SCREEN, touch.enable()); - - ui.clear_lcd(); - - TERN_(TOUCH_SCREEN, touch.clear()); - - const bool busy = printingIsActive(); - - // Babysteps during printing? Select babystep for Z probe offset - #if ENABLED(BABYSTEP_ZPROBE_OFFSET) - if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; - #endif - - #if ENABLED(TFT_COLOR_UI_PORTRAIT) - - int y = MOVE_AXIS_MARGIN_SIZE; - - /************************************************************************** - * 1st: | Button "E+" | Button "Y+" | Button "Z+" | - *************************************************************************/ - - TERN_(HAS_EXTRUDERS, drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "E+", (intptr_t)e_plus, imgUp, E_BTN_COLOR, !busy)); - TERN_(HAS_Y_AXIS, drawBtn(TFT_WIDTH / 2 - BTN_WIDTH / 2, y, "Y+", (intptr_t)y_plus, imgUp, Y_BTN_COLOR, !busy)); - TERN_(HAS_Z_AXIS, drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "Z+", (intptr_t)z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET))); - - y += BTN_HEIGHT + 4; - - /************************************************************************** - * 2nd: | Label "Ex" (E0, E1, etc.) | Y value | Label "Z" | - *************************************************************************/ - - // Label "Ex" (E0, E1, etc.) - #if HAS_EXTRUDERS - motionAxisState.eNamePos.set(TFT_WIDTH / 6 - BTN_WIDTH / 2, y); - drawCurESelection(); - #if ENABLED(TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select); - #endif - #endif - - // Y value - #if HAS_Y_AXIS - motionAxisState.yValuePos.set(TFT_WIDTH / 2 - (BTN_WIDTH + X_MARGIN) / 2, y); - drawAxisValue(Y_AXIS); - #endif - - // Label "Z" - #ifdef HAS_Z_AXIS - motionAxisState.zTypePos.set(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y); - drawCurZSelection(); - #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, BTN_WIDTH, FONT_LINE_HEIGHT * 2, (intptr_t)z_select); - #endif - #endif - - y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; - - /************************************************************************** - * 3rd: | Button "X-" | Button "Homing" | Button "X+" | - *************************************************************************/ - - #if HAS_X_AXIS - drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy); - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy)); - drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "X+", (intptr_t)x_plus, imgRight, X_BTN_COLOR, !busy); - #endif - - y += BTN_HEIGHT + 4; - - /************************************************************************** - * 4th: | X value | - *************************************************************************/ - - #ifdef HAS_X_AXIS - motionAxisState.xValuePos.set(TFT_WIDTH / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); - drawAxisValue(X_AXIS); - #endif - - y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; - - /************************************************************************** - * 5th: | Button "E-" | Button "Y-" | Button "Z-" - *************************************************************************/ - - TERN_(HAS_EXTRUDERS, drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "E-", (intptr_t)e_minus, imgDown, E_BTN_COLOR, !busy)); - TERN_(HAS_Y_AXIS, drawBtn(TFT_WIDTH / 2 - BTN_WIDTH / 2, y, "Y-", (intptr_t)y_minus, imgDown, Y_BTN_COLOR, !busy)); - TERN_(HAS_Z_AXIS, drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "Z-", (intptr_t)z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET))); - - y += BTN_HEIGHT + 4; - - /************************************************************************** - * 6th: | Current Ex value | Z value | - *************************************************************************/ - - // Current Ex value - #ifdef HAS_EXTRUDERS - motionAxisState.eValuePos.set(TFT_WIDTH / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); - drawAxisValue(E_AXIS); - #endif - - #ifdef HAS_Z_AXIS - motionAxisState.zValuePos.set(TFT_WIDTH * 5 / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); - drawAxisValue(Z_AXIS); - #endif - - y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; - - /************************************************************************** - * 7th: | Message - drawMessage(...) function | - *************************************************************************/ - - y += FONT_LINE_HEIGHT + MOVE_AXIS_MARGIN_SIZE; - - /************************************************************************** - * 8th: | Step size | Button "Disable steppers" | Button "Back" | - *************************************************************************/ - - // Step size - motionAxisState.stepValuePos.set(X_MARGIN, y + 12); - if (!busy) { - drawCurStepValue(); - TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y + 12, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size)); - } - - // Button "Disable steppers" - drawBtn(TFT_WIDTH / 2, y, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy); - - // Button "Back" - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH * 5 / 6 - images[imgBack].width / 2, y + 12, BACK, imgBack)); - - #else // !TFT_COLOR_UI_PORTRAIT - - // ROW 1 -> E- Y- CurY Z+ - int x = X_MARGIN, y = Y_MARGIN, spacing = 0; - - TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", (intptr_t)e_plus, imgUp, E_BTN_COLOR, !busy)); - - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - x += BTN_WIDTH + spacing; - - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", (intptr_t)y_plus, imgUp, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH; - - // Cur Y - #if HAS_Y_AXIS - motionAxisState.yValuePos.set(x + 2, y); - drawAxisValue(Y_AXIS); - #endif - - x += spacing; - #if HAS_Z_AXIS - drawBtn(x, y, "Z+", (intptr_t)z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step - #endif - - // ROW 2 -> "Ex" X- HOME X+ "Z" - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; - - #if HAS_EXTRUDERS - motionAxisState.eNamePos.set(x, y); - drawCurESelection(); - TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, (intptr_t)e_select)); - #endif - - x += BTN_WIDTH + spacing; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", (intptr_t)x_minus, imgLeft, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; //imgHome is 64x64 - - #if ALL(HAS_X_AXIS, TOUCH_SCREEN) - add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, (intptr_t)do_home, imgHome, !busy); - #endif - - x += BTN_WIDTH + spacing; - const uint16_t xplus_x = x; - - TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", (intptr_t)x_plus, imgRight, X_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - #if HAS_Z_AXIS - motionAxisState.zTypePos.set(x, y); - drawCurZSelection(); - #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) - if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, Y_OFFSET * 2, (intptr_t)z_select); - #endif - #endif - - // ROW 3 -> E- CurX Y- Z- - y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; - x = X_MARGIN; - spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; - - #if HAS_EXTRUDERS - drawBtn(x, y, "E-", (intptr_t)e_minus, imgDown, E_BTN_COLOR, !busy); - motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); - drawAxisValue(E_AXIS); - #endif - - // Cur X - #if HAS_X_AXIS - motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); - TERN_(HAS_X_AXIS, drawAxisValue(X_AXIS)); - #endif - - x += BTN_WIDTH + spacing; - - // Cur Y - TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", (intptr_t)y_minus, imgDown, Y_BTN_COLOR, !busy)); - - x += BTN_WIDTH + spacing; - - // Cur Z - #if HAS_Z_AXIS - drawBtn(x, y, "Z-", (intptr_t)z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); //only enabled when not busy or have baby step - motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); - drawAxisValue(Z_AXIS); - #endif - - // ROW 4 -> step_size disable steppers back - y = TFT_HEIGHT - Y_MARGIN - TERN(HAS_UI_480x272, BTN_WIDTH / 2, 32); - x = TFT_WIDTH / 2 - CUR_STEP_VALUE_WIDTH / 2; - motionAxisState.stepValuePos.set(x, y); - if (!busy) { - drawCurStepValue(); - TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, (intptr_t)step_size)); - } - - // Aligned with x+ - drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", (intptr_t)disable_steppers, imgCancel, COLOR_WHITE, !busy); - - TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); - - #endif // !TFT_COLOR_UI_PORTRAIT -} - -#endif // HAS_UI_480x320 || HAS_UI_480x272 diff --git a/Marlin/src/lcd/tft/ui_480x320.h b/Marlin/src/lcd/tft/ui_480x320.h index d3036d098106..421fe03a18c6 100644 --- a/Marlin/src/lcd/tft/ui_480x320.h +++ b/Marlin/src/lcd/tft/ui_480x320.h @@ -19,117 +19,285 @@ * along with this program. If not, see . * */ -#pragma once -#define MARLIN_LOGO_FULL_SIZE MarlinLogo480x320x16 +#include "../../inc/MarlinConfigPre.h" -#include "ui_common.h" +// -------------------------------- Core Parameters -------------------------------- -#define TFT_STATUS_TOP_Y 4 -#define TFT_TOP_LINE_Y 4 +#define MENU_TEXT_X 16 +#define MENU_TEXT_Y tft_string.vcenter(MENU_ITEM_HEIGHT) -#define MENU_TEXT_X_OFFSET 16 -#define MENU_TEXT_Y_OFFSET tft_string.vcenter(MENU_ITEM_HEIGHT) +#define MENU_ITEM_ICON_X 5 +#define MENU_ITEM_ICON_Y 5 +#define MENU_ITEM_ICON_SPACE 42 -#define MENU_ITEM_ICON_X 5 -#define MENU_ITEM_ICON_Y 5 -#define MENU_ITEM_ICON_SPACE 42 +#define MENU_ITEM_HEIGHT 43 +#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#define MENU_TOP_LINE_Y 4 -#if HAS_UI_480x320 +#if TFT_FONT == NOTOSANS || TFT_FONT == HELVETICA + #define FONT_SIZE 19 +#elif TFT_FONT == UNIFONT + #define FONT_SIZE 20 +#endif + +#define FONT_LINE_HEIGHT 34 + +// --------------------------------------------------------------------------------- - #define MENU_ITEM_HEIGHT 43 - #define FONT_LINE_HEIGHT 34 +#define VCENTER tft_string.vcenter(FONT_LINE_HEIGHT) - #if (TFT_FONT == NOTOSANS) || (TFT_FONT == HELVETICA) - #define FONT_SIZE 19 - #elif TFT_FONT == UNIFONT - #define FONT_SIZE 20 +// MarlinUI::show_bootscreen() +#ifndef BOOTSCREEN_LOGO + #if ENABLED(BOOT_MARLIN_LOGO_SMALL) + #define BOOTSCREEN_LOGO MarlinLogo195x59x16 + #define BOOTSCREEN_LOGO_W 195 + #define BOOTSCREEN_LOGO_H 59 + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 70) + #else + #define BOOTSCREEN_LOGO MarlinLogo480x320x16 + #define BOOTSCREEN_LOGO_W TFT_WIDTH + #define BOOTSCREEN_LOGO_H TFT_HEIGHT + #define BOOTSCREEN_SITE_URL_Y (TFT_HEIGHT - 90) #endif +#endif + +#if !defined(BOOTSCREEN_LOGO_X) && !defined(BOOTSCREEN_LOGO_Y) + #define BOOTSCREEN_LOGO_X (TFT_WIDTH - BOOTSCREEN_LOGO_W) / 2 + #define BOOTSCREEN_LOGO_Y (TFT_HEIGHT - BOOTSCREEN_LOGO_H) / 2 +#endif + +#if !defined(NAVIGATION_PAGE_UP_X) && !defined(NAVIGATION_PAGE_UP_Y) && !defined(NAVIGATION_PAGE_DOWN_X) && !defined(NAVIGATION_PAGE_DOWN_Y) && !defined(NAVIGATION_BACK_X) && !defined(NAVIGATION_BACK_Y) + #define NAVIGATION_PAGE_UP_X 104 + #define NAVIGATION_PAGE_UP_Y TFT_HEIGHT - 34 + #define NAVIGATION_PAGE_DOWN_X 344 + #define NAVIGATION_PAGE_DOWN_Y TFT_HEIGHT - 34 + #define NAVIGATION_BACK_X 224 + #define NAVIGATION_BACK_Y TFT_HEIGHT - 34 +#endif + +#if !defined(BUTTON_DECREASE_X) && !defined(BUTTON_DECREASE_Y) && !defined(BUTTON_INCREASE_X) && !defined(BUTTON_INCREASE_Y) && !defined(BUTTON_CLICK_X) && !defined(BUTTON_CLICK_Y) + #define BUTTON_DECREASE_X 64 + #define BUTTON_DECREASE_Y TFT_HEIGHT - 64 + #define BUTTON_INCREASE_X 352 + #define BUTTON_INCREASE_Y TFT_HEIGHT - 64 + #define BUTTON_CLICK_X 208 + #define BUTTON_CLICK_Y TFT_HEIGHT - 64 +#endif + +#if !defined(BUTTON_CANCEL_X) && !defined(BUTTON_CANCEL_Y) && !defined(BUTTON_CONFIRM_X) && !defined(BUTTON_CONFIRM_Y) + #define BUTTON_CANCEL_X 88 + #define BUTTON_CANCEL_Y TFT_HEIGHT - 64 + #define BUTTON_CONFIRM_X 328 + #define BUTTON_CONFIRM_Y TFT_HEIGHT - 64 +#endif + +// MarlinUI::draw_kill_screen() +#if !defined(KILL_SCREEN_STATUS_Y) && !defined(KILL_SCREEN_HALTED_Y) && !defined(KILL_SCREEN_RESET_Y) + #define KILL_SCREEN_STATUS_Y 94 + #define KILL_SCREEN_HALTED_Y 184 + #define KILL_SCREEN_RESET_Y 229 +#endif + +// draw_heater_status() and draw_fan_status() +#if !defined(TEMP_FAN_CONTROL_W) && !defined(TEMP_FAN_CONTROL_H) + #define TEMP_FAN_CONTROL_W 80 + #define TEMP_FAN_CONTROL_H 120 +#endif +#if !defined(TEMP_ICON_X) && !defined(TEMP_ICON_Y) + #define TEMP_ICON_X 8 + #define TEMP_ICON_Y 28 +#endif +#if !defined(FAN_ICON_X) && !defined(FAN_ICON_Y) + #define FAN_ICON_X 8 + #define FAN_ICON_Y 20 +#endif -#elif HAS_UI_480x272 - #if TFT_FONT == NOTOSANS - #define FONT_SIZE 16 - #define FONT_LINE_HEIGHT 26 - #elif TFT_FONT == UNIFONT - #define FONT_SIZE 10 - #define FONT_LINE_HEIGHT 24 - #elif TFT_FONT == HELVETICA - #define FONT_SIZE 14 - #define FONT_LINE_HEIGHT 24 +#if !defined(TEMP_CURRENT_TEXT_X) && !defined(TEMP_CURRENT_TEXT_Y) && !defined(TEMP_TARGET_TEXT_X) && !defined(TEMP_TARGET_TEXT_Y) + #define TEMP_CURRENT_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_CURRENT_TEXT_Y 80 + VCENTER + #define TEMP_TARGET_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 2 + #define TEMP_TARGET_TEXT_Y 6 + VCENTER +#endif + +#if !defined(FAN_TEXT_X) && !defined(FAN_TEXT_Y) + #define FAN_TEXT_X tft_string.center(TEMP_FAN_CONTROL_W) + 6 + #define FAN_TEXT_Y 80 + VCENTER +#endif + +// MarlinUI::draw_status_screen() +#if !defined(MAX_ITEMS) && !defined(ITEM_X) && !defined(ITEM_Y) + #define MAX_ITEMS 5 + #define ITEM_X(N) (TFT_WIDTH / _MIN(ITEMS_COUNT, MAX_ITEMS) - TEMP_FAN_CONTROL_W) / 2 + (TFT_WIDTH * N / _MIN(ITEMS_COUNT, MAX_ITEMS)) + #define ITEM_Y 4 +#endif + +#if !defined(COORDINATES_W) && !defined(COORDINATES_H) && !defined(COORDINATES_X) && !defined(COORDINATES_Y) + #define COORDINATES_W TFT_WIDTH - 8 + #define COORDINATES_H FONT_LINE_HEIGHT + #define COORDINATES_X 4 + #define COORDINATES_Y 132 +#endif + +#if ENABLED(LCD_SHOW_E_TOTAL) + #if !defined(E_MARK_X) && !defined(E_MARK_Y) && !defined(E_VALUE_X) && !defined(E_VALUE_Y) + #define E_MARK_X 16 + #define E_MARK_Y VCENTER + #define E_VALUE_X 192 - tft_string.width() + #define E_VALUE_Y VCENTER + #endif +#else + #if !defined(X_MARK_X) && !defined(X_MARK_Y) && !defined(X_VALUE_X) && !defined(X_VALUE_Y) + #define X_MARK_X 16 + #define X_MARK_Y VCENTER + #define X_VALUE_X 102 - tft_string.width() + #define X_VALUE_Y VCENTER #endif - #define MENU_ITEM_HEIGHT 36 + #if !defined(Y_MARK_X) && !defined(Y_MARK_Y) && !defined(Y_VALUE_X) && !defined(Y_VALUE_Y) + #define Y_MARK_X 192 + #define Y_MARK_Y VCENTER + #define Y_VALUE_X 280 - tft_string.width() + #define Y_VALUE_Y VCENTER + #endif #endif -#define MENU_LINE_HEIGHT (MENU_ITEM_HEIGHT + 2) +#if !defined(Z_MARK_X) && !defined(Z_MARK_Y) && !defined(Z_VALUE_X) && !defined(Z_VALUE_Y) + #define Z_MARK_X 330 + #define Z_MARK_Y VCENTER + #define Z_VALUE_X 455 - tft_string.width() + #define Z_VALUE_Y VCENTER + #define Z_VALUE_OFFSET 32 +#endif -/** - * Status screen - portrait layout: - * - * | FAN E0 BED .. | - 120px - * | Coordinates | - FONT_LINE_HEIGHT - * | Feedrate Flowrate | - 32px - * | SD Settings | - 64px if ENABLED(TOUCHSCREEN), else 0px - * | Print duration time | - 29px - * | Progress bar | - 7px - * | Status message | - FONT_LINE_HEIGHT - * - * Summary with touchscreen: - * - Total height: 252px + 2 * FONT_LINE_HEIGHT (320px if FONT_LINE_HEIGHT is 34px) - * - Rows count: 7 - * - Margins count: 8 - * - * Summary without touchscreen: - * - Total height: 188px + 2 * FONT_LINE_HEIGHT (256px if FONT_LINE_HEIGHT is 34px) - * - Rows count: 6 - * - Margins count: 7 - * - * Status screen - landscape layout: - * - * | FAN E0 BED ... | - 120px - * | Coordinates | - FONT_LINE_HEIGHT - * | SD Flowrate Feedrate Settings | - 44px for TOUCHSCREEN, else 32px - * | Print duration time | - 29px - * | Progress bar | - 7px - * | Status message | - FONT_LINE_HEIGHT - * - * Summary with touchscreen: - * - Total height: 200px (268px if FONT_LINE_HEIGHT is 34px) - * - Rows count: 6 - * - Margins count: 7 - * - * Summary without touchscreen: - * - Total height: 188px + 2 * FONT_LINE_HEIGHT (256px if FONT_LINE_HEIGHT is 34px) - * - Rows count: 6 - * - Margins count: 7 - */ -#if ENABLED(TFT_COLOR_UI_PORTRAIT) - #if ENABLED(TOUCH_SCREEN) - #define STATUS_TOTAL_ROWS_HEIGHT (2 * FONT_LINE_HEIGHT + 120 + 32 + 64 + 29 + 7) - #define STATUS_MARGINS_REGIONS 8 - - #define MOVE_AXIS_TOTAL_ROWS_HEIGHT (7 * BTN_HEIGHT + FONT_LINE_HEIGHT + 12) - #define MOVE_AXIS_MARGIN_REGIONS 6 - #define MOVE_AXIS_MARGIN_SIZE ((TFT_HEIGHT - MOVE_AXIS_TOTAL_ROWS_HEIGHT) / MOVE_AXIS_MARGIN_REGIONS) - #else - #define STATUS_TOTAL_ROWS_HEIGHT (2 * FONT_LINE_HEIGHT + 120 + 32 + 29 + 7) - #define STATUS_MARGINS_REGIONS 7 +#if !defined(FEEDRATE_W) && !defined(FEEDRATE_H) && !defined(FEEDRATE_X) && !defined(FEEDRATE_Y) + #define FEEDRATE_W 120 + #define FEEDRATE_H 32 + #define FEEDRATE_X 96 + #define FEEDRATE_Y 180 +#endif +#if !defined(FEEDRATE_ICON_X) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_ICON_Y) && !defined(FEEDRATE_TEXT_Y) + #define FEEDRATE_ICON_X 0 + #define FEEDRATE_ICON_Y 0 + #define FEEDRATE_TEXT_X 36 + #define FEEDRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(FLOWRATE_W) && !defined(FLOWRATE_H) && !defined(FLOWRATE_X) && !defined(FLOWRATE_Y) + #define FLOWRATE_W 120 + #define FLOWRATE_H 32 + #define FLOWRATE_X 284 + #define FLOWRATE_Y 180 +#endif +#if !defined(FLOWRATE_ICON_X) && !defined(FLOWRATE_ICON_Y) && !defined(FLOWRATE_TEXT_X) && !defined(FLOWRATE_TEXT_Y) + #define FLOWRATE_ICON_X 0 + #define FLOWRATE_ICON_Y 0 + #define FLOWRATE_TEXT_X 36 + #define FLOWRATE_TEXT_Y tft_string.vcenter(30) +#endif + +#if !defined(MENU_ICON_X) && !defined(MENU_ICON_Y) + #define MENU_ICON_X 404 + #define MENU_ICON_Y 180 +#endif +#if !defined(SDCARD_ICON_X) && !defined(SDCARD_ICON_Y) + #define SDCARD_ICON_X 12 + #define SDCARD_ICON_Y 180 +#endif + +#if !defined(ELAPSED_TIME_W) && !defined(ELAPSED_TIME_H) && !defined(ELAPSED_TIME_X) && !defined(ELAPSED_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define ELAPSED_TIME_W 164 + #define ELAPSED_TIME_X (TFT_WIDTH / 2) - ELAPSED_TIME_W + #elif ENABLED(SHOW_ELAPSED_TIME) + #define ELAPSED_TIME_W 288 + #define ELAPSED_TIME_X (TFT_WIDTH - ELAPSED_TIME_W) / 2 #endif - #define FEEDRATE_X(W) ((TFT_WIDTH - 2 * (W)) / 4) - #define FLOWRATE_X(W) ((3 * TFT_WIDTH - 2 * (W)) / 4) - #define SETTINGS_X (3 * TFT_WIDTH / 4 - 32) - #define SDCARD_X (TFT_WIDTH / 4 - 32) -#else - #define STATUS_TOTAL_ROWS_HEIGHT (2 * FONT_LINE_HEIGHT + 120 + TERN(TOUCH_SCREEN, 44, 32) + 29 + 7) - #define STATUS_MARGINS_REGIONS 7 + #define ELAPSED_TIME_H 29 + #define ELAPSED_TIME_Y 224 +#endif - #define FEEDRATE_X(W) (3 * TFT_WIDTH / 8 - (W) / 2) - #define FLOWRATE_X(W) (5 * TFT_WIDTH / 8 - (W) / 2) - #define SETTINGS_X (TFT_WIDTH / 8 - 32) - #define SDCARD_X (7 * TFT_WIDTH / 8 - 32) +#if !defined(REMAINING_TIME_W) && !defined(REMAINING_TIME_H) && !defined(REMAINING_TIME_X) && !defined(REMAINING_TIME_Y) + #if ALL(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 164 + #define REMAINING_TIME_X (TFT_WIDTH / 2) + #elif ENABLED(SHOW_REMAINING_TIME) + #define REMAINING_TIME_W 288 + #define REMAINING_TIME_X (TFT_WIDTH - REMAINING_TIME_W) / 2 + #endif + + #define REMAINING_TIME_H 29 + #define REMAINING_TIME_Y 224 #endif -#define STATUS_MARGIN_SIZE ((TFT_HEIGHT - STATUS_TOTAL_ROWS_HEIGHT) / STATUS_MARGINS_REGIONS) +#if !defined(ELAPSED_TIME_IMAGE_X) && !defined(ELAPSED_TIME_IMAGE_Y) && !defined(ELAPSED_TIME_TEXT_X) && !defined(ELAPSED_TIME_TEXT_Y) + #define ELAPSED_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define ELAPSED_TIME_IMAGE_Y 0 + #define ELAPSED_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define ELAPSED_TIME_TEXT_Y tft_string.vcenter(29) +#endif -#include "tft_font.h" +#if !defined(REMAINING_TIME_IMAGE_X) && !defined(REMAINING_TIME_IMAGE_Y) && !defined(REMAINING_TIME_TEXT_X) && !defined(REMAINING_TIME_TEXT_Y) + #define REMAINING_TIME_IMAGE_X tft_string.center(ELAPSED_TIME_W) - 18 + #define REMAINING_TIME_IMAGE_Y 0 + #define REMAINING_TIME_TEXT_X tft_string.center(ELAPSED_TIME_W) + 18 + #define REMAINING_TIME_TEXT_Y tft_string.vcenter(29) +#endif + +#if !defined(PROGRESS_BAR_W) && !defined(PROGRESS_BAR_H) && !defined(PROGRESS_BAR_X) && !defined(PROGRESS_BAR_Y) + #define PROGRESS_BAR_W TFT_WIDTH - 8 + #define PROGRESS_BAR_H 12 + #define PROGRESS_BAR_X 4 + #define PROGRESS_BAR_Y 262 +#endif + +#if !defined(STATUS_MESSAGE_W) && !defined(STATUS_MESSAGE_H) && !defined(STATUS_MESSAGE_X) && !defined(STATUS_MESSAGE_Y) + #define STATUS_MESSAGE_W TFT_WIDTH + #define STATUS_MESSAGE_H FONT_LINE_HEIGHT + #define STATUS_MESSAGE_X 0 + #define STATUS_MESSAGE_Y 280 +#endif + +#if !defined(STATUS_MESSAGE_TEXT_X) && !defined(STATUS_MESSAGE_TEXT_Y) + #define STATUS_MESSAGE_TEXT_X tft_string.center(STATUS_MESSAGE_W) + #define STATUS_MESSAGE_TEXT_Y VCENTER +#endif + +// MenuEditItemBase::draw_edit_screen() +#if !defined(SLIDER_W) && !defined(SLIDER_Y) + #define SLIDER_W 336 + #define SLIDER_Y 186 +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #if !defined(UBL_X_LABEL_X) && !defined(UBL_X_TEXT_X) && !defined(UBL_Y_LABEL_X) && !defined(UBL_Y_TEXT_X) + #define UBL_X_LABEL_X (TFT_WIDTH / 2 - 120) + #define UBL_X_TEXT_X (TFT_WIDTH / 2 - 16) - tft_string.width() + #define UBL_Y_LABEL_X (TFT_WIDTH / 2 + 16) + #define UBL_Y_TEXT_X (TFT_WIDTH / 2 + 120) - tft_string.width() + #endif + + // MarlinUI::ubl_plot() + #if !defined(UBL_GRID_W) && !defined(UBL_GRID_H) && !defined(UBL_GRID_X) && !defined(UBL_GRID_Y) && !defined(UBL_CONTROL_OFFSET) + #define UBL_GRID_W 192 + #define UBL_GRID_H 192 + #define UBL_GRID_X 8 + #define UBL_GRID_Y 8 + #define UBL_CONTROL_OFFSET 16 + #endif + + #if !defined(UBL_COORDINATES_W) && !defined(UBL_COORDINATES_X) && !defined(UBL_X_COORDINATE_Y) && !defined(UBL_Y_COORDINATE_Y) && !defined(UBL_Z_COORDINATE_Y) + #define UBL_COORDINATES_W 130 + #define UBL_COORDINATES_X 310 + + #define UBL_X_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 - MENU_ITEM_HEIGHT + #define UBL_Y_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + #define UBL_Z_COORDINATE_Y UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2 + MENU_ITEM_HEIGHT + #endif + + #if !defined(UBL_ACTION_X) && !defined(UBL_ACTION_Y) + #define UBL_ACTION_X UBL_COORDINATES_X + #define UBL_ACTION_Y UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET + #endif +#endif diff --git a/Marlin/src/lcd/tft/ui_color_ui.cpp b/Marlin/src/lcd/tft/ui_color_ui.cpp new file mode 100644 index 000000000000..d2fc08a09c34 --- /dev/null +++ b/Marlin/src/lcd/tft/ui_color_ui.cpp @@ -0,0 +1,588 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +#if ENABLED(TFT_COLOR_UI) + +#include "ui_common.h" + +#include "../marlinui.h" +#include "../menu/menu.h" +#include "../../libs/numtostr.h" + +#include "../../sd/cardreader.h" +#include "../../module/temperature.h" +#include "../../module/printcounter.h" +#include "../../module/planner.h" +#include "../../module/motion.h" + +#if DISABLED(LCD_PROGRESS_BAR) && ALL(FILAMENT_LCD_DISPLAY, HAS_MEDIA) + #include "../../feature/filwidth.h" + #include "../../gcode/parser.h" +#endif + +#if ENABLED(AUTO_BED_LEVELING_UBL) + #include "../../feature/bedlevel/bedlevel.h" +#endif + +void MarlinUI::tft_idle() { + #if ENABLED(TOUCH_SCREEN) + if (TERN0(HAS_TOUCH_SLEEP, lcd_sleep_task())) return; + if (draw_menu_navigation) { + add_control(NAVIGATION_PAGE_UP_X, NAVIGATION_PAGE_UP_Y, PAGE_UP, imgPageUp, encoderTopLine > 0); + add_control(NAVIGATION_PAGE_DOWN_X, NAVIGATION_PAGE_DOWN_Y, PAGE_DOWN, imgPageDown, encoderTopLine + LCD_HEIGHT < screen_items); + add_control(NAVIGATION_BACK_X, NAVIGATION_BACK_Y, BACK, imgBack); + draw_menu_navigation = false; + } + #endif + + tft.queue.async(); + + TERN_(TOUCH_SCREEN, if (tft.queue.is_empty()) touch.idle()); // Touch driver is not DMA-aware, so only check for touch controls after screen drawing is completed +} + +#if ENABLED(SHOW_BOOTSCREEN) + + void MarlinUI::show_bootscreen() { + tft.queue.reset(); + + tft.canvas(0, 0, TFT_WIDTH, TFT_HEIGHT); + TERN_(BOOT_MARLIN_LOGO_SMALL, tft.set_background(COLOR_BACKGROUND)); + tft.add_image(BOOTSCREEN_LOGO_X, BOOTSCREEN_LOGO_Y, imgBootScreen); + #ifdef WEBSITE_URL + tft_string.set(WEBSITE_URL); + tft.add_text(tft_string.center(TFT_WIDTH), BOOTSCREEN_SITE_URL_Y, COLOR_WEBSITE_URL, tft_string); + #endif + + tft.queue.sync(); + } + + void MarlinUI::bootscreen_completion(const millis_t sofar) { + if ((BOOTSCREEN_TIMEOUT) > sofar) safe_delay((BOOTSCREEN_TIMEOUT) - sofar); + clear_lcd(); + } +#endif + +void MarlinUI::draw_kill_screen() { + tft.queue.reset(); + tft.fill(0, 0, TFT_WIDTH, TFT_HEIGHT, COLOR_KILL_SCREEN_BG); + + text_line(KILL_SCREEN_STATUS_Y, COLOR_KILL_SCREEN_BG); + tft_string.set(status_message); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); + + text_line(KILL_SCREEN_HALTED_Y, COLOR_KILL_SCREEN_BG); + tft_string.set(GET_TEXT(MSG_HALTED)); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); + + text_line(KILL_SCREEN_RESET_Y, COLOR_KILL_SCREEN_BG); + tft_string.set(GET_TEXT(MSG_PLEASE_RESET)); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), 0, COLOR_MENU_TEXT, tft_string); + + tft.queue.sync(); +} + +void draw_heater_status(uint16_t x, uint16_t y, const int8_t heater) { + MarlinImage image = imgHotEnd; + celsius_t currentTemperature, targetTemperature; + + if (heater >= 0) { // HotEnd + #if HAS_EXTRUDERS + currentTemperature = thermalManager.wholeDegHotend(heater); + targetTemperature = thermalManager.degTargetHotend(heater); + #else + return; + #endif + } + #if HAS_HEATED_BED + else if (heater == H_BED) { + currentTemperature = thermalManager.wholeDegBed(); + targetTemperature = thermalManager.degTargetBed(); + } + #endif + #if HAS_TEMP_CHAMBER + else if (heater == H_CHAMBER) { + currentTemperature = thermalManager.wholeDegChamber(); + #if HAS_HEATED_CHAMBER + targetTemperature = thermalManager.degTargetChamber(); + #else + targetTemperature = ABSOLUTE_ZERO; + #endif + } + #endif + #if HAS_TEMP_COOLER + else if (heater == H_COOLER) { + currentTemperature = thermalManager.wholeDegCooler(); + targetTemperature = TERN(HAS_COOLER, thermalManager.degTargetCooler(), ABSOLUTE_ZERO); + } + #endif + else return; + + TERN_(TOUCH_SCREEN, if (targetTemperature >= 0) touch.add_control(HEATER, x, y, TEMP_FAN_CONTROL_W, TEMP_FAN_CONTROL_H, heater)); + tft.canvas(x, y, TEMP_FAN_CONTROL_W, TEMP_FAN_CONTROL_H); + tft.set_background(COLOR_BACKGROUND); + + uint16_t color = currentTemperature < 0 ? COLOR_INACTIVE : COLOR_COLD; + + if (heater >= 0) { // HotEnd + if (currentTemperature >= 50) color = COLOR_HOTEND; + } + #if HAS_HEATED_BED + else if (heater == H_BED) { + if (currentTemperature >= 50) color = COLOR_HEATED_BED; + image = targetTemperature > 0 ? imgBedHeated : imgBed; + } + #endif + #if HAS_TEMP_CHAMBER + else if (heater == H_CHAMBER) { + if (currentTemperature >= 50) color = COLOR_CHAMBER; + image = targetTemperature > 0 ? imgChamberHeated : imgChamber; + } + #endif + #if HAS_TEMP_COOLER + else if (heater == H_COOLER) { + if (currentTemperature <= 26) color = COLOR_COLD; + if (currentTemperature > 26) color = COLOR_RED; + image = targetTemperature > 26 ? imgCoolerHot : imgCooler; + } + #endif + + tft.add_image(TEMP_ICON_X, TEMP_ICON_Y, image, color); + + tft_string.set(i16tostr3rj(currentTemperature)); + tft_string.add(LCD_STR_DEGREE); + tft_string.trim(); + tft.add_text(TEMP_CURRENT_TEXT_X, TEMP_CURRENT_TEXT_Y, color, tft_string); + + if (targetTemperature >= 0) { + tft_string.set(i16tostr3rj(targetTemperature)); + tft_string.add(LCD_STR_DEGREE); + tft_string.trim(); + tft.add_text(TEMP_TARGET_TEXT_X, TEMP_TARGET_TEXT_Y, color, tft_string); + } +} + +void draw_fan_status(uint16_t x, uint16_t y, const bool blink) { + TERN_(TOUCH_SCREEN, touch.add_control(FAN, x, y, TEMP_FAN_CONTROL_W, TEMP_FAN_CONTROL_H)); + tft.canvas(x, y, TEMP_FAN_CONTROL_W, TEMP_FAN_CONTROL_H); + tft.set_background(COLOR_BACKGROUND); + + uint8_t fanSpeed = thermalManager.fan_speed[0]; + MarlinImage image; + + if (fanSpeed >= 127) + image = blink ? imgFanFast1 : imgFanFast0; + else if (fanSpeed > 0) + image = blink ? imgFanSlow1 : imgFanSlow0; + else + image = imgFanIdle; + + tft.add_image(FAN_ICON_X, FAN_ICON_Y, image, COLOR_FAN); + + tft_string.set(ui8tostr4pctrj(thermalManager.fan_speed[0])); + tft_string.trim(); + tft.add_text(FAN_TEXT_X, FAN_TEXT_Y, COLOR_FAN, tft_string); +} + +void MarlinUI::draw_status_screen() { + const bool blink = get_blink(); + TERN_(TOUCH_SCREEN, touch.clear()); + + // Statuses of heaters and fans + for (uint16_t i = 0; i < _MIN(ITEMS_COUNT, MAX_ITEMS); i++) { + switch (i) { + #if HAS_EXTRUDERS + case ITEM_E0: draw_heater_status(ITEM_X(i), ITEM_Y, H_E0); break; + #endif + #if HAS_MULTI_HOTEND + case ITEM_E1: draw_heater_status(ITEM_X(i), ITEM_Y, H_E1); break; + #endif + #if HOTENDS > 2 + case ITEM_E2: draw_heater_status(ITEM_X(i), ITEM_Y, H_E2); break; + #endif + #if HAS_HEATED_BED + case ITEM_BED: draw_heater_status(ITEM_X(i), ITEM_Y, H_BED); break; + #endif + #if HAS_TEMP_CHAMBER + case ITEM_CHAMBER: draw_heater_status(ITEM_X(i), ITEM_Y, H_CHAMBER); break; + #endif + #if HAS_TEMP_COOLER + case ITEM_COOLER: draw_heater_status(ITEM_X(i), ITEM_Y, H_COOLER); break; + #endif + #if HAS_FAN + case ITEM_FAN: draw_fan_status(ITEM_X(i), ITEM_Y, blink); break; + #endif + } + } + + // Coordinates + #if ENABLED(MOVE_AXIS_SCREEN) + TERN_(TOUCH_SCREEN, touch.add_control(MENU_SCREEN, COORDINATES_X, COORDINATES_Y, COORDINATES_W, COORDINATES_H, (intptr_t) ui.move_axis_screen)); + #endif + + tft.canvas(COORDINATES_X, COORDINATES_Y, COORDINATES_W, COORDINATES_H); + tft.set_background(COLOR_BACKGROUND); + tft.add_rectangle(0, 0, COORDINATES_W, COORDINATES_H, COLOR_AXIS_HOMED); + + #if ENABLED(HAS_X_AXIS) && defined(X_MARK_X) && defined(X_MARK_Y) && defined(X_VALUE_X) && defined(X_VALUE_Y) + tft.add_text(X_MARK_X, X_MARK_Y, COLOR_AXIS_HOMED , "X"); + const bool nhx = axis_should_home(X_AXIS); + tft_string.set(blink && nhx ? "?" : ftostr4sign(LOGICAL_X_POSITION(current_position.x))); + tft.add_text(X_VALUE_X, X_VALUE_Y, nhx ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); + #endif + + #if ENABLED(HAS_Y_AXIS) && defined(Y_MARK_X) && defined(Y_MARK_Y) && defined(Y_VALUE_X) && defined(Y_VALUE_Y) + tft.add_text(Y_MARK_X, Y_MARK_Y, COLOR_AXIS_HOMED , "Y"); + const bool nhy = axis_should_home(Y_AXIS); + tft_string.set(blink && nhy ? "?" : ftostr4sign(LOGICAL_Y_POSITION(current_position.y))); + tft.add_text(Y_VALUE_X, Y_VALUE_Y, nhy ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); + #endif + + #if ENABLED(HAS_Z_AXIS) && defined(Z_MARK_X) && defined(Z_MARK_Y) && defined(Z_VALUE_X) && defined(Z_VALUE_Y) && defined(Z_VALUE_OFFSET) + tft.add_text(Z_MARK_X, Z_MARK_Y, COLOR_AXIS_HOMED , "Z"); + uint16_t offset = Z_VALUE_OFFSET; + const bool nhz = axis_should_home(Z_AXIS); + if (blink && nhz) + tft_string.set('?'); + else { + const float z = LOGICAL_Z_POSITION(current_position.z); + tft_string.set(ftostr52sp((int16_t)z)); + tft_string.rtrim(); + offset += tft_string.width(); + + tft_string.set(ftostr52sp(z)); + offset -= tft_string.width(); + } + tft.add_text(Z_VALUE_X - offset, Z_VALUE_Y, nhz ? COLOR_AXIS_NOT_HOMED : COLOR_AXIS_HOMED, tft_string); + #endif + + + #if ENABLED(LCD_SHOW_E_TOTAL) && defined(E_MARK_X) && defined(E_MARK_Y) && defined(E_VALUE_X) && defined(E_VALUE_Y) + tft.add_text(E_MARK_X, E_MARK_Y, COLOR_AXIS_HOMED, "E"); + if (printingIsActive()) { + const uint8_t escale = e_move_accumulator >= 10000.0f ? 10 : 1; // After 10m switch to cm to fit into 4 digits output of ftostr4sign() + tft_string.set(ftostr4sign(e_move_accumulator / escale)); + const uint16_t e_value_x = E_VALUE_X; + tft_string.add(escale == 10 ? " cm" : " mm"); + tft.add_text(e_value_x, E_VALUE_Y, COLOR_AXIS_HOMED, tft_string); + } + else { + tft_string.set("--"); + tft.add_text(E_VALUE_X, E_VALUE_Y, COLOR_AXIS_HOMED, tft_string); + } + #endif + + // Feed rate + tft.canvas(FEEDRATE_X, FEEDRATE_Y, FEEDRATE_W, FEEDRATE_H); + tft.set_background(COLOR_BACKGROUND); + uint16_t color = feedrate_percentage == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; + tft.add_image(0, 0, imgFeedRate, color); + tft_string.set(i16tostr3rj(feedrate_percentage)); + tft_string.add('%'); + tft.add_text(36, tft_string.vcenter(30), color , tft_string); + TERN_(TOUCH_SCREEN, touch.add_control(FEEDRATE, FEEDRATE_X, FEEDRATE_Y, FEEDRATE_W, FEEDRATE_H)); + + #if HAS_EXTRUDERS + // Flow rate + tft.canvas(FLOWRATE_X, FLOWRATE_Y, FLOWRATE_W, FLOWRATE_H); + tft.set_background(COLOR_BACKGROUND); + color = planner.flow_percentage[0] == 100 ? COLOR_RATE_100 : COLOR_RATE_ALTERED; + tft.add_image(FLOWRATE_ICON_X, FLOWRATE_ICON_X, imgFlowRate, color); + tft_string.set(i16tostr3rj(planner.flow_percentage[active_extruder])); + tft_string.add('%'); + tft.add_text(FLOWRATE_TEXT_X, FLOWRATE_TEXT_Y, color , tft_string); + TERN_(TOUCH_SCREEN, touch.add_control(FLOWRATE, FLOWRATE_X, FLOWRATE_Y, FLOWRATE_W, FLOWRATE_H, active_extruder)); + #endif + + #if ENABLED(TOUCH_SCREEN) + add_control(MENU_ICON_X, MENU_ICON_Y, menu_main, imgSettings); + #if ENABLED(SDSUPPORT) + const bool cm = card.isMounted(), pa = printingIsActive(); + if (cm && pa) + add_control(SDCARD_ICON_X, SDCARD_ICON_Y, STOP, imgCancel, true, COLOR_CONTROL_CANCEL); + else + add_control(SDCARD_ICON_X, SDCARD_ICON_Y, menu_media, imgSD, cm && !pa, COLOR_CONTROL_ENABLED, COLOR_CONTROL_DISABLED); + #endif + #endif + + #if ANY(SHOW_ELAPSED_TIME, SHOW_REMAINING_TIME) + char buffer[22]; + duration_t elapsed = print_job_timer.duration(); + #endif + + const progress_t progress = TERN(HAS_PRINT_PROGRESS_PERMYRIAD, get_progress_permyriad, get_progress_percent)(); + + #if ENABLED(SHOW_ELAPSED_TIME) + elapsed.toDigital(buffer); + tft.canvas(ELAPSED_TIME_X, ELAPSED_TIME_Y, ELAPSED_TIME_W, ELAPSED_TIME_H); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(buffer); + #if defined(ELAPSED_TIME_IMAGE_X) && defined(ELAPSED_TIME_IMAGE_Y) + tft.add_image(ELAPSED_TIME_IMAGE_X, ELAPSED_TIME_IMAGE_Y, imgTimeElapsed, COLOR_PRINT_TIME); + #endif + tft.add_text(ELAPSED_TIME_TEXT_X, ELAPSED_TIME_TEXT_Y, COLOR_PRINT_TIME, tft_string); + #endif + + #if ENABLED(SHOW_REMAINING_TIME) + // Get the estimate, first from M73 + uint32_t estimate_remaining = (0 + #if ALL(SET_PROGRESS_MANUALLY, SET_REMAINING_TIME) + + get_remaining_time() + #endif + ); + // If no M73 estimate is available but we have progress data, calculate time remaining assuming time elapsed is linear with progress + if (!estimate_remaining && progress > 0) + estimate_remaining = elapsed.value * (100 * (PROGRESS_SCALE) - progress) / progress; + + // Generate estimate string + if (!estimate_remaining) + tft_string.set("-"); + else { + duration_t estimation = estimate_remaining; + estimation.toString(buffer); + tft_string.set(buffer); + } + + tft.canvas(REMAINING_TIME_X, REMAINING_TIME_Y, REMAINING_TIME_W, REMAINING_TIME_H); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(buffer); + color = printingIsActive() ? COLOR_PRINT_TIME : COLOR_INACTIVE; + #if defined(REMAINING_TIME_IMAGE_X) && defined(REMAINING_TIME_IMAGE_Y) + tft.add_image(REMAINING_TIME_IMAGE_X, REMAINING_TIME_IMAGE_Y, imgTimeRemaining, color); + #endif + tft.add_text(REMAINING_TIME_TEXT_X, REMAINING_TIME_TEXT_Y, color, tft_string); + #endif + + // Progress bar + // TODO: print percentage text for SHOW_PROGRESS_PERCENT + tft.canvas(PROGRESS_BAR_X, PROGRESS_BAR_Y, PROGRESS_BAR_W, PROGRESS_BAR_H); + tft.set_background(COLOR_PROGRESS_BG); + tft.add_rectangle(0, 0, PROGRESS_BAR_W, PROGRESS_BAR_H, COLOR_PROGRESS_FRAME); + if (progress) + tft.add_bar(1, 1, ((PROGRESS_BAR_W - 2) * progress / (PROGRESS_SCALE)) / 100, 7, COLOR_PROGRESS_BAR); + + // Status message + tft.canvas(STATUS_MESSAGE_X, STATUS_MESSAGE_Y, STATUS_MESSAGE_W, STATUS_MESSAGE_H); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(status_message); + tft_string.trim(); + tft.add_text(STATUS_MESSAGE_TEXT_X, STATUS_MESSAGE_TEXT_Y, COLOR_STATUS_MESSAGE, tft_string); +} + +// Low-level draw_edit_screen can be used to draw an edit screen from anyplace +void MenuEditItemBase::draw_edit_screen(FSTR_P const fstr, const char * const value/*=nullptr*/) { + ui.encoder_direction_normal(); + TERN_(TOUCH_SCREEN, touch.clear()); + + uint16_t line = 1; + + menu_line(line++); + tft_string.set(fstr, itemIndex, itemStringC, itemStringF); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + + TERN_(AUTO_BED_LEVELING_UBL, if (ui.external_control) line++); // ftostr52() will overwrite *value so *value has to be displayed first + + menu_line(line); + tft_string.set(value); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + #if ENABLED(AUTO_BED_LEVELING_UBL) + if (ui.external_control) { + menu_line(line - 1); + + tft_string.set(X_LBL); + tft.add_text(UBL_X_LABEL_X, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.x))); + tft_string.trim(); + tft.add_text(UBL_X_TEXT_X, MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + tft_string.set(Y_LBL); + tft.add_text(UBL_Y_LABEL_X, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + tft_string.set(ftostr52(LOGICAL_X_POSITION(current_position.y))); + tft_string.trim(); + tft.add_text(UBL_Y_TEXT_X, MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + } + #endif + + if (ui.can_show_slider()) { + tft.canvas((TFT_WIDTH - SLIDER_W) / 2, SLIDER_Y, SLIDER_W, 16); + tft.set_background(COLOR_BACKGROUND); + + int16_t position = (SLIDER_W - 2) * ui.encoderPosition / maxEditValue; + tft.add_bar(0, 7, 1, 2, ui.encoderPosition == 0 ? COLOR_SLIDER_INACTIVE : COLOR_SLIDER); + tft.add_bar(1, 6, position, 4, COLOR_SLIDER); + tft.add_bar(position + 1, 6, SLIDER_W - 2 - position, 4, COLOR_SLIDER_INACTIVE); + tft.add_bar(SLIDER_W - 1, 7, 1, 2, int32_t(ui.encoderPosition) == maxEditValue ? COLOR_SLIDER : COLOR_SLIDER_INACTIVE); + + #if ENABLED(TOUCH_SCREEN) + tft.add_image((SLIDER_W - 8) * ui.encoderPosition / maxEditValue, 0, imgSlider, COLOR_SLIDER); + touch.add_control(SLIDER, (TFT_WIDTH - SLIDER_W) / 2, SLIDER_Y - 8, SLIDER_W, 32, maxEditValue); + #endif + } + + tft.draw_edit_screen_buttons(); +} + +void TFT::draw_edit_screen_buttons() { + #if ENABLED(TOUCH_SCREEN) + add_control(BUTTON_DECREASE_X, BUTTON_DECREASE_Y, DECREASE, imgDecrease); + add_control(BUTTON_INCREASE_X, BUTTON_INCREASE_Y, INCREASE, imgIncrease); + add_control(BUTTON_CLICK_X, BUTTON_CLICK_Y, CLICK, imgConfirm); + #endif +} + +// The Select Screen presents a prompt and two "buttons" +void MenuItem_confirm::draw_select_screen(FSTR_P const yes, FSTR_P const no, const bool yesno, FSTR_P const pref, const char * const string/*=nullptr*/, FSTR_P const suff/*=nullptr*/) { + uint16_t line = 1; + + if (!string) line++; + + menu_line(line++); + tft_string.set(pref); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + + if (string) { + menu_line(line++); + tft_string.set(string); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + } + + if (suff) { + menu_line(line); + tft_string.set(suff); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + } + #if ENABLED(TOUCH_SCREEN) + if (no) add_control(BUTTON_CANCEL_X, BUTTON_CANCEL_Y, CANCEL, imgCancel, true, yesno ? HALF(COLOR_CONTROL_CANCEL) : COLOR_CONTROL_CANCEL); + if (yes) add_control(BUTTON_CONFIRM_X, BUTTON_CONFIRM_Y, CONFIRM, imgConfirm, true, yesno ? COLOR_CONTROL_CONFIRM : HALF(COLOR_CONTROL_CONFIRM)); + #else + // Even without touch screen "no" and "yes" buttons are still need to be displayed + if (no) add_control(BUTTON_CANCEL_X, BUTTON_CANCEL_Y, NONE, imgCancel, true, yesno ? HALF(COLOR_CONTROL_CANCEL) : COLOR_CONTROL_CANCEL); + if (yes) add_control(BUTTON_CONFIRM_X, BUTTON_CONFIRM_Y, NONE, imgConfirm, true, yesno ? COLOR_CONTROL_CONFIRM : HALF(COLOR_CONTROL_CONFIRM)); + #endif +} + +#if ENABLED(ADVANCED_PAUSE_FEATURE) + + void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) { + #if ENABLED(TOUCH_SCREEN) + touch.clear(); + draw_menu_navigation = false; + touch.add_control(RESUME_CONTINUE, 0, 0, TFT_WIDTH, TFT_HEIGHT); + #endif + + menu_line(row); + tft_string.set(GET_TEXT(MSG_FILAMENT_CHANGE_NOZZLE)); + tft_string.add('E'); + tft_string.add((char)('1' + extruder)); + tft_string.add(' '); + tft_string.add(i16tostr3rj(thermalManager.wholeDegHotend(extruder))); + tft_string.add(LCD_STR_DEGREE); + tft_string.add(F(" / ")); + tft_string.add(i16tostr3rj(thermalManager.degTargetHotend(extruder))); + tft_string.add(LCD_STR_DEGREE); + tft_string.trim(); + tft.add_text(tft_string.center(TFT_WIDTH), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + } + +#endif // ADVANCED_PAUSE_FEATURE + +#if ENABLED(AUTO_BED_LEVELING_UBL) + + void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) { + + tft.canvas(UBL_GRID_X, UBL_GRID_Y, UBL_GRID_W, UBL_GRID_H); + tft.set_background(COLOR_BACKGROUND); + tft.add_rectangle(0, 0, UBL_GRID_W, UBL_GRID_H, COLOR_WHITE); + + for (uint16_t x = 0; x < (GRID_MAX_POINTS_X); x++) + for (uint16_t y = 0; y < (GRID_MAX_POINTS_Y); y++) + if (position_is_reachable({ bedlevel.get_mesh_x(x), bedlevel.get_mesh_y(y) })) + tft.add_bar(1 + (x * 2 + 1) * (UBL_GRID_W - 4) / (GRID_MAX_POINTS_X) / 2, UBL_GRID_H - 3 - ((y * 2 + 1) * (UBL_GRID_H - 4) / (GRID_MAX_POINTS_Y) / 2), 2, 2, COLOR_UBL); + + tft.add_rectangle((x_plot * 2 + 1) * (UBL_GRID_W - 4) / (GRID_MAX_POINTS_X) / 2 - 1, UBL_GRID_H - 5 - ((y_plot * 2 + 1) * (UBL_GRID_H - 4) / (GRID_MAX_POINTS_Y) / 2), 6, 6, COLOR_UBL); + + const xy_pos_t pos = { bedlevel.get_mesh_x(x_plot), bedlevel.get_mesh_y(y_plot) }, + lpos = pos.asLogical(); + + tft.canvas(UBL_COORDINATES_X, UBL_X_COORDINATE_Y, UBL_COORDINATES_W, MENU_ITEM_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(X_LBL); + tft.add_text(0, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + tft_string.set(ftostr52(lpos.x)); + tft_string.trim(); + tft.add_text(UBL_COORDINATES_W - tft_string.width(), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + tft.canvas(UBL_COORDINATES_X, UBL_Y_COORDINATE_Y, UBL_COORDINATES_W, MENU_ITEM_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(Y_LBL); + tft.add_text(0, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + tft_string.set(ftostr52(lpos.y)); + tft_string.trim(); + tft.add_text(UBL_COORDINATES_W - tft_string.width(), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + tft.canvas(UBL_COORDINATES_X, UBL_Z_COORDINATE_Y, UBL_COORDINATES_W, MENU_ITEM_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(Z_LBL); + tft.add_text(0, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); + tft_string.set(isnan(bedlevel.z_values[x_plot][y_plot]) ? "-----" : ftostr43sign(bedlevel.z_values[x_plot][y_plot])); + tft_string.trim(); + tft.add_text(UBL_COORDINATES_W - tft_string.width(), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + #define UBL_TEXT_AREA_W (2 * UBL_CONTROL_OFFSET + 32) + + tft.canvas(UBL_GRID_X + (UBL_GRID_W - UBL_TEXT_AREA_W) / 2, UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET + 16 - MENU_ITEM_HEIGHT / 2, UBL_TEXT_AREA_W, MENU_ITEM_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(ui8tostr3rj(x_plot)); + tft_string.trim(); + tft.add_text(tft_string.center(UBL_TEXT_AREA_W), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + tft.canvas(UBL_GRID_X + UBL_GRID_W + UBL_CONTROL_OFFSET + 16 - UBL_TEXT_AREA_W / 2, UBL_GRID_Y + (UBL_GRID_H - MENU_ITEM_HEIGHT) / 2, UBL_TEXT_AREA_W, MENU_ITEM_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(ui8tostr3rj(y_plot)); + tft_string.trim(); + tft.add_text(tft_string.center(UBL_TEXT_AREA_W), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); + + #if ENABLED(TOUCH_SCREEN) + touch.clear(); + draw_menu_navigation = false; + add_control(UBL_GRID_X + UBL_GRID_W + UBL_CONTROL_OFFSET, UBL_GRID_Y + UBL_CONTROL_OFFSET, UBL, (ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgUp); + add_control(UBL_GRID_X + UBL_GRID_W + UBL_CONTROL_OFFSET, UBL_GRID_Y + UBL_GRID_H - UBL_CONTROL_OFFSET - 32, UBL, -(ENCODER_STEPS_PER_MENU_ITEM) * (GRID_MAX_POINTS_X), imgDown); + add_control(UBL_GRID_X + UBL_CONTROL_OFFSET, UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET, UBL, -(ENCODER_STEPS_PER_MENU_ITEM), imgLeft); + add_control(UBL_GRID_X + UBL_GRID_W - UBL_CONTROL_OFFSET - 32, UBL_GRID_Y + UBL_GRID_H + UBL_CONTROL_OFFSET, UBL, ENCODER_STEPS_PER_MENU_ITEM, imgRight); + + add_control(UBL_ACTION_X, UBL_ACTION_Y, CLICK, imgLeveling); + add_control(NAVIGATION_BACK_X, NAVIGATION_BACK_Y, BACK, imgBack); + #endif + } +#endif // AUTO_BED_LEVELING_UBL + +#endif // TFT_COLOR_UI diff --git a/Marlin/src/lcd/tft/ui_common.cpp b/Marlin/src/lcd/tft/ui_common.cpp index 962daadb19c5..09364d846ba6 100644 --- a/Marlin/src/lcd/tft/ui_common.cpp +++ b/Marlin/src/lcd/tft/ui_common.cpp @@ -28,15 +28,166 @@ #include "../lcdprint.h" #include "../../libs/numtostr.h" #include "../menu/menu.h" +#include "../../gcode/queue.h" +#include "../../module/temperature.h" +#include "../../module/planner.h" +#include "../../module/probe.h" -void menu_pause_option(); +#if ENABLED(BABYSTEP_ZPROBE_OFFSET) + #include "../../feature/babystep.h" +#endif +motionAxisState_t motionAxisState; static xy_uint_t cursor; - #if ENABLED(TOUCH_SCREEN) bool draw_menu_navigation = false; #endif +void menu_pause_option(); + +void quick_feedback() { + #if HAS_CHIRP + ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle? + #if ALL(HAS_MARLINUI_MENU, HAS_BEEPER) + for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); } + #elif HAS_MARLINUI_MENU + delay(10); + #endif + #endif +} + +void disable_steppers() { + quick_feedback(); + queue.inject(F("M84")); +} + +void moveAxis(const AxisEnum axis, const int8_t direction) { + quick_feedback(); + + #if HAS_EXTRUDERS + if (axis == E_AXIS && thermalManager.tooColdToExtrude(motionAxisState.e_selection)) { + drawMessage(F("Too cold")); + return; + } + #endif + + const float diff = motionAxisState.currentStepSize * direction; + + #if HAS_BED_PROBE + + if (axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE) { + #if ENABLED(BABYSTEP_ZPROBE_OFFSET) + const int16_t babystep_increment = direction * BABYSTEP_SIZE_Z; + const bool do_probe = DISABLED(BABYSTEP_HOTEND_Z_OFFSET) || active_extruder == 0; + const float bsDiff = planner.mm_per_step[Z_AXIS] * babystep_increment, + new_probe_offset = probe.offset.z + bsDiff, + new_offs = TERN(BABYSTEP_HOTEND_Z_OFFSET + , do_probe ? new_probe_offset : hotend_offset[active_extruder].z - bsDiff + , new_probe_offset + ); + if (WITHIN(new_offs, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) { + babystep.add_steps(Z_AXIS, babystep_increment); + if (do_probe) + probe.offset.z = new_offs; + else + TERN(BABYSTEP_HOTEND_Z_OFFSET, hotend_offset[active_extruder].z = new_offs, NOOP); + drawMessage_P(NUL_STR); // Clear the error + drawAxisValue(axis); + } + else + drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); + + #else + // Only change probe.offset.z + probe.offset.z += diff; + if (direction < 0 && current_position.z < Z_PROBE_OFFSET_RANGE_MIN) { + current_position.z = Z_PROBE_OFFSET_RANGE_MIN; + drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); + } + else if (direction > 0 && current_position.z > Z_PROBE_OFFSET_RANGE_MAX) { + current_position.z = Z_PROBE_OFFSET_RANGE_MAX; + drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS)); + } + else + drawMessage_P(NUL_STR); // Clear the error + + drawAxisValue(axis); + #endif + } + + #endif // HAS_BED_PROBE + + if (!ui.manual_move.processing) { + // Get motion limit from software endstops, if any + float min, max; + soft_endstop.get_manual_axis_limits(axis, min, max); + + // Delta limits XY based on the current offset from center + // This assumes the center is 0,0 + #if ENABLED(DELTA) + if (axis != Z_AXIS && TERN1(HAS_EXTRUDERS, axis != E_AXIS)) { + max = SQRT(sq(float(PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis])); // (Y_AXIS - axis) == the other axis + min = -max; + } + #endif + + // Get the new position + const bool limited = ui.manual_move.apply_diff(axis, diff, min, max); + #if IS_KINEMATIC + UNUSED(limited); + #else + FSTR_P const msg = limited ? GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS) : FPSTR(NUL_STR); + drawMessage(msg); + #endif + + ui.manual_move.soon(axis OPTARG(MULTI_E_MANUAL, motionAxisState.e_selection)); + } + + drawAxisValue(axis); +} + +#if ENABLED(TOUCH_SCREEN) + + void do_home() { + quick_feedback(); + drawMessage(GET_TEXT_F(MSG_LEVEL_BED_HOMING)); + queue.inject_P(G28_STR); + // Disable touch until home is done + touch.disable(); + TERN_(HAS_EXTRUDERS, drawAxisValue(E_AXIS)); + TERN_(HAS_X_AXIS, drawAxisValue(X_AXIS)); + TERN_(HAS_Y_AXIS, drawAxisValue(Y_AXIS)); + TERN_(HAS_Z_AXIS, drawAxisValue(Z_AXIS)); + } + + void step_size() { + motionAxisState.currentStepSize = motionAxisState.currentStepSize / 10.0; + if (motionAxisState.currentStepSize < 0.0015) motionAxisState.currentStepSize = 10.0; + quick_feedback(); + drawCurStepValue(); + } + + #if HAS_EXTRUDERS + void e_select() { + if (++motionAxisState.e_selection >= EXTRUDERS) + motionAxisState.e_selection = 0; + quick_feedback(); + drawCurESelection(); + drawAxisValue(E_AXIS); + } + #endif + + #if HAS_BED_PROBE + void z_select() { + motionAxisState.z_selection *= -1; + quick_feedback(); + drawCurZSelection(); + drawAxisValue(Z_AXIS); + } + #endif + +#endif + #if HAS_TOUCH_SLEEP bool lcd_sleep_task() { @@ -56,12 +207,16 @@ static xy_uint_t cursor; return false; } -#endif +#endif // HAS_TOUCH_SLEEP + +void text_line(const uint16_t y, uint16_t color) { + tft.canvas(0, y, TFT_WIDTH, MENU_ITEM_HEIGHT); + tft.set_background(color); +} void menu_line(const uint8_t row, uint16_t color) { cursor.set(0, row); - tft.canvas(0, TFT_TOP_LINE_Y + cursor.y * MENU_LINE_HEIGHT, TFT_WIDTH, MENU_ITEM_HEIGHT); - tft.set_background(color); + text_line(MENU_TOP_LINE_Y + cursor.y * MENU_LINE_HEIGHT, color); } void menu_item(const uint8_t row, bool sel ) { @@ -75,10 +230,42 @@ void menu_item(const uint8_t row, bool sel ) { menu_line(row, sel ? COLOR_SELECTION_BG : COLOR_BACKGROUND); #if ENABLED(TOUCH_SCREEN) const TouchControlType tct = TERN(SINGLE_TOUCH_NAVIGATION, true, sel) ? MENU_CLICK : MENU_ITEM; - touch.add_control(tct, 0, TFT_TOP_LINE_Y + row * MENU_LINE_HEIGHT, TFT_WIDTH, MENU_ITEM_HEIGHT, encoderTopLine + row); + touch.add_control(tct, 0, MENU_TOP_LINE_Y + row * MENU_LINE_HEIGHT, TFT_WIDTH, MENU_ITEM_HEIGHT, encoderTopLine + row); + #endif +} + +void add_control(uint16_t x, uint16_t y, TouchControlType control_type, intptr_t data, MarlinImage image, bool is_enabled, uint16_t color_enabled, uint16_t color_disabled) { + const uint16_t width = images[image].width, height = images[image].height; + tft.canvas(x, y, width, height); + tft.add_image(0, 0, image, is_enabled ? color_enabled : color_disabled); + #if ENABLED(TOUCH_SCREEN) + if (is_enabled) touch.add_control(control_type, x, y, width, height, data); #endif } +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage btnimg, const MarlinImage img, uint16_t bgColor, const bool enabled) { + const uint16_t width = images[btnimg].width, + height = images[btnimg].height; + + if (!enabled) bgColor = COLOR_CONTROL_DISABLED; + + tft.canvas(x, y, width, height); + tft.set_background(COLOR_BACKGROUND); + tft.add_image(0, 0, btnimg, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); + + // TODO: Make an add_text() taking a font arg + if (label) { + tft_string.set(label); + tft_string.trim(); + tft.add_text(tft_string.center(width), height / 2 - tft_string.font_height() / 2, bgColor, tft_string); + } + else + tft.add_image(0, 0, img, bgColor, COLOR_BACKGROUND, COLOR_DARKGREY); + + TERN_(TOUCH_SCREEN, if (enabled) touch.add_control(BUTTON, x, y, width, height, data)); +} + + // // lcdprint.h functions // @@ -88,7 +275,7 @@ void menu_item(const uint8_t row, bool sel ) { void lcd_gotopixel(const uint16_t x, const uint16_t y) { if (x >= TFT_WIDTH) return; cursor.set(x / (TFT_COL_WIDTH), y / MENU_LINE_HEIGHT); - tft.canvas(x, TFT_TOP_LINE_Y + y, (TFT_WIDTH) - x, MENU_ITEM_HEIGHT); + tft.canvas(x, MENU_TOP_LINE_Y + y, (TFT_WIDTH) - x, MENU_ITEM_HEIGHT); tft.set_background(COLOR_BACKGROUND); } @@ -99,7 +286,7 @@ void lcd_moveto(const lcd_uint_t col, const lcd_uint_t row) { int lcd_put_lchar_max(const lchar_t &c, const pixel_len_t max_length) { if (max_length < 1) return 0; tft_string.set(c); - tft.add_text(MENU_TEXT_X_OFFSET, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); + tft.add_text(MENU_TEXT_X, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); lcd_gotopixel((cursor.x + 1) * (TFT_COL_WIDTH) + tft_string.width(), cursor.y * MENU_LINE_HEIGHT); return tft_string.width(); } @@ -109,7 +296,7 @@ int lcd_put_u8str_max_P(PGM_P utf8_pstr, const pixel_len_t max_length) { tft_string.set(utf8_pstr); tft_string.trim(); tft_string.truncate(max_length); - tft.add_text(MENU_TEXT_X_OFFSET, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); + tft.add_text(MENU_TEXT_X, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); lcd_gotopixel((cursor.x + 1) * (TFT_COL_WIDTH) + tft_string.width(), cursor.y * MENU_LINE_HEIGHT); return tft_string.width(); } @@ -139,7 +326,7 @@ void MenuItemBase::_draw(const bool sel, const uint8_t row, FSTR_P const fstr, c case 0x02: image = imgDirectory; break; // LCD_STR_FOLDER } - uint8_t offset = MENU_TEXT_X_OFFSET; + uint8_t offset = MENU_TEXT_X; if (image != noImage) { string++; offset = MENU_ITEM_ICON_SPACE; @@ -148,7 +335,7 @@ void MenuItemBase::_draw(const bool sel, const uint8_t row, FSTR_P const fstr, c tft_string.set(string, itemIndex, itemStringC, itemStringF); - tft.add_text(offset, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); + tft.add_text(offset, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); } // Draw a menu item with a (potentially) editable value @@ -156,10 +343,10 @@ void MenuEditItemBase::draw(const bool sel, const uint8_t row, FSTR_P const fstr menu_item(row, sel); tft_string.set(fstr, itemIndex, itemStringC, itemStringF); - tft.add_text(MENU_TEXT_X_OFFSET, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, tft_string); + tft.add_text(MENU_TEXT_X, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); if (inStr) { tft_string.set(inStr); - tft.add_text(TFT_WIDTH - MENU_TEXT_X_OFFSET - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_MENU_VALUE, tft_string); + tft.add_text(TFT_WIDTH - MENU_TEXT_X - tft_string.width(), MENU_TEXT_Y, COLOR_MENU_VALUE, tft_string); } } @@ -172,7 +359,7 @@ void MenuItem_static::draw(const uint8_t row, FSTR_P const fstr, const uint8_t s const bool center = bool(style & SS_CENTER), full = bool(style & SS_FULL); if (!full || !vstr) { if (vstr) tft_string.add(vstr); - tft.add_text(center ? tft_string.center(TFT_WIDTH) : 0, MENU_TEXT_Y_OFFSET, COLOR_YELLOW, tft_string); + tft.add_text(center ? tft_string.center(TFT_WIDTH) : 0, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); return; } @@ -180,12 +367,12 @@ void MenuItem_static::draw(const uint8_t row, FSTR_P const fstr, const uint8_t s if (*vstr == ':') { tft_string.add(':'); vstr++; } // Left-justified label - tft.add_text(0, MENU_TEXT_Y_OFFSET, COLOR_YELLOW, tft_string); + tft.add_text(0, MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); // Right-justified value, after spaces while (*vstr == ' ') vstr++; tft_string.set(vstr); - tft.add_text(TFT_WIDTH - 1 - tft_string.width(), MENU_TEXT_Y_OFFSET, COLOR_YELLOW, tft_string); + tft.add_text(TFT_WIDTH - 1 - tft_string.width(), MENU_TEXT_Y, COLOR_MENU_TEXT, tft_string); } #if HAS_MEDIA @@ -193,8 +380,8 @@ void MenuItem_static::draw(const uint8_t row, FSTR_P const fstr, const uint8_t s void MenuItem_sdbase::draw(const bool sel, const uint8_t row, FSTR_P const, CardReader &theCard, const bool isDir) { menu_item(row, sel); if (isDir) tft.add_image(MENU_ITEM_ICON_X, MENU_ITEM_ICON_Y, imgDirectory, COLOR_MENU_TEXT, sel ? COLOR_SELECTION_BG : COLOR_BACKGROUND); - uint8_t maxlen = (MENU_ITEM_HEIGHT) - (MENU_TEXT_Y_OFFSET) + 1; - tft.add_text(MENU_ITEM_ICON_SPACE, MENU_TEXT_Y_OFFSET, COLOR_MENU_TEXT, ui.scrolled_filename(theCard, maxlen, row, sel)); + uint8_t maxlen = (MENU_ITEM_HEIGHT) - (MENU_TEXT_Y) + 1; + tft.add_text(MENU_ITEM_ICON_SPACE, MENU_TEXT_Y, COLOR_MENU_TEXT, ui.scrolled_filename(theCard, maxlen, row, sel)); } #endif diff --git a/Marlin/src/lcd/tft/ui_common.h b/Marlin/src/lcd/tft/ui_common.h index 2a81ee2114b3..592bf3184e6e 100644 --- a/Marlin/src/lcd/tft/ui_common.h +++ b/Marlin/src/lcd/tft/ui_common.h @@ -33,39 +33,143 @@ #if ENABLED(TOUCH_SCREEN) #include "touch.h" extern bool draw_menu_navigation; +#else + // add_control() function is used to display encoder-controlled elements + enum TouchControlType : uint16_t { + NONE = 0x0000, + }; #endif -#if HAS_UI_320x240 - #include "ui_320x240.h" -#elif HAS_UI_480x320 || HAS_UI_480x272 - #include "ui_480x320.h" -#elif HAS_UI_1024x600 - #include "ui_1024x600.h" -#else - #error "Unsupported display resolution!" +#define UI_INCL_(W, H) STRINGIFY_(ui_##W##x##H.h) +#define UI_INCL(W, H) UI_INCL_(W, H) + +#include "ui_theme.h" +#include UI_INCL(TFT_WIDTH, TFT_HEIGHT) +#include "tft_font.h" +#include "tft_color.h" + +// Common Implementation +#define Z_SELECTION_Z 1 +#define Z_SELECTION_Z_PROBE -1 + +typedef struct { + #if HAS_X_AXIS + xy_int_t xValuePos; + #endif + #if HAS_Y_AXIS + xy_int_t yValuePos; + #endif + #if HAS_Z_AXIS + xy_int_t zValuePos, zTypePos; + int z_selection = Z_SELECTION_Z; + #endif + #if HAS_EXTRUDERS + xy_int_t eValuePos, eNamePos; + uint8_t e_selection = 0; + #endif + xy_int_t stepValuePos; + float currentStepSize = 10.0; + bool blocked = false; + char message[32]; +} motionAxisState_t; + +extern motionAxisState_t motionAxisState; + +void moveAxis(const AxisEnum axis, const int8_t direction); + +#if HAS_EXTRUDERS + inline void e_plus() { moveAxis(E_AXIS, +1); } + inline void e_minus() { moveAxis(E_AXIS, -1); } +#endif +#if HAS_X_AXIS + inline void x_minus() { moveAxis(X_AXIS, -1); } + inline void x_plus() { moveAxis(X_AXIS, +1); } +#endif +#if HAS_Y_AXIS + inline void y_plus() { moveAxis(Y_AXIS, +1); } + inline void y_minus() { moveAxis(Y_AXIS, -1); } +#endif +#if HAS_Z_AXIS + inline void z_plus() { moveAxis(Z_AXIS, +1); } + inline void z_minus() { moveAxis(Z_AXIS, -1); } +#endif +void quick_feedback(); +void disable_steppers(); +#if ENABLED(TOUCH_SCREEN) + void do_home(); + void step_size(); + #if HAS_BED_PROBE + void z_select(); + #endif + #if HAS_EXTRUDERS + void e_select(); + #endif +#endif +#if HAS_TOUCH_SLEEP + bool lcd_sleep_task(); #endif void draw_heater_status(uint16_t x, uint16_t y, const int8_t Heater); void draw_fan_status(uint16_t x, uint16_t y, const bool blink); +void text_line(const uint16_t y, uint16_t color=COLOR_BACKGROUND); void menu_line(const uint8_t row, uint16_t color=COLOR_BACKGROUND); void menu_item(const uint8_t row, bool sel = false); -#if HAS_TOUCH_SLEEP - bool lcd_sleep_task(); +typedef void (*screenFunc_t)(); +void add_control( + uint16_t x, uint16_t y, TouchControlType control_type, intptr_t data, MarlinImage image, bool is_enabled=true, + uint16_t color_enabled=COLOR_CONTROL_ENABLED, uint16_t color_disabled=COLOR_CONTROL_DISABLED +); +inline void add_control( + uint16_t x, uint16_t y, TouchControlType control_type, MarlinImage image, + bool is_enabled=true, uint16_t color_enabled=COLOR_CONTROL_ENABLED, uint16_t color_disabled=COLOR_CONTROL_DISABLED +) { + add_control(x, y, control_type, 0, image, is_enabled, color_enabled, color_disabled); +} +#if ENABLED(TOUCH_SCREEN) + inline void add_control( + uint16_t x, uint16_t y, TouchControlType control_type, screenFunc_t action, MarlinImage image, bool is_enabled=true, + uint16_t color_enabled=COLOR_CONTROL_ENABLED, uint16_t color_disabled=COLOR_CONTROL_DISABLED + ) { + add_control(x, y, control_type, (intptr_t)action, image, is_enabled, color_enabled, color_disabled); + } + inline void add_control( + uint16_t x, uint16_t y, screenFunc_t screen, MarlinImage image, bool is_enabled=true, + uint16_t color_enabled=COLOR_CONTROL_ENABLED, uint16_t color_disabled=COLOR_CONTROL_DISABLED + ) { + add_control(x, y, MENU_SCREEN, (intptr_t)screen, image, is_enabled, color_enabled, color_disabled); + } #endif +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage btnimg, const MarlinImage img, uint16_t bgColor, const bool enabled=true); +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled=true); +inline void drawBtn(const int x, const int y, const char *label, void (*handler)(), const MarlinImage img, uint16_t bgColor, const bool enabled=true) { + drawBtn(x, y, label, intptr_t(handler), img, bgColor, enabled); +} + +// Custom Implementation +void drawMessage_P(PGM_P const msg); +inline void drawMessage(FSTR_P const fmsg) { drawMessage_P(FTOP(fmsg)); } + +void drawAxisValue(const AxisEnum axis); +void drawCurZSelection(); +void drawCurESelection(); +void drawCurStepValue(); + #define ABSOLUTE_ZERO -273.15 -enum { - OPTITEM(HAS_EXTRUDERS, ITEM_E0) - OPTITEM(HAS_MULTI_HOTEND, ITEM_E1) - #if HOTENDS > 2 - ITEM_E2, - #endif - OPTITEM(HAS_HEATED_BED, ITEM_BED) - OPTITEM(HAS_TEMP_CHAMBER, ITEM_CHAMBER) - OPTITEM(HAS_TEMP_COOLER, ITEM_COOLER) - OPTITEM(HAS_FAN, ITEM_FAN) - ITEMS_COUNT -}; +#if DISABLED(CUSTOM_STATUS_SCREEN_ITEMS_ORDER) + enum { + OPTITEM(HAS_EXTRUDERS, ITEM_E0) + OPTITEM(HAS_MULTI_HOTEND, ITEM_E1) + #if HOTENDS > 2 + ITEM_E2, + #endif + OPTITEM(HAS_HEATED_BED, ITEM_BED) + OPTITEM(HAS_TEMP_CHAMBER, ITEM_CHAMBER) + OPTITEM(HAS_TEMP_COOLER, ITEM_COOLER) + OPTITEM(HAS_FAN, ITEM_FAN) + ITEMS_COUNT + }; +#endif diff --git a/Marlin/src/lcd/tft/ui_move_axis_screen_1024.cpp b/Marlin/src/lcd/tft/ui_move_axis_screen_1024.cpp new file mode 100644 index 000000000000..a68752c9ddce --- /dev/null +++ b/Marlin/src/lcd/tft/ui_move_axis_screen_1024.cpp @@ -0,0 +1,265 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +#if HAS_UI_1024x600 + +#include "ui_common.h" + +#if ENABLED(MOVE_AXIS_SCREEN) + +#include "../marlinui.h" +#include "../menu/menu.h" +#include "../../libs/numtostr.h" + +#include "../../sd/cardreader.h" +#include "../../module/temperature.h" +#include "../../module/printcounter.h" +#include "../../module/planner.h" +#include "../../module/motion.h" + +#if ENABLED(BABYSTEP_ZPROBE_OFFSET) + #include "../../feature/babystep.h" +#endif + +#if HAS_BED_PROBE + #include "../../module/probe.h" +#endif + +#define BTN_WIDTH 64 +#define BTN_HEIGHT 52 +#define X_MARGIN 20 +#define Y_MARGIN 15 + +#define CUR_STEP_VALUE_WIDTH 104 +void drawCurStepValue() { + tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); + tft_string.add(F("mm")); + tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(tft_string.center(CUR_STEP_VALUE_WIDTH), 0, COLOR_AXIS_HOMED, tft_string); +} + +#if HAS_Z_AXIS + void drawCurZSelection() { + tft_string.set('Z'); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), 34); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + + tft.queue.sync(); + + tft_string.set(F("Offset")); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + 34, tft_string.width(), 34); + tft.set_background(COLOR_BACKGROUND); + #if HAS_BED_PROBE + if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + #endif + } +#endif + +#if HAS_EXTRUDERS + void drawCurESelection() { + tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set('E'); + tft.add_text(0, 0, E_BTN_COLOR, tft_string); + tft.add_text(tft_string.width(), 0, E_BTN_COLOR, ui8tostr3rj(motionAxisState.e_selection)); + } +#endif + +void drawMessage_P(PGM_P const msg) { + tft.canvas(X_MARGIN, TFT_HEIGHT - Y_MARGIN - 34, TFT_HEIGHT / 2, 34); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, COLOR_STATUS_MESSAGE, msg); +} + +void drawAxisValue(const AxisEnum axis) { + const float value = ( + TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) + ui.manual_move.axis_value(axis) + ); + xy_int_t pos; + uint16_t color; + switch (axis) { + #if HAS_X_AXIS + case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; + #endif + #if HAS_Y_AXIS + case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; + #endif + #if HAS_Z_AXIS + case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; + #endif + #if HAS_EXTRUDERS + case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; + #endif + default: return; + } + tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(ftostr52sp(value)); + tft.add_text(0, 0, color, tft_string); +} + +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled/*=true*/) { + drawBtn(x, y, label, data, imgBtn52Rounded, img, bgColor, enabled); +} + +void MarlinUI::move_axis_screen() { + // Reset + defer_status_screen(true); + motionAxisState.blocked = false; + TERN_(TOUCH_SCREEN, touch.enable()); + + ui.clear_lcd(); + + TERN_(TOUCH_SCREEN, touch.clear()); + + const bool busy = printingIsActive(); + + // Babysteps during printing? Select babystep for Z probe offset + #if ENABLED(BABYSTEP_ZPROBE_OFFSET) + if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; + #endif + + /************************************************************************** + * Row 1: | [E-] | [Y-] | Current Y | [Z+] | + *************************************************************************/ + + int x = X_MARGIN, y = Y_MARGIN, spacing = 0; + + TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", e_plus, imgUp, E_BTN_COLOR, !busy)); + + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + x += BTN_WIDTH + spacing; + + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", y_plus, imgUp, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH; + + // Current Y + #if HAS_Y_AXIS + motionAxisState.yValuePos.set(x + 2, y); + drawAxisValue(Y_AXIS); + #endif + + x += spacing; + #if HAS_Z_AXIS + drawBtn(x, y, "Z+", z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + #endif + + /************************************************************************** + * Row 2: | "Ex" | [X-] | [Home] | [X+] | "Z" | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; + + #if HAS_EXTRUDERS + motionAxisState.eNamePos.set(x, y); + drawCurESelection(); + TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, e_select)); + #endif + + x += BTN_WIDTH + spacing; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", x_minus, imgLeft, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if ALL(HAS_X_AXIS, TOUCH_SCREEN) + add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, do_home, imgHome, !busy); + #endif + + x += BTN_WIDTH + spacing; + const uint16_t xplus_x = x; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", x_plus, imgRight, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if HAS_Z_AXIS + motionAxisState.zTypePos.set(x, y); + drawCurZSelection(); + #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, z_select); + #endif + #endif + + /************************************************************************** + * Row 3: | [E-] | Current X | [Y-] | [Z-] | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + + #if HAS_EXTRUDERS + drawBtn(x, y, "E-", e_minus, imgDown, E_BTN_COLOR, !busy); + motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(E_AXIS); + #endif + + // Current X + #if HAS_X_AXIS + motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); + drawAxisValue(X_AXIS); + #endif + + x += BTN_WIDTH + spacing; + + // Current Y + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", y_minus, imgDown, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + // Current Z + #if HAS_Z_AXIS + drawBtn(x, y, "Z-", z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have babystep + motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(Z_AXIS); + #endif + + /************************************************************************** + * Row 4: | Step Size | [Disable Steppers] | [Back] | + *************************************************************************/ + + y = TFT_HEIGHT - Y_MARGIN - 32; + x = TFT_WIDTH / 2 - CUR_STEP_VALUE_WIDTH / 2; + motionAxisState.stepValuePos.set(x, y); + if (!busy) { + drawCurStepValue(); + TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, x, y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, step_size)); + } + + // Aligned with x+ + drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", disable_steppers, imgCancel, COLOR_WHITE, !busy); + + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); +} + +#endif // MOVE_AXIS_SCREEN +#endif // HAS_UI_1024x600 diff --git a/Marlin/src/lcd/tft/ui_move_axis_screen_320.cpp b/Marlin/src/lcd/tft/ui_move_axis_screen_320.cpp new file mode 100644 index 000000000000..54a65c17bf4b --- /dev/null +++ b/Marlin/src/lcd/tft/ui_move_axis_screen_320.cpp @@ -0,0 +1,399 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +#if HAS_UI_320x240 + +#include "ui_common.h" + +#if ENABLED(MOVE_AXIS_SCREEN) + +#include "../marlinui.h" +#include "../menu/menu.h" +#include "../../libs/numtostr.h" + +#include "../../sd/cardreader.h" +#include "../../module/temperature.h" +#include "../../module/printcounter.h" +#include "../../module/planner.h" +#include "../../module/motion.h" + +#if ENABLED(BABYSTEP_ZPROBE_OFFSET) + #include "../../feature/babystep.h" +#endif + +#if HAS_BED_PROBE + #include "../../module/probe.h" +#endif + +#define BTN_WIDTH 48 +#define BTN_HEIGHT 39 +#define X_MARGIN 15 +#define Y_MARGIN 11 + +#define CUR_STEP_VALUE_WIDTH 38 +void drawCurStepValue() { + tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); + tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, 20); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(CUR_STEP_VALUE_WIDTH - tft_string.width(), 0, COLOR_AXIS_HOMED, tft_string); + + tft.queue.sync(); + + tft_string.set(F("mm")); + tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y + 20, CUR_STEP_VALUE_WIDTH, 20); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(CUR_STEP_VALUE_WIDTH - tft_string.width(), 0, COLOR_AXIS_HOMED, tft_string); +} + +#if HAS_Z_AXIS + void drawCurZSelection() { + tft_string.set('Z'); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), 20); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + + tft.queue.sync(); + + tft_string.set(F("Offset")); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + 34, tft_string.width(), 20); + tft.set_background(COLOR_BACKGROUND); + #if HAS_BED_PROBE + if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + #endif + } +#endif + +#if HAS_EXTRUDERS + void drawCurESelection() { + tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set('E'); + tft.add_text(0, 0, E_BTN_COLOR, tft_string); + tft.add_text(tft_string.width(), 0, E_BTN_COLOR, ui8tostr3rj(motionAxisState.e_selection)); + } +#endif + +void drawMessage_P(PGM_P const msg) { + tft.canvas(X_MARGIN, + #if ENABLED(TFT_COLOR_UI_PORTRAIT) + TFT_HEIGHT - 2 * BTN_HEIGHT, TFT_WIDTH - X_MARGIN + #else + TFT_HEIGHT - Y_MARGIN - 29, (TFT_WIDTH / 2) - (BTN_WIDTH / 2) - X_MARGIN + #endif + , FONT_LINE_HEIGHT + ); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, COLOR_STATUS_MESSAGE, msg); +} + +void drawAxisValue(const AxisEnum axis) { + const float value = ( + TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) + ui.manual_move.axis_value(axis) + ); + xy_int_t pos; + uint16_t color; + switch (axis) { + #if HAS_X_AXIS + case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; + #endif + #if HAS_Y_AXIS + case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; + #endif + #if HAS_Z_AXIS + case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; + #endif + #if HAS_EXTRUDERS + case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; + #endif + default: return; + } + tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, FONT_LINE_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(ftostr52sp(value)); + tft.add_text(0, 0, color, tft_string); +} + +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled/*=true*/) { + drawBtn(x, y, label, data, imgBtn39Rounded, img, bgColor, enabled); +} + +void MarlinUI::move_axis_screen() { + // Reset + defer_status_screen(true); + motionAxisState.blocked = false; + TERN_(TOUCH_SCREEN, touch.enable()); + + ui.clear_lcd(); + + TERN_(TOUCH_SCREEN, touch.clear()); + + const bool busy = printingIsActive(); + + // Babysteps during printing? Select babystep for Z probe offset + #if ENABLED(BABYSTEP_ZPROBE_OFFSET) + if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; + #endif + + #if ENABLED(TFT_COLOR_UI_PORTRAIT) + + /************************************************************************** + * ROW 1: | [E+] | [Y+] | [Z+] | + *************************************************************************/ + + int x = X_MARGIN, y = Y_MARGIN, spacing = 0; + + TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", e_plus, imgUp, E_BTN_COLOR, !busy)); + + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + x += BTN_WIDTH + spacing; + uint16_t yplus_x = x; + + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", y_plus, imgUp, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + uint16_t zplus_x = x; + + #if HAS_Z_AXIS + drawBtn(x, y, "Z+", z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + #endif + + /************************************************************************** + * ROW 2: | "Ex" | Current Y | "Z" | + *************************************************************************/ + + x = X_MARGIN; + y += BTN_HEIGHT + 2; + + #if HAS_EXTRUDERS + motionAxisState.eNamePos.set(x, y); + drawCurESelection(); + TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, e_select)); + #endif + + #if HAS_Y_AXIS + motionAxisState.yValuePos.set(yplus_x, y); + drawAxisValue(Y_AXIS); + #endif + + #if HAS_Z_AXIS + motionAxisState.zTypePos.set(zplus_x, y); + drawCurZSelection(); + #endif + + /************************************************************************** + * ROW 3: | [X-] | [Home] | [X+] | "Z" | + *************************************************************************/ + + y += (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3 - 2; + x = X_MARGIN; + + #if HAS_X_AXIS + drawBtn(x, y, "X-", x_minus, imgLeft, X_BTN_COLOR, !busy); + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, do_home, imgHome, !busy)); + drawBtn(zplus_x, y, "X+", x_plus, imgRight, X_BTN_COLOR, !busy); + #endif + + #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, z_select); + #endif + + /************************************************************************** + * ROW 4: | Current X | + *************************************************************************/ + + y += BTN_HEIGHT + 2; + + #if HAS_X_AXIS + motionAxisState.xValuePos.set(x, y); + drawAxisValue(X_AXIS); + #endif + + /************************************************************************** + * ROW 5: | [E-] | [Y-] | [Z-] | + *************************************************************************/ + + y += (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3 - 2; + x = X_MARGIN; + + #if HAS_EXTRUDERS + drawBtn(x, y, "E-", e_minus, imgDown, E_BTN_COLOR, !busy); + motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(E_AXIS); + #endif + + x += BTN_WIDTH + spacing; + + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", y_minus, imgDown, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if HAS_Z_AXIS + drawBtn(x, y, "Z-", z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(Z_AXIS); + #endif + + /************************************************************************** + * ROW 6: | Step Size | [Disable Steppers] | [Back] | + *************************************************************************/ + + y = TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT; + x = zplus_x - CUR_STEP_VALUE_WIDTH - 10; + motionAxisState.stepValuePos.set(X_MARGIN + BTN_WIDTH - CUR_STEP_VALUE_WIDTH, y); + + if (!busy) { + drawCurStepValue(); + TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, step_size)); + } + + // Aligned with x+ + drawBtn(yplus_x, y, "off", disable_steppers, imgCancel, COLOR_WHITE, !busy); + + #else // !TFT_COLOR_UI_PORTRAIT + + /************************************************************************** + * ROW 1: | [E+] | [Y+] | Current Y | [Z+] | + *************************************************************************/ + + int x = X_MARGIN, y = Y_MARGIN, spacing = 0; + + TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", e_plus, imgUp, E_BTN_COLOR, !busy)); + + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + x += BTN_WIDTH + spacing; + uint16_t yplus_x = x; + + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", y_plus, imgUp, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH; + + // Current Y + #if HAS_Y_AXIS + motionAxisState.yValuePos.set(x + 2, y); + drawAxisValue(Y_AXIS); + #endif + + x += spacing; + + #if HAS_Z_AXIS + drawBtn(x, y, "Z+", z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + #endif + + /************************************************************************** + * ROW 2: | "Ex" | [X-] | [Home] | [X+] | "Z" | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; + + #if HAS_EXTRUDERS + motionAxisState.eNamePos.set(x, y); + drawCurESelection(); + TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, e_select)); + #endif + + x += BTN_WIDTH + spacing; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", x_minus, imgLeft, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if ALL(HAS_X_AXIS, TOUCH_SCREEN) + add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, do_home, imgHome, !busy); + #endif + + x += BTN_WIDTH + spacing; + const uint16_t xplus_x = x; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", x_plus, imgRight, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if HAS_Z_AXIS + motionAxisState.zTypePos.set(x, y); + drawCurZSelection(); + #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, 34 * 2, z_select); + #endif + #endif + + /************************************************************************** + * ROW 3: | [E-] | Current X | [Y-] | [Z-] | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + + #if HAS_EXTRUDERS + drawBtn(x, y, "E-", e_minus, imgDown, E_BTN_COLOR, !busy); + motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(E_AXIS); + #endif + + // Current X + #if HAS_X_AXIS + motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); + drawAxisValue(X_AXIS); + #endif + + x += BTN_WIDTH + spacing; + + // Current Y + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", y_minus, imgDown, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + // Current Z + #if HAS_Z_AXIS + drawBtn(x, y, "Z-", z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(Z_AXIS); + #endif + + /************************************************************************** + * ROW 4: | Step Size | [Disable Steppers] | [Back] | + *************************************************************************/ + + y = TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT; + x = xplus_x - CUR_STEP_VALUE_WIDTH - 10; + motionAxisState.stepValuePos.set(yplus_x + BTN_WIDTH - CUR_STEP_VALUE_WIDTH, y); + if (!busy) { + drawCurStepValue(); + TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, step_size)); + } + + // Aligned with x+ + drawBtn(xplus_x, y, "off", disable_steppers, imgCancel, COLOR_WHITE, !busy); + + #endif // !TFT_COLOR_UI_PORTRAIT + + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); +} + +#endif // MOVE_AXIS_SCREEN +#endif // HAS_UI_320x240 diff --git a/Marlin/src/lcd/tft/ui_move_axis_screen_480.cpp b/Marlin/src/lcd/tft/ui_move_axis_screen_480.cpp new file mode 100644 index 000000000000..e311c7e8ecd2 --- /dev/null +++ b/Marlin/src/lcd/tft/ui_move_axis_screen_480.cpp @@ -0,0 +1,400 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#include "../../inc/MarlinConfigPre.h" + +#if HAS_UI_480x320 || HAS_UI_480x272 + +#include "ui_common.h" + +#if ENABLED(MOVE_AXIS_SCREEN) + +#include "../marlinui.h" +#include "../menu/menu.h" +#include "../../libs/numtostr.h" + +#include "../../sd/cardreader.h" +#include "../../module/temperature.h" +#include "../../module/printcounter.h" +#include "../../module/planner.h" +#include "../../module/motion.h" + +#if ENABLED(BABYSTEP_ZPROBE_OFFSET) + #include "../../feature/babystep.h" +#endif + +#if HAS_BED_PROBE + #include "../../module/probe.h" +#endif + +#if ENABLED(TFT_COLOR_UI_PORTRAIT) + #define MOVE_AXIS_TOTAL_ROWS_HEIGHT (7 * BTN_HEIGHT + FONT_LINE_HEIGHT + 12) + #define MOVE_AXIS_MARGIN_REGIONS 6 + #define MOVE_AXIS_MARGIN_SIZE ((TFT_HEIGHT - MOVE_AXIS_TOTAL_ROWS_HEIGHT) / MOVE_AXIS_MARGIN_REGIONS) +#endif + +#define BTN_WIDTH 64 +#define BTN_HEIGHT 52 +#define X_MARGIN 20 +#define Y_MARGIN 15 +#define Y_OFFSET TERN(HAS_UI_480x272, 28, 34) + +#define CUR_STEP_VALUE_WIDTH 104 +void drawCurStepValue() { + tft_string.set(ftostr52sp(motionAxisState.currentStepSize)); + tft_string.trim(); + tft_string.add(F("mm")); + tft.canvas(motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, COLOR_AXIS_HOMED, tft_string); +} + +#if HAS_Z_AXIS + void drawCurZSelection() { + tft_string.set('Z'); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, tft_string.width(), FONT_LINE_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + + tft.queue.sync(); + + tft_string.set(F("Offset")); + tft.canvas(motionAxisState.zTypePos.x, motionAxisState.zTypePos.y + Y_OFFSET, tft_string.width(), Y_OFFSET TERN_(HAS_UI_480x272, - 10)); + tft.set_background(COLOR_BACKGROUND); + #if HAS_BED_PROBE + if (motionAxisState.z_selection == Z_SELECTION_Z_PROBE) + tft.add_text(0, 0, Z_BTN_COLOR, tft_string); + #endif + } +#endif + +#if HAS_EXTRUDERS + void drawCurESelection() { + tft.canvas(motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT); + tft.set_background(COLOR_BACKGROUND); + tft_string.set('E'); + tft_string.add(utostr3(motionAxisState.e_selection)); + tft.add_text(tft_string.center(BTN_WIDTH), 0, E_BTN_COLOR, tft_string); + } +#endif + +void drawMessage_P(PGM_P const msg) { + #if ENABLED(TFT_COLOR_UI_PORTRAIT) + tft.canvas(X_MARGIN, TFT_HEIGHT - 2 * MOVE_AXIS_MARGIN_SIZE - BTN_HEIGHT - FONT_LINE_HEIGHT, TFT_WIDTH - X_MARGIN * 2, FONT_LINE_HEIGHT); + #else + tft.canvas(X_MARGIN, TFT_HEIGHT - Y_MARGIN - Y_OFFSET, TFT_HEIGHT / 2, Y_OFFSET); + #endif + tft.set_background(COLOR_BACKGROUND); + tft.add_text(0, 0, COLOR_STATUS_MESSAGE, msg); +} + +void drawAxisValue(const AxisEnum axis) { + const float value = ( + TERN_(HAS_BED_PROBE, axis == Z_AXIS && motionAxisState.z_selection == Z_SELECTION_Z_PROBE ? probe.offset.z :) + ui.manual_move.axis_value(axis) + ); + xy_int_t pos; + uint16_t color; + switch (axis) { + #if HAS_X_AXIS + case X_AXIS: pos = motionAxisState.xValuePos; color = X_BTN_COLOR; break; + #endif + #if HAS_Y_AXIS + case Y_AXIS: pos = motionAxisState.yValuePos; color = Y_BTN_COLOR; break; + #endif + #if HAS_Z_AXIS + case Z_AXIS: pos = motionAxisState.zValuePos; color = Z_BTN_COLOR; break; + #endif + #if HAS_EXTRUDERS + case E_AXIS: pos = motionAxisState.eValuePos; color = E_BTN_COLOR; break; + #endif + default: return; + } + tft.canvas(pos.x, pos.y, BTN_WIDTH + X_MARGIN, BTN_HEIGHT TERN_(HAS_UI_480x272, / 2)); + tft.set_background(COLOR_BACKGROUND); + tft_string.set(ftostr52sp(value)); + tft_string.trim(); + tft.add_text(tft_string.center(BTN_WIDTH + X_MARGIN), 0, color, tft_string); +} + +void drawBtn(const int x, const int y, const char *label, intptr_t data, const MarlinImage img, uint16_t bgColor, const bool enabled/*=true*/) { + drawBtn(x, y, label, data, imgBtn52Rounded, img, bgColor, enabled); +} + +void MarlinUI::move_axis_screen() { + // Reset + defer_status_screen(true); + motionAxisState.blocked = false; + TERN_(TOUCH_SCREEN, touch.enable()); + + ui.clear_lcd(); + + TERN_(TOUCH_SCREEN, touch.clear()); + + const bool busy = printingIsActive(); + + // Babysteps during printing? Select babystep for Z probe offset + #if ENABLED(BABYSTEP_ZPROBE_OFFSET) + if (busy) motionAxisState.z_selection = Z_SELECTION_Z_PROBE; + #endif + + #if ENABLED(TFT_COLOR_UI_PORTRAIT) + + int y = MOVE_AXIS_MARGIN_SIZE; + + /************************************************************************** + * ROW 1: | [E+] | [Y+] | [Z+] | + *************************************************************************/ + + TERN_(HAS_EXTRUDERS, drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "E+", e_plus, imgUp, E_BTN_COLOR, !busy)); + TERN_(HAS_Y_AXIS, drawBtn(TFT_WIDTH / 2 - BTN_WIDTH / 2, y, "Y+", y_plus, imgUp, Y_BTN_COLOR, !busy)); + TERN_(HAS_Z_AXIS, drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "Z+", z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET))); + + y += BTN_HEIGHT + 4; + + /************************************************************************** + * ROW 2: | "Ex" (E0, E1, etc.) | Current Y | "Z" | + *************************************************************************/ + + // Label "Ex" (E0, E1, etc.) + #if HAS_EXTRUDERS + motionAxisState.eNamePos.set(TFT_WIDTH / 6 - BTN_WIDTH / 2, y); + drawCurESelection(); + #if ENABLED(TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, motionAxisState.eNamePos.x, motionAxisState.eNamePos.y, BTN_WIDTH, BTN_HEIGHT, e_select); + #endif + #endif + + // Current Y + #if HAS_Y_AXIS + motionAxisState.yValuePos.set(TFT_WIDTH / 2 - (BTN_WIDTH + X_MARGIN) / 2, y); + drawAxisValue(Y_AXIS); + #endif + + // Label "Z" + #ifdef HAS_Z_AXIS + motionAxisState.zTypePos.set(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y); + drawCurZSelection(); + #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, motionAxisState.zTypePos.x, motionAxisState.zTypePos.y, BTN_WIDTH, FONT_LINE_HEIGHT * 2, z_select); + #endif + #endif + + y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; + + /************************************************************************** + * ROW 3: | [X-] | [Home] | [X+] | + *************************************************************************/ + + #if HAS_X_AXIS + drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "X-", x_minus, imgLeft, X_BTN_COLOR, !busy); + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, do_home, imgHome, !busy)); + drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "X+", x_plus, imgRight, X_BTN_COLOR, !busy); + #endif + + y += BTN_HEIGHT + 4; + + /************************************************************************** + * ROW 4: | Current X | + *************************************************************************/ + + #ifdef HAS_X_AXIS + motionAxisState.xValuePos.set(TFT_WIDTH / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); + drawAxisValue(X_AXIS); + #endif + + y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; + + /************************************************************************** + * ROW 5: | [E-] | [Y-] | [Z-] | + *************************************************************************/ + + TERN_(HAS_EXTRUDERS, drawBtn(TFT_WIDTH / 6 - BTN_WIDTH / 2, y, "E-", e_minus, imgDown, E_BTN_COLOR, !busy)); + TERN_(HAS_Y_AXIS, drawBtn(TFT_WIDTH / 2 - BTN_WIDTH / 2, y, "Y-", y_minus, imgDown, Y_BTN_COLOR, !busy)); + TERN_(HAS_Z_AXIS, drawBtn(TFT_WIDTH * 5 / 6 - BTN_WIDTH / 2, y, "Z-", z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET))); + + y += BTN_HEIGHT + 4; + + /************************************************************************** + * ROW 6: | Current Ex | Current Z | + *************************************************************************/ + + // Current Ex value + #ifdef HAS_EXTRUDERS + motionAxisState.eValuePos.set(TFT_WIDTH / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); + drawAxisValue(E_AXIS); + #endif + + #ifdef HAS_Z_AXIS + motionAxisState.zValuePos.set(TFT_WIDTH * 5 / 6 - (BTN_WIDTH + X_MARGIN) / 2, y); + drawAxisValue(Z_AXIS); + #endif + + y += BTN_HEIGHT + MOVE_AXIS_MARGIN_SIZE; + + /************************************************************************** + * ROW 7: | Message - drawMessage(...) function | + *************************************************************************/ + + y += FONT_LINE_HEIGHT + MOVE_AXIS_MARGIN_SIZE; + + /************************************************************************** + * ROW 8: | Step Size | [Disable Steppers] | [Back] | + *************************************************************************/ + + // Step size + motionAxisState.stepValuePos.set(X_MARGIN, y + 12); + if (!busy) { + drawCurStepValue(); + TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y + 12, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, step_size)); + } + + // Button "Disable steppers" + drawBtn(TFT_WIDTH / 2, y, "off", disable_steppers, imgCancel, COLOR_WHITE, !busy); + + // Button "Back" + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH * 5 / 6 - images[imgBack].width / 2, y + 12, BACK, imgBack)); + + #else // !TFT_COLOR_UI_PORTRAIT + + /************************************************************************** + * ROW 1: | [E+] | [Y+] | [Z+] | + *************************************************************************/ + + int x = X_MARGIN, y = Y_MARGIN, spacing = 0; + + TERN_(HAS_EXTRUDERS, drawBtn(x, y, "E+", e_plus, imgUp, E_BTN_COLOR, !busy)); + + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + x += BTN_WIDTH + spacing; + + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y+", y_plus, imgUp, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH; + + // Current Y + #if HAS_Y_AXIS + motionAxisState.yValuePos.set(x + 2, y); + drawAxisValue(Y_AXIS); + #endif + + x += spacing; + + #if HAS_Z_AXIS + drawBtn(x, y, "Z+", z_plus, imgUp, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + #endif + + /************************************************************************** + * ROW 2: | "Ex" | [X-] | [Home] | [X+] | "Z" | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4; + + #if HAS_EXTRUDERS + motionAxisState.eNamePos.set(x, y); + drawCurESelection(); + TERN_(TOUCH_SCREEN, if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, BTN_HEIGHT, e_select)); + #endif + + x += BTN_WIDTH + spacing; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X-", x_minus, imgLeft, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if ALL(HAS_X_AXIS, TOUCH_SCREEN) + add_control(TFT_WIDTH / 2 - images[imgHome].width / 2, y - (images[imgHome].width - BTN_HEIGHT) / 2, BUTTON, do_home, imgHome, !busy); + #endif + + x += BTN_WIDTH + spacing; + const uint16_t xplus_x = x; + + TERN_(HAS_X_AXIS, drawBtn(x, y, "X+", x_plus, imgRight, X_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + #if HAS_Z_AXIS + motionAxisState.zTypePos.set(x, y); + drawCurZSelection(); + #if ALL(HAS_BED_PROBE, TOUCH_SCREEN) + if (!busy) touch.add_control(BUTTON, x, y, BTN_WIDTH, Y_OFFSET * 2, z_select); + #endif + #endif + + /************************************************************************** + * ROW 3: | [E-] | Current X | [Y-] | [Z-] | + *************************************************************************/ + + y += BTN_HEIGHT + (TFT_HEIGHT - Y_MARGIN * 2 - 4 * BTN_HEIGHT) / 3; + x = X_MARGIN; + spacing = (TFT_WIDTH - X_MARGIN * 2 - 3 * BTN_WIDTH) / 2; + + #if HAS_EXTRUDERS + drawBtn(x, y, "E-", e_minus, imgDown, E_BTN_COLOR, !busy); + motionAxisState.eValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(E_AXIS); + #endif + + // Current X + #if HAS_X_AXIS + motionAxisState.xValuePos.set(BTN_WIDTH + (TFT_WIDTH - X_MARGIN * 2 - 5 * BTN_WIDTH) / 4, y - 10); + drawAxisValue(X_AXIS); + #endif + + x += BTN_WIDTH + spacing; + + // Current Y + TERN_(HAS_Y_AXIS, drawBtn(x, y, "Y-", y_minus, imgDown, Y_BTN_COLOR, !busy)); + + x += BTN_WIDTH + spacing; + + // Current Z + #if HAS_Z_AXIS + drawBtn(x, y, "Z-", z_minus, imgDown, Z_BTN_COLOR, !busy || ENABLED(BABYSTEP_ZPROBE_OFFSET)); // Only enabled when not busy or have baby step + motionAxisState.zValuePos.set(x, y + BTN_HEIGHT + 2); + drawAxisValue(Z_AXIS); + #endif + + /************************************************************************** + * ROW 4: | Step Size | [Disable Steppers] | [Back] | + *************************************************************************/ + + y = TFT_HEIGHT - Y_MARGIN - TERN(HAS_UI_480x272, BTN_WIDTH / 2, 32); + x = TFT_WIDTH / 2 - CUR_STEP_VALUE_WIDTH / 2; + motionAxisState.stepValuePos.set(x, y); + if (!busy) { + drawCurStepValue(); + TERN_(TOUCH_SCREEN, touch.add_control(BUTTON, motionAxisState.stepValuePos.x, motionAxisState.stepValuePos.y, CUR_STEP_VALUE_WIDTH, BTN_HEIGHT, step_size)); + } + + // Aligned with x+ + drawBtn(xplus_x, TFT_HEIGHT - Y_MARGIN - BTN_HEIGHT, "off", disable_steppers, imgCancel, COLOR_WHITE, !busy); + + TERN_(TOUCH_SCREEN, add_control(TFT_WIDTH - X_MARGIN - BTN_WIDTH, y, BACK, imgBack)); + + #endif // !TFT_COLOR_UI_PORTRAIT +} + +#endif // MOVE_AXIS_SCREEN +#endif // HAS_UI_480x320 || HAS_UI_480x272 diff --git a/Marlin/src/lcd/tft/ui_theme.h b/Marlin/src/lcd/tft/ui_theme.h new file mode 100644 index 000000000000..1925cdc071fb --- /dev/null +++ b/Marlin/src/lcd/tft/ui_theme.h @@ -0,0 +1,35 @@ +/** + * Marlin 3D Printer Firmware + * Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] + * + * Based on Sprinter and grbl. + * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#pragma once + +#include "../../inc/MarlinConfigPre.h" + +#ifndef TFT_THEME + #define TFT_THEME BLUE_MARLIN +#endif + +#define TFT_THEME_INCL_(M) STRINGIFY_(themes/theme_##M.h) +#define TFT_THEME_INCL(M) TFT_THEME_INCL_(M) + +#include "tft_color.h" +#include TFT_THEME_INCL(TFT_THEME) +#include "themes/theme_default.h" diff --git a/Marlin/src/lcd/tft_io/tft_orientation.h b/Marlin/src/lcd/tft_io/tft_orientation.h index 99c6a13c6446..d85e6b12db2f 100644 --- a/Marlin/src/lcd/tft_io/tft_orientation.h +++ b/Marlin/src/lcd/tft_io/tft_orientation.h @@ -58,11 +58,6 @@ #define TFT_COLOR_RGB _BV32(3) #define TFT_COLOR_BGR _BV32(4) -// Each TFT Driver is responsible for its default color mode. -//#ifndef TFT_COLOR -// #define TFT_COLOR TFT_COLOR_RGB -//#endif - #define TOUCH_ORIENTATION_NONE 0 #define TOUCH_LANDSCAPE 1 #define TOUCH_PORTRAIT 2 diff --git a/buildroot/share/PlatformIO/scripts/common-dependencies.h b/buildroot/share/PlatformIO/scripts/common-dependencies.h index b37a377df994..2def0d88b683 100644 --- a/buildroot/share/PlatformIO/scripts/common-dependencies.h +++ b/buildroot/share/PlatformIO/scripts/common-dependencies.h @@ -110,14 +110,219 @@ #endif #if HAS_GRAPHICAL_TFT - #define NOTOSANS 1 - #define UNIFONT 2 - #define HELVETICA 3 + #include "../../../../Marlin/src/lcd/tft/fontdata/fontdata.h" + #define UI_INCL_(W, H) STRINGIFY_(../../../../Marlin/src/lcd/tft/ui_##W##x##H.h) + #define UI_INCL(W, H) UI_INCL_(W, H) + #include UI_INCL(TFT_WIDTH, TFT_HEIGHT) + + #define Latin_Extended_A 1 + #define Cyrillic 2 + #define Greek 3 + #define Katakana 4 + #define Korean 5 + #define Vietnamese 6 + #define Simplified_Chinese 7 + #define Traditional_Chinese 8 + #if TFT_FONT == NOTOSANS - #define TFT_FONT_NOTOSANS + #if FONT_SIZE == 14 + #define TFT_FONT_NOTOSANS_14 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_14_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_14_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_14_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_14_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_14_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_14_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_14_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_14_ZH_TW + #endif + #elif FONT_SIZE == 16 + #define TFT_FONT_NOTOSANS_16 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_16_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_16_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_16_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_16_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_16_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_16_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_16_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_16_ZH_TW + #endif + #elif FONT_SIZE == 19 + #define TFT_FONT_NOTOSANS_19 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_19_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_19_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_19_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_19_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_19_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_19_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_19_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_19_ZH_TW + #endif + #elif FONT_SIZE == 26 + #define TFT_FONT_NOTOSANS_26 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_26_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_26_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_26_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_26_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_26_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_26_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_26_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_26_ZH_TW + #endif + #elif FONT_SIZE == 27 + #define TFT_FONT_NOTOSANS_27 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_27_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_27_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_27_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_27_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_27_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_27_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_27_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_27_ZH_TW + #endif + #elif FONT_SIZE == 28 + #define TFT_FONT_NOTOSANS_28 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_28_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_28_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_28_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_28_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_28_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_28_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_28_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_28_ZH_TW + #endif + #elif FONT_SIZE == 29 + #define TFT_FONT_NOTOSANS_29 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_NOTOSANS_29_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_NOTOSANS_29_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_NOTOSANS_29_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_NOTOSANS_29_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_NOTOSANS_29_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_NOTOSANS_29_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_NOTOSANS_29_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_NOTOSANS_29_ZH_TW + #endif + #endif #elif TFT_FONT == UNIFONT - #define TFT_FONT_UNIFONT + #if FONT_SIZE == 10 + #define TFT_FONT_UNIFONT_10 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_UNIFONT_10_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_UNIFONT_10_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_UNIFONT_10_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_UNIFONT_10_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_UNIFONT_10_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_UNIFONT_10_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_UNIFONT_10_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_UNIFONT_10_ZH_TW + #endif + #elif FONT_SIZE == 20 + #define TFT_FONT_UNIFONT_20 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_UNIFONT_20_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_UNIFONT_20_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_UNIFONT_20_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_UNIFONT_20_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_UNIFONT_20_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_UNIFONT_20_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_UNIFONT_20_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_UNIFONT_20_ZH_TW + #endif + #elif FONT_SIZE == 30 + #define TFT_FONT_UNIFONT_30 + #if FONT_EXTRA == Latin_Extended_A + #define TFT_FONT_UNIFONT_30_LATIN + #elif FONT_EXTRA == Cyrillic + #define TFT_FONT_UNIFONT_30_CYRIL + #elif FONT_EXTRA == Greek + #define TFT_FONT_UNIFONT_30_GREEK + #elif FONT_EXTRA == Katakana + #define TFT_FONT_UNIFONT_30_KATA + #elif FONT_EXTRA == Korean + #define TFT_FONT_UNIFONT_30_KO + #elif FONT_EXTRA == Vietnamese + #define TFT_FONT_UNIFONT_30_VI + #elif FONT_EXTRA == Simplified_Chinese + #define TFT_FONT_UNIFONT_30_ZH_CN + #elif FONT_EXTRA == Traditional_Chinese + #define TFT_FONT_UNIFONT_30_ZH_TW + #endif + #endif #elif TFT_FONT == HELVETICA - #define TFT_FONT_HELVETICA + #if FONT_SIZE == 14 + #define TFT_FONT_HELVETICA_14 + #elif FONT_SIZE == 19 + #define TFT_FONT_HELVETICA_19 + #endif #endif #endif diff --git a/buildroot/share/PlatformIO/scripts/common-dependencies.py b/buildroot/share/PlatformIO/scripts/common-dependencies.py index e90ba24dd349..faa44292a8c2 100644 --- a/buildroot/share/PlatformIO/scripts/common-dependencies.py +++ b/buildroot/share/PlatformIO/scripts/common-dependencies.py @@ -94,7 +94,7 @@ def load_features(): val = None if val: opt = mat[1].upper() - blab("%s.custom_marlin.%s = '%s'" % ( env['PIOENV'], opt, val )) + blab("%s.custom_marlin.%s = '%s'" % ( env['PIOENV'], opt, val ), 2) add_to_feat_cnf(opt, val) def get_all_known_libs(): @@ -202,14 +202,14 @@ def addentry(fullpath, info=None): relp = os.path.relpath(fullpath, marlinbasedir) if srcfilepattern.match(relp): if info: - blab("Added src file %s (%s)" % (relp, str(info))) + blab("Added src file %s (%s)" % (relp, str(info)), 3) else: - blab("Added src file %s " % relp) + blab("Added src file %s " % relp, 3) cur_srcs.add(relp) # Special rule: If a direct folder is specified add all files within. fullplain = os.path.join(marlinbasedir, plain) if os.path.isdir(fullplain): - blab("Directory content addition for %s " % plain) + blab("Directory content addition for %s " % plain, 3) gpattern = os.path.join(fullplain, "**") for fname in glob.glob(gpattern, recursive=True): addentry(fname, "dca") @@ -227,12 +227,12 @@ def srepl(matchi): # Special rule: If a direct folder is specified then remove all files within. def onremove(relp, info=None): if info: - blab("Removed src file %s (%s)" % (relp, str(info))) + blab("Removed src file %s (%s)" % (relp, str(info)), 3) else: - blab("Removed src file %s " % relp) + blab("Removed src file %s " % relp, 3) fullplain = os.path.join(marlinbasedir, plain) if os.path.isdir(fullplain): - blab("Directory content removal for %s " % plain) + blab("Directory content removal for %s " % plain, 2) def filt(x): common = os.path.commonpath([plain, x]) if not common == os.path.normpath(plain): return True @@ -248,10 +248,10 @@ def filt(x): cur_srcs = set(filter(filt, cur_srcs)) # Transform the resulting set into a string. for x in cur_srcs: - if len(build_src_filter) > 0: build_src_filter += ' ' + if build_src_filter != "": build_src_filter += ' ' build_src_filter += "+<" + x + ">" - #blab("Final build_src_filter: " + build_src_filter) + #blab("Final build_src_filter: " + build_src_filter, 3) else: build_src_filter = build_filters @@ -281,7 +281,7 @@ def load_marlin_features(): # def MarlinHas(env, feature): load_marlin_features() - r = re.compile('^' + feature + '$') + r = re.compile('^' + feature + '$', re.IGNORECASE) found = list(filter(r.match, env['MARLIN_FEATURES'])) # Defines could still be 'false' or '0', so check @@ -294,7 +294,7 @@ def MarlinHas(env, feature): elif val in env['MARLIN_FEATURES']: some_on = env.MarlinHas(val) - #blab("%s is %s" % (feature, str(some_on))) + #blab("%s is %s" % (feature, str(some_on)), 2) return some_on diff --git a/ini/features.ini b/ini/features.ini index 96a27b3ff961..2b1d09e20f25 100644 --- a/ini/features.ini +++ b/ini/features.ini @@ -56,10 +56,114 @@ DWIN_CREALITY_LCD = build_src_filter=+ DWIN_CREALITY_LCD_JYERSUI = build_src_filter=+ IS_DWIN_MARLINUI = build_src_filter=+ -HAS_GRAPHICAL_TFT = build_src_filter=+ - -TFT_FONT_HELVETICA = build_src_filter=+ -TFT_FONT_NOTOSANS = build_src_filter=+ -TFT_FONT_UNIFONT = build_src_filter=+ +HAS_GRAPHICAL_TFT = build_src_filter=+ - - +HAS_UI_320X.+ = build_src_filter=+ +HAS_UI_480X.+ = build_src_filter=+ +HAS_UI_1024X.+ = build_src_filter=+ +# Helvetica 14 +TFT_FONT_HELVETICA_14 = build_src_filter=+ +# Helvetica 19 +TFT_FONT_HELVETICA_19 = build_src_filter=+ +# Notosans 14 +TFT_FONT_NOTOSANS_14 = build_src_filter=+ + +TFT_FONT_NOTOSANS_14_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_14_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_14_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_14_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_14_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_14_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_14_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_14_VI = build_src_filter=+ +# Notosans 16 +TFT_FONT_NOTOSANS_16 = build_src_filter=+ + +TFT_FONT_NOTOSANS_16_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_16_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_16_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_16_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_16_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_16_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_16_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_16_VI = build_src_filter=+ +# Notosans 19 +TFT_FONT_NOTOSANS_19 = build_src_filter=+ + +TFT_FONT_NOTOSANS_19_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_19_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_19_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_19_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_19_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_19_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_19_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_19_VI = build_src_filter=+ +# Notosans 26 +TFT_FONT_NOTOSANS_26 = build_src_filter=+ + +TFT_FONT_NOTOSANS_26_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_26_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_26_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_26_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_26_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_26_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_26_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_26_VI = build_src_filter=+ +# Notosans 27 +TFT_FONT_NOTOSANS_27 = build_src_filter=+ + +TFT_FONT_NOTOSANS_27_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_27_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_27_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_27_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_27_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_27_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_27_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_27_VI = build_src_filter=+ +# Notosans 28 +TFT_FONT_NOTOSANS_28 = build_src_filter=+ + +TFT_FONT_NOTOSANS_28_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_28_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_28_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_28_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_28_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_28_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_28_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_28_VI = build_src_filter=+ +# Notosans 29 +TFT_FONT_NOTOSANS_29 = build_src_filter=+ + +TFT_FONT_NOTOSANS_29_LATIN = build_src_filter=+ +TFT_FONT_NOTOSANS_29_CYRIL = build_src_filter=+ +TFT_FONT_NOTOSANS_29_GREEK = build_src_filter=+ +TFT_FONT_NOTOSANS_29_KATA = build_src_filter=+ +TFT_FONT_NOTOSANS_29_KO = build_src_filter=+ +TFT_FONT_NOTOSANS_29_ZH_CN = build_src_filter=+ +TFT_FONT_NOTOSANS_29_ZH_TW = build_src_filter=+ +TFT_FONT_NOTOSANS_29_VI = build_src_filter=+ +# Unifont 10 +TFT_FONT_UNIFONT_10 = build_src_filter=+ + +TFT_FONT_UNIFONT_10_LATIN = build_src_filter=+ +TFT_FONT_UNIFONT_10_CYRIL = build_src_filter=+ +TFT_FONT_UNIFONT_10_GREEK = build_src_filter=+ +TFT_FONT_UNIFONT_10_KATA = build_src_filter=+ +TFT_FONT_UNIFONT_10_KO = build_src_filter=+ +TFT_FONT_UNIFONT_10_ZH_CN = build_src_filter=+ +TFT_FONT_UNIFONT_10_ZH_TW = build_src_filter=+ +TFT_FONT_UNIFONT_10_VI = build_src_filter=+ +# Unifont 20 +TFT_FONT_UNIFONT_20 = build_src_filter=+ + +TFT_FONT_UNIFONT_20_LATIN = build_src_filter=+ +TFT_FONT_UNIFONT_20_CYRIL = build_src_filter=+ +TFT_FONT_UNIFONT_20_GREEK = build_src_filter=+ +TFT_FONT_UNIFONT_20_KATA = build_src_filter=+ +TFT_FONT_UNIFONT_20_KO = build_src_filter=+ +TFT_FONT_UNIFONT_20_ZH_CN = build_src_filter=+ +TFT_FONT_UNIFONT_20_ZH_TW = build_src_filter=+ +TFT_FONT_UNIFONT_20_VI = build_src_filter=+ +# Unifont 30 +TFT_FONT_UNIFONT_30 = build_src_filter=+ + +TFT_FONT_UNIFONT_30_LATIN = build_src_filter=+ +TFT_FONT_UNIFONT_30_CYRIL = build_src_filter=+ +TFT_FONT_UNIFONT_30_GREEK = build_src_filter=+ +TFT_FONT_UNIFONT_30_KATA = build_src_filter=+ +TFT_FONT_UNIFONT_30_KO = build_src_filter=+ +TFT_FONT_UNIFONT_30_ZH_CN = build_src_filter=+ +TFT_FONT_UNIFONT_30_ZH_TW = build_src_filter=+ +TFT_FONT_UNIFONT_30_VI = build_src_filter=+ IS_TFTGLCD_PANEL = build_src_filter=+ HAS_TOUCH_BUTTONS = build_src_filter=+ HAS_MARLINUI_MENU = build_src_filter=+ -